]> git.lyx.org Git - lyx.git/blob - lib/doc/EmbeddedObjects.lyx
EmbeddedObjects.lyx: fix typo spotted by Hartmut
[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 \end_layout
19237
19238 \begin_layout Standard
19239 Referencing rotated floats is the same like for normal floats, the caption
19240  format is also the same: Table\InsetSpace ~
19241
19242 \begin_inset LatexCommand ref
19243 reference "tab:Rotated-table"
19244
19245 \end_inset
19246
19247  is an example of a rotated table float.
19248 \end_layout
19249
19250 \begin_layout Standard
19251 \begin_inset Note Greyedout
19252 status open
19253
19254 \begin_layout Standard
19255
19256 \series bold
19257 Note:
19258 \series default
19259  Not all DVI-viewers are able to display rotated floats.
19260 \end_layout
19261
19262 \end_inset
19263
19264
19265 \end_layout
19266
19267 \begin_layout Standard
19268 \begin_inset Float table
19269 wide false
19270 sideways true
19271 status open
19272
19273 \begin_layout Standard
19274 \begin_inset Caption
19275
19276 \begin_layout Standard
19277 \begin_inset LatexCommand label
19278 name "tab:Rotated-table"
19279
19280 \end_inset
19281
19282  Rotated table
19283 \end_layout
19284
19285 \end_inset
19286
19287
19288 \end_layout
19289
19290 \begin_layout Standard
19291 \align center
19292 \begin_inset Tabular
19293 <lyxtabular version="3" rows="1" columns="5">
19294 <features>
19295 <column alignment="center" valignment="top" leftline="true" width="0">
19296 <column alignment="center" valignment="top" leftline="true" width="0">
19297 <column alignment="center" valignment="top" leftline="true" width="0">
19298 <column alignment="center" valignment="top" leftline="true" width="0">
19299 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
19300 <row topline="true" bottomline="true">
19301 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19302 \begin_inset Text
19303
19304 \begin_layout Standard
19305 test
19306 \end_layout
19307
19308 \end_inset
19309 </cell>
19310 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19311 \begin_inset Text
19312
19313 \begin_layout Standard
19314 b
19315 \end_layout
19316
19317 \end_inset
19318 </cell>
19319 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19320 \begin_inset Text
19321
19322 \begin_layout Standard
19323 c
19324 \end_layout
19325
19326 \end_inset
19327 </cell>
19328 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19329 \begin_inset Text
19330
19331 \begin_layout Standard
19332 d
19333 \end_layout
19334
19335 \end_inset
19336 </cell>
19337 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19338 \begin_inset Text
19339
19340 \begin_layout Standard
19341 e
19342 \end_layout
19343
19344 \end_inset
19345 </cell>
19346 </row>
19347 </lyxtabular>
19348
19349 \end_inset
19350
19351
19352 \end_layout
19353
19354 \end_inset
19355
19356
19357 \end_layout
19358
19359 \begin_layout Section
19360 Caption Formatting
19361 \begin_inset LatexCommand index
19362 name "Caption ! Formatting"
19363
19364 \end_inset
19365
19366
19367 \begin_inset LatexCommand index
19368 name "Floats ! Caption Formatting"
19369
19370 \end_inset
19371
19372
19373 \begin_inset LatexCommand index
19374 name "LaTeX-packages ! caption"
19375
19376 \end_inset
19377
19378
19379 \begin_inset LatexCommand label
19380 name "sec:Caption-Formatting"
19381
19382 \end_inset
19383
19384
19385 \end_layout
19386
19387 \begin_layout Standard
19388 The 
19389 \family sans
19390 Caption
19391 \family default
19392  environment is the default paragraph environment for 
19393 \family sans
19394 Floats
19395 \family default
19396 .
19397  On the LyX screen captions appear as label, e.\InsetSpace \thinspace{}
19398 g.\InsetSpace ~
19399
19400 \begin_inset Quotes eld
19401 \end_inset
19402
19403
19404 \family sans
19405 Figure #:
19406 \family default
19407
19408 \begin_inset Quotes erd
19409 \end_inset
19410
19411  followed by the caption text.
19412  
19413 \begin_inset Quotes eld
19414 \end_inset
19415
19416 #
19417 \begin_inset Quotes erd
19418 \end_inset
19419
19420  is the actual reference number.
19421  By default the label and the number are in the same font as the caption
19422  text and a colon follows the number to divide the label from the text.
19423  This caption format is not suitable for all document formats.
19424  
19425 \end_layout
19426
19427 \begin_layout Standard
19428 To change the default caption format, load the LaTeX-package 
19429 \series bold
19430 caption
19431 \series default
19432
19433 \begin_inset LatexCommand index
19434 name "LaTeX-packages ! caption"
19435
19436 \end_inset
19437
19438  in the document preamble with this line:
19439 \end_layout
19440
19441 \begin_layout Standard
19442
19443 \series bold
19444
19445 \backslash
19446 usepackage[format definition]{caption}
19447 \end_layout
19448
19449 \begin_layout Standard
19450 To have for example the label and the number in sans-serif bold font and
19451  the table captions always above the table like in this document, use the
19452  following command:
19453 \end_layout
19454
19455 \begin_layout Standard
19456
19457 \series bold
19458
19459 \backslash
19460 usepackage[labelfont={bf,sf}, tableposition=top]{caption}
19461 \end_layout
19462
19463 \begin_layout Standard
19464 You can also define different caption formats for the different float types.
19465  In this case load the 
19466 \series bold
19467 caption
19468 \series default
19469  package without format specific options and define the different formats
19470  with the help of the command
19471 \end_layout
19472
19473 \begin_layout Standard
19474
19475 \series bold
19476
19477 \backslash
19478 captionsetup[float type]{format definition}
19479 \end_layout
19480
19481 \begin_layout Standard
19482 in the document preamble.
19483  For example the caption formats of Figure\InsetSpace ~
19484
19485 \begin_inset LatexCommand ref
19486 reference "fig:This-is-an-fig"
19487
19488 \end_inset
19489
19490  and Table\InsetSpace ~
19491
19492 \begin_inset LatexCommand ref
19493 reference "tab:This-is-an-tab"
19494
19495 \end_inset
19496
19497  can be created using these commands in the document preamble:
19498 \end_layout
19499
19500 \begin_layout Standard
19501
19502 \series bold
19503
19504 \backslash
19505 usepackage[tableposition=top]{caption}
19506 \series default
19507
19508 \newline
19509
19510 \series bold
19511
19512 \backslash
19513 captionsetup[f\SpecialChar \textcompwordmark{}
19514 igure]{labelfont={tt}, textfont=it, indention=1cm,%
19515 \newline
19516
19517 \begin_inset ERT
19518 status collapsed
19519
19520 \begin_layout Standard
19521
19522
19523 \backslash
19524 hphantom{
19525 \backslash
19526
19527 \backslash
19528 captionsetup[figure]
19529 \backslash
19530 {}
19531 \end_layout
19532
19533 \end_inset
19534
19535  labelsep=period}
19536 \newline
19537
19538 \backslash
19539 captionsetup[table]{labelfont={bf,sf}}
19540 \end_layout
19541
19542 \begin_layout Standard
19543 \begin_inset Note Greyedout
19544 status open
19545
19546 \begin_layout Standard
19547
19548 \series bold
19549 Note:
19550 \series default
19551  The option 
19552 \series bold
19553 tableposition=top
19554 \series default
19555  has no effect when a 
19556 \series bold
19557 koma-script
19558 \series default
19559
19560 \begin_inset LatexCommand index
19561 name "LaTeX-packages ! koma-script"
19562
19563 \end_inset
19564
19565  document class is used.
19566  In this case the document class option 
19567 \series bold
19568 tablecaptionabove
19569 \series default
19570  must be used.
19571 \end_layout
19572
19573 \end_inset
19574
19575
19576 \end_layout
19577
19578 \begin_layout Standard
19579 For more information about the package 
19580 \series bold
19581 caption
19582 \series default
19583  we refer to its documentation 
19584 \begin_inset LatexCommand cite
19585 key "caption,caption-de"
19586
19587 \end_inset
19588
19589 .
19590 \end_layout
19591
19592 \begin_layout Standard
19593 To change the label name from e.g.
19594  
19595 \begin_inset Quotes eld
19596 \end_inset
19597
19598 Figure
19599 \begin_inset Quotes erd
19600 \end_inset
19601
19602  to 
19603 \begin_inset Quotes eld
19604 \end_inset
19605
19606 Image
19607 \begin_inset Quotes erd
19608 \end_inset
19609
19610  use this preamble command:
19611 \end_layout
19612
19613 \begin_layout Standard
19614
19615 \series bold
19616
19617 \backslash
19618 renewcommand{
19619 \backslash
19620 fnum@figure}{Image~
19621 \backslash
19622 thefigure}
19623 \end_layout
19624
19625 \begin_layout Standard
19626 where 
19627 \series bold
19628
19629 \backslash
19630 thefigure
19631 \series default
19632  inserts the figure number and
19633 \series bold
19634  
19635 \begin_inset Quotes eld
19636 \end_inset
19637
19638 ~
19639 \series default
19640
19641 \begin_inset Quotes erd
19642 \end_inset
19643
19644  creates a protected space.
19645 \end_layout
19646
19647 \begin_layout Standard
19648 \begin_inset VSpace bigskip
19649 \end_inset
19650
19651 If you are using a 
19652 \series bold
19653 koma-script
19654 \series default
19655
19656 \begin_inset LatexCommand index
19657 name "LaTeX-packages ! koma-script"
19658
19659 \end_inset
19660
19661  document class (
19662 \family sans
19663 article (koma-script)
19664 \family default
19665
19666 \family sans
19667 book (koma-script)
19668 \family default
19669
19670 \family sans
19671 letter (koma-script)
19672 \family default
19673 , or 
19674 \family sans
19675 report (koma-script)
19676 \family default
19677 \InsetSpace \thinspace{}
19678 ), you can alternatively to the 
19679 \series bold
19680 caption
19681 \series default
19682  package use 
19683 \series bold
19684 koma-script
19685 \series default
19686 's built-in command 
19687 \series bold
19688
19689 \backslash
19690 setkomafont
19691 \series default
19692 .
19693  For example, to have the caption label in bold, add this command to your
19694  document preamble:
19695 \end_layout
19696
19697 \begin_layout Standard
19698
19699 \series bold
19700
19701 \backslash
19702 setkomafont{captionlabel}{
19703 \backslash
19704 bfseries}
19705 \end_layout
19706
19707 \begin_layout Standard
19708 For more information about 
19709 \series bold
19710
19711 \backslash
19712 setkomafont
19713 \series default
19714  we refer to the 
19715 \series bold
19716 koma-script
19717 \series default
19718  documentation 
19719 \begin_inset LatexCommand cite
19720 key "koma-script,koma-script-de"
19721
19722 \end_inset
19723
19724 .
19725 \end_layout
19726
19727 \begin_layout Standard
19728 \begin_inset ERT
19729 status collapsed
19730
19731 \begin_layout Standard
19732
19733
19734 \backslash
19735 captionsetup[figure]{labelfont={tt}, textfont=it, indention=1cm, labelsep=period
19736 }
19737 \end_layout
19738
19739 \end_inset
19740
19741
19742 \begin_inset Note Note
19743 status open
19744
19745 \begin_layout Standard
19746 The caption format is changed only for this example.
19747 \end_layout
19748
19749 \end_inset
19750
19751
19752 \end_layout
19753
19754 \begin_layout Standard
19755 \begin_inset Float figure
19756 placement !p
19757 wide false
19758 sideways false
19759 status open
19760
19761 \begin_layout Standard
19762 \align center
19763 \begin_inset Graphics
19764         filename clipart/mobius.eps
19765         lyxscale 50
19766         scale 50
19767
19768 \end_inset
19769
19770
19771 \end_layout
19772
19773 \begin_layout Standard
19774 \begin_inset Caption
19775
19776 \begin_layout Standard
19777 \begin_inset LatexCommand label
19778 name "fig:This-is-an-fig"
19779
19780 \end_inset
19781
19782 This is an example figure caption that is longer than one line to show the
19783  different caption format.
19784  Here a self-defined caption format is used.
19785 \end_layout
19786
19787 \end_inset
19788
19789
19790 \end_layout
19791
19792 \end_inset
19793
19794
19795 \end_layout
19796
19797 \begin_layout Standard
19798 \begin_inset ERT
19799 status collapsed
19800
19801 \begin_layout Standard
19802
19803
19804 \backslash
19805 captionsetup[figure]{labelfont={bf,sf}, textfont=rm, indention=0cm, labelsep=col
19806 on}
19807 \end_layout
19808
19809 \end_inset
19810
19811
19812 \end_layout
19813
19814 \begin_layout Standard
19815 \begin_inset Float table
19816 placement !p
19817 wide false
19818 sideways false
19819 status open
19820
19821 \begin_layout Standard
19822 \begin_inset Caption
19823
19824 \begin_layout Standard
19825 \begin_inset LatexCommand label
19826 name "tab:This-is-an-tab"
19827
19828 \end_inset
19829
19830 This is an example table caption that is longer than one line to show the
19831  different caption format.
19832  Here the standard caption format for tables in this document is used.
19833 \end_layout
19834
19835 \end_inset
19836
19837
19838 \end_layout
19839
19840 \begin_layout Standard
19841 \align center
19842 \begin_inset Tabular
19843 <lyxtabular version="3" rows="1" columns="5">
19844 <features>
19845 <column alignment="center" valignment="top" leftline="true" width="0">
19846 <column alignment="center" valignment="top" leftline="true" width="0">
19847 <column alignment="center" valignment="top" leftline="true" width="0">
19848 <column alignment="center" valignment="top" leftline="true" width="0">
19849 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
19850 <row topline="true" bottomline="true">
19851 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19852 \begin_inset Text
19853
19854 \begin_layout Standard
19855 a
19856 \end_layout
19857
19858 \end_inset
19859 </cell>
19860 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19861 \begin_inset Text
19862
19863 \begin_layout Standard
19864 b
19865 \end_layout
19866
19867 \end_inset
19868 </cell>
19869 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19870 \begin_inset Text
19871
19872 \begin_layout Standard
19873 c
19874 \end_layout
19875
19876 \end_inset
19877 </cell>
19878 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19879 \begin_inset Text
19880
19881 \begin_layout Standard
19882 d
19883 \end_layout
19884
19885 \end_inset
19886 </cell>
19887 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19888 \begin_inset Text
19889
19890 \begin_layout Standard
19891 e
19892 \end_layout
19893
19894 \end_inset
19895 </cell>
19896 </row>
19897 </lyxtabular>
19898
19899 \end_inset
19900
19901
19902 \end_layout
19903
19904 \end_inset
19905
19906
19907 \end_layout
19908
19909 \begin_layout Section
19910 Caption Placement
19911 \begin_inset LatexCommand index
19912 name "Caption ! Placement"
19913
19914 \end_inset
19915
19916
19917 \begin_inset LatexCommand index
19918 name "Floats ! Caption Placement"
19919
19920 \end_inset
19921
19922
19923 \begin_inset LatexCommand label
19924 name "sec:Caption-Placement"
19925
19926 \end_inset
19927
19928
19929 \end_layout
19930
19931 \begin_layout Standard
19932 The common caption placement rule is:
19933 \end_layout
19934
19935 \begin_layout Description
19936 Figure: Caption is set below the figure
19937 \end_layout
19938
19939 \begin_layout Description
19940 Table: Caption is set above the table
19941 \end_layout
19942
19943 \begin_layout Standard
19944 Having the caption above the table is unfortunately not supported in LaTeX's
19945  standard classes.
19946  That means if you are using the document classes 
19947 \family sans
19948 article
19949 \family default
19950
19951 \family sans
19952 book
19953 \family default
19954
19955 \family sans
19956 letter
19957 \family default
19958 , or 
19959 \family sans
19960 report
19961 \family default
19962  there will be no space between the caption and the table.
19963  To insert the needed space, add the following option to the load command
19964  of the LaTeX-package 
19965 \series bold
19966 caption
19967 \series default
19968  in your document preamble
19969 \begin_inset Foot
19970 status collapsed
19971
19972 \begin_layout Standard
19973 See section\InsetSpace ~
19974
19975 \begin_inset LatexCommand ref
19976 reference "sec:Caption-Formatting"
19977
19978 \end_inset
19979
19980  for more information of the package 
19981 \series bold
19982 caption
19983 \series default
19984 .
19985 \end_layout
19986
19987 \end_inset
19988
19989 :
19990 \end_layout
19991
19992 \begin_layout Standard
19993
19994 \series bold
19995 tableposition=top
19996 \end_layout
19997
19998 \begin_layout Standard
19999 If you are using a 
20000 \series bold
20001 koma-script
20002 \series default
20003
20004 \begin_inset LatexCommand index
20005 name "LaTeX-packages ! koma-script"
20006
20007 \end_inset
20008
20009  document class (
20010 \family sans
20011 article (koma-script)
20012 \family default
20013
20014 \family sans
20015 book (koma-script)
20016 \family default
20017
20018 \family sans
20019 letter (koma-script)
20020 \family default
20021 , or 
20022 \family sans
20023 report (koma-script)
20024 \family default
20025 \InsetSpace \thinspace{}
20026 ), you can alternatively to the 
20027 \series bold
20028 caption
20029 \series default
20030  package set the document class option 
20031 \series bold
20032 tablecaptionabove
20033 \series default
20034 , or you can use the environment 
20035 \family sans
20036 caption\InsetSpace ~
20037 above
20038 \family default
20039  instead of the 
20040 \family sans
20041 caption
20042 \family default
20043  environment.
20044 \end_layout
20045
20046 \begin_layout Standard
20047 \begin_inset VSpace bigskip
20048 \end_inset
20049
20050 It is also possible to set the caption beside a figure or table.
20051  To get this the LaTeX-package 
20052 \series bold
20053 sidecap
20054 \series default
20055
20056 \begin_inset LatexCommand index
20057 name "LaTeX-packages ! sidecap"
20058
20059 \end_inset
20060
20061  has to be loaded in the document preamble with the line
20062 \end_layout
20063
20064 \begin_layout Standard
20065
20066 \series bold
20067
20068 \backslash
20069 usepackage[option]{sidecap}
20070 \end_layout
20071
20072 \begin_layout Standard
20073 If you set no option, the caption is placed on the side of the outer page
20074  margin -- to the right on odd pages, to the left on even pages.
20075  You can change the placement to inner margin with the option 
20076 \series bold
20077 innercaption
20078 \series default
20079 .
20080  To force the placement always to the right or left, use the option 
20081 \series bold
20082 rightcaption
20083 \series default
20084  or 
20085 \series bold
20086 leftcaption
20087 \series default
20088 , respectively.
20089 \end_layout
20090
20091 \begin_layout Standard
20092 To place in LyX the caption of a float on the side, it is necessary to add
20093  these commands to the document preamble:
20094 \end_layout
20095
20096 \begin_layout Standard
20097
20098 \lyxline
20099
20100 \end_layout
20101
20102 \begin_layout Standard
20103
20104 \series bold
20105
20106 \backslash
20107 newcommand{
20108 \backslash
20109 TabBesBeg}{%
20110 \newline
20111
20112 \begin_inset ERT
20113 status collapsed
20114
20115 \begin_layout Standard
20116
20117
20118 \backslash
20119 hphantom{ }
20120 \end_layout
20121
20122 \end_inset
20123
20124
20125 \backslash
20126 let
20127 \backslash
20128 MyTable
20129 \backslash
20130 table
20131 \newline
20132
20133 \begin_inset ERT
20134 status collapsed
20135
20136 \begin_layout Standard
20137
20138
20139 \backslash
20140 hphantom{ }
20141 \end_layout
20142
20143 \end_inset
20144
20145
20146 \backslash
20147 let
20148 \backslash
20149 MyEndtable
20150 \backslash
20151 endtable
20152 \newline
20153
20154 \begin_inset ERT
20155 status collapsed
20156
20157 \begin_layout Standard
20158
20159
20160 \backslash
20161 hphantom{ }
20162 \end_layout
20163
20164 \end_inset
20165
20166
20167 \backslash
20168 renewenvironment{table}{
20169 \backslash
20170 begin{SCtable}}{
20171 \backslash
20172 end{SCtable}}}
20173 \end_layout
20174
20175 \begin_layout Standard
20176
20177 \series bold
20178
20179 \backslash
20180 newcommand{
20181 \backslash
20182 TabBesEnd}{%
20183 \newline
20184
20185 \begin_inset ERT
20186 status collapsed
20187
20188 \begin_layout Standard
20189
20190
20191 \backslash
20192 hphantom{ }
20193 \end_layout
20194
20195 \end_inset
20196
20197
20198 \backslash
20199 let
20200 \backslash
20201 table
20202 \backslash
20203 MyTable
20204 \newline
20205
20206 \begin_inset ERT
20207 status collapsed
20208
20209 \begin_layout Standard
20210
20211
20212 \backslash
20213 hphantom{ }
20214 \end_layout
20215
20216 \end_inset
20217
20218
20219 \backslash
20220 let
20221 \backslash
20222 endtable
20223 \backslash
20224 MyEndtable
20225 \end_layout
20226
20227 \begin_layout Standard
20228
20229 \series bold
20230
20231 \backslash
20232 newcommand{
20233 \backslash
20234 FigBesBeg}{%
20235 \newline
20236
20237 \begin_inset ERT
20238 status collapsed
20239
20240 \begin_layout Standard
20241
20242
20243 \backslash
20244 hphantom{ }
20245 \end_layout
20246
20247 \end_inset
20248
20249
20250 \backslash
20251 let
20252 \backslash
20253 MyFigure
20254 \backslash
20255 f\SpecialChar \textcompwordmark{}
20256 igure
20257 \newline
20258
20259 \begin_inset ERT
20260 status collapsed
20261
20262 \begin_layout Standard
20263
20264
20265 \backslash
20266 hphantom{ }
20267 \end_layout
20268
20269 \end_inset
20270
20271
20272 \backslash
20273 let
20274 \backslash
20275 MyEndf\SpecialChar \textcompwordmark{}
20276 igure
20277 \backslash
20278 endf\SpecialChar \textcompwordmark{}
20279 igure
20280 \newline
20281
20282 \begin_inset ERT
20283 status collapsed
20284
20285 \begin_layout Standard
20286
20287
20288 \backslash
20289 hphantom{ }
20290 \end_layout
20291
20292 \end_inset
20293
20294
20295 \backslash
20296 renewenvironment{f\SpecialChar \textcompwordmark{}
20297 igure}{
20298 \backslash
20299 begin{SCf\SpecialChar \textcompwordmark{}
20300 igure}}{
20301 \backslash
20302 end{SCf\SpecialChar \textcompwordmark{}
20303 igure}}}
20304 \end_layout
20305
20306 \begin_layout Standard
20307
20308 \series bold
20309
20310 \backslash
20311 newcommand{
20312 \backslash
20313 FigBesEnd}{%
20314 \newline
20315
20316 \begin_inset ERT
20317 status collapsed
20318
20319 \begin_layout Standard
20320
20321
20322 \backslash
20323 hphantom{ }
20324 \end_layout
20325
20326 \end_inset
20327
20328
20329 \backslash
20330 let
20331 \backslash
20332 f\SpecialChar \textcompwordmark{}
20333 igure
20334 \backslash
20335 MyFigure
20336 \newline
20337
20338 \begin_inset ERT
20339 status collapsed
20340
20341 \begin_layout Standard
20342
20343
20344 \backslash
20345 hphantom{ }
20346 \end_layout
20347
20348 \end_inset
20349
20350
20351 \backslash
20352 let
20353 \backslash
20354 endf\SpecialChar \textcompwordmark{}
20355 igure
20356 \backslash
20357 MyEndf\SpecialChar \textcompwordmark{}
20358 igure}
20359 \end_layout
20360
20361 \begin_layout Standard
20362
20363 \lyxline
20364
20365 \end_layout
20366
20367 \begin_layout Standard
20368 The commands allow you to redefine the floats so that the caption is set
20369  on the side.
20370  For figure floats use the command
20371 \end_layout
20372
20373 \begin_layout Standard
20374
20375 \series bold
20376
20377 \backslash
20378 FigBesBeg
20379 \end_layout
20380
20381 \begin_layout Standard
20382 in ERT before the float.
20383  Behind the float insert the command
20384 \end_layout
20385
20386 \begin_layout Standard
20387
20388 \series bold
20389
20390 \backslash
20391 FigBesEnd
20392 \end_layout
20393
20394 \begin_layout Standard
20395 in ERT to get back to the original float definition.
20396 \end_layout
20397
20398 \begin_layout Standard
20399 For table floats use the corresponding commands
20400 \end_layout
20401
20402 \begin_layout Standard
20403
20404 \series bold
20405
20406 \backslash
20407 TabBesBeg
20408 \series default
20409  and 
20410 \series bold
20411
20412 \backslash
20413 TabBesEnd
20414 \end_layout
20415
20416 \begin_layout Standard
20417 Figure\InsetSpace ~
20418
20419 \begin_inset LatexCommand ref
20420 reference "fig:cap-beside-fig"
20421
20422 \end_inset
20423
20424  and Table\InsetSpace ~
20425
20426 \begin_inset LatexCommand ref
20427 reference "tab:cap-beside-tab"
20428
20429 \end_inset
20430
20431  are examples where the caption is set beside.
20432 \end_layout
20433
20434 \begin_layout Standard
20435 You can see in the examples that the caption text appears at the top of
20436  the floats for table floats and at the bottom for figure floats.
20437  To change this, you can use the command
20438 \end_layout
20439
20440 \begin_layout Standard
20441
20442 \series bold
20443
20444 \backslash
20445 sidecaptionvpos{float type}{placement}
20446 \end_layout
20447
20448 \begin_layout Standard
20449 in the document preamble or in ERT before the float.
20450  The float type is either 
20451 \family sans
20452 figure
20453 \family default
20454  or 
20455 \family sans
20456 table
20457 \family default
20458 , the placement can be 
20459 \begin_inset Quotes eld
20460 \end_inset
20461
20462
20463 \family sans
20464 t
20465 \family default
20466
20467 \begin_inset Quotes erd
20468 \end_inset
20469
20470  for top, 
20471 \begin_inset Quotes eld
20472 \end_inset
20473
20474
20475 \family sans
20476 c
20477 \family default
20478
20479 \begin_inset Quotes erd
20480 \end_inset
20481
20482  for center, or 
20483 \begin_inset Quotes eld
20484 \end_inset
20485
20486
20487 \family sans
20488 b
20489 \family default
20490
20491 \begin_inset Quotes erd
20492 \end_inset
20493
20494  for bottom.
20495  To have for example the caption of figure floats vertically centered, use
20496  the command
20497 \end_layout
20498
20499 \begin_layout Standard
20500
20501 \series bold
20502
20503 \backslash
20504 sidecaptionvpos{f\SpecialChar \textcompwordmark{}
20505 igure}{c}
20506 \end_layout
20507
20508 \begin_layout Standard
20509 This was used for Figure\InsetSpace ~
20510
20511 \begin_inset LatexCommand ref
20512 reference "fig:cap-beside-fig-2"
20513
20514 \end_inset
20515
20516 .
20517 \end_layout
20518
20519 \begin_layout Standard
20520 \begin_inset VSpace defskip
20521 \end_inset
20522
20523 For more information about the package 
20524 \series bold
20525 sidecap
20526 \series default
20527  we refer to its documentation 
20528 \begin_inset LatexCommand cite
20529 key "sidecap"
20530
20531 \end_inset
20532
20533 .
20534 \end_layout
20535
20536 \begin_layout Standard
20537 \begin_inset Note Greyedout
20538 status open
20539
20540 \begin_layout Standard
20541
20542 \series bold
20543 Note:
20544 \series default
20545  The LaTeX-package 
20546 \series bold
20547 hypcap
20548 \series default
20549
20550 \begin_inset LatexCommand index
20551 name "LaTeX-packages ! hypcap"
20552
20553 \end_inset
20554
20555 , described in section\InsetSpace ~
20556
20557 \begin_inset LatexCommand ref
20558 reference "sub:Reference-Position"
20559
20560 \end_inset
20561
20562 , has no effect on floats with the caption set beside.
20563 \end_layout
20564
20565 \end_inset
20566
20567
20568 \end_layout
20569
20570 \begin_layout Standard
20571 \begin_inset ERT
20572 status collapsed
20573
20574 \begin_layout Standard
20575
20576
20577 \backslash
20578 FigBesBeg 
20579 \end_layout
20580
20581 \end_inset
20582
20583
20584 \end_layout
20585
20586 \begin_layout Standard
20587 \begin_inset Float figure
20588 wide false
20589 sideways false
20590 status open
20591
20592 \begin_layout Standard
20593 \begin_inset Graphics
20594         filename clipart/escher-lsd.eps
20595         scale 75
20596
20597 \end_inset
20598
20599
20600 \end_layout
20601
20602 \begin_layout Standard
20603 \begin_inset Caption
20604
20605 \begin_layout Standard
20606 \begin_inset LatexCommand label
20607 name "fig:cap-beside-fig"
20608
20609 \end_inset
20610
20611 This is a caption beside a figure.
20612 \end_layout
20613
20614 \end_inset
20615
20616
20617 \end_layout
20618
20619 \end_inset
20620
20621
20622 \end_layout
20623
20624 \begin_layout Standard
20625 \begin_inset ERT
20626 status collapsed
20627
20628 \begin_layout Standard
20629
20630
20631 \backslash
20632 TabBesBeg 
20633 \end_layout
20634
20635 \end_inset
20636
20637
20638 \end_layout
20639
20640 \begin_layout Standard
20641 \begin_inset Float table
20642 wide false
20643 sideways false
20644 status open
20645
20646 \begin_layout Standard
20647 \begin_inset Caption
20648
20649 \begin_layout Standard
20650 \begin_inset LatexCommand label
20651 name "tab:cap-beside-tab"
20652
20653 \end_inset
20654
20655 This is a caption beside a table.
20656 \end_layout
20657
20658 \end_inset
20659
20660
20661 \end_layout
20662
20663 \begin_layout Standard
20664 \begin_inset Tabular
20665 <lyxtabular version="3" rows="4" columns="5">
20666 <features>
20667 <column alignment="center" valignment="top" leftline="true" width="0">
20668 <column alignment="center" valignment="top" leftline="true" width="0">
20669 <column alignment="center" valignment="top" leftline="true" width="0">
20670 <column alignment="center" valignment="top" leftline="true" width="0">
20671 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
20672 <row topline="true">
20673 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20674 \begin_inset Text
20675
20676 \begin_layout Standard
20677 a
20678 \end_layout
20679
20680 \end_inset
20681 </cell>
20682 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20683 \begin_inset Text
20684
20685 \begin_layout Standard
20686
20687 \end_layout
20688
20689 \end_inset
20690 </cell>
20691 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20692 \begin_inset Text
20693
20694 \begin_layout Standard
20695 b
20696 \end_layout
20697
20698 \end_inset
20699 </cell>
20700 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20701 \begin_inset Text
20702
20703 \begin_layout Standard
20704
20705 \end_layout
20706
20707 \end_inset
20708 </cell>
20709 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20710 \begin_inset Text
20711
20712 \begin_layout Standard
20713 c
20714 \end_layout
20715
20716 \end_inset
20717 </cell>
20718 </row>
20719 <row topline="true">
20720 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20721 \begin_inset Text
20722
20723 \begin_layout Standard
20724
20725 \end_layout
20726
20727 \end_inset
20728 </cell>
20729 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20730 \begin_inset Text
20731
20732 \begin_layout Standard
20733 d
20734 \end_layout
20735
20736 \end_inset
20737 </cell>
20738 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20739 \begin_inset Text
20740
20741 \begin_layout Standard
20742
20743 \end_layout
20744
20745 \end_inset
20746 </cell>
20747 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20748 \begin_inset Text
20749
20750 \begin_layout Standard
20751 e
20752 \end_layout
20753
20754 \end_inset
20755 </cell>
20756 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20757 \begin_inset Text
20758
20759 \begin_layout Standard
20760
20761 \end_layout
20762
20763 \end_inset
20764 </cell>
20765 </row>
20766 <row topline="true">
20767 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20768 \begin_inset Text
20769
20770 \begin_layout Standard
20771 f
20772 \end_layout
20773
20774 \end_inset
20775 </cell>
20776 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20777 \begin_inset Text
20778
20779 \begin_layout Standard
20780
20781 \end_layout
20782
20783 \end_inset
20784 </cell>
20785 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20786 \begin_inset Text
20787
20788 \begin_layout Standard
20789 g
20790 \end_layout
20791
20792 \end_inset
20793 </cell>
20794 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20795 \begin_inset Text
20796
20797 \begin_layout Standard
20798
20799 \end_layout
20800
20801 \end_inset
20802 </cell>
20803 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20804 \begin_inset Text
20805
20806 \begin_layout Standard
20807 h
20808 \end_layout
20809
20810 \end_inset
20811 </cell>
20812 </row>
20813 <row topline="true" bottomline="true">
20814 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20815 \begin_inset Text
20816
20817 \begin_layout Standard
20818
20819 \end_layout
20820
20821 \end_inset
20822 </cell>
20823 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20824 \begin_inset Text
20825
20826 \begin_layout Standard
20827 i
20828 \end_layout
20829
20830 \end_inset
20831 </cell>
20832 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20833 \begin_inset Text
20834
20835 \begin_layout Standard
20836
20837 \end_layout
20838
20839 \end_inset
20840 </cell>
20841 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20842 \begin_inset Text
20843
20844 \begin_layout Standard
20845 j
20846 \end_layout
20847
20848 \end_inset
20849 </cell>
20850 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20851 \begin_inset Text
20852
20853 \begin_layout Standard
20854
20855 \end_layout
20856
20857 \end_inset
20858 </cell>
20859 </row>
20860 </lyxtabular>
20861
20862 \end_inset
20863
20864
20865 \end_layout
20866
20867 \end_inset
20868
20869
20870 \end_layout
20871
20872 \begin_layout Standard
20873 \begin_inset ERT
20874 status collapsed
20875
20876 \begin_layout Standard
20877
20878
20879 \backslash
20880 TabBesEnd
20881 \end_layout
20882
20883 \end_inset
20884
20885
20886 \end_layout
20887
20888 \begin_layout Standard
20889 \begin_inset ERT
20890 status collapsed
20891
20892 \begin_layout Standard
20893
20894
20895 \backslash
20896 sidecaptionvpos{figure}{c}
20897 \end_layout
20898
20899 \end_inset
20900
20901
20902 \begin_inset Float figure
20903 wide false
20904 sideways false
20905 status open
20906
20907 \begin_layout Standard
20908 \begin_inset Graphics
20909         filename clipart/escher-lsd.eps
20910         scale 75
20911
20912 \end_inset
20913
20914
20915 \end_layout
20916
20917 \begin_layout Standard
20918 \begin_inset Caption
20919
20920 \begin_layout Standard
20921 \begin_inset LatexCommand label
20922 name "fig:cap-beside-fig-2"
20923
20924 \end_inset
20925
20926 This is a vertically centered caption beside a figure.
20927 \end_layout
20928
20929 \end_inset
20930
20931
20932 \end_layout
20933
20934 \end_inset
20935
20936
20937 \end_layout
20938
20939 \begin_layout Standard
20940 \begin_inset ERT
20941 status collapsed
20942
20943 \begin_layout Standard
20944
20945
20946 \backslash
20947 FigBesEnd
20948 \end_layout
20949
20950 \end_inset
20951
20952
20953 \end_layout
20954
20955 \begin_layout Section
20956 Listings of Floats
20957 \begin_inset LatexCommand label
20958 name "sec:Listings-of-Floats"
20959
20960 \end_inset
20961
20962
20963 \begin_inset LatexCommand index
20964 name "Floats ! Float Lists"
20965
20966 \end_inset
20967
20968
20969 \end_layout
20970
20971 \begin_layout Standard
20972 Similar to the the table of contents where the sections of the document
20973  are listed, there are listings for all float types, like the figures of
20974  the documents.
20975  You can insert them via the 
20976 \family sans
20977 Insert\SpecialChar \menuseparator
20978 List\InsetSpace ~
20979 /\InsetSpace ~
20980 TOC
20981 \family default
20982  sub menus.
20983 \end_layout
20984
20985 \begin_layout Standard
20986 The list entries are the float captions or its short title, the float number,
20987  and the page number where they appear in the document.
20988 \end_layout
20989
20990 \begin_layout Standard
20991 You can find the list of figures and tables at the end of this document.
20992 \end_layout
20993
20994 \begin_layout Chapter
20995 Notes
20996 \end_layout
20997
20998 \begin_layout Section
20999 \begin_inset ERT
21000 status collapsed
21001
21002 \begin_layout Standard
21003
21004
21005 \backslash
21006 texorpdfstring{
21007 \end_layout
21008
21009 \end_inset
21010
21011 LyX
21012 \begin_inset ERT
21013 status collapsed
21014
21015 \begin_layout Standard
21016
21017 }{LyX}
21018 \end_layout
21019
21020 \end_inset
21021
21022  Notes
21023 \begin_inset LatexCommand label
21024 name "sec:LyX-Notes"
21025
21026 \end_inset
21027
21028
21029 \begin_inset LatexCommand index
21030 name "Notes ! LyX Notes"
21031
21032 \end_inset
21033
21034
21035 \begin_inset Note Note
21036 status collapsed
21037
21038 \begin_layout Standard
21039 The command 
21040 \backslash
21041 texorpdfstring is provided by the LaTeX-package hyperref to avoid that ligatures
21042  are displayed wrongly in PDF-bookmarks.
21043  For more information about this, have a look at 
21044 \begin_inset LatexCommand cite
21045 key "hyperref"
21046
21047 \end_inset
21048
21049 .
21050 \end_layout
21051
21052 \end_inset
21053
21054
21055 \end_layout
21056
21057 \begin_layout Standard
21058 Notes are inserted with the toolbar button 
21059 \begin_inset Graphics
21060         filename ../images/note-insert.xpm
21061         scale 85
21062
21063 \end_inset
21064
21065  or the menu 
21066 \family sans
21067 Insert\SpecialChar \menuseparator
21068 Note
21069 \family default
21070 .
21071  There are five types of notes:
21072 \end_layout
21073
21074 \begin_layout Description
21075 LyX\InsetSpace ~
21076 Note This note type is for internal notes that won't appear in the output.
21077  Its note-box looks like this:
21078 \newline
21079
21080 \newline
21081
21082 \begin_inset Graphics
21083         filename clipart/LyXNoteImageQt4.png
21084         display none
21085         scale 85
21086
21087 \end_inset
21088
21089  
21090 \begin_inset Note Note
21091 status open
21092
21093 \begin_layout Standard
21094 This is text in a note box that doesn't appear in the output.
21095 \end_layout
21096
21097 \end_inset
21098
21099
21100 \end_layout
21101
21102 \begin_layout Description
21103 Comment This note also doesn't appear in the output but it appears as LaTeX-comm
21104 ent, when you export the document to LaTeX via the menu 
21105 \family sans
21106 File\SpecialChar \menuseparator
21107 Export\SpecialChar \menuseparator
21108 LaTeX (pdflatex) / LaTeX (plain)
21109 \family default
21110 .
21111  Its note-box looks like this:
21112 \newline
21113
21114 \newline
21115
21116 \begin_inset Graphics
21117         filename clipart/CommentNoteImageQt4.png
21118         display none
21119         scale 85
21120
21121 \end_inset
21122
21123  
21124 \begin_inset Note Comment
21125 status open
21126
21127 \begin_layout Standard
21128 This is text in a note box that only appears as comment in LaTeX-files.
21129 \end_layout
21130
21131 \end_inset
21132
21133
21134 \end_layout
21135
21136 \begin_layout Description
21137 Greyed\InsetSpace ~
21138 Out This note will appear in the output as grey text.
21139  Its note-box looks like this:
21140 \newline
21141
21142 \newline
21143
21144 \begin_inset Graphics
21145         filename clipart/GreyedOutNoteImageQt4.png
21146         display none
21147         scale 85
21148
21149 \end_inset
21150
21151
21152 \newline
21153
21154 \begin_inset ERT
21155 status collapsed
21156
21157 \begin_layout Standard
21158
21159
21160 \backslash
21161 renewenvironment{lyxgreyedout}
21162 \end_layout
21163
21164 \begin_layout Standard
21165
21166 {
21167 \backslash
21168 textcolor[gray]{0.8}
21169 \backslash
21170 bgroup}{
21171 \backslash
21172 egroup}
21173 \end_layout
21174
21175 \end_inset
21176
21177
21178 \begin_inset Note Greyedout
21179 status open
21180
21181 \begin_layout Standard
21182 This is text
21183 \begin_inset Foot
21184 status open
21185
21186 \begin_layout Standard
21187 This is an example footnote within a greyed out note.
21188 \end_layout
21189
21190 \end_inset
21191
21192  of a comment that appears in the output as grey text.
21193 \end_layout
21194
21195 \end_inset
21196
21197
21198 \begin_inset ERT
21199 status collapsed
21200
21201 \begin_layout Standard
21202
21203
21204 \backslash
21205 renewenvironment{lyxgreyedout}
21206 \end_layout
21207
21208 \begin_layout Standard
21209
21210 {
21211 \backslash
21212 textcolor{blue}
21213 \backslash
21214 bgroup}{
21215 \backslash
21216 egroup}
21217 \end_layout
21218
21219 \end_inset
21220
21221
21222 \begin_inset Note Note
21223 status collapsed
21224
21225 \begin_layout Standard
21226 The greyed out note is here redefined to show it with the original LyX definitio
21227 n because greyed out notes are redefined in the preamble of this document,
21228  as described below, to have blue text.
21229 \end_layout
21230
21231 \end_inset
21232
21233
21234 \newline
21235
21236 \newline
21237 As you can see in the example, the first line of greyed out notes is a bit
21238  indented and greyed out notes can have footnotes.
21239 \end_layout
21240
21241 \begin_layout Description
21242 Framed This note will appear in the output as framed text.
21243  Its note-box looks like this:
21244 \newline
21245
21246 \newline
21247
21248 \begin_inset Graphics
21249         filename clipart/FramedNoteImageQt4.png
21250         display none
21251         scale 85
21252
21253 \end_inset
21254
21255  
21256 \begin_inset Note Framed
21257 status open
21258
21259 \begin_layout Standard
21260 This is text in a note box that appears framed in the output.
21261 \end_layout
21262
21263 \end_inset
21264
21265  In contrary to framed boxes
21266 \begin_inset Foot
21267 status collapsed
21268
21269 \begin_layout Standard
21270 Framed boxes are described in section\InsetSpace ~
21271
21272 \begin_inset LatexCommand ref
21273 reference "sec:Framed-Boxes"
21274
21275 \end_inset
21276
21277 .
21278 \end_layout
21279
21280 \end_inset
21281
21282  the frame uses always the whole text width and the note is set into its
21283  own paragraph.
21284 \end_layout
21285
21286 \begin_layout Description
21287 Shaded This note will appear in the output with red background color.
21288  Its note box looks like this:
21289 \newline
21290
21291 \newline
21292
21293 \begin_inset Graphics
21294         filename clipart/ShadedNoteImageQt4.png
21295         display none
21296         scale 85
21297
21298 \end_inset
21299
21300
21301 \begin_inset Note Shaded
21302 status open
21303
21304 \begin_layout Standard
21305 This text in a note box appears in the output with red background.
21306 \end_layout
21307
21308 \end_inset
21309
21310 In contrary to colored boxes
21311 \begin_inset Foot
21312 status collapsed
21313
21314 \begin_layout Standard
21315 Colored boxes are described in section\InsetSpace ~
21316
21317 \begin_inset LatexCommand ref
21318 reference "sec:Colored-Boxes"
21319
21320 \end_inset
21321
21322 .
21323 \end_layout
21324
21325 \end_inset
21326
21327  the note uses always the whole text width and the note is set into its
21328  own paragraph.
21329 \end_layout
21330
21331 \begin_layout Standard
21332 \begin_inset VSpace bigskip
21333 \end_inset
21334
21335 When you use the toolbar button to insert notes, a 
21336 \family sans
21337 LyX\InsetSpace ~
21338 Note
21339 \family default
21340  is inserted.
21341  You can switch between the five note types by right-clicking on the note-box.
21342  
21343 \family roman
21344 \series medium
21345 \bar no
21346 If you want to turn existing text into a note, mark it and click on the
21347  note
21348 \family default
21349 \series default
21350 \bar default
21351  toolbar 
21352 \family roman
21353 \series medium
21354 \bar no
21355 button
21356 \family default
21357 \series default
21358 \bar default
21359 .
21360 \end_layout
21361
21362 \begin_layout Standard
21363 \begin_inset VSpace bigskip
21364 \end_inset
21365
21366 You can change the text color of the greyed out notes in the preamble with
21367  the following command:
21368 \end_layout
21369
21370 \begin_layout Standard
21371
21372 \series bold
21373
21374 \backslash
21375 renewenvironment{lyxgreyedout}
21376 \newline
21377
21378 \begin_inset ERT
21379 status collapsed
21380
21381 \begin_layout Standard
21382
21383
21384 \backslash
21385 hphantom{ }
21386 \end_layout
21387
21388 \end_inset
21389
21390 {
21391 \backslash
21392 textcolor{color}
21393 \backslash
21394 bgroup}{
21395 \backslash
21396 egroup}
21397 \end_layout
21398
21399 \begin_layout Standard
21400 The available colors and the method to define own colors is explained in
21401  section\InsetSpace ~
21402
21403 \begin_inset LatexCommand ref
21404 reference "sec:Colored-Tables"
21405
21406 \end_inset
21407
21408 .
21409 \end_layout
21410
21411 \begin_layout Standard
21412 Notes that appear in blue in this document are set using greyed out notes
21413  with blue text.
21414 \end_layout
21415
21416 \begin_layout Standard
21417 \begin_inset VSpace bigskip
21418 \end_inset
21419
21420
21421 \end_layout
21422
21423 \begin_layout Standard
21424 The text style of 
21425 \family sans
21426 Framed
21427 \family default
21428  and 
21429 \family sans
21430 Shaded
21431 \family default
21432  notes can be set in the 
21433 \family sans
21434 Text Style
21435 \family default
21436  dialog.
21437 \end_layout
21438
21439 \begin_layout Standard
21440 The default frame width for 
21441 \family sans
21442 Framed
21443 \family default
21444  notes is 0.4\InsetSpace \thinspace{}
21445 pt; it can be changed by changing the size 
21446 \series bold
21447
21448 \backslash
21449 FrameRule
21450 \series default
21451 .
21452  The default space between the note content and the frame is 9\InsetSpace \thinspace{}
21453 pt; it can
21454  be changed by changing the size 
21455 \series bold
21456
21457 \backslash
21458 FrameSep
21459 \series default
21460 .
21461  For example the frame appearance of the following 
21462 \family sans
21463 Framed
21464 \family default
21465  note is set with the ERT commands
21466 \end_layout
21467
21468 \begin_layout Standard
21469
21470 \series bold
21471
21472 \backslash
21473 FrameRule 5pt 
21474 \backslash
21475 FrameSep 0.5cm
21476 \end_layout
21477
21478 \begin_layout Standard
21479 \begin_inset ERT
21480 status collapsed
21481
21482 \begin_layout Standard
21483
21484
21485 \backslash
21486 FrameRule 5pt 
21487 \backslash
21488 FrameSep 0.5cm
21489 \end_layout
21490
21491 \end_inset
21492
21493
21494 \begin_inset Note Framed
21495 status open
21496
21497 \begin_layout Standard
21498 This is text in a 
21499 \family sans
21500 Framed
21501 \family default
21502  note.
21503 \end_layout
21504
21505 \end_inset
21506
21507
21508 \begin_inset ERT
21509 status collapsed
21510
21511 \begin_layout Standard
21512
21513
21514 \backslash
21515 FrameRule 0.4pt 
21516 \backslash
21517 FrameSep 9pt
21518 \end_layout
21519
21520 \end_inset
21521
21522
21523 \end_layout
21524
21525 \begin_layout Standard
21526 \begin_inset VSpace bigskip
21527 \end_inset
21528
21529
21530 \end_layout
21531
21532 \begin_layout Standard
21533 For 
21534 \family sans
21535 Shaded
21536 \family default
21537  notes the default space between the note content and the note border is
21538  3\InsetSpace \thinspace{}
21539 pt; it can be changed by changing the size 
21540 \series bold
21541
21542 \backslash
21543 fboxsep
21544 \series default
21545 .
21546 \newline
21547 The default background color red can be changed with the command 
21548 \series bold
21549
21550 \backslash
21551 def\SpecialChar \textcompwordmark{}
21552 inecolor{shadebox}
21553 \series default
21554 .
21555  The scheme of the 
21556 \series bold
21557
21558 \backslash
21559 def\SpecialChar \textcompwordmark{}
21560 inecolor
21561 \series default
21562  command is explained in section\InsetSpace ~
21563
21564 \begin_inset LatexCommand ref
21565 reference "sec:Colored-Tables"
21566
21567 \end_inset
21568
21569
21570 \begin_inset Foot
21571 status collapsed
21572
21573 \begin_layout Standard
21574 Note that 
21575 \series bold
21576
21577 \backslash
21578 def
21579 \series default
21580 \SpecialChar \textcompwordmark{}
21581
21582 \series bold
21583 inecolor
21584 \series default
21585  requires the LaTeX-package 
21586 \series bold
21587 color
21588 \series default
21589  in the preamble, see section\InsetSpace ~
21590
21591 \begin_inset LatexCommand ref
21592 reference "sec:Colored-Boxes"
21593
21594 \end_inset
21595
21596 .
21597 \end_layout
21598
21599 \end_inset
21600
21601 .
21602 \end_layout
21603
21604 \begin_layout Standard
21605 For example the appearance of the following 
21606 \family sans
21607 Shaded
21608 \family default
21609  note is set with the ERT commands
21610 \end_layout
21611
21612 \begin_layout Standard
21613
21614 \series bold
21615
21616 \backslash
21617 fboxsep 0.5cm
21618 \series default
21619
21620 \newline
21621
21622 \series bold
21623
21624 \backslash
21625 def\SpecialChar \textcompwordmark{}
21626 inecolor{shadecolor}{cmyk}{0.5,0,1,0.5}
21627 \end_layout
21628
21629 \begin_layout Standard
21630 \begin_inset ERT
21631 status collapsed
21632
21633 \begin_layout Standard
21634
21635
21636 \backslash
21637 fboxsep 0.5cm
21638 \end_layout
21639
21640 \end_inset
21641
21642
21643 \begin_inset ERT
21644 status collapsed
21645
21646 \begin_layout Standard
21647
21648
21649 \backslash
21650 definecolor{shadecolor}{cmyk}{0.5,0,1,0.5}
21651 \end_layout
21652
21653 \end_inset
21654
21655
21656 \begin_inset Note Shaded
21657 status open
21658
21659 \begin_layout Standard
21660
21661 \color yellow
21662 This is yellow text in a
21663 \color none
21664  
21665 \family sans
21666 \color yellow
21667 Shaded
21668 \family default
21669 \color none
21670  
21671 \color yellow
21672 note with darkgreen background.
21673 \end_layout
21674
21675 \end_inset
21676
21677
21678 \begin_inset ERT
21679 status collapsed
21680
21681 \begin_layout Standard
21682
21683
21684 \backslash
21685 fboxsep 3pt
21686 \end_layout
21687
21688 \end_inset
21689
21690
21691 \begin_inset ERT
21692 status collapsed
21693
21694 \begin_layout Standard
21695
21696
21697 \backslash
21698 definecolor{shadecolor}{rgb}{1,0,0}
21699 \end_layout
21700
21701 \end_inset
21702
21703
21704 \end_layout
21705
21706 \begin_layout Section
21707 Footnotes
21708 \begin_inset LatexCommand label
21709 name "sec:Footnotes"
21710
21711 \end_inset
21712
21713
21714 \begin_inset LatexCommand index
21715 name "Notes ! Footnotes"
21716
21717 \end_inset
21718
21719
21720 \begin_inset LatexCommand index
21721 name "Footnotes"
21722
21723 \end_inset
21724
21725
21726 \end_layout
21727
21728 \begin_layout Standard
21729 Footnotes can be inserted using the toolbar button 
21730 \begin_inset Graphics
21731         filename ../images/footnote-insert.xpm
21732         scale 85
21733
21734 \end_inset
21735
21736  or the menu 
21737 \family sans
21738 Insert\SpecialChar \menuseparator
21739 Footnote
21740 \family default
21741 .
21742  
21743 \family roman
21744 \series medium
21745 \bar no
21746 You'll see
21747 \family default
21748 \series default
21749 \bar default
21750  then the following footnote-box: 
21751 \begin_inset Graphics
21752         filename clipart/footnoteQt4.png
21753         scale 80
21754
21755 \end_inset
21756
21757  
21758 \family roman
21759 \series medium
21760 \bar no
21761 where you can enter the footnote text.
21762  If you want to turn existing text into a footnote, mark it and click on
21763  the footnote
21764 \family default
21765 \series default
21766 \bar default
21767  toolbar 
21768 \family roman
21769 \series medium
21770 \bar no
21771 button
21772 \family default
21773 \series default
21774 \bar default
21775 .
21776 \end_layout
21777
21778 \begin_layout Standard
21779 Here is an example footnote:
21780 \family roman
21781 \series medium
21782 \bar no
21783
21784 \begin_inset Foot
21785 status open
21786
21787 \begin_layout Standard
21788 \begin_inset LatexCommand label
21789 name "foot:This-is-an"
21790
21791 \end_inset
21792
21793 This is an example footnote.
21794 \end_layout
21795
21796 \end_inset
21797
21798
21799 \family default
21800 \series default
21801 \bar default
21802
21803 \begin_inset ERT
21804 status collapsed
21805
21806 \begin_layout Standard
21807
21808
21809 \backslash
21810 newcounter{MyRepeatFoot}
21811 \end_layout
21812
21813 \begin_layout Standard
21814
21815
21816 \backslash
21817 setcounter{MyRepeatFoot}{
21818 \backslash
21819 thefootnote}
21820 \end_layout
21821
21822 \end_inset
21823
21824
21825 \end_layout
21826
21827 \begin_layout Standard
21828 The footnote will appear in the output as a superscript number at the text
21829  position where the footnote box is placed.
21830  The footnote text is placed at the bottom of the current page.
21831  The footnote number is calculated by LaTeX, the numbers are consecutive.
21832  It depends on your document-class, if the footnote number is reset for
21833  every chapter.
21834 \end_layout
21835
21836 \begin_layout Standard
21837 Footnotes can be referenced like floats: Insert a label into the footnote
21838  and cross-reference this label in the text as described in section\InsetSpace ~
21839
21840 \begin_inset LatexCommand ref
21841 reference "sec:Referencing-Floats"
21842
21843 \end_inset
21844
21845 .
21846 \newline
21847 This is a cross-reference of Footnote\InsetSpace ~
21848
21849 \begin_inset LatexCommand ref
21850 reference "foot:This-is-an"
21851
21852 \end_inset
21853
21854 .
21855 \end_layout
21856
21857 \begin_layout Standard
21858 \begin_inset VSpace defskip
21859 \end_inset
21860
21861 To use footnotes within tables, you have to use minipages, see section\InsetSpace ~
21862
21863 \begin_inset LatexCommand ref
21864 reference "sec:Minipages"
21865
21866 \end_inset
21867
21868 .
21869  Footnotes within longtables are described in section\InsetSpace ~
21870
21871 \begin_inset LatexCommand ref
21872 reference "sub:Footnotes-in-Longtables"
21873
21874 \end_inset
21875
21876 .
21877 \end_layout
21878
21879 \begin_layout Standard
21880 \begin_inset VSpace defskip
21881 \end_inset
21882
21883 To create only a mark for a footnote, use the command 
21884 \series bold
21885
21886 \backslash
21887 footnotemark[number]
21888 \series default
21889  in ERT.
21890  This is used when you have the same annotation several times in a text
21891  but doesn't want to print the footnote text every time.
21892 \newline
21893 As you don't know
21894  the number of the repeating footnote while you are writing the text, you
21895  have to store its number.
21896  For the following footnote mark example, these commands were inserted in
21897  ERT behind Footnote\InsetSpace ~
21898
21899 \begin_inset LatexCommand ref
21900 reference "foot:This-is-an"
21901
21902 \end_inset
21903
21904  to store the footnote number:
21905 \end_layout
21906
21907 \begin_layout Standard
21908
21909 \series bold
21910
21911 \backslash
21912 newcounter{MyRepeatFoot}
21913 \newline
21914
21915 \backslash
21916 setcounter{MyRepeatFoot}{
21917 \backslash
21918 thefootnote}
21919 \end_layout
21920
21921 \begin_layout Standard
21922 The footnote mark was then created with this command:
21923 \end_layout
21924
21925 \begin_layout Standard
21926
21927 \series bold
21928
21929 \backslash
21930 footnotemark[
21931 \backslash
21932 theMyRepeatFoot]
21933 \end_layout
21934
21935 \begin_layout Standard
21936 Here is an example footnote mark:
21937 \family roman
21938 \series medium
21939 \bar no
21940
21941 \begin_inset ERT
21942 status collapsed
21943
21944 \begin_layout Standard
21945
21946
21947 \backslash
21948 footnotemark[
21949 \backslash
21950 theMyRepeatFoot]
21951 \end_layout
21952
21953 \end_inset
21954
21955
21956 \end_layout
21957
21958 \begin_layout Subsection
21959 Footnote Numbering
21960 \begin_inset LatexCommand label
21961 name "sub:Footnote-Numbering"
21962
21963 \end_inset
21964
21965
21966 \begin_inset LatexCommand index
21967 name "Footnotes ! Numbering"
21968
21969 \end_inset
21970
21971
21972 \end_layout
21973
21974 \begin_layout Standard
21975 To reset the footnote number back to 1 after each section
21976 \family roman
21977 , add this command to your document preamble:
21978 \end_layout
21979
21980 \begin_layout Standard
21981
21982 \series bold
21983
21984 \backslash
21985 @addtoreset{footnote}{section}
21986 \end_layout
21987
21988 \begin_layout Standard
21989 \begin_inset VSpace bigskip
21990 \end_inset
21991
21992 The following preamble command changes the footnote numbering style to small
21993  roman numerals:
21994 \end_layout
21995
21996 \begin_layout Standard
21997
21998 \series bold
21999
22000 \backslash
22001 renewcommand{
22002 \backslash
22003 thefootnote}{
22004 \backslash
22005 roman{footnote}}
22006 \end_layout
22007
22008 \begin_layout Standard
22009 \begin_inset ERT
22010 status collapsed
22011
22012 \begin_layout Standard
22013
22014
22015 \backslash
22016 renewcommand{
22017 \backslash
22018 thefootnote}{
22019 \backslash
22020 roman{footnote}}
22021 \end_layout
22022
22023 \end_inset
22024
22025  This is a footnote with roman numbering:
22026 \begin_inset Foot
22027 status open
22028
22029 \begin_layout Standard
22030 This is an example footnote with roman numbering.
22031 \end_layout
22032
22033 \end_inset
22034
22035
22036 \begin_inset ERT
22037 status collapsed
22038
22039 \begin_layout Standard
22040
22041
22042 \backslash
22043 renewcommand{
22044 \backslash
22045 thefootnote}{
22046 \backslash
22047 arabic{footnote}}
22048 \end_layout
22049
22050 \end_inset
22051
22052
22053 \end_layout
22054
22055 \begin_layout Standard
22056 To change the numbering style to capital roman numerals replace in the command
22057  above 
22058 \series bold
22059
22060 \backslash
22061 roman
22062 \series default
22063  by 
22064 \series bold
22065
22066 \backslash
22067 Roman
22068 \series default
22069 .
22070  To 
22071 \begin_inset Quotes eld
22072 \end_inset
22073
22074 number
22075 \begin_inset Quotes erd
22076 \end_inset
22077
22078  footnotes with capital or small Latin letters use 
22079 \series bold
22080
22081 \backslash
22082 Alph
22083 \series default
22084  or 
22085 \series bold
22086
22087 \backslash
22088 alph
22089 \series default
22090 , respectively.
22091  To 
22092 \begin_inset Quotes eld
22093 \end_inset
22094
22095 number
22096 \begin_inset Quotes erd
22097 \end_inset
22098
22099  footnotes with symbols use 
22100 \series bold
22101
22102 \backslash
22103 fnsymbol
22104 \series default
22105 .
22106 \end_layout
22107
22108 \begin_layout Standard
22109 \begin_inset Note Greyedout
22110 status open
22111
22112 \begin_layout Standard
22113
22114 \series bold
22115 Note:
22116 \series default
22117  You can only number 26 footnotes with Latin letters, because this numbering
22118  is limited to single letters.
22119 \end_layout
22120
22121 \end_inset
22122
22123
22124 \newline
22125
22126 \begin_inset Note Greyedout
22127 status open
22128
22129 \begin_layout Standard
22130
22131 \series bold
22132 Note:
22133 \series default
22134  You can only number 9 footnotes with symbols.
22135 \end_layout
22136
22137 \end_inset
22138
22139
22140 \end_layout
22141
22142 \begin_layout Standard
22143 To return to the default numbering style when you changed to another one,
22144  use 
22145 \series bold
22146
22147 \backslash
22148 arabic
22149 \series default
22150  instead of 
22151 \series bold
22152
22153 \backslash
22154 roman
22155 \series default
22156  in the command above.
22157 \end_layout
22158
22159 \begin_layout Standard
22160 \begin_inset VSpace bigskip
22161 \end_inset
22162
22163
22164 \end_layout
22165
22166 \begin_layout Standard
22167 If you want to have footnotes numbered in the scheme 
22168 \begin_inset Quotes eld
22169 \end_inset
22170
22171 chapter.footnote
22172 \begin_inset Quotes erd
22173 \end_inset
22174
22175 , add the following command to your document preamble:
22176 \end_layout
22177
22178 \begin_layout Standard
22179
22180 \series bold
22181
22182 \backslash
22183 numberwithin{footnote}{chapter}
22184 \end_layout
22185
22186 \begin_layout Standard
22187 To be able to use the command 
22188 \series bold
22189
22190 \backslash
22191 numberwithin
22192 \series default
22193 , set in the tab 
22194 \family sans
22195 Math\InsetSpace ~
22196 Options
22197 \family default
22198  in the document settings the option 
22199 \family sans
22200 Use\InsetSpace ~
22201 AMS\InsetSpace ~
22202 math\InsetSpace ~
22203 package
22204 \family default
22205 .
22206 \end_layout
22207
22208 \begin_layout Standard
22209 \begin_inset ERT
22210 status collapsed
22211
22212 \begin_layout Standard
22213
22214
22215 \backslash
22216 numberwithin{footnote}{chapter}
22217 \end_layout
22218
22219 \end_inset
22220
22221 This is another example footnote:
22222 \series bold
22223
22224 \begin_inset Foot
22225 status open
22226
22227 \begin_layout Standard
22228 This is a footnote numbered in the scheme 
22229 \begin_inset Quotes eld
22230 \end_inset
22231
22232 chapter.footnote
22233 \begin_inset Quotes erd
22234 \end_inset
22235
22236 .
22237 \end_layout
22238
22239 \end_inset
22240
22241
22242 \series default
22243
22244 \begin_inset ERT
22245 status collapsed
22246
22247 \begin_layout Standard
22248
22249
22250 \backslash
22251 renewcommand{
22252 \backslash
22253 thefootnote}{
22254 \backslash
22255 arabic{footnote}}
22256 \end_layout
22257
22258 \end_inset
22259
22260
22261 \end_layout
22262
22263 \begin_layout Standard
22264 \begin_inset Note Greyedout
22265 status open
22266
22267 \begin_layout Standard
22268
22269 \series bold
22270 Note:
22271 \series default
22272  
22273 \series bold
22274
22275 \backslash
22276 numberwithin
22277 \series default
22278  always prints out the footnote number as arabic number; previous redefinitions
22279  to get non-arabic numbers are overwritten.
22280 \end_layout
22281
22282 \end_inset
22283
22284
22285 \end_layout
22286
22287 \begin_layout Standard
22288 So to get for example the scheme 
22289 \begin_inset Quotes eld
22290 \end_inset
22291
22292 chapter.
22293 \backslash
22294 Roman{footnote}
22295 \begin_inset Quotes erd
22296 \end_inset
22297
22298 , use this command instead of 
22299 \series bold
22300
22301 \backslash
22302 numberwithin
22303 \series default
22304 :
22305 \end_layout
22306
22307 \begin_layout Standard
22308
22309 \series bold
22310
22311 \backslash
22312 renewcommand{
22313 \backslash
22314 thefootnote}{
22315 \backslash
22316 thechapter.
22317 \backslash
22318 Roman{footnote}}
22319 \end_layout
22320
22321 \begin_layout Subsection
22322 Footnote Placement
22323 \begin_inset LatexCommand index
22324 name "Footnotes ! Placement"
22325
22326 \end_inset
22327
22328
22329 \end_layout
22330
22331 \begin_layout Standard
22332 If you have several footnotes in one page, they appear without vertical
22333  space between them at the bottom of the page.
22334  To make them better readable you can e.\InsetSpace \thinspace{}
22335 g.\InsetSpace ~
22336 add 1.5\InsetSpace \thinspace{}
22337 mm space with the following
22338  preamble command:
22339 \end_layout
22340
22341 \begin_layout Standard
22342
22343 \series bold
22344
22345 \backslash
22346 let
22347 \backslash
22348 myFoot
22349 \backslash
22350 footnote
22351 \newline
22352
22353 \backslash
22354 renewcommand{
22355 \backslash
22356 footnote}[1]{
22357 \backslash
22358 myFoot{#1
22359 \backslash
22360 vspace{1.5mm}}}
22361 \end_layout
22362
22363 \begin_layout Standard
22364 \begin_inset VSpace bigskip
22365 \end_inset
22366
22367 In a two-column document the footnotes appear at the bottom of every column,
22368  see Figure\InsetSpace ~
22369
22370 \begin_inset LatexCommand ref
22371 reference "fig:Standard-footnote-placement"
22372
22373 \end_inset
22374
22375 .
22376  If the footnotes should only appear at the bottom of the right column,
22377  as in Figure\InsetSpace ~
22378
22379 \begin_inset LatexCommand ref
22380 reference "fig:Footnote-placement-in"
22381
22382 \end_inset
22383
22384 , use the LaTeX-package 
22385 \series bold
22386 ftnright
22387 \series default
22388
22389 \begin_inset LatexCommand index
22390 name "LaTeX-packages ! ftnright"
22391
22392 \end_inset
22393
22394  with this command in the document preamble:
22395 \end_layout
22396
22397 \begin_layout Standard
22398
22399 \series bold
22400
22401 \backslash
22402 usepackage{ftnright}
22403 \end_layout
22404
22405 \begin_layout Standard
22406 \begin_inset Float figure
22407 placement !h
22408 wide false
22409 sideways false
22410 status open
22411
22412 \begin_layout Standard
22413 \begin_inset ERT
22414 status collapsed
22415
22416 \begin_layout Standard
22417
22418
22419 \backslash
22420 framebox{
22421 \end_layout
22422
22423 \end_inset
22424
22425
22426 \begin_inset Graphics
22427         filename clipart/without_fntright.pdf
22428         width 100col%
22429
22430 \end_inset
22431
22432
22433 \begin_inset ERT
22434 status collapsed
22435
22436 \begin_layout Standard
22437
22438 }
22439 \end_layout
22440
22441 \end_inset
22442
22443
22444 \end_layout
22445
22446 \begin_layout Standard
22447 \begin_inset Caption
22448
22449 \begin_layout Standard
22450 \begin_inset LatexCommand label
22451 name "fig:Standard-footnote-placement"
22452
22453 \end_inset
22454
22455 Standard footnote placement in two-column documents.
22456 \end_layout
22457
22458 \end_inset
22459
22460
22461 \end_layout
22462
22463 \end_inset
22464
22465
22466 \end_layout
22467
22468 \begin_layout Standard
22469 \begin_inset Float figure
22470 placement !h
22471 wide false
22472 sideways false
22473 status open
22474
22475 \begin_layout Standard
22476 \begin_inset ERT
22477 status collapsed
22478
22479 \begin_layout Standard
22480
22481
22482 \backslash
22483 framebox{
22484 \end_layout
22485
22486 \end_inset
22487
22488
22489 \begin_inset Graphics
22490         filename clipart/with_fntright.pdf
22491         width 100col%
22492
22493 \end_inset
22494
22495
22496 \begin_inset ERT
22497 status collapsed
22498
22499 \begin_layout Standard
22500
22501 }
22502 \end_layout
22503
22504 \end_inset
22505
22506
22507 \end_layout
22508
22509 \begin_layout Standard
22510 \begin_inset Caption
22511
22512 \begin_layout Standard
22513 \begin_inset LatexCommand label
22514 name "fig:Footnote-placement-in"
22515
22516 \end_inset
22517
22518 Footnote placement in two-column documents when the LaTeX-package 
22519 \series bold
22520 ftnright
22521 \series default
22522  is used.
22523 \end_layout
22524
22525 \end_inset
22526
22527
22528 \end_layout
22529
22530 \end_inset
22531
22532
22533 \end_layout
22534
22535 \begin_layout Standard
22536 \begin_inset VSpace bigskip
22537 \end_inset
22538
22539 In some scientific literature it is usual to collect the footnotes and print
22540  them in a separate paragraph at the the end of a section, like in Figure\InsetSpace ~
22541
22542 \begin_inset LatexCommand ref
22543 reference "fig:Endnotes----footnotes"
22544
22545 \end_inset
22546
22547 .
22548  They are then so called 
22549 \begin_inset Quotes eld
22550 \end_inset
22551
22552 endnotes
22553 \begin_inset Quotes erd
22554 \end_inset
22555
22556 .
22557  To use endnotes instead of footnotes in your document, load the LaTeX-package
22558  
22559 \series bold
22560 endnotes
22561 \series default
22562
22563 \begin_inset LatexCommand index
22564 name "LaTeX-packages ! endnotes"
22565
22566 \end_inset
22567
22568  with the document preamble lines
22569 \end_layout
22570
22571 \begin_layout Standard
22572
22573 \series bold
22574
22575 \backslash
22576 usepackage{endnotes}
22577 \newline
22578
22579 \backslash
22580 let
22581 \backslash
22582 footnote
22583 \backslash
22584 endnote
22585 \end_layout
22586
22587 \begin_layout Standard
22588 To insert the collected footnotes, insert the command
22589 \end_layout
22590
22591 \begin_layout Standard
22592
22593 \series bold
22594
22595 \backslash
22596 theendnotes
22597 \end_layout
22598
22599 \begin_layout Standard
22600 in ERT at the the end of a section or chapter.
22601 \end_layout
22602
22603 \begin_layout Standard
22604 \begin_inset Float figure
22605 wide false
22606 sideways false
22607 status open
22608
22609 \begin_layout Standard
22610 \align center
22611 \begin_inset ERT
22612 status collapsed
22613
22614 \begin_layout Standard
22615
22616
22617 \backslash
22618 framebox{
22619 \end_layout
22620
22621 \end_inset
22622
22623
22624 \begin_inset Graphics
22625         filename clipart/endnotes.pdf
22626
22627 \end_inset
22628
22629
22630 \begin_inset ERT
22631 status collapsed
22632
22633 \begin_layout Standard
22634
22635 }
22636 \end_layout
22637
22638 \end_inset
22639
22640
22641 \end_layout
22642
22643 \begin_layout Standard
22644 \begin_inset Caption
22645
22646 \begin_layout Standard
22647 \begin_inset LatexCommand label
22648 name "fig:Endnotes----footnotes"
22649
22650 \end_inset
22651
22652 Endnotes -- footnotes are printed in a separate paragraph at the end of
22653  sections or chapters.
22654 \end_layout
22655
22656 \end_inset
22657
22658
22659 \end_layout
22660
22661 \end_inset
22662
22663
22664 \end_layout
22665
22666 \begin_layout Standard
22667 \begin_inset VSpace defskip
22668 \end_inset
22669
22670 The paragraph heading for the endnotes isn't automatically translated into
22671  the document language, this must be done manually.
22672  The following preamble command translate the default English name 
22673 \begin_inset Quotes eld
22674 \end_inset
22675
22676 Notes
22677 \begin_inset Quotes erd
22678 \end_inset
22679
22680  to the German translation 
22681 \begin_inset Quotes eld
22682 \end_inset
22683
22684 Anmerkungen
22685 \begin_inset Quotes erd
22686 \end_inset
22687
22688 :
22689 \end_layout
22690
22691 \begin_layout Standard
22692
22693 \series bold
22694
22695 \backslash
22696 renewcommand{
22697 \backslash
22698 notesname}{Anmerkungen}
22699 \end_layout
22700
22701 \begin_layout Standard
22702 \begin_inset VSpace defskip
22703 \end_inset
22704
22705 The numbering of endnotes can be changed like the footnote numbering as
22706  described in section\InsetSpace ~
22707
22708 \begin_inset LatexCommand ref
22709 reference "sub:Footnote-Numbering"
22710
22711 \end_inset
22712
22713 ; just replace the command 
22714 \series bold
22715
22716 \backslash
22717 thefootnote
22718 \series default
22719  by 
22720 \series bold
22721
22722 \backslash
22723 theendnote
22724 \series default
22725 .
22726  To reset the endnote number use the command 
22727 \series bold
22728
22729 \backslash
22730 @addtoreset
22731 \series default
22732  as described in section\InsetSpace ~
22733
22734 \begin_inset LatexCommand ref
22735 reference "sub:Footnote-Numbering"
22736
22737 \end_inset
22738
22739  and replace the command parameter 
22740 \series bold
22741 footnote
22742 \series default
22743  by 
22744 \series bold
22745 endnote
22746 \series default
22747 .
22748 \end_layout
22749
22750 \begin_layout Standard
22751 To create only a mark for an endnote, use the command 
22752 \series bold
22753
22754 \backslash
22755 endnotemark[number]
22756 \series default
22757  similar to the command 
22758 \series bold
22759
22760 \backslash
22761 footnotemark
22762 \series default
22763 , described in section\InsetSpace ~
22764
22765 \begin_inset LatexCommand ref
22766 reference "sec:Footnotes"
22767
22768 \end_inset
22769
22770 .
22771 \end_layout
22772
22773 \begin_layout Standard
22774 \begin_inset VSpace bigskip
22775 \end_inset
22776
22777 Footnotes can also be placed in the page margin and the footnote text alignment
22778  can be changed, see the LaTeX-package 
22779 \series bold
22780 footmisc
22781 \series default
22782
22783 \begin_inset LatexCommand index
22784 name "LaTeX-packages ! footmisc"
22785
22786 \end_inset
22787
22788
22789 \begin_inset LatexCommand cite
22790 key "footmisc"
22791
22792 \end_inset
22793
22794  for more information about this.
22795 \end_layout
22796
22797 \begin_layout Standard
22798 For various further footnote formatting issues have a look at LaTeX-books,
22799  
22800 \begin_inset LatexCommand cite
22801 key "latexcompanion,latexguide,latexbook"
22802
22803 \end_inset
22804
22805 .
22806 \end_layout
22807
22808 \begin_layout Section
22809 Margin Notes
22810 \begin_inset LatexCommand index
22811 name "Notes ! Margin Notes"
22812
22813 \end_inset
22814
22815
22816 \end_layout
22817
22818 \begin_layout Standard
22819 Margin notes look and behave in LyX like footnotes.
22820  They are inserted via the menu 
22821 \family sans
22822 Insert\SpecialChar \menuseparator
22823 Marginal\InsetSpace ~
22824 Note
22825 \family default
22826  or the toolbar button 
22827 \begin_inset Graphics
22828         filename ../images/marginalnote-insert.xpm
22829         scale 85
22830
22831 \end_inset
22832
22833 .
22834  A grey 
22835 \family roman
22836 \series medium
22837 box with the
22838 \family default
22839 \series default
22840  red 
22841 \family roman
22842 \series medium
22843 label 
22844 \begin_inset Quotes eld
22845 \end_inset
22846
22847 margin
22848 \begin_inset Quotes erd
22849 \end_inset
22850
22851  appears where you can enter the text of the margin note.
22852 \end_layout
22853
22854 \begin_layout Standard
22855 At the side is an example margin note.
22856 \family roman
22857 \series medium
22858
22859 \begin_inset Marginal
22860 status open
22861
22862 \begin_layout Standard
22863 This is a margin note.
22864 \end_layout
22865
22866 \end_inset
22867
22868
22869 \end_layout
22870
22871 \begin_layout Standard
22872 Margin notes appear at the right side in single-sided documents.
22873  In double-sided documents they appear in the outer margin -- left on even
22874  pages, right on odd pages.
22875  The text of margin notes is aligned opposite to the outer margin -- right-align
22876 ed when the note appears in the left margin.
22877  The first line of the margin note is placed at the position of the text
22878  line where it is inserted in the document.
22879 \end_layout
22880
22881 \begin_layout Standard
22882 \begin_inset VSpace bigskip
22883 \end_inset
22884
22885 To place the margin note in the inner margin, add the command
22886 \end_layout
22887
22888 \begin_layout Standard
22889
22890 \series bold
22891
22892 \backslash
22893 reversemarginpar
22894 \end_layout
22895
22896 \begin_layout Standard
22897 in ERT before a margin note.
22898  The new placement is valid for all following margin notes.
22899 \begin_inset ERT
22900 status collapsed
22901
22902 \begin_layout Standard
22903
22904
22905 \backslash
22906 reversemarginpar 
22907 \end_layout
22908
22909 \end_inset
22910
22911
22912 \begin_inset Marginal
22913 status open
22914
22915 \begin_layout Standard
22916 This is a margin note in the inner margin.
22917 \end_layout
22918
22919 \end_inset
22920
22921
22922 \series bold
22923
22924 \newline
22925
22926 \series default
22927
22928 \begin_inset Note Greyedout
22929 status open
22930
22931 \begin_layout Standard
22932
22933 \series bold
22934 Note:
22935 \series default
22936  There is often not enough space in the inner margin so that the notes are
22937  not correctly displayed in the output.
22938 \end_layout
22939
22940 \end_inset
22941
22942
22943 \end_layout
22944
22945 \begin_layout Standard
22946 \begin_inset ERT
22947 status collapsed
22948
22949 \begin_layout Standard
22950
22951
22952 \backslash
22953 normalmarginpar 
22954 \end_layout
22955
22956 \end_inset
22957
22958 To return to the default placement insert the command
22959 \end_layout
22960
22961 \begin_layout Standard
22962
22963 \series bold
22964
22965 \backslash
22966 normalmarginpar
22967 \end_layout
22968
22969 \begin_layout Standard
22970 in ERT.
22971  
22972 \begin_inset Note Greyedout
22973 status open
22974
22975 \begin_layout Standard
22976
22977 \series bold
22978 Note:
22979 \series default
22980  The command is ignored when it is within a paragraph where also the command
22981  
22982 \series bold
22983
22984 \backslash
22985 reversemarginpar
22986 \series default
22987  is inserted.
22988 \end_layout
22989
22990 \end_inset
22991
22992
22993 \end_layout
22994
22995 \begin_layout Standard
22996 \begin_inset VSpace bigskip
22997 \end_inset
22998
22999
23000 \family roman
23001 \series medium
23002
23003 \begin_inset Marginal
23004 status open
23005
23006 \begin_layout Standard
23007 AVeryLongMarginParWord that isn't hyphenated.
23008 \end_layout
23009
23010 \end_inset
23011
23012
23013 \family default
23014 \series default
23015 Similar to the case described in section\InsetSpace ~
23016
23017 \begin_inset LatexCommand ref
23018 reference "sub:Multiple-Lines-in"
23019
23020 \end_inset
23021
23022 , long words cannot be hyphenated when they are the first word in a margin
23023  note.
23024  To avoid this, insert the command
23025 \end_layout
23026
23027 \begin_layout Standard
23028
23029 \series bold
23030
23031 \backslash
23032 hspace{0pt}
23033 \end_layout
23034
23035 \begin_layout Standard
23036 in ERT before the word
23037 \family roman
23038 \series medium
23039 .
23040 \begin_inset Marginal
23041 status open
23042
23043 \begin_layout Standard
23044 \begin_inset ERT
23045 status collapsed
23046
23047 \begin_layout Standard
23048
23049
23050 \backslash
23051 hspace{0pt}
23052 \end_layout
23053
23054 \end_inset
23055
23056 AVeryLongMarginParWord that is hyphenated.
23057 \end_layout
23058
23059 \end_inset
23060
23061
23062 \end_layout
23063
23064 \begin_layout Standard
23065 \begin_inset VSpace bigskip
23066 \end_inset
23067
23068
23069 \end_layout
23070
23071 \begin_layout Standard
23072 \begin_inset Note Greyedout
23073 status open
23074
23075 \begin_layout Standard
23076
23077 \series bold
23078 Note:
23079 \series default
23080  Margin notes can normally not be used inside tables, floats, and footnotes.
23081 \end_layout
23082
23083 \end_inset
23084
23085
23086 \end_layout
23087
23088 \begin_layout Standard
23089 \begin_inset VSpace bigskip
23090 \end_inset
23091
23092
23093 \end_layout
23094
23095 \begin_layout Standard
23096 \begin_inset ERT
23097 status collapsed
23098
23099 \begin_layout Standard
23100
23101
23102 \backslash
23103 ifmarginnote
23104 \end_layout
23105
23106 \end_inset
23107
23108
23109 \begin_inset Note Note
23110 status open
23111
23112 \begin_layout Standard
23113 The following section will only be displayed when you have the LaTeX-package
23114  
23115 \series bold
23116 marginnote
23117 \series default
23118  is installed.
23119 \end_layout
23120
23121 \end_inset
23122
23123
23124 \end_layout
23125
23126 \begin_layout Standard
23127 This restriction can be evaded by using the LaTeX-package 
23128 \series bold
23129 marginnote
23130 \series default
23131
23132 \begin_inset LatexCommand index
23133 name "LaTeX-packages ! marginnote"
23134
23135 \end_inset
23136
23137 .
23138  By adding these two lines to your document preamble, the command used by
23139  LyX for margin notes is redefined to use the command provided by the 
23140 \series bold
23141 marginnote
23142 \series default
23143 -package:
23144 \end_layout
23145
23146 \begin_layout Standard
23147
23148 \series bold
23149
23150 \backslash
23151 usepackage{marginnote}
23152 \newline
23153
23154 \backslash
23155 let
23156 \backslash
23157 marginpar
23158 \backslash
23159 marginnote
23160 \end_layout
23161
23162 \begin_layout Standard
23163 This is also used in this document because 
23164 \series bold
23165 marginnote
23166 \series default
23167  has another useful feature: You can set a vertical offset for the note.
23168  This is often needed when too many margin notes are too close together
23169  or for a better page layout.
23170  The offset is set in LyX as ERT directly behind the margin note in the
23171  scheme
23172 \end_layout
23173
23174 \begin_layout Standard
23175
23176 \series bold
23177 [offset]
23178 \end_layout
23179
23180 \begin_layout Standard
23181 where the offset is a length with one of the units listed in Table\InsetSpace ~
23182
23183 \begin_inset LatexCommand ref
23184 reference "tab:Units"
23185
23186 \end_inset
23187
23188 .
23189  A negative value shifts the note up, a positive value shifts it down.
23190  
23191 \family roman
23192 \series medium
23193 For example the margin note beside this text line is shifted up 1.5\InsetSpace \thinspace{}
23194 cm with
23195  the ERT-command 
23196 \begin_inset Quotes eld
23197 \end_inset
23198
23199
23200 \family default
23201 \series bold
23202 [-1.5cm]
23203 \family roman
23204 \series medium
23205
23206 \begin_inset Quotes erd
23207 \end_inset
23208
23209
23210 \begin_inset Marginal
23211 status open
23212
23213 \begin_layout Standard
23214 This margin note is shifted up 1.5\InsetSpace \thinspace{}
23215 cm from its original position.
23216 \end_layout
23217
23218 \end_inset
23219
23220
23221 \family default
23222 \series default
23223
23224 \begin_inset ERT
23225 status collapsed
23226
23227 \begin_layout Standard
23228
23229 [-1.5cm]
23230 \end_layout
23231
23232 \end_inset
23233
23234
23235 \end_layout
23236
23237 \begin_layout Standard
23238 \begin_inset VSpace defskip
23239 \end_inset
23240
23241 With 
23242 \series bold
23243 marginnote
23244 \series default
23245  you can also change the alignment of the text in the margin note.
23246  For example the commands
23247 \end_layout
23248
23249 \begin_layout Standard
23250
23251 \series bold
23252
23253 \backslash
23254 renewcommand*{
23255 \backslash
23256 raggedleftmarginnote}{
23257 \backslash
23258 centering}
23259 \newline
23260
23261 \backslash
23262 renewcommand*{
23263 \backslash
23264 raggedrightmarginnote}{
23265 \backslash
23266 centering}
23267 \end_layout
23268
23269 \begin_layout Standard
23270 set the alignment to centered.
23271  
23272 \series bold
23273
23274 \backslash
23275 raggedleftmarginnote
23276 \series default
23277  denotes margin notes that appear at the left side.
23278 \family roman
23279 \series medium
23280
23281 \begin_inset ERT
23282 status collapsed
23283
23284 \begin_layout Standard
23285
23286
23287 \backslash
23288 renewcommand*{
23289 \backslash
23290 raggedleftmarginnote}{
23291 \backslash
23292 centering}
23293 \end_layout
23294
23295 \begin_layout Standard
23296
23297
23298 \backslash
23299 renewcommand*{
23300 \backslash
23301 raggedrightmarginnote}{
23302 \backslash
23303 centering}
23304 \end_layout
23305
23306 \end_inset
23307
23308
23309 \begin_inset Marginal
23310 status open
23311
23312 \begin_layout Standard
23313 The text of this margin note is centered.
23314 \end_layout
23315
23316 \end_inset
23317
23318
23319 \family default
23320 \series default
23321  The default is
23322 \end_layout
23323
23324 \begin_layout Standard
23325
23326 \series bold
23327
23328 \backslash
23329 renewcommand*{
23330 \backslash
23331 raggedleftmarginnote}{
23332 \backslash
23333 raggedleft}
23334 \newline
23335
23336 \backslash
23337 renewcommand*{
23338 \backslash
23339 raggedrightmarginnote}{
23340 \backslash
23341 raggedright}
23342 \family roman
23343 \series medium
23344
23345 \begin_inset ERT
23346 status collapsed
23347
23348 \begin_layout Standard
23349
23350
23351 \backslash
23352 renewcommand*{
23353 \backslash
23354 raggedleftmarginnote}{
23355 \backslash
23356 raggedleft}
23357 \end_layout
23358
23359 \begin_layout Standard
23360
23361
23362 \backslash
23363 renewcommand*{
23364 \backslash
23365 raggedrightmarginnote}{
23366 \backslash
23367 raggedright}
23368 \end_layout
23369
23370 \end_inset
23371
23372
23373 \end_layout
23374
23375 \begin_layout Standard
23376 \begin_inset VSpace defskip
23377 \end_inset
23378
23379 For the other features of 
23380 \series bold
23381 marginnote
23382 \series default
23383  we refer to its documentation 
23384 \begin_inset LatexCommand cite
23385 key "marginnote"
23386
23387 \end_inset
23388
23389 .
23390 \end_layout
23391
23392 \begin_layout Standard
23393 \begin_inset VSpace bigskip
23394 \end_inset
23395
23396 You can change the layout of margin notes by redefining its definition.
23397  To create for example a header for all margin notes with the underlined,
23398  sans-serif, and bold header text 
23399 \begin_inset Quotes eld
23400 \end_inset
23401
23402
23403 \family sans
23404 \series bold
23405 \bar under
23406 Attention!
23407 \family default
23408 \series default
23409 \bar default
23410
23411 \begin_inset Quotes erd
23412 \end_inset
23413
23414 , add this to your document preamble:
23415 \end_layout
23416
23417 \begin_layout Standard
23418
23419 \series bold
23420
23421 \backslash
23422 let
23423 \backslash
23424 myMarginpar
23425 \backslash
23426 marginpar
23427 \newline
23428
23429 \backslash
23430 renewcommand{
23431 \backslash
23432 marginpar}[1]{
23433 \backslash
23434 myMarginpar{%
23435 \newline
23436
23437 \begin_inset ERT
23438 status collapsed
23439
23440 \begin_layout Standard
23441
23442
23443 \backslash
23444 hphantom{ }
23445 \end_layout
23446
23447 \end_inset
23448
23449
23450 \backslash
23451 hspace{0pt}
23452 \backslash
23453 textsf{
23454 \backslash
23455 textbf{
23456 \backslash
23457 underbar{Attention!}}}%
23458 \newline
23459
23460 \begin_inset ERT
23461 status collapsed
23462
23463 \begin_layout Standard
23464
23465
23466 \backslash
23467 hphantom{ }
23468 \end_layout
23469
23470 \end_inset
23471
23472
23473 \backslash
23474 vspace{1.5mm}
23475 \backslash
23476
23477 \backslash
23478 #1}}
23479 \end_layout
23480
23481 \begin_layout Standard
23482
23483 \family roman
23484 \series medium
23485 \begin_inset ERT
23486 status collapsed
23487
23488 \begin_layout Standard
23489
23490
23491 \backslash
23492 let
23493 \backslash
23494 myMarginpar
23495 \backslash
23496 marginpar
23497 \end_layout
23498
23499 \begin_layout Standard
23500
23501
23502 \backslash
23503 renewcommand{
23504 \backslash
23505 marginpar}[1]{
23506 \backslash
23507 myMarginpar{%
23508 \end_layout
23509
23510 \begin_layout Standard
23511
23512    
23513 \backslash
23514 textsf{
23515 \backslash
23516 textbf{
23517 \backslash
23518 underbar{Attention!}}}%
23519 \end_layout
23520
23521 \begin_layout Standard
23522
23523    
23524 \backslash
23525 vspace{1.5mm}
23526 \backslash
23527
23528 \backslash
23529 #1}}
23530 \end_layout
23531
23532 \end_inset
23533
23534
23535 \begin_inset Marginal
23536 status open
23537
23538 \begin_layout Standard
23539 This is a margin note with a defined heading.
23540 \end_layout
23541
23542 \end_inset
23543
23544
23545 \family default
23546 \series default
23547
23548 \begin_inset ERT
23549 status collapsed
23550
23551 \begin_layout Standard
23552
23553 [-1.5cm]
23554 \end_layout
23555
23556 \end_inset
23557
23558
23559 \family roman
23560 \series medium
23561
23562 \begin_inset ERT
23563 status collapsed
23564
23565 \begin_layout Standard
23566
23567
23568 \backslash
23569 renewcommand{
23570 \backslash
23571 marginpar}[1]{
23572 \backslash
23573 myMarginpar{#1}}
23574 \end_layout
23575
23576 \end_inset
23577
23578
23579 \family default
23580 \series default
23581
23582 \begin_inset Note Note
23583 status collapsed
23584
23585 \begin_layout Standard
23586 The margin note format is changed only for this example.
23587 \end_layout
23588
23589 \end_inset
23590
23591
23592 \end_layout
23593
23594 \begin_layout Standard
23595 \begin_inset ERT
23596 status collapsed
23597
23598 \begin_layout Standard
23599
23600
23601 \backslash
23602 else
23603 \end_layout
23604
23605 \end_inset
23606
23607
23608 \begin_inset Note Note
23609 status open
23610
23611 \begin_layout Standard
23612 The following will be displayed when the LaTeX-package 
23613 \series bold
23614 marginnote
23615 \series default
23616  is not installed:
23617 \end_layout
23618
23619 \end_inset
23620
23621
23622 \end_layout
23623
23624 \begin_layout Standard
23625 You need to install the LaTeX-package 
23626 \series bold
23627 marginnote
23628 \series default
23629  to see the following part of this section in the output.
23630 \end_layout
23631
23632 \begin_layout Standard
23633 \begin_inset ERT
23634 status collapsed
23635
23636 \begin_layout Standard
23637
23638
23639 \backslash
23640 fi
23641 \end_layout
23642
23643 \end_inset
23644
23645
23646 \end_layout
23647
23648 \begin_layout Standard
23649
23650 \end_layout
23651
23652 \begin_layout Chapter
23653 Boxes
23654 \end_layout
23655
23656 \begin_layout Section
23657 Introduction
23658 \begin_inset LatexCommand index
23659 name "Boxes ! Introduction"
23660
23661 \end_inset
23662
23663
23664 \end_layout
23665
23666 \begin_layout Standard
23667 Boxes are used to format a block of text.
23668  Boxes can be used to write documents with multiple languages, see section\InsetSpace ~
23669
23670 \begin_inset LatexCommand ref
23671 reference "sec:Minipages"
23672
23673 \end_inset
23674
23675 , to frame texts, see section\InsetSpace ~
23676
23677 \begin_inset LatexCommand ref
23678 reference "sec:Framed-Boxes"
23679
23680 \end_inset
23681
23682 , to prevent words to be hyphenated, see section\InsetSpace ~
23683
23684 \begin_inset LatexCommand ref
23685 reference "sec:Prevent-Hyphenation"
23686
23687 \end_inset
23688
23689 , to align text, see section\InsetSpace ~
23690
23691 \begin_inset LatexCommand ref
23692 reference "sub:Vertical-Alignment"
23693
23694 \end_inset
23695
23696 , or to set the background color of texts, see section\InsetSpace ~
23697
23698 \begin_inset LatexCommand ref
23699 reference "sec:Colored-Boxes"
23700
23701 \end_inset
23702
23703 .
23704 \end_layout
23705
23706 \begin_layout Standard
23707 Boxes can be inserted with the menu 
23708 \family sans
23709 Insert\SpecialChar \menuseparator
23710 Box
23711 \family default
23712 .
23713  A grey box with the label 
23714 \family sans
23715 Box (Minipage)
23716 \family default
23717
23718 \begin_inset Graphics
23719         filename clipart/BoxInsetDefaultQt4.png
23720         scale 85
23721
23722 \end_inset
23723
23724 , will be inserted.
23725  The box type can be specified by right-clicking on the box.
23726  The appearing box dialog offers the 
23727 \family sans
23728 Inner\InsetSpace ~
23729 Box
23730 \family default
23731  types 
23732 \family sans
23733 Parbox
23734 \family default
23735  and 
23736 \family sans
23737 Minipage
23738 \family default
23739 .
23740  The type 
23741 \family sans
23742 Minipage
23743 \family default
23744  is the default for new boxes and is explained in section\InsetSpace ~
23745
23746 \begin_inset LatexCommand ref
23747 reference "sec:Minipages"
23748
23749 \end_inset
23750
23751 ; the type 
23752 \family sans
23753 Parbox
23754 \family default
23755  is described in section\InsetSpace ~
23756
23757 \begin_inset LatexCommand ref
23758 reference "sec:Parboxes"
23759
23760 \end_inset
23761
23762 .
23763 \end_layout
23764
23765 \begin_layout Standard
23766 Boxes aren't numbered and can therefore not be referenced like floats or
23767  footnotes.
23768 \end_layout
23769
23770 \begin_layout Standard
23771 \begin_inset Note Greyedout
23772 status open
23773
23774 \begin_layout Standard
23775
23776 \series bold
23777 Note:
23778 \series default
23779  Due to a bug in LyX you have to insert a protected space behind a box when
23780  you want to separate in a line the box from the following text with a space.
23781 \end_layout
23782
23783 \end_inset
23784
23785
23786 \end_layout
23787
23788 \begin_layout Standard
23789 \begin_inset Note Greyedout
23790 status open
23791
23792 \begin_layout Standard
23793
23794 \series bold
23795 Note:
23796 \series default
23797  Boxes must not be the item in an 
23798 \family sans
23799 Itemize
23800 \family default
23801  or 
23802 \family sans
23803 Description
23804 \family default
23805  environment.
23806 \end_layout
23807
23808 \end_inset
23809
23810
23811 \end_layout
23812
23813 \begin_layout Standard
23814 \begin_inset Note Greyedout
23815 status open
23816
23817 \begin_layout Standard
23818
23819 \series bold
23820 Note:
23821 \series default
23822  For an unknown reason you can only set the 
23823 \family sans
23824 Inner\InsetSpace ~
23825 Box
23826 \family default
23827  type to 
23828 \family sans
23829 None
23830 \family default
23831  when you use a framed box.
23832  Boxes without an 
23833 \family sans
23834 Inner\InsetSpace ~
23835 Box
23836 \family default
23837  type and without frames are explained in section\InsetSpace ~
23838
23839 \begin_inset LatexCommand ref
23840 reference "sec:Prevent-Hyphenation"
23841
23842 \end_inset
23843
23844 .
23845 \end_layout
23846
23847 \end_inset
23848
23849
23850 \end_layout
23851
23852 \begin_layout Section
23853 Box Dialog
23854 \begin_inset LatexCommand label
23855 name "sec:Box-Dialog"
23856
23857 \end_inset
23858
23859
23860 \begin_inset LatexCommand index
23861 name "Boxes ! Box Dialog"
23862
23863 \end_inset
23864
23865
23866 \begin_inset LatexCommand index
23867 name "Boxes ! Alignment"
23868
23869 \end_inset
23870
23871
23872 \end_layout
23873
23874 \begin_layout Standard
23875 In the box dialog you can adjust the box geometry in the fields 
23876 \family sans
23877 Width
23878 \family default
23879  and 
23880 \family sans
23881 Height
23882 \family default
23883 .
23884  The available units for the geometry are explained in Table\InsetSpace ~
23885
23886 \begin_inset LatexCommand ref
23887 reference "tab:Units"
23888
23889 \end_inset
23890
23891 .
23892  The field 
23893 \family sans
23894 Heigth
23895 \family default
23896  offers the following additional sizes:
23897 \end_layout
23898
23899 \begin_layout Description
23900 Depth This is the plain text 
23901 \begin_inset Quotes eld
23902 \end_inset
23903
23904 height
23905 \begin_inset Quotes erd
23906 \end_inset
23907
23908 .
23909  It ignores the total depth when there are multiple text lines in the box:
23910 \newline
23911
23912 \newline
23913
23914 \newline
23915
23916 \begin_inset Box Boxed
23917 position "c"
23918 hor_pos "c"
23919 has_inner_box 1
23920 inner_pos "c"
23921 use_parbox 0
23922 width "12col%"
23923 special "none"
23924 height "1in"
23925 height_special "depth"
23926 status collapsed
23927
23928 \begin_layout Standard
23929 \align center
23930 Box height set to 1\InsetSpace \thinspace{}
23931 Depth
23932 \end_layout
23933
23934 \end_inset
23935
23936
23937 \newline
23938
23939 \newline
23940
23941 \end_layout
23942
23943 \begin_layout Description
23944 Height This is the heigth of the text that is inside the box.
23945  A value of e.\InsetSpace \thinspace{}
23946 g.\InsetSpace ~
23947 2 for this size will set the box heigth to 2 times the text
23948  height: 
23949 \begin_inset Box Boxed
23950 position "c"
23951 hor_pos "c"
23952 has_inner_box 1
23953 inner_pos "c"
23954 use_parbox 0
23955 width "20col%"
23956 special "none"
23957 height "2in"
23958 height_special "height"
23959 status collapsed
23960
23961 \begin_layout Standard
23962 \align center
23963 Box height set to 2\InsetSpace \thinspace{}
23964 Height
23965 \end_layout
23966
23967 \end_inset
23968
23969
23970 \end_layout
23971
23972 \begin_layout Description
23973 Total\InsetSpace ~
23974 Height This is the Height\InsetSpace \thinspace{}
23975 +\InsetSpace \thinspace{}
23976 Depth: 
23977 \begin_inset Box Boxed
23978 position "c"
23979 hor_pos "c"
23980 has_inner_box 1
23981 inner_pos "c"
23982 use_parbox 0
23983 width "20col%"
23984 special "none"
23985 height "1in"
23986 height_special "totalheight"
23987 status collapsed
23988
23989 \begin_layout Standard
23990 \align center
23991 Box height set to 1\InsetSpace \thinspace{}
23992 Total\InsetSpace ~
23993 Height
23994 \end_layout
23995
23996 \end_inset
23997
23998
23999 \end_layout
24000
24001 \begin_layout Description
24002 Width This set the width of the box as heigth: 
24003 \begin_inset Box Boxed
24004 position "c"
24005 hor_pos "c"
24006 has_inner_box 1
24007 inner_pos "c"
24008 use_parbox 0
24009 width "12col%"
24010 special "none"
24011 height "1in"
24012 height_special "width"
24013 status collapsed
24014
24015 \begin_layout Standard
24016 \align center
24017 Box height set to 1\InsetSpace \thinspace{}
24018 Width
24019 \end_layout
24020
24021 \end_inset
24022
24023
24024 \end_layout
24025
24026 \begin_layout Standard
24027 \begin_inset VSpace bigskip
24028 \end_inset
24029
24030 When you have chosen an 
24031 \family sans
24032 Inner\InsetSpace ~
24033 Box
24034 \family default
24035 , the vertical box alignment can be:
24036 \end_layout
24037
24038 \begin_layout Description
24039 Top This is an example text line.
24040  
24041 \begin_inset Box Boxed
24042 position "t"
24043 hor_pos "c"
24044 has_inner_box 1
24045 inner_pos "c"
24046 use_parbox 0
24047 width "12col%"
24048 special "none"
24049 height "1in"
24050 height_special "totalheight"
24051 status collapsed
24052
24053 \begin_layout Standard
24054 \align center
24055 This box is top-aligned.
24056 \end_layout
24057
24058 \end_inset
24059
24060 \InsetSpace ~
24061 This is an example text line.
24062 \end_layout
24063
24064 \begin_layout Description
24065 Middle This is an example text line.
24066  
24067 \begin_inset Box Boxed
24068 position "c"
24069 hor_pos "c"
24070 has_inner_box 1
24071 inner_pos "c"
24072 use_parbox 0
24073 width "12col%"
24074 special "none"
24075 height "1in"
24076 height_special "totalheight"
24077 status collapsed
24078
24079 \begin_layout Standard
24080 \align center
24081 This box is middle-aligned.
24082 \end_layout
24083
24084 \end_inset
24085
24086 \InsetSpace ~
24087 This is an example text line.
24088 \end_layout
24089
24090 \begin_layout Description
24091 Bottom This is an example text line.
24092  
24093 \begin_inset Box Boxed
24094 position "b"
24095 hor_pos "c"
24096 has_inner_box 1
24097 inner_pos "c"
24098 use_parbox 0
24099 width "12col%"
24100 special "none"
24101 height "1in"
24102 height_special "totalheight"
24103 status collapsed
24104
24105 \begin_layout Standard
24106 \align center
24107 This box is bottom-aligned.
24108 \end_layout
24109
24110 \end_inset
24111
24112 \InsetSpace ~
24113 This is an example text line.
24114 \end_layout
24115
24116 \begin_layout Standard
24117 The horizontal box alignment can be set via LyX's paragraph dialog when
24118  you set the box into its own paragraph.
24119 \end_layout
24120
24121 \begin_layout Standard
24122 \begin_inset VSpace bigskip
24123 \end_inset
24124
24125 When you have chosen an 
24126 \family sans
24127 Inner\InsetSpace ~
24128 Box
24129 \family default
24130 , the box content can be vertical aligned to:
24131 \end_layout
24132
24133 \begin_layout Description
24134 top This is an example text line.
24135  
24136 \begin_inset Box Boxed
24137 position "c"
24138 hor_pos "c"
24139 has_inner_box 1
24140 inner_pos "t"
24141 use_parbox 0
24142 width "12col%"
24143 special "none"
24144 height "1.5in"
24145 height_special "totalheight"
24146 status collapsed
24147
24148 \begin_layout Standard
24149 \align center
24150 This box text is top-aligned.
24151 \end_layout
24152
24153 \end_inset
24154
24155 \InsetSpace ~
24156 This is an example text line.
24157 \end_layout
24158
24159 \begin_layout Description
24160 middle This is an example text line.
24161  
24162 \begin_inset Box Boxed
24163 position "c"
24164 hor_pos "c"
24165 has_inner_box 1
24166 inner_pos "c"
24167 use_parbox 0
24168 width "12col%"
24169 special "none"
24170 height "1.5in"
24171 height_special "totalheight"
24172 status collapsed
24173
24174 \begin_layout Standard
24175 \align center
24176 This box text is middle-aligned.
24177 \end_layout
24178
24179 \end_inset
24180
24181 \InsetSpace ~
24182 This is an example text line.
24183 \end_layout
24184
24185 \begin_layout Description
24186 bottom This is an example text line.
24187  
24188 \begin_inset Box Boxed
24189 position "c"
24190 hor_pos "c"
24191 has_inner_box 1
24192 inner_pos "b"
24193 use_parbox 0
24194 width "12col%"
24195 special "none"
24196 height "1.5in"
24197 height_special "totalheight"
24198 status collapsed
24199
24200 \begin_layout Standard
24201 \align center
24202 This box text is bottom-aligned.
24203 \end_layout
24204
24205 \end_inset
24206
24207 \InsetSpace ~
24208 This is an example text line.
24209 \end_layout
24210
24211 \begin_layout Description
24212 stretch This is an example text line.
24213  
24214 \begin_inset Box Boxed
24215 position "c"
24216 hor_pos "c"
24217 has_inner_box 1
24218 inner_pos "s"
24219 use_parbox 0
24220 width "12col%"
24221 special "none"
24222 height "1.5in"
24223 height_special "totalheight"
24224 status collapsed
24225
24226 \begin_layout Standard
24227 \align center
24228 This box
24229 \end_layout
24230
24231 \begin_layout Standard
24232 \align center
24233 text is
24234 \end_layout
24235
24236 \begin_layout Standard
24237 \align center
24238 stretched.
24239 \end_layout
24240
24241 \end_inset
24242
24243 \InsetSpace ~
24244 This is an example text line.
24245 \end_layout
24246
24247 \begin_layout Standard
24248 To stretch the box content, it must consist of more than one paragraph.
24249  In the example above every text line is in an own paragraph.
24250 \end_layout
24251
24252 \begin_layout Standard
24253 \begin_inset VSpace bigskip
24254 \end_inset
24255
24256 To align the box content horizontally you can use LyX's paragraph dialog
24257  when you have chosen an 
24258 \family sans
24259 Inner\InsetSpace ~
24260 Box
24261 \family default
24262 .
24263 \end_layout
24264
24265 \begin_layout Standard
24266 \align center
24267 \begin_inset Box Boxed
24268 position "c"
24269 hor_pos "c"
24270 has_inner_box 1
24271 inner_pos "s"
24272 use_parbox 0
24273 width "15col%"
24274 special "none"
24275 height "1.25in"
24276 height_special "totalheight"
24277 status collapsed
24278
24279 \begin_layout Standard
24280 \align left
24281 This box
24282 \end_layout
24283
24284 \begin_layout Standard
24285 \align center
24286 text is
24287 \end_layout
24288
24289 \begin_layout Standard
24290 \align right
24291 stretched.
24292 \end_layout
24293
24294 \end_inset
24295
24296
24297 \end_layout
24298
24299 \begin_layout Standard
24300 If you haven't set an 
24301 \family sans
24302 Inner\InsetSpace ~
24303 Box
24304 \family default
24305 , you can align the box content horizontally in the box dialog.
24306 \end_layout
24307
24308 \begin_layout Standard
24309 \align center
24310 \begin_inset Box Boxed
24311 position "c"
24312 hor_pos "s"
24313 has_inner_box 0
24314 inner_pos "s"
24315 use_parbox 0
24316 width "90col%"
24317 special "none"
24318 height "1.25in"
24319 height_special "totalheight"
24320 status collapsed
24321
24322 \begin_layout Standard
24323 \align left
24324 This box text is horizontally stretched.
24325 \end_layout
24326
24327 \end_inset
24328
24329
24330 \end_layout
24331
24332 \begin_layout Section
24333 Framed Boxes
24334 \begin_inset LatexCommand label
24335 name "sec:Framed-Boxes"
24336
24337 \end_inset
24338
24339
24340 \begin_inset LatexCommand index
24341 name "Boxes ! Frames"
24342
24343 \end_inset
24344
24345
24346 \end_layout
24347
24348 \begin_layout Standard
24349 The frame style of the box can be specified in the box-dialog in the drop-down
24350  list 
24351 \family sans
24352 Type
24353 \family default
24354 .
24355  The following frame types are possible:
24356 \end_layout
24357
24358 \begin_layout Description
24359 Rectangular\InsetSpace ~
24360 box This draws a rectangle frame around the box.
24361  The frame line thickness has the size of 
24362 \series bold
24363
24364 \backslash
24365 fboxrule
24366 \series default
24367 .
24368  
24369 \begin_inset Box Boxed
24370 position "c"
24371 hor_pos "c"
24372 has_inner_box 1
24373 inner_pos "c"
24374 use_parbox 0
24375 width "20col%"
24376 special "none"
24377 height "1in"
24378 height_special "totalheight"
24379 status collapsed
24380
24381 \begin_layout Standard
24382 \align center
24383 Rectangular box
24384 \end_layout
24385
24386 \end_inset
24387
24388
24389 \end_layout
24390
24391 \begin_layout Description
24392 Oval\InsetSpace ~
24393 box,\InsetSpace ~
24394 thin This draws an oval frame around the box.
24395  The frame line thickness has the size 0.4\InsetSpace \thinspace{}
24396 pt.
24397  
24398 \begin_inset Box ovalbox
24399 position "c"
24400 hor_pos "c"
24401 has_inner_box 1
24402 inner_pos "c"
24403 use_parbox 0
24404 width "20col%"
24405 special "none"
24406 height "1in"
24407 height_special "totalheight"
24408 status collapsed
24409
24410 \begin_layout Standard
24411 \align center
24412 Oval box, thin
24413 \end_layout
24414
24415 \end_inset
24416
24417
24418 \end_layout
24419
24420 \begin_layout Description
24421 Oval\InsetSpace ~
24422 box,\InsetSpace ~
24423 thick This draws an oval frame around the box.
24424  The frame line thickness has the size 0.8\InsetSpace \thinspace{}
24425 pt.
24426  
24427 \begin_inset Box Ovalbox
24428 position "c"
24429 hor_pos "c"
24430 has_inner_box 1
24431 inner_pos "c"
24432 use_parbox 0
24433 width "20col%"
24434 special "none"
24435 height "1in"
24436 height_special "totalheight"
24437 status collapsed
24438
24439 \begin_layout Standard
24440 \align center
24441 Oval box, thick
24442 \end_layout
24443
24444 \end_inset
24445
24446
24447 \end_layout
24448
24449 \begin_layout Description
24450 Shadow\InsetSpace ~
24451 box This draws a rectangle frame with a shadow around the box.
24452  The frame line thickness has the size of 
24453 \series bold
24454
24455 \backslash
24456 fboxrule
24457 \series default
24458 , the shadow has a width of 4\InsetSpace \thinspace{}
24459 pt.
24460  
24461 \begin_inset Box Shadowbox
24462 position "c"
24463 hor_pos "c"
24464 has_inner_box 1
24465 inner_pos "c"
24466 use_parbox 0
24467 width "20col%"
24468 special "none"
24469 height "1in"
24470 height_special "totalheight"
24471 status collapsed
24472
24473 \begin_layout Standard
24474 \align center
24475 Shadow box
24476 \end_layout
24477
24478 \end_inset
24479
24480
24481 \end_layout
24482
24483 \begin_layout Description
24484 Double\InsetSpace ~
24485 box This draws a double-line rectangle frame around the box.
24486  The line thickness of the inner frame is 0.75\InsetSpace \thinspace{}
24487
24488 \series bold
24489
24490 \backslash
24491 fboxrule
24492 \series default
24493 , the thickness of the outer frame is 1.5\InsetSpace \thinspace{}
24494
24495 \series bold
24496
24497 \backslash
24498 fboxrule
24499 \series default
24500 .
24501  The distance between the lines is 1.5\InsetSpace \thinspace{}
24502
24503 \series bold
24504
24505 \backslash
24506 fboxrule
24507 \series default
24508 \InsetSpace \thinspace{}
24509 +\InsetSpace \thinspace{}
24510 0.5\InsetSpace \thinspace{}
24511 pt.
24512  
24513 \begin_inset Box Doublebox
24514 position "c"
24515 hor_pos "c"
24516 has_inner_box 1
24517 inner_pos "c"
24518 use_parbox 0
24519 width "20col%"
24520 special "none"
24521 height "1in"
24522 height_special "totalheight"
24523 status collapsed
24524
24525 \begin_layout Standard
24526 \align center
24527 Double box
24528 \end_layout
24529
24530 \end_inset
24531
24532
24533 \end_layout
24534
24535 \begin_layout Standard
24536 \begin_inset VSpace bigskip
24537 \end_inset
24538
24539 LyX's box label will change to the used frame style when you set a frame.
24540  To be able to use the different frame styles, the LaTeX-package 
24541 \series bold
24542 fancybox
24543 \series default
24544
24545 \begin_inset LatexCommand index
24546 name "LaTeX-packages ! fancybox"
24547
24548 \end_inset
24549
24550  must be installed.
24551 \end_layout
24552
24553 \begin_layout Standard
24554 \begin_inset VSpace bigskip
24555 \end_inset
24556
24557 The default value for the size 
24558 \series bold
24559
24560 \backslash
24561 fboxrule
24562 \series default
24563  is 0.4\InsetSpace \thinspace{}
24564 pt.
24565  It can be changed with the following command in ERT to e.\InsetSpace \thinspace{}
24566 g.\InsetSpace ~
24567 2\InsetSpace \thinspace{}
24568 pt:
24569 \end_layout
24570
24571 \begin_layout Standard
24572
24573 \series bold
24574
24575 \backslash
24576 setlength{
24577 \backslash
24578 fboxrule}{2pt}
24579 \end_layout
24580
24581 \begin_layout Standard
24582 \begin_inset ERT
24583 status collapsed
24584
24585 \begin_layout Standard
24586
24587
24588 \backslash
24589 setlength{
24590 \backslash
24591 fboxrule}{2pt}
24592 \end_layout
24593
24594 \end_inset
24595
24596
24597 \begin_inset Box Boxed
24598 position "c"
24599 hor_pos "c"
24600 has_inner_box 1
24601 inner_pos "c"
24602 use_parbox 0
24603 width "25col%"
24604 special "none"
24605 height "1in"
24606 height_special "totalheight"
24607 status collapsed
24608
24609 \begin_layout Standard
24610 \align center
24611 Rectangular box with 
24612 \series bold
24613
24614 \backslash
24615 fboxrule
24616 \series default
24617 \InsetSpace \thinspace{}
24618 =\InsetSpace \thinspace{}
24619 2\InsetSpace \thinspace{}
24620 pt
24621 \end_layout
24622
24623 \end_inset
24624
24625
24626 \begin_inset ERT
24627 status collapsed
24628
24629 \begin_layout Standard
24630
24631
24632 \backslash
24633 setlength{
24634 \backslash
24635 fboxrule}{0.4pt}
24636 \end_layout
24637
24638 \end_inset
24639
24640
24641 \end_layout
24642
24643 \begin_layout Standard
24644 \begin_inset VSpace bigskip
24645 \end_inset
24646
24647 The space between the frame and the box content is for all frame styles
24648  by default 3\InsetSpace \thinspace{}
24649 pt.
24650  You can change it by setting the length 
24651 \series bold
24652
24653 \backslash
24654 fboxsep
24655 \series default
24656  to another value.
24657  For example the command
24658 \end_layout
24659
24660 \begin_layout Standard
24661
24662 \series bold
24663
24664 \backslash
24665 setlength{
24666 \backslash
24667 fboxsep}{10pt}
24668 \end_layout
24669
24670 \begin_layout Standard
24671 sets the value to 10\InsetSpace \thinspace{}
24672 pt, like for the following box:
24673 \end_layout
24674
24675 \begin_layout Standard
24676 \begin_inset ERT
24677 status collapsed
24678
24679 \begin_layout Standard
24680
24681
24682 \backslash
24683 setlength{
24684 \backslash
24685 fboxsep}{10pt}
24686 \end_layout
24687
24688 \end_inset
24689
24690
24691 \begin_inset Box Boxed
24692 position "c"
24693 hor_pos "c"
24694 has_inner_box 1
24695 inner_pos "c"
24696 use_parbox 0
24697 width "25col%"
24698 special "none"
24699 height "1in"
24700 height_special "totalheight"
24701 status collapsed
24702
24703 \begin_layout Standard
24704 \align center
24705 Rectangular box with 
24706 \series bold
24707
24708 \backslash
24709 fboxsep
24710 \series default
24711 \InsetSpace \thinspace{}
24712 =\InsetSpace \thinspace{}
24713 10\InsetSpace \thinspace{}
24714 pt
24715 \end_layout
24716
24717 \end_inset
24718
24719
24720 \begin_inset ERT
24721 status collapsed
24722
24723 \begin_layout Standard
24724
24725
24726 \backslash
24727 setlength{
24728 \backslash
24729 fboxsep}{3pt}
24730 \end_layout
24731
24732 \end_inset
24733
24734
24735 \end_layout
24736
24737 \begin_layout Standard
24738 \begin_inset VSpace bigskip
24739 \end_inset
24740
24741 The diameter of the round corners of the oval boxes can be set with the
24742  command 
24743 \series bold
24744
24745 \backslash
24746 cornersize
24747 \series default
24748 .
24749  The command
24750 \end_layout
24751
24752 \begin_layout Standard
24753
24754 \series bold
24755
24756 \backslash
24757 cornersize*{1cm}
24758 \end_layout
24759
24760 \begin_layout Standard
24761 sets the diameter to 1\InsetSpace \thinspace{}
24762 cm.
24763  The command
24764 \end_layout
24765
24766 \begin_layout Standard
24767
24768 \series bold
24769
24770 \backslash
24771 cornersize{num}
24772 \end_layout
24773
24774 \begin_layout Standard
24775 sets the diameter to 
24776 \family sans
24777 num\InsetSpace \thinspace{}
24778 ×\InsetSpace \thinspace{}
24779 minimum(width and heigth of box)
24780 \family default
24781 .
24782  The default is 
24783 \series bold
24784
24785 \backslash
24786 cornersize{0.5}
24787 \series default
24788 .
24789 \end_layout
24790
24791 \begin_layout Standard
24792 \begin_inset ERT
24793 status collapsed
24794
24795 \begin_layout Standard
24796
24797
24798 \backslash
24799 cornersize*{1.5cm}
24800 \end_layout
24801
24802 \end_inset
24803
24804
24805 \begin_inset Box Ovalbox
24806 position "c"
24807 hor_pos "c"
24808 has_inner_box 1
24809 inner_pos "c"
24810 use_parbox 0
24811 width "25col%"
24812 special "none"
24813 height "1in"
24814 height_special "totalheight"
24815 status collapsed
24816
24817 \begin_layout Standard
24818 \align center
24819 Oval box with 
24820 \series bold
24821
24822 \backslash
24823 cornersize
24824 \series default
24825 \InsetSpace \thinspace{}
24826 =\InsetSpace \thinspace{}
24827 1.5\InsetSpace \thinspace{}
24828 cm
24829 \end_layout
24830
24831 \end_inset
24832
24833
24834 \begin_inset ERT
24835 status collapsed
24836
24837 \begin_layout Standard
24838
24839
24840 \backslash
24841 cornersize{0.5}
24842 \end_layout
24843
24844 \end_inset
24845
24846
24847 \end_layout
24848
24849 \begin_layout Standard
24850 \begin_inset VSpace bigskip
24851 \end_inset
24852
24853 The size of the shadow can be adjusted by changing the length 
24854 \series bold
24855
24856 \backslash
24857 shadowsize
24858 \series default
24859 .
24860  It it set to 2\InsetSpace \thinspace{}
24861 pt for the following box by this command:
24862 \end_layout
24863
24864 \begin_layout Standard
24865
24866 \series bold
24867
24868 \backslash
24869 setlength{
24870 \backslash
24871 shadowsize}{2pt}
24872 \end_layout
24873
24874 \begin_layout Standard
24875 \begin_inset ERT
24876 status collapsed
24877
24878 \begin_layout Standard
24879
24880
24881 \backslash
24882 setlength{
24883 \backslash
24884 shadowsize}{2pt}
24885 \end_layout
24886
24887 \end_inset
24888
24889
24890 \begin_inset Box Shadowbox
24891 position "c"
24892 hor_pos "c"
24893 has_inner_box 1
24894 inner_pos "c"
24895 use_parbox 0
24896 width "25col%"
24897 special "none"
24898 height "1in"
24899 height_special "totalheight"
24900 status collapsed
24901
24902 \begin_layout Standard
24903 \align center
24904 Shadow box with 
24905 \series bold
24906
24907 \backslash
24908 shadowsize
24909 \series default
24910 \InsetSpace \thinspace{}
24911 =\InsetSpace \thinspace{}
24912 2\InsetSpace \thinspace{}
24913 pt
24914 \end_layout
24915
24916 \end_inset
24917
24918
24919 \begin_inset ERT
24920 status collapsed
24921
24922 \begin_layout Standard
24923
24924
24925 \backslash
24926 setlength{
24927 \backslash
24928 shadowsize}{4pt}
24929 \end_layout
24930
24931 \end_inset
24932
24933
24934 \end_layout
24935
24936 \begin_layout Standard
24937 \begin_inset VSpace bigskip
24938 \end_inset
24939
24940 Changed lengths and widths are valid for all boxes following the commands
24941  that change them.
24942 \end_layout
24943
24944 \begin_layout Section
24945 Minipages
24946 \begin_inset LatexCommand label
24947 name "sec:Minipages"
24948
24949 \end_inset
24950
24951
24952 \begin_inset LatexCommand index
24953 name "Boxes ! Minipages"
24954
24955 \end_inset
24956
24957
24958 \end_layout
24959
24960 \begin_layout Standard
24961 Minipages are treated by LaTeX as pages within pages and can therefore for
24962  example have their own footnotes.
24963 \end_layout
24964
24965 \begin_layout Standard
24966 Minipages are useful when you write documents with different languages.
24967 \end_layout
24968
24969 \begin_layout Standard
24970 Below are two example minipages side by side.
24971  Their width is set to 45\InsetSpace \thinspace{}
24972 col% and they are separated by a horizontal fill,
24973  that was inserted via the menu 
24974 \family sans
24975 Insert\SpecialChar \menuseparator
24976 Special\InsetSpace ~
24977 Formatting\SpecialChar \menuseparator
24978 Horizontal\InsetSpace ~
24979 Fill
24980 \family default
24981 .
24982 \end_layout
24983
24984 \begin_layout Standard
24985 \begin_inset Box Frameless
24986 position "t"
24987 hor_pos "c"
24988 has_inner_box 1
24989 inner_pos "c"
24990 use_parbox 0
24991 width "45col%"
24992 special "none"
24993 height "1in"
24994 height_special "totalheight"
24995 status open
24996
24997 \begin_layout Standard
24998
24999 \lang german
25000 Dies ist ein deutscher Text.
25001  Dies ist ein deutscher Text.
25002  Dies ist ein deutscher Text.
25003  Dies ist ein deutscher Text.
25004  Dies ist ein deutscher Text.
25005  Dies ist ein deutscher Text.
25006  Dies ist ein deutscher Text.
25007  Dies ist ein deutscher Text.
25008  Dies ist ein deutscher Text.
25009  Dies ist ein deutscher Text.
25010  Dies ist ein deutscher Text.
25011  Dies ist ein deutscher Text.
25012  Dies ist ein deutscher Text
25013 \begin_inset Foot
25014 status collapsed
25015
25016 \begin_layout Standard
25017
25018 \lang german
25019 Dies ist eine deutsche Fußnote.
25020 \end_layout
25021
25022 \end_inset
25023
25024 .
25025  Dies ist ein deutscher Text.
25026  Dies ist ein deutscher Text.
25027 \end_layout
25028
25029 \end_inset
25030
25031
25032 \hfill
25033
25034 \begin_inset Box Frameless
25035 position "t"
25036 hor_pos "c"
25037 has_inner_box 1
25038 inner_pos "c"
25039 use_parbox 0
25040 width "45col%"
25041 special "none"
25042 height "1in"
25043 height_special "totalheight"
25044 status open
25045
25046 \begin_layout Standard
25047 This is an English Text.
25048  This is an English Text.
25049  This is an English Text.
25050  This is an English Text.
25051  This is an English Text.
25052  This is an English Text.
25053  This is an English Text.
25054  This is an English Text.
25055  This is an English Text.
25056  This is an English Text.
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 \begin_inset Foot
25064 status collapsed
25065
25066 \begin_layout Standard
25067 This is an English footnote.
25068 \end_layout
25069
25070 \end_inset
25071
25072  This is an English Text.
25073  
25074 \end_layout
25075
25076 \end_inset
25077
25078
25079 \end_layout
25080
25081 \begin_layout Standard
25082 \begin_inset VSpace bigskip
25083 \end_inset
25084
25085 Another application for minipages are footnotes within tables.
25086  Due to a LaTeX restriction footnotes within tables doesn't appear at the
25087  bottom of the current page.
25088  But when you put the table with the footnote to a minipage, the footnote
25089  will appear at its bottom, numbered with Latin letters.
25090  The footnote number is reset to 1 in every minipage but not outside the
25091  minipages.
25092 \end_layout
25093
25094 \begin_layout Standard
25095 The footnote of this table doesn't appear: 
25096 \begin_inset Tabular
25097 <lyxtabular version="3" rows="3" columns="4">
25098 <features>
25099 <column alignment="center" valignment="top" leftline="true" width="0pt">
25100 <column alignment="center" valignment="top" leftline="true" width="0pt">
25101 <column alignment="center" valignment="top" leftline="true" width="0pt">
25102 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0pt">
25103 <row topline="true">
25104 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25105 \begin_inset Text
25106
25107 \begin_layout Standard
25108 1
25109 \end_layout
25110
25111 \end_inset
25112 </cell>
25113 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25114 \begin_inset Text
25115
25116 \begin_layout Standard
25117 2
25118 \end_layout
25119
25120 \end_inset
25121 </cell>
25122 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25123 \begin_inset Text
25124
25125 \begin_layout Standard
25126 3
25127 \begin_inset Foot
25128 status collapsed
25129
25130 \begin_layout Standard
25131 This is a footnote within a table.
25132 \end_layout
25133
25134 \end_inset
25135
25136
25137 \end_layout
25138
25139 \end_inset
25140 </cell>
25141 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25142 \begin_inset Text
25143
25144 \begin_layout Standard
25145 4
25146 \end_layout
25147
25148 \end_inset
25149 </cell>
25150 </row>
25151 <row topline="true">
25152 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25153 \begin_inset Text
25154
25155 \begin_layout Standard
25156 a
25157 \end_layout
25158
25159 \end_inset
25160 </cell>
25161 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25162 \begin_inset Text
25163
25164 \begin_layout Standard
25165 b
25166 \end_layout
25167
25168 \end_inset
25169 </cell>
25170 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25171 \begin_inset Text
25172
25173 \begin_layout Standard
25174 c
25175 \end_layout
25176
25177 \end_inset
25178 </cell>
25179 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25180 \begin_inset Text
25181
25182 \begin_layout Standard
25183 d
25184 \end_layout
25185
25186 \end_inset
25187 </cell>
25188 </row>
25189 <row topline="true" bottomline="true">
25190 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25191 \begin_inset Text
25192
25193 \begin_layout Standard
25194 e
25195 \end_layout
25196
25197 \end_inset
25198 </cell>
25199 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25200 \begin_inset Text
25201
25202 \begin_layout Standard
25203 f
25204 \end_layout
25205
25206 \end_inset
25207 </cell>
25208 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25209 \begin_inset Text
25210
25211 \begin_layout Standard
25212 g
25213 \end_layout
25214
25215 \end_inset
25216 </cell>
25217 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25218 \begin_inset Text
25219
25220 \begin_layout Standard
25221 h
25222 \end_layout
25223
25224 \end_inset
25225 </cell>
25226 </row>
25227 </lyxtabular>
25228
25229 \end_inset
25230
25231
25232 \end_layout
25233
25234 \begin_layout Standard
25235 \align center
25236 \begin_inset Box Frameless
25237 position "t"
25238 hor_pos "c"
25239 has_inner_box 1
25240 inner_pos "c"
25241 use_parbox 0
25242 width "30col%"
25243 special "none"
25244 height "1in"
25245 height_special "totalheight"
25246 status open
25247
25248 \begin_layout Standard
25249 \align center
25250 \begin_inset Tabular
25251 <lyxtabular version="3" rows="3" columns="4">
25252 <features>
25253 <column alignment="center" valignment="top" leftline="true" width="0pt">
25254 <column alignment="center" valignment="top" leftline="true" width="0pt">
25255 <column alignment="center" valignment="top" leftline="true" width="0pt">
25256 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0pt">
25257 <row topline="true">
25258 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25259 \begin_inset Text
25260
25261 \begin_layout Standard
25262 1
25263 \end_layout
25264
25265 \end_inset
25266 </cell>
25267 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25268 \begin_inset Text
25269
25270 \begin_layout Standard
25271 2
25272 \end_layout
25273
25274 \end_inset
25275 </cell>
25276 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25277 \begin_inset Text
25278
25279 \begin_layout Standard
25280 3
25281 \begin_inset Foot
25282 status collapsed
25283
25284 \begin_layout Standard
25285 This is a footnote within a table.
25286 \end_layout
25287
25288 \end_inset
25289
25290
25291 \end_layout
25292
25293 \end_inset
25294 </cell>
25295 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25296 \begin_inset Text
25297
25298 \begin_layout Standard
25299 4
25300 \end_layout
25301
25302 \end_inset
25303 </cell>
25304 </row>
25305 <row topline="true">
25306 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25307 \begin_inset Text
25308
25309 \begin_layout Standard
25310 a
25311 \end_layout
25312
25313 \end_inset
25314 </cell>
25315 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25316 \begin_inset Text
25317
25318 \begin_layout Standard
25319 b
25320 \end_layout
25321
25322 \end_inset
25323 </cell>
25324 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25325 \begin_inset Text
25326
25327 \begin_layout Standard
25328 c
25329 \end_layout
25330
25331 \end_inset
25332 </cell>
25333 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25334 \begin_inset Text
25335
25336 \begin_layout Standard
25337 d
25338 \end_layout
25339
25340 \end_inset
25341 </cell>
25342 </row>
25343 <row topline="true" bottomline="true">
25344 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25345 \begin_inset Text
25346
25347 \begin_layout Standard
25348 e
25349 \end_layout
25350
25351 \end_inset
25352 </cell>
25353 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25354 \begin_inset Text
25355
25356 \begin_layout Standard
25357 f
25358 \end_layout
25359
25360 \end_inset
25361 </cell>
25362 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25363 \begin_inset Text
25364
25365 \begin_layout Standard
25366 g
25367 \end_layout
25368
25369 \end_inset
25370 </cell>
25371 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25372 \begin_inset Text
25373
25374 \begin_layout Standard
25375 h
25376 \end_layout
25377
25378 \end_inset
25379 </cell>
25380 </row>
25381 </lyxtabular>
25382
25383 \end_inset
25384
25385
25386 \end_layout
25387
25388 \end_inset
25389
25390
25391 \end_layout
25392
25393 \begin_layout Standard
25394 \begin_inset VSpace bigskip
25395 \end_inset
25396
25397 The document-wide paragraph settings are ignored within minipages.
25398  That means that there will be no space between paragraphs in minipages
25399  although you set it to e.\InsetSpace \thinspace{}
25400 g.\InsetSpace ~
25401
25402 \family sans
25403 MedSkip
25404 \family default
25405  in the document settings.
25406 \end_layout
25407
25408 \begin_layout Standard
25409 Minipages can also be used to set a background color for text parts, see
25410  section\InsetSpace ~
25411
25412 \begin_inset LatexCommand ref
25413 reference "sub:Color-for-Paragraphs"
25414
25415 \end_inset
25416
25417 .
25418 \end_layout
25419
25420 \begin_layout Standard
25421 \begin_inset Note Greyedout
25422 status open
25423
25424 \begin_layout Standard
25425
25426 \series bold
25427 Note:
25428 \series default
25429  You cannot have floats or margin notes inside minipages but minipages can
25430  be used inside tables, floats, and other boxes.
25431 \end_layout
25432
25433 \end_inset
25434
25435
25436 \end_layout
25437
25438 \begin_layout Section
25439 Parboxes
25440 \begin_inset LatexCommand label
25441 name "sec:Parboxes"
25442
25443 \end_inset
25444
25445
25446 \begin_inset LatexCommand index
25447 name "Boxes ! Parboxes"
25448
25449 \end_inset
25450
25451
25452 \end_layout
25453
25454 \begin_layout Standard
25455 Parboxes are very similar to minipages with the difference that they cannot
25456  have footnotes.
25457  The main difference to minipages is that minipages are in contrary to parboxes
25458  no real boxes but LaTeX-environments.
25459 \end_layout
25460
25461 \begin_layout Standard
25462 \align center
25463 \begin_inset Box Frameless
25464 position "t"
25465 hor_pos "c"
25466 has_inner_box 1
25467 inner_pos "t"
25468 use_parbox 1
25469 width "33col%"
25470 special "none"
25471 height "1in"
25472 height_special "totalheight"
25473 status collapsed
25474
25475 \begin_layout Standard
25476 This a text within a parbox.
25477  This a text within a parbox.
25478 \end_layout
25479
25480 \begin_layout Standard
25481 This footnote won't appear:
25482 \begin_inset Foot
25483 status collapsed
25484
25485 \begin_layout Standard
25486 This footnote is inside a parbox and will therefore not appear.
25487 \end_layout
25488
25489 \end_inset
25490
25491
25492 \end_layout
25493
25494 \end_inset
25495
25496
25497 \end_layout
25498
25499 \begin_layout Section
25500 Boxes for Words and Characters
25501 \begin_inset LatexCommand index
25502 name "Boxes ! for Characters"
25503
25504 \end_inset
25505
25506
25507 \end_layout
25508
25509 \begin_layout Subsection
25510 Prevent Hyphenation
25511 \begin_inset LatexCommand label
25512 name "sec:Prevent-Hyphenation"
25513
25514 \end_inset
25515
25516
25517 \begin_inset LatexCommand index
25518 name "Boxes ! to Prevent Hyphenation"
25519
25520 \end_inset
25521
25522
25523 \end_layout
25524
25525 \begin_layout Standard
25526 You can use a special kind of boxes to prevent words or text to be hyphenated.
25527 \newline
25528 Her
25529 e is an example text:
25530 \end_layout
25531
25532 \begin_layout Standard
25533 This line is an example to show how you can prevent the hyphenation of e.\InsetSpace \thinspace{}
25534 g.\InsetSpace ~
25535 veryver
25536 ylongwords.
25537 \end_layout
25538
25539 \begin_layout Standard
25540 To prevent the hyphenation of the word 
25541 \begin_inset Quotes eld
25542 \end_inset
25543
25544 veryverylongwords
25545 \begin_inset Quotes erd
25546 \end_inset
25547
25548 , add the command
25549 \end_layout
25550
25551 \begin_layout Standard
25552
25553 \series bold
25554
25555 \backslash
25556 mbox{
25557 \end_layout
25558
25559 \begin_layout Standard
25560 in ERT before the word.
25561  Behind the word insert a closing brace 
25562 \begin_inset Quotes eld
25563 \end_inset
25564
25565
25566 \series bold
25567 }
25568 \series default
25569
25570 \begin_inset Quotes erd
25571 \end_inset
25572
25573  in ERT.
25574 \begin_inset ERT
25575 status collapsed
25576
25577 \begin_layout Standard
25578
25579
25580 \backslash
25581 pagebreak 
25582 \end_layout
25583
25584 \end_inset
25585
25586
25587 \end_layout
25588
25589 \begin_layout Standard
25590 This is the result:
25591 \end_layout
25592
25593 \begin_layout Standard
25594 This line is an example to show how you can prevent the hyphenation of e.\InsetSpace \thinspace{}
25595 g.\InsetSpace ~
25596
25597 \begin_inset ERT
25598 status collapsed
25599
25600 \begin_layout Standard
25601
25602
25603 \backslash
25604 mbox{
25605 \end_layout
25606
25607 \end_inset
25608
25609 veryverylongwords.
25610 \begin_inset ERT
25611 status collapsed
25612
25613 \begin_layout Standard
25614
25615 }
25616 \end_layout
25617
25618 \end_inset
25619
25620
25621 \end_layout
25622
25623 \begin_layout Standard
25624 Of course the word now protrudes over the side margin.
25625  To avoid this, add via the menu 
25626 \family sans
25627 Insert\SpecialChar \menuseparator
25628 Special\InsetSpace ~
25629 Formatting\SpecialChar \menuseparator
25630 Line\InsetSpace ~
25631 Break
25632 \family default
25633  (shortcut 
25634 \series bold
25635 Ctrl-Return
25636 \series default
25637 ) a line break before the word:
25638 \end_layout
25639
25640 \begin_layout Standard
25641 This line is an example to show how you can prevent the hyphenation of e.\InsetSpace \thinspace{}
25642 g.\InsetSpace ~
25643
25644 \newline
25645
25646 \begin_inset ERT
25647 status collapsed
25648
25649 \begin_layout Standard
25650
25651
25652 \backslash
25653 mbox{
25654 \end_layout
25655
25656 \end_inset
25657
25658 veryverylongwords.
25659 \begin_inset ERT
25660 status collapsed
25661
25662 \begin_layout Standard
25663
25664 }
25665 \end_layout
25666
25667 \end_inset
25668
25669
25670 \end_layout
25671
25672 \begin_layout Subsection
25673 Vertical Alignment
25674 \begin_inset LatexCommand label
25675 name "sub:Vertical-Alignment"
25676
25677 \end_inset
25678
25679
25680 \begin_inset LatexCommand index
25681 name "Boxes ! for Vertical Alignment"
25682
25683 \end_inset
25684
25685
25686 \begin_inset LatexCommand index
25687 name "Boxes ! Raiseboxes"
25688
25689 \end_inset
25690
25691
25692 \end_layout
25693
25694 \begin_layout Standard
25695 With the help of the command 
25696 \series bold
25697
25698 \backslash
25699 raisebox
25700 \series default
25701  you can align words, characters or other boxes vertically to the surrounding
25702  text.
25703  
25704 \series bold
25705
25706 \backslash
25707 raisebox
25708 \series default
25709  is used with the following scheme:
25710 \end_layout
25711
25712 \begin_layout Standard
25713
25714 \series bold
25715
25716 \backslash
25717 raisebox{lift}[height][depth]{box content}
25718 \end_layout
25719
25720 \begin_layout Standard
25721 The lift can be a positive value to raise the box or a negative value to
25722  lower the box.
25723 \end_layout
25724
25725 \begin_layout Standard
25726 To align for example the word 
25727 \begin_inset Quotes eld
25728 \end_inset
25729
25730 preventing
25731 \begin_inset Quotes erd
25732 \end_inset
25733
25734  so that the bottom of the 
25735 \begin_inset Quotes eld
25736 \end_inset
25737
25738 deepest
25739 \begin_inset Quotes erd
25740 \end_inset
25741
25742  character 
25743 \begin_inset Quotes eld
25744 \end_inset
25745
25746 p
25747 \begin_inset Quotes erd
25748 \end_inset
25749
25750  is at the baseline, insert the command
25751 \end_layout
25752
25753 \begin_layout Standard
25754
25755 \series bold
25756
25757 \backslash
25758 raisebox{
25759 \backslash
25760 depth}{
25761 \end_layout
25762
25763 \begin_layout Standard
25764 in ERT before the word.
25765  Behind the word insert a closing brace 
25766 \begin_inset Quotes eld
25767 \end_inset
25768
25769
25770 \series bold
25771 }
25772 \series default
25773
25774 \begin_inset Quotes erd
25775 \end_inset
25776
25777  in ERT.
25778 \newline
25779 This is the result:
25780 \end_layout
25781
25782 \begin_layout Standard
25783 This is a text line with the word 
25784 \begin_inset ERT
25785 status collapsed
25786
25787 \begin_layout Standard
25788
25789
25790 \backslash
25791 raisebox{
25792 \backslash
25793 depth}{
25794 \end_layout
25795
25796 \end_inset
25797
25798
25799 \begin_inset Quotes eld
25800 \end_inset
25801
25802 preventing
25803 \begin_inset Quotes erd
25804 \end_inset
25805
25806
25807 \begin_inset ERT
25808 status collapsed
25809
25810 \begin_layout Standard
25811
25812 }
25813 \end_layout
25814
25815 \end_inset
25816
25817  as raised word.
25818 \end_layout
25819
25820 \begin_layout Standard
25821 \begin_inset VSpace bigskip
25822 \end_inset
25823
25824 When you raise or lower characters in a line, the line distance will be
25825  spread:
25826 \end_layout
25827
25828 \begin_layout Standard
25829 This is a text line with the word 
25830 \begin_inset ERT
25831 status collapsed
25832
25833 \begin_layout Standard
25834
25835
25836 \backslash
25837 raisebox{-
25838 \backslash
25839 depth}{
25840 \end_layout
25841
25842 \end_inset
25843
25844
25845 \begin_inset Quotes eld
25846 \end_inset
25847
25848 preventing
25849 \begin_inset Quotes erd
25850 \end_inset
25851
25852
25853 \begin_inset ERT
25854 status collapsed
25855
25856 \begin_layout Standard
25857
25858 }
25859 \end_layout
25860
25861 \end_inset
25862
25863  as lowered word.
25864 \newline
25865 This is a text line with the word 
25866 \begin_inset ERT
25867 status collapsed
25868
25869 \begin_layout Standard
25870
25871
25872 \backslash
25873 raisebox{0.5cm}{
25874 \end_layout
25875
25876 \end_inset
25877
25878
25879 \begin_inset Quotes eld
25880 \end_inset
25881
25882 testing
25883 \begin_inset Quotes erd
25884 \end_inset
25885
25886
25887 \begin_inset ERT
25888 status collapsed
25889
25890 \begin_layout Standard
25891
25892 }
25893 \end_layout
25894
25895 \end_inset
25896
25897  as raised word.
25898 \end_layout
25899
25900 \begin_layout Standard
25901 If you want to prevent this for a certain reason, set the box height to
25902  a zero value.
25903  For example use
25904 \end_layout
25905
25906 \begin_layout Standard
25907
25908 \series bold
25909
25910 \backslash
25911 raisebox{-
25912 \backslash
25913 depth}[0pt]{
25914 \end_layout
25915
25916 \begin_layout Standard
25917 This is a text line with the word 
25918 \begin_inset ERT
25919 status collapsed
25920
25921 \begin_layout Standard
25922
25923
25924 \backslash
25925 raisebox{-
25926 \backslash
25927 depth}[0pt]{
25928 \end_layout
25929
25930 \end_inset
25931
25932
25933 \begin_inset Quotes eld
25934 \end_inset
25935
25936 preventing
25937 \begin_inset Quotes erd
25938 \end_inset
25939
25940
25941 \begin_inset ERT
25942 status collapsed
25943
25944 \begin_layout Standard
25945
25946 }
25947 \end_layout
25948
25949 \end_inset
25950
25951  as lowered word.
25952 \newline
25953 This is a text line with the word 
25954 \begin_inset ERT
25955 status collapsed
25956
25957 \begin_layout Standard
25958
25959
25960 \backslash
25961 raisebox{0.5cm}[0pt]{
25962 \end_layout
25963
25964 \end_inset
25965
25966
25967 \begin_inset Quotes eld
25968 \end_inset
25969
25970 testing
25971 \begin_inset Quotes erd
25972 \end_inset
25973
25974
25975 \begin_inset ERT
25976 status collapsed
25977
25978 \begin_layout Standard
25979
25980 }
25981 \end_layout
25982
25983 \end_inset
25984
25985  as raised word.
25986 \end_layout
25987
25988 \begin_layout Section
25989 Colored Boxes
25990 \begin_inset LatexCommand label
25991 name "sec:Colored-Boxes"
25992
25993 \end_inset
25994
25995
25996 \begin_inset LatexCommand index
25997 name "Boxes ! Color"
25998
25999 \end_inset
26000
26001
26002 \end_layout
26003
26004 \begin_layout Subsection
26005 Color for Text
26006 \begin_inset LatexCommand index
26007 name "Color ! for Text"
26008
26009 \end_inset
26010
26011
26012 \end_layout
26013
26014 \begin_layout Standard
26015 To color the background of text the text must be put into a so called colorbox.
26016  This requires that the LaTeX-package 
26017 \series bold
26018 color
26019 \series default
26020
26021 \begin_inset LatexCommand index
26022 name "LaTeX-packages ! color"
26023
26024 \end_inset
26025
26026  is loaded in the document preamble with the command
26027 \end_layout
26028
26029 \begin_layout Standard
26030
26031 \series bold
26032
26033 \backslash
26034 @ifundef\SpecialChar \textcompwordmark{}
26035 ined{textcolor}
26036 \newline
26037
26038 \begin_inset ERT
26039 status collapsed
26040
26041 \begin_layout Standard
26042
26043
26044 \backslash
26045 hphantom{ }
26046 \end_layout
26047
26048 \end_inset
26049
26050 {
26051 \backslash
26052 usepackage{color}}{}
26053 \end_layout
26054
26055 \begin_layout Standard
26056 The package 
26057 \series bold
26058 color
26059 \series default
26060  will be loaded automatically by LyX when you color text
26061 \begin_inset Foot
26062 status collapsed
26063
26064 \begin_layout Standard
26065 To avoid that it is loaded twice the command 
26066 \series bold
26067
26068 \backslash
26069 @ifundef\SpecialChar \textcompwordmark{}
26070 ined
26071 \series default
26072  is used.
26073 \end_layout
26074
26075 \end_inset
26076
26077 .
26078 \end_layout
26079
26080 \begin_layout Standard
26081 \begin_inset VSpace medskip
26082 \end_inset
26083
26084 Colorboxes are created with the command 
26085 \series bold
26086
26087 \backslash
26088 colorbox
26089 \series default
26090 .
26091  This will be used with the following scheme:
26092 \end_layout
26093
26094 \begin_layout Standard
26095
26096 \series bold
26097
26098 \backslash
26099 colorbox{color}{box content}
26100 \end_layout
26101
26102 \begin_layout Standard
26103 The box content can also be a box and colorboxes can also be within other
26104  boxes.
26105 \end_layout
26106
26107 \begin_layout Standard
26108 The following colors are predefined:
26109 \newline
26110
26111 \family sans
26112 black
26113 \family default
26114
26115 \family sans
26116 blue
26117 \family default
26118
26119 \family sans
26120 cyan
26121 \family default
26122 \series bold
26123 ,
26124 \series default
26125  
26126 \family sans
26127 green
26128 \family default
26129
26130 \family sans
26131 magenta
26132 \family default
26133
26134 \family sans
26135 red
26136 \family default
26137
26138 \family sans
26139 white
26140 \family default
26141 , and 
26142 \family sans
26143 yellow
26144 \family default
26145 .
26146 \newline
26147 You can also define your own color as described in section\InsetSpace ~
26148
26149 \begin_inset LatexCommand ref
26150 reference "sec:Colored-Tables"
26151
26152 \end_inset
26153
26154 .
26155 \end_layout
26156
26157 \begin_layout Standard
26158 To have e.\InsetSpace \thinspace{}
26159 g.\InsetSpace ~
26160 a red background for a word, insert the command
26161 \end_layout
26162
26163 \begin_layout Standard
26164
26165 \series bold
26166
26167 \backslash
26168 colorbox{red}{
26169 \end_layout
26170
26171 \begin_layout Standard
26172 before the word in ERT.
26173  Behind the word insert a closing brace 
26174 \begin_inset Quotes eld
26175 \end_inset
26176
26177
26178 \series bold
26179 }
26180 \series default
26181
26182 \begin_inset Quotes erd
26183 \end_inset
26184
26185  in ERT.
26186 \newline
26187 This is the result:
26188 \end_layout
26189
26190 \begin_layout Standard
26191 This is a line where the word 
26192 \begin_inset ERT
26193 status collapsed
26194
26195 \begin_layout Standard
26196
26197
26198 \backslash
26199 colorbox{red}{
26200 \end_layout
26201
26202 \end_inset
26203
26204
26205 \begin_inset Quotes eld
26206 \end_inset
26207
26208 Attention!
26209 \begin_inset Quotes erd
26210 \end_inset
26211
26212
26213 \begin_inset ERT
26214 status collapsed
26215
26216 \begin_layout Standard
26217
26218 }
26219 \end_layout
26220
26221 \end_inset
26222
26223  has a red background.
26224 \end_layout
26225
26226 \begin_layout Standard
26227 \begin_inset VSpace bigskip
26228 \end_inset
26229
26230 If you would have the box frame in a different color, you can use the command
26231  
26232 \series bold
26233
26234 \backslash
26235 fcolorbox
26236 \series default
26237  with the following scheme:
26238 \end_layout
26239
26240 \begin_layout Standard
26241
26242 \series bold
26243
26244 \backslash
26245 fcolorbox{frame color}{box color}{box content}
26246 \end_layout
26247
26248 \begin_layout Standard
26249
26250 \series bold
26251
26252 \backslash
26253 fcolorbox
26254 \series default
26255  is an extension to 
26256 \series bold
26257
26258 \backslash
26259 colorbox
26260 \series default
26261 .
26262  The frame thickness and the space between the frame and the box content
26263  can be adjusted with the lengths 
26264 \series bold
26265
26266 \backslash
26267 fboxrule
26268 \series default
26269  and 
26270 \series bold
26271
26272 \backslash
26273 fboxsep
26274 \series default
26275 , respectively, as described in section\InsetSpace ~
26276
26277 \begin_inset LatexCommand ref
26278 reference "sec:Framed-Boxes"
26279
26280 \end_inset
26281
26282 .
26283 \end_layout
26284
26285 \begin_layout Standard
26286 For the following example the command
26287 \end_layout
26288
26289 \begin_layout Standard
26290
26291 \series bold
26292
26293 \backslash
26294 fcolorbox{cyan}{magenta}{
26295 \end_layout
26296
26297 \begin_layout Standard
26298 was used.
26299 \end_layout
26300
26301 \begin_layout Standard
26302 Here is an example where the frame line thickness was set to 1\InsetSpace \thinspace{}
26303 mm:
26304 \newline
26305
26306 \begin_inset ERT
26307 status collapsed
26308
26309 \begin_layout Standard
26310
26311
26312 \backslash
26313 fboxrule 1mm 
26314 \backslash
26315 fboxsep 1mm
26316 \end_layout
26317
26318 \end_inset
26319
26320
26321 \begin_inset ERT
26322 status collapsed
26323
26324 \begin_layout Standard
26325
26326
26327 \backslash
26328 fcolorbox{cyan}{magenta}{
26329 \end_layout
26330
26331 \end_inset
26332
26333 This is text within a colored, framed box.
26334 \begin_inset ERT
26335 status collapsed
26336
26337 \begin_layout Standard
26338
26339 }
26340 \end_layout
26341
26342 \end_inset
26343
26344
26345 \end_layout
26346
26347 \begin_layout Standard
26348 \begin_inset VSpace bigskip
26349 \end_inset
26350
26351 Of course you can also have colored text inside a colorbox:
26352 \newline
26353
26354 \begin_inset ERT
26355 status collapsed
26356
26357 \begin_layout Standard
26358
26359
26360 \backslash
26361 fcolorbox{cyan}{magenta}{
26362 \end_layout
26363
26364 \end_inset
26365
26366
26367 \color yellow
26368 This is colored text within a colored, framed box.
26369 \color none
26370
26371 \begin_inset ERT
26372 status collapsed
26373
26374 \begin_layout Standard
26375
26376 }
26377 \end_layout
26378
26379 \end_inset
26380
26381
26382 \begin_inset ERT
26383 status collapsed
26384
26385 \begin_layout Standard
26386
26387
26388 \backslash
26389 fboxrule 0.4pt 
26390 \backslash
26391 fboxsep 3pt
26392 \end_layout
26393
26394 \end_inset
26395
26396
26397 \end_layout
26398
26399 \begin_layout Standard
26400
26401 \series bold
26402 \begin_inset VSpace medskip
26403 \end_inset
26404
26405
26406 \end_layout
26407
26408 \begin_layout Standard
26409 \begin_inset Note Greyedout
26410 status open
26411
26412 \begin_layout Standard
26413
26414 \series bold
26415 Note:
26416 \series default
26417  Text in colorboxes cannot have line breaks.
26418  To color multiple text lines or paragraphs, use a box inside a colorbox
26419  as described in the following.
26420 \end_layout
26421
26422 \end_inset
26423
26424
26425 \end_layout
26426
26427 \begin_layout Subsection
26428 Color for Paragraphs
26429 \begin_inset LatexCommand label
26430 name "sub:Color-for-Paragraphs"
26431
26432 \end_inset
26433
26434
26435 \begin_inset LatexCommand index
26436 name "Color ! for Paragraphs"
26437
26438 \end_inset
26439
26440
26441 \end_layout
26442
26443 \begin_layout Standard
26444 To set the background color for more than one text line, put the text into
26445  a minipage.
26446  Before the minipage insert the 
26447 \series bold
26448
26449 \backslash
26450 colorbox
26451 \series default
26452  command
26453 \end_layout
26454
26455 \begin_layout Standard
26456
26457 \series bold
26458
26459 \backslash
26460 colorbox{color}{
26461 \end_layout
26462
26463 \begin_layout Standard
26464 in ERT.
26465  Behind the minipage insert a closing brace 
26466 \begin_inset Quotes eld
26467 \end_inset
26468
26469
26470 \series bold
26471 }
26472 \series default
26473
26474 \begin_inset Quotes erd
26475 \end_inset
26476
26477  in ERT.
26478 \end_layout
26479
26480 \begin_layout Standard
26481 \begin_inset ERT
26482 status collapsed
26483
26484 \begin_layout Standard
26485
26486
26487 \backslash
26488 colorbox{lightgrey}{
26489 \end_layout
26490
26491 \end_inset
26492
26493
26494 \begin_inset Box Frameless
26495 position "t"
26496 hor_pos "c"
26497 has_inner_box 1
26498 inner_pos "t"
26499 use_parbox 0
26500 width "100col%"
26501 special "none"
26502 height "1in"
26503 height_special "totalheight"
26504 status collapsed
26505
26506 \begin_layout Standard
26507 This is text with background color.
26508  This is text with background color.
26509 \end_layout
26510
26511 \begin_layout Standard
26512 \begin_inset VSpace defskip
26513 \end_inset
26514
26515 The text can have footnotes
26516 \begin_inset Foot
26517 status collapsed
26518
26519 \begin_layout Standard
26520 Another example footnote
26521 \end_layout
26522
26523 \end_inset
26524
26525  and can include tables and figures.
26526 \end_layout
26527
26528 \begin_layout Standard
26529 \align center
26530 \begin_inset Tabular
26531 <lyxtabular version="3" rows="3" columns="3">
26532 <features>
26533 <column alignment="center" valignment="top" leftline="true" width="0">
26534 <column alignment="center" valignment="top" leftline="true" width="0">
26535 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
26536 <row topline="true">
26537 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26538 \begin_inset Text
26539
26540 \begin_layout Standard
26541 a
26542 \end_layout
26543
26544 \end_inset
26545 </cell>
26546 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26547 \begin_inset Text
26548
26549 \begin_layout Standard
26550 !
26551 \end_layout
26552
26553 \end_inset
26554 </cell>
26555 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26556 \begin_inset Text
26557
26558 \begin_layout Standard
26559 3
26560 \end_layout
26561
26562 \end_inset
26563 </cell>
26564 </row>
26565 <row topline="true">
26566 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26567 \begin_inset Text
26568
26569 \begin_layout Standard
26570 <
26571 \end_layout
26572
26573 \end_inset
26574 </cell>
26575 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26576 \begin_inset Text
26577
26578 \begin_layout Standard
26579 b2
26580 \begin_inset Quotes erd
26581 \end_inset
26582
26583 |
26584 \end_layout
26585
26586 \end_inset
26587 </cell>
26588 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26589 \begin_inset Text
26590
26591 \begin_layout Standard
26592 >
26593 \end_layout
26594
26595 \end_inset
26596 </cell>
26597 </row>
26598 <row topline="true" bottomline="true">
26599 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26600 \begin_inset Text
26601
26602 \begin_layout Standard
26603 1
26604 \end_layout
26605
26606 \end_inset
26607 </cell>
26608 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26609 \begin_inset Text
26610
26611 \begin_layout Standard
26612 §
26613 \end_layout
26614
26615 \end_inset
26616 </cell>
26617 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26618 \begin_inset Text
26619
26620 \begin_layout Standard
26621 c
26622 \end_layout
26623
26624 \end_inset
26625 </cell>
26626 </row>
26627 </lyxtabular>
26628
26629 \end_inset
26630
26631
26632 \end_layout
26633
26634 \end_inset
26635
26636
26637 \begin_inset ERT
26638 status collapsed
26639
26640 \begin_layout Standard
26641
26642 }
26643 \end_layout
26644
26645 \end_inset
26646
26647
26648 \end_layout
26649
26650 \begin_layout Section
26651 URLs (Uniform Resource Locators)
26652 \begin_inset LatexCommand index
26653 name "URLs"
26654
26655 \end_inset
26656
26657
26658 \end_layout
26659
26660 \begin_layout Standard
26661 Links to web pages or email addresses can be inserted via the menu 
26662 \family sans
26663 Insert\SpecialChar \menuseparator
26664 URL
26665 \family default
26666 .
26667  The appearing URL dialog has two fields; the 
26668 \family sans
26669 URL
26670 \family default
26671  field and the 
26672 \family sans
26673 Name
26674 \family default
26675  field for the URL description, which will be typeset as plain text immediately
26676  before the URL.
26677 \end_layout
26678
26679 \begin_layout Standard
26680 Here is an example URL: 
26681 \begin_inset LatexCommand url
26682 name "LyX's homepage"
26683 target "http://www.lyx.org"
26684
26685 \end_inset
26686
26687
26688 \end_layout
26689
26690 \begin_layout Standard
26691 The option 
26692 \family sans
26693 Generate\InsetSpace ~
26694 hyperlink
26695 \family default
26696  in the URL dialog has only an affect when you export your document to the
26697  format 
26698 \begin_inset Quotes eld
26699 \end_inset
26700
26701
26702 \family sans
26703 LinuxDoc
26704 \family default
26705
26706 \begin_inset Quotes erd
26707 \end_inset
26708
26709 .
26710 \end_layout
26711
26712 \begin_layout Standard
26713 You cannot change the style of the link text.
26714  The text of the 
26715 \family sans
26716 Name
26717 \family default
26718  field will have the default text style of the document while the text of
26719  the 
26720 \family sans
26721 URL
26722 \family default
26723  field will have the style 
26724 \begin_inset Quotes eld
26725 \end_inset
26726
26727
26728 \family sans
26729 Typewriter
26730 \family default
26731
26732 \begin_inset Quotes erd
26733 \end_inset
26734
26735 .
26736 \end_layout
26737
26738 \begin_layout Standard
26739 When you use the LaTeX-package 
26740 \series bold
26741 hyperref
26742 \series default
26743
26744 \begin_inset LatexCommand index
26745 name "LaTeX-packages ! hyperref"
26746
26747 \end_inset
26748
26749  to link cross-references in the output, URLs will automatically become
26750  clickable hyperlinks in DVI and PDF-output.
26751 \end_layout
26752
26753 \begin_layout Standard
26754 \begin_inset Note Greyedout
26755 status open
26756
26757 \begin_layout Standard
26758
26759 \series bold
26760 Note:
26761 \series default
26762  When you use the following characters: "%", "#", "^", you have to write
26763  them with a preceding backslash, e.\InsetSpace \thinspace{}
26764 g.\InsetSpace ~
26765
26766 \begin_inset Quotes eld
26767 \end_inset
26768
26769
26770 \backslash
26771 #
26772 \begin_inset Quotes erd
26773 \end_inset
26774
26775 .
26776  URLs must not end with a backslash.
26777 \end_layout
26778
26779 \end_inset
26780
26781
26782 \end_layout
26783
26784 \begin_layout Standard
26785 \begin_inset VSpace bigskip
26786 \end_inset
26787
26788 To create real hyperlinks without the force to write the link location to
26789  the text, you can use the command
26790 \end_layout
26791
26792 \begin_layout Standard
26793
26794 \series bold
26795
26796 \backslash
26797 href{link location}{link text}
26798 \end_layout
26799
26800 \begin_layout Standard
26801 in ERT.
26802  To get for example a link to LyX's web page, write the command
26803 \end_layout
26804
26805 \begin_layout Standard
26806
26807 \series bold
26808
26809 \backslash
26810 href{http://www.lyx.org}{
26811 \end_layout
26812
26813 \begin_layout Standard
26814 in ERT.
26815  Insert after the command the link text 
26816 \begin_inset Quotes eld
26817 \end_inset
26818
26819 LyX's homepage
26820 \begin_inset Quotes erd
26821 \end_inset
26822
26823  as normal text followed by a closing brace 
26824 \begin_inset Quotes eld
26825 \end_inset
26826
26827
26828 \series bold
26829 }
26830 \series default
26831
26832 \begin_inset Quotes erd
26833 \end_inset
26834
26835  in ERT.
26836  This is the result: 
26837 \begin_inset ERT
26838 status collapsed
26839
26840 \begin_layout Standard
26841
26842
26843 \backslash
26844 href{http://www.lyx.org}{
26845 \end_layout
26846
26847 \end_inset
26848
26849 LyX's homepage
26850 \begin_inset ERT
26851 status collapsed
26852
26853 \begin_layout Standard
26854
26855 }
26856 \end_layout
26857
26858 \end_inset
26859
26860
26861 \end_layout
26862
26863 \begin_layout Standard
26864 To link to email addresses, add the prefix 
26865 \begin_inset Quotes eld
26866 \end_inset
26867
26868
26869 \family sans
26870 mailto:
26871 \family default
26872
26873 \begin_inset Quotes erd
26874 \end_inset
26875
26876  to the link location:
26877 \newline
26878 Email to 
26879 \begin_inset ERT
26880 status collapsed
26881
26882 \begin_layout Standard
26883
26884
26885 \backslash
26886 href{mailto:lyx-docs@lists.lyx.org?subject=LyX's documentation}{
26887 \end_layout
26888
26889 \end_inset
26890
26891 lyx-docs mailing list
26892 \begin_inset ERT
26893 status collapsed
26894
26895 \begin_layout Standard
26896
26897 }
26898 \end_layout
26899
26900 \end_inset
26901
26902 .
26903 \end_layout
26904
26905 \begin_layout Standard
26906 Using 
26907 \series bold
26908
26909 \backslash
26910 href
26911 \series default
26912  instead of LyX's URL box has the advantage that you can specify the text
26913  style of the link text like for all other text parts.
26914  You can therefore set hyphenation points and forced linebreaks to have
26915  long link text broken at the page margin.
26916  You are furthermore able to change the text style for all URLs in your
26917  document with an option in 
26918 \series bold
26919 hyperref
26920 \series default
26921 's load command and the restrictions mentioned above doesn't apply for 
26922 \series bold
26923
26924 \backslash
26925 href
26926 \series default
26927 .
26928 \end_layout
26929
26930 \begin_layout Chapter
26931 External Stuff
26932 \begin_inset LatexCommand index
26933 name "External Stuff"
26934
26935 \end_inset
26936
26937
26938 \end_layout
26939
26940 \begin_layout Standard
26941 With the menu 
26942 \family sans
26943 Insert\SpecialChar \menuseparator
26944 File
26945 \family default
26946  you can insert external material to your document.
26947  This can be:
26948 \end_layout
26949
26950 \begin_layout Description
26951 LyX\InsetSpace ~
26952 Document Another LyX document; its content is directly inserted to your
26953  document.
26954 \end_layout
26955
26956 \begin_layout Description
26957 Plain\InsetSpace ~
26958 Text A text document; every of its text lines is inserted to your document
26959  as own paragraph.
26960 \end_layout
26961
26962 \begin_layout Description
26963 Plain\InsetSpace ~
26964 Text,\InsetSpace ~
26965 Join\InsetSpace ~
26966 Lines A text document; its text lines are inserted as they
26967  are.
26968  Empty text lines creates a new paragraph in your document.
26969 \end_layout
26970
26971 \begin_layout Description
26972 External\InsetSpace ~
26973 Material Files in various formats.
26974 \end_layout
26975
26976 \begin_layout Description
26977 Child\InsetSpace ~
26978 Document LyX or LaTeX-documents.
26979 \end_layout
26980
26981 \begin_layout Section
26982 External Material
26983 \begin_inset LatexCommand index
26984 name "External Stuff ! External Material"
26985
26986 \end_inset
26987
26988
26989 \end_layout
26990
26991 \begin_layout Standard
26992 The external material feature allows you to insert files to your document
26993  without converting them previously to a format that can be read by the
26994  document output format because LyX takes care of needed conversions.
26995  This is similar to images that can be inserted in various image formats
26996  to LyX documents.
26997 \end_layout
26998
26999 \begin_layout Standard
27000 External material can be inserted via the 
27001 \family sans
27002 External Material
27003 \family default
27004  dialog that is accessible with the menu 
27005 \family sans
27006 Insert\SpecialChar \menuseparator
27007 File\SpecialChar \menuseparator
27008 External\InsetSpace ~
27009 Material
27010 \family default
27011 .
27012  Currently the following file types (
27013 \family sans
27014 Templates
27015 \family default
27016 ) are allowed:
27017 \end_layout
27018
27019 \begin_layout Description
27020 ChessDiagram This template supports chess position diagrams made with the
27021  program 
27022 \begin_inset ERT
27023 status collapsed
27024
27025 \begin_layout Standard
27026
27027
27028 \backslash
27029 href{http://en.wikipedia.org/wiki/XBoard}{
27030 \end_layout
27031
27032 \end_inset
27033
27034
27035 \series bold
27036 XBoard
27037 \series default
27038
27039 \begin_inset ERT
27040 status collapsed
27041
27042 \begin_layout Standard
27043
27044 }
27045 \end_layout
27046
27047 \end_inset
27048
27049 .
27050 \end_layout
27051
27052 \begin_layout Description
27053 Date This inserts the date in the form 
27054 \emph on
27055 Day-Month-Year
27056 \emph default
27057 .
27058  This is a date inserted as external material: 
27059 \begin_inset External
27060         template Date
27061         filename .
27062
27063 \end_inset
27064
27065
27066 \newline
27067 The date is not shown within LyX, only in the output.
27068  There are two other methods of inserting a date, via menu 
27069 \family sans
27070 Insert\SpecialChar \menuseparator
27071 Date
27072 \family default
27073  and with the LaTeX command 
27074 \series bold
27075
27076 \backslash
27077 today
27078 \series default
27079  as ERT.
27080  The different methods are compared in Table\InsetSpace ~
27081
27082 \begin_inset LatexCommand ref
27083 reference "tab:Comparison-of-the"
27084
27085 \end_inset
27086
27087 .
27088 \end_layout
27089
27090 \begin_layout Description
27091 LilyPond This template is used for music notation typeset with the program
27092 \begin_inset ERT
27093 status collapsed
27094
27095 \begin_layout Standard
27096
27097
27098 \backslash
27099 linebreak 
27100 \end_layout
27101
27102 \end_inset
27103
27104
27105 \begin_inset ERT
27106 status collapsed
27107
27108 \begin_layout Standard
27109
27110
27111 \backslash
27112 href{http://en.wikipedia.org/wiki/LilyPond}{
27113 \end_layout
27114
27115 \end_inset
27116
27117
27118 \series bold
27119 LilyPond
27120 \series default
27121
27122 \begin_inset ERT
27123 status collapsed
27124
27125 \begin_layout Standard
27126
27127 }
27128 \end_layout
27129
27130 \end_inset
27131
27132 .
27133 \begin_inset Note Note
27134 status collapsed
27135
27136 \begin_layout Standard
27137 The command 
27138 \series bold
27139
27140 \backslash
27141 linebreak
27142 \series default
27143  breaks the line while the remaining text in the line is stretched to the
27144  page margin.
27145 \end_layout
27146
27147 \end_inset
27148
27149
27150 \end_layout
27151
27152 \begin_layout Description
27153 RasterImage This can be used for bitmap images.
27154  Nearly all popular image formats are supported.
27155  The image can be treated in the 
27156 \family sans
27157 External material
27158 \family default
27159  dialog like the images that are usually included via the 
27160 \family sans
27161 Graphics
27162 \family default
27163  dialog as described in section\InsetSpace ~
27164
27165 \begin_inset LatexCommand ref
27166 reference "sec:Graphics-Dialog"
27167
27168 \end_inset
27169
27170 .
27171  The difference is that only raster images are allowed, that means that
27172  PDF and EPS-images are not supported.
27173 \end_layout
27174
27175 \begin_layout Description
27176 XFig This template supports images created with the program 
27177 \begin_inset ERT
27178 status collapsed
27179
27180 \begin_layout Standard
27181
27182
27183 \backslash
27184 href{http://en.wikipedia.org/wiki/Xfig}{
27185 \end_layout
27186
27187 \end_inset
27188
27189
27190 \series bold
27191 Xfig
27192 \series default
27193
27194 \begin_inset ERT
27195 status collapsed
27196
27197 \begin_layout Standard
27198
27199 }
27200 \end_layout
27201
27202 \end_inset
27203
27204 .
27205 \end_layout
27206
27207 \begin_layout Standard
27208 \begin_inset Float table
27209 placement h
27210 wide false
27211 sideways false
27212 status open
27213
27214 \begin_layout Standard
27215 \begin_inset Caption
27216
27217 \begin_layout Standard
27218 \begin_inset LatexCommand label
27219 name "tab:Comparison-of-the"
27220
27221 \end_inset
27222
27223 Comparison of the date input methods.
27224 \end_layout
27225
27226 \end_inset
27227
27228
27229 \end_layout
27230
27231 \begin_layout Standard
27232 \align center
27233 \begin_inset Tabular
27234 <lyxtabular version="3" rows="4" columns="4">
27235 <features>
27236 <column alignment="center" valignment="top" leftline="true" width="0">
27237 <column alignment="center" valignment="top" leftline="true" width="0">
27238 <column alignment="center" valignment="top" leftline="true" width="0">
27239 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
27240 <row topline="true">
27241 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27242 \begin_inset Text
27243
27244 \begin_layout Standard
27245 Document format
27246 \end_layout
27247
27248 \end_inset
27249 </cell>
27250 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27251 \begin_inset Text
27252
27253 \begin_layout Standard
27254
27255 \family sans
27256 External Material\SpecialChar \menuseparator
27257 Date
27258 \end_layout
27259
27260 \end_inset
27261 </cell>
27262 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27263 \begin_inset Text
27264
27265 \begin_layout Standard
27266
27267 \family sans
27268 Insert\SpecialChar \menuseparator
27269 Date
27270 \end_layout
27271
27272 \end_inset
27273 </cell>
27274 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27275 \begin_inset Text
27276
27277 \begin_layout Standard
27278 command 
27279 \series bold
27280
27281 \backslash
27282 today
27283 \end_layout
27284
27285 \end_inset
27286 </cell>
27287 </row>
27288 <row topline="true">
27289 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27290 \begin_inset Text
27291
27292 \begin_layout Standard
27293 LyX
27294 \end_layout
27295
27296 \end_inset
27297 </cell>
27298 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27299 \begin_inset Text
27300
27301 \begin_layout Standard
27302 as inset box
27303 \end_layout
27304
27305 \end_inset
27306 </cell>
27307 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27308 \begin_inset Text
27309
27310 \begin_layout Standard
27311 as date
27312 \end_layout
27313
27314 \end_inset
27315 </cell>
27316 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27317 \begin_inset Text
27318
27319 \begin_layout Standard
27320 as ERT inset box
27321 \end_layout
27322
27323 \end_inset
27324 </cell>
27325 </row>
27326 <row topline="true">
27327 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27328 \begin_inset Text
27329
27330 \begin_layout Standard
27331 LaTeX
27332 \end_layout
27333
27334 \end_inset
27335 </cell>
27336 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27337 \begin_inset Text
27338
27339 \begin_layout Standard
27340 as date
27341 \end_layout
27342
27343 \end_inset
27344 </cell>
27345 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27346 \begin_inset Text
27347
27348 \begin_layout Standard
27349 as date
27350 \end_layout
27351
27352 \end_inset
27353 </cell>
27354 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27355 \begin_inset Text
27356
27357 \begin_layout Standard
27358 as command
27359 \end_layout
27360
27361 \end_inset
27362 </cell>
27363 </row>
27364 <row topline="true" bottomline="true">
27365 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27366 \begin_inset Text
27367
27368 \begin_layout Standard
27369 DVI, PDF, PS
27370 \end_layout
27371
27372 \end_inset
27373 </cell>
27374 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27375 \begin_inset Text
27376
27377 \begin_layout Standard
27378 as date
27379 \end_layout
27380
27381 \end_inset
27382 </cell>
27383 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27384 \begin_inset Text
27385
27386 \begin_layout Standard
27387 as date
27388 \end_layout
27389
27390 \end_inset
27391 </cell>
27392 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27393 \begin_inset Text
27394
27395 \begin_layout Standard
27396 as date
27397 \end_layout
27398
27399 \end_inset
27400 </cell>
27401 </row>
27402 </lyxtabular>
27403
27404 \end_inset
27405
27406
27407 \end_layout
27408
27409 \end_inset
27410
27411
27412 \end_layout
27413
27414 \begin_layout Standard
27415 When you use the option 
27416 \family sans
27417 Draft
27418 \family default
27419  in the 
27420 \family sans
27421 File
27422 \family default
27423  tab of the 
27424 \family sans
27425 External Material
27426 \family default
27427  dialog, only the path to the inserted file is shown in the output.
27428 \newline
27429 External
27430  material is displayed in LyX either as box like this: 
27431 \begin_inset Graphics
27432         filename clipart/ExternalMaterialQt4.png
27433         scale 85
27434
27435 \end_inset
27436
27437  or as image, depending on the setting in the 
27438 \family sans
27439 LyX\InsetSpace ~
27440 View
27441 \family default
27442  tab of the 
27443 \family sans
27444 External Material
27445 \family default
27446  dialog.
27447 \end_layout
27448
27449 \begin_layout Standard
27450 The 
27451 \family sans
27452 \emph on
27453 Customization
27454 \family default
27455 \emph default
27456  manual explains how you can define your own templates.
27457 \end_layout
27458
27459 \begin_layout Section
27460 Child Documents
27461 \begin_inset LatexCommand label
27462 name "sec:Child-Documents"
27463
27464 \end_inset
27465
27466
27467 \begin_inset LatexCommand index
27468 name "External Stuff ! Child Documents"
27469
27470 \end_inset
27471
27472
27473 \begin_inset LatexCommand index
27474 name "Files ! Include"
27475
27476 \end_inset
27477
27478
27479 \end_layout
27480
27481 \begin_layout Standard
27482 Child documents are used when you have a long document consisting of several
27483  larger parts or sections.
27484  For maintenance it is often useful and sometimes even required to split
27485  the document in several files that can be revised separately.
27486  The different documents are then the so called child documents and a master
27487  document connects them to print the full document or parts of it.
27488 \end_layout
27489
27490 \begin_layout Standard
27491 Included documents are displayed in LyX as a box like this: 
27492 \begin_inset Graphics
27493         filename clipart/ChildDocumentQt4.png
27494         scale 85
27495
27496 \end_inset
27497
27498  To include child documents to a master document use the menu 
27499 \family sans
27500 Insert\SpecialChar \menuseparator
27501 File\SpecialChar \menuseparator
27502 Child\InsetSpace ~
27503 Documents
27504 \family default
27505 .
27506  A dialog pops up where you can choose between four include methods:
27507 \end_layout
27508
27509 \begin_layout Description
27510 Include You can include LyX and LaTeX-documents.
27511  When you press the 
27512 \family sans
27513 Load
27514 \family default
27515  button in the 
27516 \family sans
27517 Child Document
27518 \family default
27519  dialog, the included documents will be opened in LyX in a new file tab
27520  so that you can modify it.
27521 \newline
27522
27523 \end_layout
27524
27525 \begin_layout Standard
27526 Here is a child document inserted using 
27527 \family sans
27528 Include
27529 \family default
27530
27531 \begin_inset Include \include{DummyDocument1.lyx}
27532 preview false
27533
27534 \end_inset
27535
27536
27537 \end_layout
27538
27539 \begin_layout Standard
27540 The section numbering includes the sections of the included files in the
27541  order they are inserted in the master document.
27542  The included example document has for example a subsection that is numbered
27543  as subsection of this section.
27544  Labels of included documents can be referenced: Subsection\InsetSpace ~
27545
27546 \begin_inset LatexCommand ref
27547 reference "sub:External-Subsection-1"
27548
27549 \end_inset
27550
27551
27552 \end_layout
27553
27554 \begin_layout Standard
27555 The preamble of the child document is ignored, only the preamble of the
27556  master document is used.
27557  Included documents are inserted starting on a new page and end with a pagebreak.
27558 \end_layout
27559
27560 \begin_layout Standard
27561 With the LaTeX-command 
27562 \series bold
27563
27564 \backslash
27565 includeonly 
27566 \series default
27567 you can specify which included child documents are processed when the output
27568  is generated.
27569  This is useful when you are perhaps only working on a certain chapter of
27570  your large document as this saves compiling time.
27571  
27572 \series bold
27573
27574 \backslash
27575 includeonly
27576 \series default
27577  is inserted to the master document preamble.
27578  It takes a comma-separated list of the filenames as argument, e.g.
27579 \end_layout
27580
27581 \begin_layout Standard
27582
27583 \series bold
27584
27585 \backslash
27586 includeonly{chapter1,chapter5}
27587 \end_layout
27588
27589 \begin_layout Standard
27590 will only process the included files named 
27591 \begin_inset Quotes eld
27592 \end_inset
27593
27594 chapter1.lyx
27595 \begin_inset Quotes erd
27596 \end_inset
27597
27598  (or 
27599 \begin_inset Quotes eld
27600 \end_inset
27601
27602 chapter1.tex
27603 \begin_inset Quotes erd
27604 \end_inset
27605
27606 ) and 
27607 \begin_inset Quotes eld
27608 \end_inset
27609
27610 chapter5.lyx
27611 \begin_inset Quotes erd
27612 \end_inset
27613
27614  .
27615 \end_layout
27616
27617 \begin_layout Standard
27618 \begin_inset Note Greyedout
27619 status open
27620
27621 \begin_layout Standard
27622
27623 \series bold
27624 Note:
27625 \series default
27626  When you have included a LyX- or LaTeX-file, you are warned when you export/vie
27627 w the document in case that the child document uses another document class
27628  than the master document as this will lead to unexpected outputs.
27629 \end_layout
27630
27631 \end_inset
27632
27633
27634 \end_layout
27635
27636 \begin_layout Description
27637 Input This method is very similar to the Include method.
27638  The differences are:
27639 \end_layout
27640
27641 \begin_deeper
27642 \begin_layout Itemize
27643 Input files don't start with a new page and don't end with a pagebreak.
27644 \end_layout
27645
27646 \begin_layout Itemize
27647 Input files can be previewed in LyX when 
27648 \family sans
27649 Instant\InsetSpace ~
27650 Preview
27651 \family default
27652  is enabled in LyX's preferences under 
27653 \family sans
27654 Look\InsetSpace ~
27655 and\InsetSpace ~
27656 feel\SpecialChar \menuseparator
27657 Graphics
27658 \family default
27659 .
27660 \end_layout
27661
27662 \begin_layout Itemize
27663 The LaTeX-command 
27664 \series bold
27665
27666 \backslash
27667 includeonly
27668 \series default
27669  cannot be used.
27670 \end_layout
27671
27672 \end_deeper
27673 \begin_layout Standard
27674 Here is a child document inserted using 
27675 \family sans
27676 Input
27677 \family default
27678
27679 \begin_inset Include \input{DummyDocument2.lyx}
27680 preview false
27681
27682 \end_inset
27683
27684
27685 \end_layout
27686
27687 \begin_layout Description
27688 Verbatim With this method every text file can be included.
27689  The file is shown in the output with its source code, no command used in
27690  the text is invoked.
27691  You can use the option 
27692 \family sans
27693 Mark spaces in output
27694 \family default
27695  that displays the character 
27696 \begin_inset Quotes eld
27697 \end_inset
27698
27699
27700 \begin_inset ERT
27701 status collapsed
27702
27703 \begin_layout Standard
27704
27705
27706 \backslash
27707 textvisiblespace 
27708 \end_layout
27709
27710 \end_inset
27711
27712
27713 \begin_inset Quotes erd
27714 \end_inset
27715
27716  for every space character in the source code.
27717  The difference to the method via the menu 
27718 \family sans
27719 Insert\SpecialChar \menuseparator
27720 File\SpecialChar \menuseparator
27721 Plain\InsetSpace ~
27722 Text
27723 \family default
27724  is that the document content is not shown in LyX.
27725 \end_layout
27726
27727 \begin_layout Standard
27728 Here is a child document inserted as Verbatim: 
27729 \begin_inset Include \verbatiminput{DummyTextDocument.txt}
27730 preview false
27731
27732 \end_inset
27733
27734
27735 \begin_inset VSpace bigskip
27736 \end_inset
27737
27738 Here is a child document inserted as Verbatim using the 
27739 \family sans
27740 Mark spaces in output
27741 \family default
27742  option: 
27743 \begin_inset Include \verbatiminput*{DummyTextDocument.txt}
27744 preview false
27745
27746 \end_inset
27747
27748
27749 \end_layout
27750
27751 \begin_layout Standard
27752 \begin_inset VSpace bigskip
27753 \end_inset
27754
27755
27756 \end_layout
27757
27758 \begin_layout Standard
27759 \begin_inset Note Greyedout
27760 status open
27761
27762 \begin_layout Standard
27763
27764 \series bold
27765 Note:
27766 \series default
27767  As you can see in the examples above, the text of the documents included
27768  as verbatim is not broken at the end of the document lines.
27769 \end_layout
27770
27771 \end_inset
27772
27773
27774 \end_layout
27775
27776 \begin_layout Description
27777 Listings This type is described in chapter\InsetSpace ~
27778
27779 \begin_inset LatexCommand ref
27780 reference "cha:Program-Code-Listings"
27781
27782 \end_inset
27783
27784 .
27785 \end_layout
27786
27787 \begin_layout Standard
27788 \begin_inset Note Greyedout
27789 status open
27790
27791 \begin_layout Standard
27792
27793 \series bold
27794 Note:
27795 \series default
27796  Including the same document twice in a document using different methods
27797  could cause LaTeX-problems.
27798 \end_layout
27799
27800 \end_inset
27801
27802
27803 \end_layout
27804
27805 \begin_layout Chapter
27806 Program Code Listings
27807 \begin_inset LatexCommand label
27808 name "cha:Program-Code-Listings"
27809
27810 \end_inset
27811
27812
27813 \begin_inset LatexCommand index
27814 name "Listings"
27815
27816 \end_inset
27817
27818
27819 \begin_inset LatexCommand index
27820 name "Program Code"
27821
27822 \end_inset
27823
27824
27825 \begin_inset LatexCommand index
27826 name "Floats ! Listings"
27827
27828 \end_inset
27829
27830
27831 \end_layout
27832
27833 \begin_layout Standard
27834 To include and typeset program code you can use the 
27835 \family sans
27836 Listings
27837 \family default
27838  inset that can be inserted via the menu 
27839 \family sans
27840 Insert\SpecialChar \menuseparator
27841 Program Listing
27842 \family default
27843 .
27844  The LaTeX-package 
27845 \series bold
27846 listings
27847 \series default
27848
27849 \begin_inset LatexCommand index
27850 name "LaTeX-packages ! listings"
27851
27852 \end_inset
27853
27854  provides a powerful and flexible way to insert program source code to your
27855  document.
27856 \end_layout
27857
27858 \begin_layout Standard
27859 When right-clicking on a listings inset a dialog pops up where you can set
27860  the listings format.
27861 \end_layout
27862
27863 \begin_layout Standard
27864 By default, a listing starts a new paragraph in the output.
27865  The placement option 
27866 \family sans
27867 Inline\InsetSpace ~
27868 listing
27869 \family default
27870  prints the listing inline like this: 
27871 \begin_inset listings
27872 lstparams "language={C++}"
27873 inline true
27874 status open
27875
27876 \begin_layout Standard
27877
27878 int a=5;
27879 \end_layout
27880
27881 \end_inset
27882
27883
27884 \newline
27885 The option 
27886 \family sans
27887 Float
27888 \family default
27889  creates a listings float where you can specify the placement options 
27890 \begin_inset Quotes eld
27891 \end_inset
27892
27893
27894 \family sans
27895 h
27896 \family default
27897
27898 \begin_inset Quotes erd
27899 \end_inset
27900
27901
27902 \begin_inset Quotes eld
27903 \end_inset
27904
27905
27906 \family sans
27907 t
27908 \family default
27909
27910 \begin_inset Quotes erd
27911 \end_inset
27912
27913
27914 \begin_inset Quotes eld
27915 \end_inset
27916
27917
27918 \family sans
27919 b
27920 \family default
27921
27922 \begin_inset Quotes erd
27923 \end_inset
27924
27925 , and 
27926 \begin_inset Quotes eld
27927 \end_inset
27928
27929
27930 \family sans
27931 p
27932 \family default
27933
27934 \begin_inset Quotes erd
27935 \end_inset
27936
27937  corresponding to the float placement options described in section\InsetSpace ~
27938
27939 \begin_inset LatexCommand ref
27940 reference "sec:Float-Placement"
27941
27942 \end_inset
27943
27944 .
27945  The placement options can be mixed and are inserted without any separation,
27946  e.\InsetSpace \thinspace{}
27947 g.\InsetSpace ~
27948
27949 \begin_inset Quotes eld
27950 \end_inset
27951
27952
27953 \family sans
27954 htbp
27955 \family default
27956
27957 \begin_inset Quotes erd
27958 \end_inset
27959
27960 .
27961  The option 
27962 \begin_inset Quotes eld
27963 \end_inset
27964
27965 h
27966 \begin_inset Quotes erd
27967 \end_inset
27968
27969  has sometimes no effect, but you don't need to use the 
27970 \family sans
27971 Float
27972 \family default
27973  option in this case as also non-float listings can have captions and be
27974  referenced.
27975 \end_layout
27976
27977 \begin_layout Standard
27978 You can add captions to listings with the menu 
27979 \family sans
27980 Insert\SpecialChar \menuseparator
27981 Caption
27982 \family default
27983 .
27984  Listings can be referenced like floats: Listing\InsetSpace ~
27985
27986 \begin_inset LatexCommand ref
27987 reference "lst:Example-Listing"
27988
27989 \end_inset
27990
27991
27992 \end_layout
27993
27994 \begin_layout Standard
27995 \begin_inset listings
27996 lstparams "language=Python"
27997 inline false
27998 status open
27999
28000 \begin_layout Standard
28001
28002 \begin_inset Caption
28003
28004 \begin_layout Standard
28005 \begin_inset LatexCommand label
28006 name "lst:Example-Listing"
28007
28008 \end_inset
28009
28010 Example Listing float
28011 \end_layout
28012
28013 \end_inset
28014
28015 # Example listing float
28016 \end_layout
28017
28018 \begin_layout Standard
28019
28020 def func(param):
28021 \end_layout
28022
28023 \begin_layout Standard
28024
28025     'this is a python function'
28026 \end_layout
28027
28028 \begin_layout Standard
28029
28030     pass
28031 \end_layout
28032
28033 \end_inset
28034
28035
28036 \end_layout
28037
28038 \begin_layout Standard
28039 When you have set a programming language in the listings dialog, the keywords
28040  of this language will be recognized and specially typeset in the output.
28041  In the example listings the Python keyword 
28042 \begin_inset Quotes eld
28043 \end_inset
28044
28045 def
28046 \begin_inset Quotes erd
28047 \end_inset
28048
28049  is recognized and printed bold in the output.
28050 \end_layout
28051
28052 \begin_layout Standard
28053 In section 
28054 \family sans
28055 Line\InsetSpace ~
28056 numbering
28057 \family default
28058  of the listings dialog you can specify the line numbering style.
28059  You can insert a number to specify which lines are numbered to the field
28060  
28061 \family sans
28062 Step
28063 \family default
28064 .
28065  When you insert e.g.
28066  
28067 \begin_inset Quotes eld
28068 \end_inset
28069
28070 3
28071 \begin_inset Quotes erd
28072 \end_inset
28073
28074 , only every 3rd line will be numbered.
28075 \end_layout
28076
28077 \begin_layout Standard
28078 You can furthermore specify a range of lines, only these will then appear
28079  in the output.
28080  The option 
28081 \family sans
28082 Extended\InsetSpace ~
28083 chars
28084 \family default
28085  should be used when you use national characters like the German umlauts
28086  in the listing.
28087 \newline
28088 Here is an example listing with left line numbering, step
28089  
28090 \begin_inset Quotes eld
28091 \end_inset
28092
28093 3
28094 \begin_inset Quotes erd
28095 \end_inset
28096
28097 , language 
28098 \begin_inset Quotes eld
28099 \end_inset
28100
28101 Python
28102 \begin_inset Quotes erd
28103 \end_inset
28104
28105 , options 
28106 \begin_inset Quotes eld
28107 \end_inset
28108
28109 Extended\InsetSpace ~
28110 chars
28111 \begin_inset Quotes erd
28112 \end_inset
28113
28114  and 
28115 \begin_inset Quotes eld
28116 \end_inset
28117
28118 Space\InsetSpace ~
28119 as\InsetSpace ~
28120 Symbol
28121 \begin_inset Quotes erd
28122 \end_inset
28123
28124 , range lines 3\InsetSpace \thinspace{}
28125 -\InsetSpace \thinspace{}
28126 8:
28127 \end_layout
28128
28129 \begin_layout Standard
28130 \begin_inset listings
28131 lstparams "extendedchars=true,firstline=3,language=Python,lastline=8,numbers=left,showspaces=true,stepnumber=3"
28132 inline false
28133 status open
28134
28135 \begin_layout Standard
28136
28137 def func(param):
28138 \end_layout
28139
28140 \begin_layout Standard
28141
28142     'this is a python function'
28143 \end_layout
28144
28145 \begin_layout Standard
28146
28147     pass
28148 \end_layout
28149
28150 \begin_layout Standard
28151
28152 def func(param):
28153 \end_layout
28154
28155 \begin_layout Standard
28156
28157 'This is a German word: Tschüß'
28158 \end_layout
28159
28160 \begin_layout Standard
28161
28162 pass
28163 \end_layout
28164
28165 \begin_layout Standard
28166
28167 def func(param):
28168 \end_layout
28169
28170 \begin_layout Standard
28171
28172 'this is a python function'
28173 \end_layout
28174
28175 \begin_layout Standard
28176
28177 pass
28178 \end_layout
28179
28180 \end_inset
28181
28182
28183 \end_layout
28184
28185 \begin_layout Standard
28186 \begin_inset Note Greyedout
28187 status open
28188
28189 \begin_layout Standard
28190
28191 \series bold
28192 Note:
28193 \series default
28194  The line numbering is shifted by a line by every previous listing.
28195  That's the reason why the lines 2 and 5 are numbered in the above listing
28196  and not the lines 3 and 6.
28197 \end_layout
28198
28199 \end_inset
28200
28201
28202 \end_layout
28203
28204 \begin_layout Standard
28205 \begin_inset VSpace bigskip
28206 \end_inset
28207
28208
28209 \end_layout
28210
28211 \begin_layout Standard
28212 It is also possible to print lines from a file as listing.
28213  To do this, use the menu 
28214 \family sans
28215 Insert\SpecialChar \menuseparator
28216 File\SpecialChar \menuseparator
28217 Child Document
28218 \family default
28219  and choose the type 
28220 \family sans
28221 Listings
28222 \family default
28223 .
28224 \begin_inset Foot
28225 status collapsed
28226
28227 \begin_layout Standard
28228 The other child document types are described in section\InsetSpace ~
28229
28230 \begin_inset LatexCommand ref
28231 reference "sec:Child-Documents"
28232
28233 \end_inset
28234
28235 .
28236 \end_layout
28237
28238 \end_inset
28239
28240  In the child document dialog you can specify the listing parameters in
28241  a text box.
28242  To show a list of all available parameters, type in a question mark 
28243 \begin_inset Quotes eld
28244 \end_inset
28245
28246 ?
28247 \begin_inset Quotes erd
28248 \end_inset
28249
28250  in the text box.
28251 \end_layout
28252
28253 \begin_layout Standard
28254 To reference child document listings, write a label text into the corresponding
28255  field of the child document dialog.
28256  The label can then be referenced using the menu 
28257 \family sans
28258 Insert\SpecialChar \menuseparator
28259 Cross-Reference
28260 \family default
28261 .
28262 \end_layout
28263
28264 \begin_layout Standard
28265 Listing\InsetSpace ~
28266
28267 \begin_inset LatexCommand ref
28268 reference "lst:file-listing"
28269
28270 \end_inset
28271
28272  is an example for a listing of a file; there the lines 10\InsetSpace \thinspace{}
28273 -\InsetSpace \thinspace{}
28274 15 of this LyX
28275  file are listed.
28276 \end_layout
28277
28278 \begin_layout Standard
28279 \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]
28280 preview false
28281
28282 \end_inset
28283
28284
28285 \end_layout
28286
28287 \begin_layout Standard
28288 \begin_inset VSpace bigskip
28289 \end_inset
28290
28291
28292 \end_layout
28293
28294 \begin_layout Standard
28295 Global listings settings can be set in the 
28296 \family sans
28297 Document\SpecialChar \menuseparator
28298 Settings\SpecialChar \menuseparator
28299 Text Layout
28300 \family default
28301  dialog.
28302  To get there a list of available options, type in a question mark 
28303 \begin_inset Quotes eld
28304 \end_inset
28305
28306 ?
28307 \begin_inset Quotes erd
28308 \end_inset
28309
28310  in the 
28311 \family sans
28312 Listings\InsetSpace ~
28313 settings
28314 \family default
28315  field.
28316 \end_layout
28317
28318 \begin_layout Standard
28319 For more information about the 
28320 \series bold
28321 listings
28322 \series default
28323  package, we refer to its documentation 
28324 \begin_inset LatexCommand cite
28325 key "listings"
28326
28327 \end_inset
28328
28329 .
28330 \end_layout
28331
28332 \begin_layout Standard
28333
28334 \newpage
28335
28336 \end_layout
28337
28338 \begin_layout Chapter
28339 \start_of_appendix
28340 Units available in 
28341 \begin_inset ERT
28342 status collapsed
28343
28344 \begin_layout Standard
28345
28346
28347 \backslash
28348 texorpdfstring{
28349 \end_layout
28350
28351 \end_inset
28352
28353 LyX
28354 \begin_inset ERT
28355 status collapsed
28356
28357 \begin_layout Standard
28358
28359 }{LyX}
28360 \end_layout
28361
28362 \end_inset
28363
28364
28365 \begin_inset LatexCommand index
28366 name "Units"
28367
28368 \end_inset
28369
28370
28371 \begin_inset LatexCommand label
28372 name "cha:Units-available-in"
28373
28374 \end_inset
28375
28376
28377 \begin_inset Note Note
28378 status collapsed
28379
28380 \begin_layout Standard
28381 The command 
28382 \backslash
28383 texorpdfstring is provided by the LaTeX-package hyperref to avoid that ligatures
28384  are displayed wrongly in PDF-bookmarks.
28385  For more information about this, have a look at 
28386 \begin_inset LatexCommand cite
28387 key "hyperref"
28388
28389 \end_inset
28390
28391 .
28392 \end_layout
28393
28394 \end_inset
28395
28396
28397 \end_layout
28398
28399 \begin_layout Standard
28400 To understand the units described in this documentation, Table\InsetSpace ~
28401
28402 \begin_inset LatexCommand ref
28403 reference "tab:Units"
28404
28405 \end_inset
28406
28407  explains all units available in LyX.
28408 \end_layout
28409
28410 \begin_layout Standard
28411 \begin_inset Float table
28412 placement h
28413 wide false
28414 sideways false
28415 status open
28416
28417 \begin_layout Standard
28418 \begin_inset Caption
28419
28420 \begin_layout Standard
28421 \begin_inset LatexCommand label
28422 name "tab:Units"
28423
28424 \end_inset
28425
28426 Units
28427 \end_layout
28428
28429 \end_inset
28430
28431
28432 \end_layout
28433
28434 \begin_layout Standard
28435 \begin_inset VSpace medskip
28436 \end_inset
28437
28438
28439 \end_layout
28440
28441 \begin_layout Standard
28442 \align center
28443 \begin_inset Tabular
28444 <lyxtabular version="3" rows="20" columns="2">
28445 <features>
28446 <column alignment="center" valignment="top" leftline="true" width="0">
28447 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
28448 <row topline="true" bottomline="true">
28449 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28450 \begin_inset Text
28451
28452 \begin_layout Standard
28453 unit
28454 \end_layout
28455
28456 \end_inset
28457 </cell>
28458 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28459 \begin_inset Text
28460
28461 \begin_layout Standard
28462 name/description
28463 \end_layout
28464
28465 \end_inset
28466 </cell>
28467 </row>
28468 <row topline="true">
28469 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28470 \begin_inset Text
28471
28472 \begin_layout Standard
28473 mm
28474 \end_layout
28475
28476 \end_inset
28477 </cell>
28478 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28479 \begin_inset Text
28480
28481 \begin_layout Standard
28482 millimeter
28483 \end_layout
28484
28485 \end_inset
28486 </cell>
28487 </row>
28488 <row topline="true">
28489 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28490 \begin_inset Text
28491
28492 \begin_layout Standard
28493 cm
28494 \end_layout
28495
28496 \end_inset
28497 </cell>
28498 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28499 \begin_inset Text
28500
28501 \begin_layout Standard
28502 centimeter
28503 \end_layout
28504
28505 \end_inset
28506 </cell>
28507 </row>
28508 <row topline="true">
28509 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28510 \begin_inset Text
28511
28512 \begin_layout Standard
28513 in
28514 \end_layout
28515
28516 \end_inset
28517 </cell>
28518 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28519 \begin_inset Text
28520
28521 \begin_layout Standard
28522 inch
28523 \end_layout
28524
28525 \end_inset
28526 </cell>
28527 </row>
28528 <row topline="true">
28529 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28530 \begin_inset Text
28531
28532 \begin_layout Standard
28533 pt
28534 \end_layout
28535
28536 \end_inset
28537 </cell>
28538 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28539 \begin_inset Text
28540
28541 \begin_layout Standard
28542 point (72.27\InsetSpace \thinspace{}
28543 pt = 1\InsetSpace \thinspace{}
28544 in)
28545 \end_layout
28546
28547 \end_inset
28548 </cell>
28549 </row>
28550 <row topline="true">
28551 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28552 \begin_inset Text
28553
28554 \begin_layout Standard
28555 pc
28556 \end_layout
28557
28558 \end_inset
28559 </cell>
28560 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28561 \begin_inset Text
28562
28563 \begin_layout Standard
28564 pica (1\InsetSpace \thinspace{}
28565 pc = 12\InsetSpace \thinspace{}
28566 pt)
28567 \end_layout
28568
28569 \end_inset
28570 </cell>
28571 </row>
28572 <row topline="true">
28573 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28574 \begin_inset Text
28575
28576 \begin_layout Standard
28577 sp
28578 \end_layout
28579
28580 \end_inset
28581 </cell>
28582 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28583 \begin_inset Text
28584
28585 \begin_layout Standard
28586 scaled point (65536\InsetSpace \thinspace{}
28587 sp = 1\InsetSpace \thinspace{}
28588 pt)
28589 \end_layout
28590
28591 \end_inset
28592 </cell>
28593 </row>
28594 <row topline="true">
28595 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28596 \begin_inset Text
28597
28598 \begin_layout Standard
28599 bp
28600 \end_layout
28601
28602 \end_inset
28603 </cell>
28604 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28605 \begin_inset Text
28606
28607 \begin_layout Standard
28608 big point (72\InsetSpace \thinspace{}
28609 bp = 1\InsetSpace \thinspace{}
28610 in)
28611 \end_layout
28612
28613 \end_inset
28614 </cell>
28615 </row>
28616 <row topline="true">
28617 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28618 \begin_inset Text
28619
28620 \begin_layout Standard
28621 dd
28622 \end_layout
28623
28624 \end_inset
28625 </cell>
28626 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28627 \begin_inset Text
28628
28629 \begin_layout Standard
28630 didot (72\InsetSpace \thinspace{}
28631 dd 
28632 \begin_inset Formula $\approx$
28633 \end_inset
28634
28635  37.6\InsetSpace \thinspace{}
28636 mm)
28637 \end_layout
28638
28639 \end_inset
28640 </cell>
28641 </row>
28642 <row topline="true">
28643 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28644 \begin_inset Text
28645
28646 \begin_layout Standard
28647 cc
28648 \end_layout
28649
28650 \end_inset
28651 </cell>
28652 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28653 \begin_inset Text
28654
28655 \begin_layout Standard
28656 cicero (1\InsetSpace \thinspace{}
28657 cc = 12\InsetSpace \thinspace{}
28658 dd)
28659 \end_layout
28660
28661 \end_inset
28662 </cell>
28663 </row>
28664 <row topline="true">
28665 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28666 \begin_inset Text
28667
28668 \begin_layout Standard
28669 Scale%
28670 \end_layout
28671
28672 \end_inset
28673 </cell>
28674 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28675 \begin_inset Text
28676
28677 \begin_layout Standard
28678 % of original image width
28679 \end_layout
28680
28681 \end_inset
28682 </cell>
28683 </row>
28684 <row topline="true">
28685 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28686 \begin_inset Text
28687
28688 \begin_layout Standard
28689 text%
28690 \end_layout
28691
28692 \end_inset
28693 </cell>
28694 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28695 \begin_inset Text
28696
28697 \begin_layout Standard
28698 % of text width
28699 \end_layout
28700
28701 \end_inset
28702 </cell>
28703 </row>
28704 <row topline="true">
28705 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28706 \begin_inset Text
28707
28708 \begin_layout Standard
28709 col%
28710 \end_layout
28711
28712 \end_inset
28713 </cell>
28714 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28715 \begin_inset Text
28716
28717 \begin_layout Standard
28718 % of column width
28719 \end_layout
28720
28721 \end_inset
28722 </cell>
28723 </row>
28724 <row topline="true">
28725 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28726 \begin_inset Text
28727
28728 \begin_layout Standard
28729 page%
28730 \end_layout
28731
28732 \end_inset
28733 </cell>
28734 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28735 \begin_inset Text
28736
28737 \begin_layout Standard
28738 % of paper width
28739 \end_layout
28740
28741 \end_inset
28742 </cell>
28743 </row>
28744 <row topline="true">
28745 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28746 \begin_inset Text
28747
28748 \begin_layout Standard
28749 line%
28750 \end_layout
28751
28752 \end_inset
28753 </cell>
28754 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28755 \begin_inset Text
28756
28757 \begin_layout Standard
28758 % of line width
28759 \end_layout
28760
28761 \end_inset
28762 </cell>
28763 </row>
28764 <row topline="true">
28765 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28766 \begin_inset Text
28767
28768 \begin_layout Standard
28769 theight%
28770 \end_layout
28771
28772 \end_inset
28773 </cell>
28774 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28775 \begin_inset Text
28776
28777 \begin_layout Standard
28778 % of text height
28779 \end_layout
28780
28781 \end_inset
28782 </cell>
28783 </row>
28784 <row topline="true">
28785 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28786 \begin_inset Text
28787
28788 \begin_layout Standard
28789 pheight%
28790 \end_layout
28791
28792 \end_inset
28793 </cell>
28794 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28795 \begin_inset Text
28796
28797 \begin_layout Standard
28798 % of paper height
28799 \end_layout
28800
28801 \end_inset
28802 </cell>
28803 </row>
28804 <row topline="true">
28805 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28806 \begin_inset Text
28807
28808 \begin_layout Standard
28809 ex
28810 \end_layout
28811
28812 \end_inset
28813 </cell>
28814 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28815 \begin_inset Text
28816
28817 \begin_layout Standard
28818 height of letter 
28819 \emph on
28820 x
28821 \emph default
28822  in current font
28823 \end_layout
28824
28825 \end_inset
28826 </cell>
28827 </row>
28828 <row topline="true">
28829 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28830 \begin_inset Text
28831
28832 \begin_layout Standard
28833 em
28834 \end_layout
28835
28836 \end_inset
28837 </cell>
28838 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28839 \begin_inset Text
28840
28841 \begin_layout Standard
28842 width of letter 
28843 \emph on
28844 M
28845 \emph default
28846  in current font
28847 \end_layout
28848
28849 \end_inset
28850 </cell>
28851 </row>
28852 <row topline="true" bottomline="true">
28853 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28854 \begin_inset Text
28855
28856 \begin_layout Standard
28857 mu
28858 \end_layout
28859
28860 \end_inset
28861 </cell>
28862 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28863 \begin_inset Text
28864
28865 \begin_layout Standard
28866 math unit (1\InsetSpace \thinspace{}
28867 mu = 1/18\InsetSpace \thinspace{}
28868 em)
28869 \end_layout
28870
28871 \end_inset
28872 </cell>
28873 </row>
28874 </lyxtabular>
28875
28876 \end_inset
28877
28878
28879 \end_layout
28880
28881 \end_inset
28882
28883
28884 \end_layout
28885
28886 \begin_layout Chapter
28887 Output File Formats with Graphics
28888 \begin_inset LatexCommand label
28889 name "cha:Output-File-Formats"
28890
28891 \end_inset
28892
28893
28894 \end_layout
28895
28896 \begin_layout Section
28897 DVI
28898 \begin_inset LatexCommand index
28899 name "File Formats ! DVI"
28900
28901 \end_inset
28902
28903
28904 \begin_inset LatexCommand index
28905 name "DVI|see{File Formats}"
28906
28907 \end_inset
28908
28909
28910 \end_layout
28911
28912 \begin_layout Standard
28913 This file type has the extension 
28914 \begin_inset Quotes eld
28915 \end_inset
28916
28917
28918 \family typewriter
28919 .dvi
28920 \family default
28921
28922 \begin_inset Quotes erd
28923 \end_inset
28924
28925 .
28926  It is called 
28927 \begin_inset Quotes eld
28928 \end_inset
28929
28930 device-independent
28931 \begin_inset Quotes erd
28932 \end_inset
28933
28934  (DVI), because it is completely portable; you can move them from one machine
28935  to another without needing to do any sort of conversion.
28936  At the time when this file-format was developed, this was no matter of
28937  course.
28938  DVIs are used for quick previews and as pre-stage for other output formats,
28939  like PostScript.
28940 \end_layout
28941
28942 \begin_layout Standard
28943 \begin_inset Note Greyedout
28944 status open
28945
28946 \begin_layout Standard
28947
28948 \series bold
28949 Note:
28950 \series default
28951  DVI-files doesn't contain images, they will only be a linked.
28952 \end_layout
28953
28954 \end_inset
28955
28956  So don't forget this, if you move your 
28957 \family typewriter
28958 .dvi
28959 \family default
28960  file to another computer.
28961  This property can also slow down your computer when you view the DVI.
28962  Because the DVI-viewer has to convert the image in the background to make
28963  it visible when you scroll in the DVI.
28964  So we recommend to use PDF for files with many images.
28965 \end_layout
28966
28967 \begin_layout Standard
28968 You can export your document to DVI by using the menu 
28969 \family sans
28970 File\SpecialChar \menuseparator
28971 Export\SpecialChar \menuseparator
28972 DVI
28973 \family default
28974 .
28975  You can view your document as DVI via the 
28976 \family sans
28977 View
28978 \family default
28979  menu or by using the toolbar button 
28980 \begin_inset Graphics
28981         filename ../images/buffer-view_dvi.xpm
28982         scale 85
28983
28984 \end_inset
28985
28986 .
28987 \end_layout
28988
28989 \begin_layout Section
28990 PostScript
28991 \begin_inset LatexCommand label
28992 name "sec:PostScript"
28993
28994 \end_inset
28995
28996
28997 \begin_inset LatexCommand index
28998 name "File Formats ! PostScript"
28999
29000 \end_inset
29001
29002
29003 \begin_inset LatexCommand index
29004 name "PostScript|see{File Formats}"
29005
29006 \end_inset
29007
29008
29009 \end_layout
29010
29011 \begin_layout Standard
29012 This file type has the extension 
29013 \begin_inset Quotes eld
29014 \end_inset
29015
29016
29017 \family typewriter
29018 .ps
29019 \family default
29020
29021 \begin_inset Quotes erd
29022 \end_inset
29023
29024 .
29025  PostScript was developed by the company 
29026 \family typewriter
29027 Adobe
29028 \family default
29029  as printer language.
29030  The file contains therefore commands that the printer uses to print the
29031  file.
29032  PostScript can be seen as 
29033 \begin_inset Quotes eld
29034 \end_inset
29035
29036 programming language
29037 \begin_inset Quotes erd
29038 \end_inset
29039
29040 ; you can calculate with it and draw diagrams and images
29041 \begin_inset Foot
29042 status collapsed
29043
29044 \begin_layout Standard
29045 If you are interested to learn more about this, have a look at the LaTeX-package
29046  
29047 \series bold
29048 PSTricks
29049 \series default
29050  
29051 \begin_inset LatexCommand cite
29052 key "pstricks"
29053
29054 \end_inset
29055
29056 .
29057 \end_layout
29058
29059 \end_inset
29060
29061 .
29062  Due to this ability, the files are often bigger than PDFs.
29063 \end_layout
29064
29065 \begin_layout Standard
29066 PostScript can only contain images in the format 
29067 \begin_inset Quotes eld
29068 \end_inset
29069
29070 Encapsulated PostScript
29071 \begin_inset Quotes erd
29072 \end_inset
29073
29074  (EPS, file extension 
29075 \begin_inset Quotes eld
29076 \end_inset
29077
29078
29079 \family typewriter
29080 .eps
29081 \family default
29082
29083 \begin_inset Quotes erd
29084 \end_inset
29085
29086 ).
29087  As LyX allows you to use any known image format in your document, it has
29088  to convert images in the background to EPS.
29089  If you have e.g 50 images in your document, LyX has to do 50 conversions
29090  whenever you view or export your document.
29091  This will slow down your work flow with LyX drastically.
29092  So if you plan to use PostScript, you can insert your images directly as
29093  EPS to avoid this problem.
29094 \end_layout
29095
29096 \begin_layout Standard
29097 You can export your document to PostScript using the menu 
29098 \family sans
29099 File\SpecialChar \menuseparator
29100 Export\SpecialChar \menuseparator
29101 Postscript
29102 \family default
29103 .
29104  You can view your document as PostScript via the 
29105 \family sans
29106 View
29107 \family default
29108  menu or by using the toolbar button 
29109 \begin_inset Graphics
29110         filename ../images/buffer-view_ps.xpm
29111         scale 85
29112
29113 \end_inset
29114
29115 .
29116 \end_layout
29117
29118 \begin_layout Section
29119 PDF
29120 \begin_inset LatexCommand label
29121 name "sec:PDF"
29122
29123 \end_inset
29124
29125
29126 \begin_inset LatexCommand index
29127 name "File Formats ! PDF"
29128
29129 \end_inset
29130
29131
29132 \begin_inset LatexCommand index
29133 name "PDF"
29134
29135 \end_inset
29136
29137
29138 \end_layout
29139
29140 \begin_layout Standard
29141 This file type has the extension 
29142 \begin_inset Quotes eld
29143 \end_inset
29144
29145
29146 \family typewriter
29147 .pdf
29148 \family default
29149
29150 \begin_inset Quotes erd
29151 \end_inset
29152
29153 .
29154  The 
29155 \begin_inset Quotes eld
29156 \end_inset
29157
29158 Portable Document Format
29159 \begin_inset Quotes erd
29160 \end_inset
29161
29162  (PDF) is developed by 
29163 \family typewriter
29164 Adobe
29165 \family default
29166  as derivative from PostScript.
29167  It is more compressed and it uses much less commands than PostScript.
29168  As the name 
29169 \begin_inset Quotes eld
29170 \end_inset
29171
29172 portable
29173 \begin_inset Quotes erd
29174 \end_inset
29175
29176  implies, it can be processed at any computer system and the printed output
29177  looks exactly the same.
29178 \end_layout
29179
29180 \begin_layout Standard
29181 PDF can contain images in its own PDF format, in the format 
29182 \begin_inset Quotes eld
29183 \end_inset
29184
29185 Joint Photographic Experts Group
29186 \begin_inset Quotes erd
29187 \end_inset
29188
29189  (JPG, file extension 
29190 \begin_inset Quotes eld
29191 \end_inset
29192
29193
29194 \family typewriter
29195 .jpg
29196 \family default
29197
29198 \begin_inset Quotes erd
29199 \end_inset
29200
29201  or 
29202 \begin_inset Quotes eld
29203 \end_inset
29204
29205
29206 \family typewriter
29207 .jpeg
29208 \family default
29209
29210 \begin_inset Quotes erd
29211 \end_inset
29212
29213 ), and in the format 
29214 \begin_inset Quotes eld
29215 \end_inset
29216
29217 Portable Network Graphics
29218 \begin_inset Quotes erd
29219 \end_inset
29220
29221  (PNG, file extension 
29222 \begin_inset Quotes eld
29223 \end_inset
29224
29225
29226 \family typewriter
29227 .png
29228 \family default
29229
29230 \begin_inset Quotes erd
29231 \end_inset
29232
29233 ).
29234  You can although use any other image format, because LyX converts them
29235  in the background to one of these formats.
29236  But as described in the section about PostScript, the image conversion
29237  will slow down your work flow.
29238  So it is recommended to use images in one of the three mentioned formats.
29239 \end_layout
29240
29241 \begin_layout Standard
29242 You can export your document to PDF via the menu 
29243 \family sans
29244 File\SpecialChar \menuseparator
29245 Export
29246 \family default
29247  in three different ways:
29248 \end_layout
29249
29250 \begin_layout Description
29251 PDF This uses the program 
29252 \family typewriter
29253 ps2pdf
29254 \family default
29255  that creates a PDF from a PostScript-version of your file.
29256  The PostScript-version is produced by the program 
29257 \family typewriter
29258 dvips
29259 \family default
29260  which uses a DVI-version as intermediate step.
29261  So this export variant consist of three conversions.
29262 \end_layout
29263
29264 \begin_layout Description
29265 PDF\InsetSpace ~
29266 (dvipdfm) This uses the program 
29267 \family typewriter
29268 dvipdfm
29269 \family default
29270  that converts your file in the background to DVI and in a second step to
29271  PDF.
29272 \end_layout
29273
29274 \begin_layout Description
29275 PDF\InsetSpace ~
29276 (pdflatex) This uses the program 
29277 \family typewriter
29278 pdftex
29279 \family default
29280  that converts your file directly to PDF.
29281 \end_layout
29282
29283 \begin_layout Standard
29284 It is recommended to use 
29285 \family sans
29286 PDF\InsetSpace ~
29287 (pdflatex)
29288 \family default
29289  because 
29290 \family typewriter
29291 pdftex
29292 \family default
29293  supports all features of actual PDF-versions, is quick and works stable
29294  without problems.
29295  The program 
29296 \family typewriter
29297 dvipdfm
29298 \family default
29299  is not under development and therefore a bit outdated.
29300 \end_layout
29301
29302 \begin_layout Standard
29303 You can view your document as PDF via the 
29304 \family sans
29305 View
29306 \family default
29307  menu or by using the toolbar button 
29308 \begin_inset Graphics
29309         filename ../images/buffer-view_pdf2.xpm
29310         scale 85
29311
29312 \end_inset
29313
29314  
29315 \family sans
29316 (
29317 \family default
29318 that uses 
29319 \family sans
29320 PDF\InsetSpace ~
29321 (pdflatex)
29322 \family default
29323 ).
29324 \end_layout
29325
29326 \begin_layout Chapter
29327 Explanation of Equation\InsetSpace ~
29328
29329 \begin_inset LatexCommand eqref
29330 reference "eq:Wgn"
29331
29332 \end_inset
29333
29334
29335 \begin_inset LatexCommand label
29336 name "cha:Explanation-of-Equation"
29337
29338 \end_inset
29339
29340
29341 \end_layout
29342
29343 \begin_layout Standard
29344 The total width of 
29345 \emph on
29346 n
29347 \emph default
29348  table cells 
29349 \begin_inset Formula $W_{\mathrm{tot\, n}}$
29350 \end_inset
29351
29352  can be calculated to
29353 \end_layout
29354
29355 \begin_layout Standard
29356 \begin_inset Formula \begin{equation}
29357 W_{\mathrm{tot}\, n}=n·(W_{g\, n}+2·\backslash\mbox{tabcolsep})+(n+1)·\backslash\mbox{arrayrulewidth}\label{eq:Wtot_n}\end{equation}
29358
29359 \end_inset
29360
29361
29362 \end_layout
29363
29364 \begin_layout Standard
29365 Where 
29366 \begin_inset Formula $W_{g\, n}$
29367 \end_inset
29368
29369  is the given width of all cells.
29370  
29371 \series bold
29372
29373 \backslash
29374 tabcolsep
29375 \series default
29376  is the LaTeX-length between the cell text and the cell border, its default
29377  value is 6\InsetSpace \thinspace{}
29378 pt.
29379  
29380 \series bold
29381
29382 \backslash
29383 arrayrulewidth
29384 \series default
29385  is the thickness of the cell border line, the default is 0.4\InsetSpace \thinspace{}
29386 pt.
29387 \end_layout
29388
29389 \begin_layout Standard
29390 Following equation\InsetSpace ~
29391
29392 \begin_inset LatexCommand eqref
29393 reference "eq:Wtot_n"
29394
29395 \end_inset
29396
29397 , the total width of a multicolumn 
29398 \begin_inset Formula $W_{\mathrm{tot\, mult}}$
29399 \end_inset
29400
29401  is
29402 \end_layout
29403
29404 \begin_layout Standard
29405 \begin_inset Formula \begin{equation}
29406 W_{\mathrm{tot\, mult}}=W_{g\,\mathrm{mult}}+2·\backslash\mbox{tabcolsep}+2·\backslash\mbox{arrayrulewidth}\label{eq:Wtot_mult}\end{equation}
29407
29408 \end_inset
29409
29410
29411 \end_layout
29412
29413 \begin_layout Standard
29414 By setting equation\InsetSpace ~
29415
29416 \begin_inset LatexCommand eqref
29417 reference "eq:Wtot_n"
29418
29419 \end_inset
29420
29421  and 
29422 \begin_inset LatexCommand eqref
29423 reference "eq:Wtot_mult"
29424
29425 \end_inset
29426
29427  equal we can calculate the needed given width 
29428 \begin_inset Formula $W_{g\, n}$
29429 \end_inset
29430
29431  when 
29432 \emph on
29433 n
29434 \emph default
29435  columns are spanned, so that each column has a total width of 
29436 \begin_inset Formula $W_{\mathrm{tot\, mult}}/n$
29437 \end_inset
29438
29439 :
29440 \end_layout
29441
29442 \begin_layout Standard
29443 \begin_inset Formula \begin{equation}
29444 W_{g\, n}=(W_{g\,\mathrm{mult}}+(1-n)·(2·\backslash\mbox{tabcolsep}+\backslash\mbox{arrayrulewidth}))/n\end{equation}
29445
29446 \end_inset
29447
29448
29449 \end_layout
29450
29451 \begin_layout Bibliography
29452 \begin_inset LatexCommand bibitem
29453 key "latexcompanion"
29454
29455 \end_inset
29456
29457 Frank Mittelbach and Michel Goossens: 
29458 \emph on
29459 The LaTeX Companion Second Edition.
29460
29461 \emph default
29462  Addison-Wesley, 2004
29463 \end_layout
29464
29465 \begin_layout Bibliography
29466 \begin_inset LatexCommand bibitem
29467 key "latexguide"
29468
29469 \end_inset
29470
29471 Helmut Kopka and Patrick W.
29472  Daly: 
29473 \emph on
29474 A Guide to LaTeX Fourth Edition.
29475
29476 \emph default
29477  Addison-Wesley, 2003
29478 \end_layout
29479
29480 \begin_layout Bibliography
29481 \begin_inset LatexCommand bibitem
29482 key "latexbook"
29483
29484 \end_inset
29485
29486 Leslie Lamport: 
29487 \emph on
29488 LaTeX: A Document Preparation System.
29489
29490 \emph default
29491  Addison-Wesley, second edition, 1994
29492 \end_layout
29493
29494 \begin_layout Bibliography
29495 \begin_inset LatexCommand bibitem
29496 key "booktabs"
29497
29498 \end_inset
29499
29500
29501 \begin_inset ERT
29502 status collapsed
29503
29504 \begin_layout Standard
29505
29506
29507 \backslash
29508 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/booktabs/booktabs.pdf}
29509 {
29510 \end_layout
29511
29512 \end_inset
29513
29514 Documentation
29515 \begin_inset ERT
29516 status collapsed
29517
29518 \begin_layout Standard
29519
29520 }
29521 \end_layout
29522
29523 \end_inset
29524
29525  of the LaTeX-package 
29526 \series bold
29527 booktabs
29528 \series default
29529
29530 \begin_inset LatexCommand index
29531 name "LaTeX-packages ! booktabs"
29532
29533 \end_inset
29534
29535
29536 \end_layout
29537
29538 \begin_layout Bibliography
29539 \begin_inset LatexCommand bibitem
29540 key "caption"
29541
29542 \end_inset
29543
29544
29545 \begin_inset ERT
29546 status collapsed
29547
29548 \begin_layout Standard
29549
29550
29551 \backslash
29552 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/caption/caption.pdf}{
29553 \end_layout
29554
29555 \end_inset
29556
29557 Documentation
29558 \begin_inset ERT
29559 status collapsed
29560
29561 \begin_layout Standard
29562
29563 }
29564 \end_layout
29565
29566 \end_inset
29567
29568  of the LaTeX-package 
29569 \series bold
29570 caption
29571 \series default
29572
29573 \begin_inset LatexCommand index
29574 name "LaTeX-packages ! caption"
29575
29576 \end_inset
29577
29578
29579 \end_layout
29580
29581 \begin_layout Bibliography
29582 \begin_inset LatexCommand bibitem
29583 key "caption-de"
29584
29585 \end_inset
29586
29587 German 
29588 \begin_inset ERT
29589 status collapsed
29590
29591 \begin_layout Standard
29592
29593
29594 \backslash
29595 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/caption/anleitung.pdf}
29596 {
29597 \end_layout
29598
29599 \end_inset
29600
29601 documentation
29602 \begin_inset ERT
29603 status collapsed
29604
29605 \begin_layout Standard
29606
29607 }
29608 \end_layout
29609
29610 \end_inset
29611
29612  of the LaTeX-package 
29613 \series bold
29614 caption
29615 \end_layout
29616
29617 \begin_layout Bibliography
29618 \begin_inset LatexCommand bibitem
29619 key "endfloat"
29620
29621 \end_inset
29622
29623
29624 \begin_inset ERT
29625 status collapsed
29626
29627 \begin_layout Standard
29628
29629
29630 \backslash
29631 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/endfloat/endfloat.pdf}
29632 {
29633 \end_layout
29634
29635 \end_inset
29636
29637 Documentation
29638 \begin_inset ERT
29639 status collapsed
29640
29641 \begin_layout Standard
29642
29643 }
29644 \end_layout
29645
29646 \end_inset
29647
29648  of the LaTeX-package 
29649 \series bold
29650 endf\SpecialChar \textcompwordmark{}
29651 loat
29652 \series default
29653
29654 \begin_inset LatexCommand index
29655 name "LaTeX-packages ! endfloat"
29656
29657 \end_inset
29658
29659
29660 \end_layout
29661
29662 \begin_layout Bibliography
29663 \begin_inset LatexCommand bibitem
29664 key "floatflt"
29665
29666 \end_inset
29667
29668
29669 \begin_inset ERT
29670 status collapsed
29671
29672 \begin_layout Standard
29673
29674
29675 \backslash
29676 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/floatflt/floatflt.pdf}
29677 {
29678 \end_layout
29679
29680 \end_inset
29681
29682 Documentation
29683 \begin_inset ERT
29684 status collapsed
29685
29686 \begin_layout Standard
29687
29688 }
29689 \end_layout
29690
29691 \end_inset
29692
29693  of the LaTeX-package 
29694 \series bold
29695 floatf\SpecialChar \textcompwordmark{}
29696 lt
29697 \series default
29698
29699 \begin_inset LatexCommand index
29700 name "LaTeX-packages ! floatflt"
29701
29702 \end_inset
29703
29704
29705 \end_layout
29706
29707 \begin_layout Bibliography
29708 \begin_inset LatexCommand bibitem
29709 key "footmisc"
29710
29711 \end_inset
29712
29713
29714 \begin_inset ERT
29715 status collapsed
29716
29717 \begin_layout Standard
29718
29719
29720 \backslash
29721 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/footmisc/footmisc.pdf}
29722 {
29723 \end_layout
29724
29725 \end_inset
29726
29727 Documentation
29728 \begin_inset ERT
29729 status collapsed
29730
29731 \begin_layout Standard
29732
29733 }
29734 \end_layout
29735
29736 \end_inset
29737
29738  of the LaTeX-package 
29739 \series bold
29740 footmisc
29741 \series default
29742
29743 \begin_inset LatexCommand index
29744 name "LaTeX-packages ! footmisc"
29745
29746 \end_inset
29747
29748
29749 \end_layout
29750
29751 \begin_layout Bibliography
29752 \begin_inset LatexCommand bibitem
29753 key "hypcap"
29754
29755 \end_inset
29756
29757
29758 \begin_inset ERT
29759 status collapsed
29760
29761 \begin_layout Standard
29762
29763
29764 \backslash
29765 href{http://www.ctan.org/tex-archive/macros/latex/contrib/oberdiek/hypcap.pdf}{
29766 \end_layout
29767
29768 \end_inset
29769
29770 Documentation
29771 \begin_inset ERT
29772 status collapsed
29773
29774 \begin_layout Standard
29775
29776 }
29777 \end_layout
29778
29779 \end_inset
29780
29781  of the LaTeX-package 
29782 \series bold
29783 hypcap
29784 \series default
29785
29786 \begin_inset LatexCommand index
29787 name "LaTeX-packages ! hyperref"
29788
29789 \end_inset
29790
29791
29792 \end_layout
29793
29794 \begin_layout Bibliography
29795 \begin_inset LatexCommand bibitem
29796 key "hyperref"
29797
29798 \end_inset
29799
29800
29801 \begin_inset ERT
29802 status collapsed
29803
29804 \begin_layout Standard
29805
29806
29807 \backslash
29808 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/hyperref/hyperref.pdf}
29809 {
29810 \end_layout
29811
29812 \end_inset
29813
29814 Documentation
29815 \begin_inset ERT
29816 status collapsed
29817
29818 \begin_layout Standard
29819
29820 }
29821 \end_layout
29822
29823 \end_inset
29824
29825  of the LaTeX-package 
29826 \series bold
29827 hyperref
29828 \series default
29829
29830 \begin_inset LatexCommand index
29831 name "LaTeX-packages ! hyperref"
29832
29833 \end_inset
29834
29835
29836 \end_layout
29837
29838 \begin_layout Bibliography
29839 \begin_inset LatexCommand bibitem
29840 key "koma-script"
29841
29842 \end_inset
29843
29844
29845 \begin_inset ERT
29846 status collapsed
29847
29848 \begin_layout Standard
29849
29850
29851 \backslash
29852 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/koma-script/scrguien.p
29853 df}{
29854 \end_layout
29855
29856 \end_inset
29857
29858 Documentation
29859 \begin_inset ERT
29860 status collapsed
29861
29862 \begin_layout Standard
29863
29864 }
29865 \end_layout
29866
29867 \end_inset
29868
29869  of the LaTeX-package 
29870 \series bold
29871 koma-script
29872 \series default
29873
29874 \begin_inset LatexCommand index
29875 name "LaTeX-packages ! koma-script"
29876
29877 \end_inset
29878
29879
29880 \end_layout
29881
29882 \begin_layout Bibliography
29883 \begin_inset LatexCommand bibitem
29884 key "koma-script-de"
29885
29886 \end_inset
29887
29888 German 
29889 \begin_inset ERT
29890 status collapsed
29891
29892 \begin_layout Standard
29893
29894
29895 \backslash
29896 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/koma-script/scrguide.p
29897 df}{
29898 \end_layout
29899
29900 \end_inset
29901
29902 documentation
29903 \begin_inset ERT
29904 status collapsed
29905
29906 \begin_layout Standard
29907
29908 }
29909 \end_layout
29910
29911 \end_inset
29912
29913  of the LaTeX-package 
29914 \series bold
29915 koma-script
29916 \series default
29917
29918 \begin_inset LatexCommand index
29919 name "LaTeX-packages ! koma-script"
29920
29921 \end_inset
29922
29923
29924 \end_layout
29925
29926 \begin_layout Bibliography
29927 \begin_inset LatexCommand bibitem
29928 key "listings"
29929
29930 \end_inset
29931
29932
29933 \begin_inset ERT
29934 status collapsed
29935
29936 \begin_layout Standard
29937
29938
29939 \backslash
29940 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/listings/listings.pdf}
29941 {
29942 \end_layout
29943
29944 \end_inset
29945
29946 Documentation
29947 \begin_inset ERT
29948 status collapsed
29949
29950 \begin_layout Standard
29951
29952 }
29953 \end_layout
29954
29955 \end_inset
29956
29957  of the LaTeX-package 
29958 \series bold
29959 listings
29960 \series default
29961
29962 \begin_inset LatexCommand index
29963 name "LaTeX-packages ! listings"
29964
29965 \end_inset
29966
29967
29968 \end_layout
29969
29970 \begin_layout Bibliography
29971 \begin_inset LatexCommand bibitem
29972 key "marginnote"
29973
29974 \end_inset
29975
29976
29977 \begin_inset ERT
29978 status collapsed
29979
29980 \begin_layout Standard
29981
29982
29983 \backslash
29984 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/marginnote/marginnote.
29985 pdf}{
29986 \end_layout
29987
29988 \end_inset
29989
29990 Documentation
29991 \begin_inset ERT
29992 status collapsed
29993
29994 \begin_layout Standard
29995
29996 }
29997 \end_layout
29998
29999 \end_inset
30000
30001  of the LaTeX-package 
30002 \series bold
30003 marginnote
30004 \series default
30005
30006 \begin_inset LatexCommand index
30007 name "LaTeX-packages ! marginnote"
30008
30009 \end_inset
30010
30011
30012 \end_layout
30013
30014 \begin_layout Bibliography
30015 \begin_inset LatexCommand bibitem
30016 key "pstricks"
30017
30018 \end_inset
30019
30020
30021 \begin_inset ERT
30022 status collapsed
30023
30024 \begin_layout Standard
30025
30026
30027 \backslash
30028 href{http://tug.org/PSTricks/main.cgi/}{
30029 \end_layout
30030
30031 \end_inset
30032
30033 Web page
30034 \begin_inset ERT
30035 status collapsed
30036
30037 \begin_layout Standard
30038
30039 }
30040 \end_layout
30041
30042 \end_inset
30043
30044  of the LaTeX-package 
30045 \series bold
30046 PSTricks
30047 \series default
30048
30049 \begin_inset LatexCommand index
30050 name "LaTeX-packages ! PSTricks"
30051
30052 \end_inset
30053
30054
30055 \end_layout
30056
30057 \begin_layout Bibliography
30058 \begin_inset LatexCommand bibitem
30059 key "sidecap"
30060
30061 \end_inset
30062
30063
30064 \begin_inset ERT
30065 status collapsed
30066
30067 \begin_layout Standard
30068
30069
30070 \backslash
30071 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/sidecap/sidecap.pdf}{
30072 \end_layout
30073
30074 \end_inset
30075
30076 Documentation
30077 \begin_inset ERT
30078 status collapsed
30079
30080 \begin_layout Standard
30081
30082 }
30083 \end_layout
30084
30085 \end_inset
30086
30087  of the LaTeX-package 
30088 \series bold
30089 sidecap
30090 \series default
30091
30092 \begin_inset LatexCommand index
30093 name "LaTeX-packages ! sidecap"
30094
30095 \end_inset
30096
30097
30098 \end_layout
30099
30100 \begin_layout Bibliography
30101 \begin_inset LatexCommand bibitem
30102 key "NewInLyX15"
30103
30104 \end_inset
30105
30106
30107 \begin_inset ERT
30108 status collapsed
30109
30110 \begin_layout Standard
30111
30112
30113 \backslash
30114 href{http://wiki.lyx.org/LyX/NewInLyX15}{
30115 \end_layout
30116
30117 \end_inset
30118
30119 Wiki page
30120 \begin_inset ERT
30121 status collapsed
30122
30123 \begin_layout Standard
30124
30125 }
30126 \end_layout
30127
30128 \end_inset
30129
30130  about new LyX-features planned for the release 
30131 \family sans
30132 LyX 1.5
30133 \family default
30134 .0.
30135 \end_layout
30136
30137 \begin_layout Standard
30138 \begin_inset LatexCommand printindex
30139
30140 \end_inset
30141
30142
30143 \end_layout
30144
30145 \begin_layout Standard
30146 \begin_inset FloatList figure
30147
30148 \end_inset
30149
30150
30151 \end_layout
30152
30153 \begin_layout Standard
30154 \begin_inset FloatList table
30155
30156 \end_inset
30157
30158
30159 \end_layout
30160
30161 \end_body
30162 \end_document