]> git.lyx.org Git - lyx.git/blob - lib/doc/EmbeddedObjects.lyx
c30be300391e68277e719ff3d697229761bc00d6
[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 recalculated to bitmaps when the output file is
1230  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\InsetSpace ~
4610
4611 \begin_inset LatexCommand ref
4612 reference "sub:Longtable-Captions"
4613
4614 \end_inset
4615
4616  for an explanation of this command.
4617 \end_layout
4618
4619 \end_inset
4620
4621
4622 \end_layout
4623
4624 \begin_layout Subsection
4625 Footnotes in Longtables
4626 \begin_inset LatexCommand label
4627 name "sub:Footnotes-in-Longtables"
4628
4629 \end_inset
4630
4631
4632 \begin_inset LatexCommand index
4633 name "Longtables ! Footnotes"
4634
4635 \end_inset
4636
4637
4638 \end_layout
4639
4640 \begin_layout Standard
4641 Footnotes can be inserted to every longtable cell.
4642  They appear at the bottom of the page where the table cell with the footnote
4643  appears.
4644  Table\InsetSpace ~
4645
4646 \begin_inset LatexCommand ref
4647 reference "tab:DiffCaptions"
4648
4649 \end_inset
4650
4651  has for example a footnote.
4652 \end_layout
4653
4654 \begin_layout Subsection
4655 Longtable Captions
4656 \begin_inset LatexCommand index
4657 name "Longtables ! Captions"
4658
4659 \end_inset
4660
4661
4662 \begin_inset LatexCommand label
4663 name "sub:Longtable-Captions"
4664
4665 \end_inset
4666
4667
4668 \end_layout
4669
4670 \begin_layout Standard
4671 A longtable cannot be put into a table float because floats can only be
4672  on one page but the caption environment of floats can also be used for
4673  longtables.
4674 \end_layout
4675
4676 \begin_layout Standard
4677 As LyX does not yet fully support captions in longtables, a hack is needed
4678  to create them:
4679 \end_layout
4680
4681 \begin_layout Enumerate
4682 Create a longtable
4683 \family sans
4684 .
4685 \end_layout
4686
4687 \begin_layout Enumerate
4688 Mark the first row and disable its upper line.
4689 \end_layout
4690
4691 \begin_layout Enumerate
4692 Insert a caption via the menu 
4693 \family sans
4694 Insert\SpecialChar \menuseparator
4695 Caption
4696 \family default
4697  into the first table cell.
4698 \newline
4699 You can also add a short title for the caption.
4700 \end_layout
4701
4702 \begin_layout Enumerate
4703 Insert a 
4704 \begin_inset Quotes eld
4705 \end_inset
4706
4707
4708 \series bold
4709
4710 \backslash
4711
4712 \backslash
4713 %
4714 \series default
4715
4716 \begin_inset Quotes erd
4717 \end_inset
4718
4719  as ERT behind the caption.
4720 \end_layout
4721
4722 \begin_layout Standard
4723 A short title that will appear in the LOT instead of the full title.
4724  The 
4725 \series bold
4726
4727 \backslash
4728
4729 \backslash
4730 %
4731 \series default
4732  behind the caption omits the vertical lines between the following cells
4733  in the row.
4734  The first table row is now only a dummy row for the caption, the actual
4735  table starts with the second row.
4736 \end_layout
4737
4738 \begin_layout Standard
4739 Here is a short longtable to see how it works:
4740 \end_layout
4741
4742 \begin_layout Standard
4743 \begin_inset Tabular
4744 <lyxtabular version="3" rows="6" columns="5">
4745 <features islongtable="true">
4746 <column alignment="center" valignment="top" leftline="true" width="0">
4747 <column alignment="center" valignment="top" leftline="true" width="0">
4748 <column alignment="center" valignment="top" leftline="true" width="0">
4749 <column alignment="center" valignment="top" leftline="true" width="0">
4750 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
4751 <row>
4752 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4753 \begin_inset Text
4754
4755 \begin_layout Standard
4756 \begin_inset Caption
4757
4758 \begin_layout Standard
4759 Longtable with caption
4760 \begin_inset OptArg
4761 status open
4762
4763 \begin_layout Standard
4764 Longtable
4765 \end_layout
4766
4767 \end_inset
4768
4769
4770 \end_layout
4771
4772 \end_inset
4773
4774
4775 \begin_inset ERT
4776 status collapsed
4777
4778 \begin_layout Standard
4779
4780
4781 \backslash
4782
4783 \backslash
4784 %
4785 \end_layout
4786
4787 \end_inset
4788
4789
4790 \end_layout
4791
4792 \end_inset
4793 </cell>
4794 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4795 \begin_inset Text
4796
4797 \begin_layout Standard
4798
4799 \end_layout
4800
4801 \end_inset
4802 </cell>
4803 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4804 \begin_inset Text
4805
4806 \begin_layout Standard
4807
4808 \end_layout
4809
4810 \end_inset
4811 </cell>
4812 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4813 \begin_inset Text
4814
4815 \begin_layout Standard
4816
4817 \end_layout
4818
4819 \end_inset
4820 </cell>
4821 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4822 \begin_inset Text
4823
4824 \begin_layout Standard
4825
4826 \end_layout
4827
4828 \end_inset
4829 </cell>
4830 </row>
4831 <row topline="true">
4832 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4833 \begin_inset Text
4834
4835 \begin_layout Standard
4836 1
4837 \end_layout
4838
4839 \end_inset
4840 </cell>
4841 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4842 \begin_inset Text
4843
4844 \begin_layout Standard
4845 2
4846 \end_layout
4847
4848 \end_inset
4849 </cell>
4850 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4851 \begin_inset Text
4852
4853 \begin_layout Standard
4854 3
4855 \end_layout
4856
4857 \end_inset
4858 </cell>
4859 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4860 \begin_inset Text
4861
4862 \begin_layout Standard
4863 4
4864 \end_layout
4865
4866 \end_inset
4867 </cell>
4868 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4869 \begin_inset Text
4870
4871 \begin_layout Standard
4872 5
4873 \end_layout
4874
4875 \end_inset
4876 </cell>
4877 </row>
4878 <row topline="true">
4879 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4880 \begin_inset Text
4881
4882 \begin_layout Standard
4883 asd
4884 \end_layout
4885
4886 \end_inset
4887 </cell>
4888 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4889 \begin_inset Text
4890
4891 \begin_layout Standard
4892 s
4893 \end_layout
4894
4895 \end_inset
4896 </cell>
4897 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4898 \begin_inset Text
4899
4900 \begin_layout Standard
4901 s
4902 \end_layout
4903
4904 \end_inset
4905 </cell>
4906 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4907 \begin_inset Text
4908
4909 \begin_layout Standard
4910 s
4911 \end_layout
4912
4913 \end_inset
4914 </cell>
4915 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4916 \begin_inset Text
4917
4918 \begin_layout Standard
4919 asd
4920 \end_layout
4921
4922 \end_inset
4923 </cell>
4924 </row>
4925 <row topline="true">
4926 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4927 \begin_inset Text
4928
4929 \begin_layout Standard
4930 asd
4931 \end_layout
4932
4933 \end_inset
4934 </cell>
4935 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4936 \begin_inset Text
4937
4938 \begin_layout Standard
4939 s
4940 \end_layout
4941
4942 \end_inset
4943 </cell>
4944 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4945 \begin_inset Text
4946
4947 \begin_layout Standard
4948 s
4949 \end_layout
4950
4951 \end_inset
4952 </cell>
4953 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4954 \begin_inset Text
4955
4956 \begin_layout Standard
4957 s
4958 \end_layout
4959
4960 \end_inset
4961 </cell>
4962 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4963 \begin_inset Text
4964
4965 \begin_layout Standard
4966 asd
4967 \end_layout
4968
4969 \end_inset
4970 </cell>
4971 </row>
4972 <row topline="true">
4973 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4974 \begin_inset Text
4975
4976 \begin_layout Standard
4977 asd
4978 \end_layout
4979
4980 \end_inset
4981 </cell>
4982 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4983 \begin_inset Text
4984
4985 \begin_layout Standard
4986 s
4987 \end_layout
4988
4989 \end_inset
4990 </cell>
4991 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4992 \begin_inset Text
4993
4994 \begin_layout Standard
4995 s
4996 \end_layout
4997
4998 \end_inset
4999 </cell>
5000 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5001 \begin_inset Text
5002
5003 \begin_layout Standard
5004 s
5005 \end_layout
5006
5007 \end_inset
5008 </cell>
5009 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5010 \begin_inset Text
5011
5012 \begin_layout Standard
5013 asd
5014 \end_layout
5015
5016 \end_inset
5017 </cell>
5018 </row>
5019 <row topline="true" bottomline="true">
5020 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5021 \begin_inset Text
5022
5023 \begin_layout Standard
5024 asd
5025 \end_layout
5026
5027 \end_inset
5028 </cell>
5029 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5030 \begin_inset Text
5031
5032 \begin_layout Standard
5033 asd
5034 \end_layout
5035
5036 \end_inset
5037 </cell>
5038 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5039 \begin_inset Text
5040
5041 \begin_layout Standard
5042 asd
5043 \end_layout
5044
5045 \end_inset
5046 </cell>
5047 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5048 \begin_inset Text
5049
5050 \begin_layout Standard
5051 asd
5052 \end_layout
5053
5054 \end_inset
5055 </cell>
5056 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5057 \begin_inset Text
5058
5059 \begin_layout Standard
5060 asd
5061 \end_layout
5062
5063 \end_inset
5064 </cell>
5065 </row>
5066 </lyxtabular>
5067
5068 \end_inset
5069
5070
5071 \end_layout
5072
5073 \begin_layout Standard
5074 \begin_inset VSpace medskip
5075 \end_inset
5076
5077
5078 \begin_inset Note Greyedout
5079 status open
5080
5081 \begin_layout Standard
5082
5083 \series bold
5084 Note:
5085 \series default
5086  The table number is increased for every longtable, also if you didn't set
5087  a caption for it.
5088  For this reason you could have the case that e.g.
5089  Table\InsetSpace ~
5090 2.4 follows on Table\InsetSpace ~
5091 2.1 in the list of tables if there are two longtables
5092  without captions.
5093  To avoid this you can add the following command in ERT behind every longtable
5094  without a caption:
5095 \end_layout
5096
5097 \begin_layout Standard
5098
5099 \series bold
5100
5101 \backslash
5102 addtocounter{table}{-1}
5103 \end_layout
5104
5105 \end_inset
5106
5107
5108 \end_layout
5109
5110 \begin_layout Standard
5111 \begin_inset Note Greyedout
5112 status open
5113
5114 \begin_layout Standard
5115
5116 \series bold
5117 Note:
5118 \series default
5119  If you are using the LaTeX-package 
5120 \series bold
5121 hyperref
5122 \series default
5123
5124 \begin_inset LatexCommand index
5125 name "LaTeX-packages ! hyperref"
5126
5127 \end_inset
5128
5129  to link cross-references, the link to a longtable caption will always point
5130  to the beginning of the document.
5131 \end_layout
5132
5133 \end_inset
5134
5135
5136 \end_layout
5137
5138 \begin_layout Subsubsection
5139 References to Longtables
5140 \begin_inset LatexCommand index
5141 name "Longtables ! References"
5142
5143 \end_inset
5144
5145
5146 \end_layout
5147
5148 \begin_layout Standard
5149 \begin_inset Tabular
5150 <lyxtabular version="3" rows="6" columns="5">
5151 <features islongtable="true">
5152 <column alignment="center" valignment="top" leftline="true" width="0">
5153 <column alignment="center" valignment="top" leftline="true" width="0">
5154 <column alignment="center" valignment="top" leftline="true" width="0">
5155 <column alignment="center" valignment="top" leftline="true" width="0">
5156 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
5157 <row>
5158 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5159 \begin_inset Text
5160
5161 \begin_layout Standard
5162 \begin_inset Caption
5163
5164 \begin_layout Standard
5165 Referenced longtable
5166 \begin_inset LatexCommand label
5167 name "tab:RefExample"
5168
5169 \end_inset
5170
5171
5172 \end_layout
5173
5174 \end_inset
5175
5176
5177 \begin_inset ERT
5178 status collapsed
5179
5180 \begin_layout Standard
5181
5182
5183 \backslash
5184
5185 \backslash
5186 %
5187 \end_layout
5188
5189 \end_inset
5190
5191
5192 \end_layout
5193
5194 \end_inset
5195 </cell>
5196 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5197 \begin_inset Text
5198
5199 \begin_layout Standard
5200
5201 \end_layout
5202
5203 \end_inset
5204 </cell>
5205 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5206 \begin_inset Text
5207
5208 \begin_layout Standard
5209
5210 \end_layout
5211
5212 \end_inset
5213 </cell>
5214 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5215 \begin_inset Text
5216
5217 \begin_layout Standard
5218
5219 \end_layout
5220
5221 \end_inset
5222 </cell>
5223 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5224 \begin_inset Text
5225
5226 \begin_layout Standard
5227
5228 \end_layout
5229
5230 \end_inset
5231 </cell>
5232 </row>
5233 <row topline="true">
5234 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5235 \begin_inset Text
5236
5237 \begin_layout Standard
5238 1
5239 \end_layout
5240
5241 \end_inset
5242 </cell>
5243 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5244 \begin_inset Text
5245
5246 \begin_layout Standard
5247 2
5248 \end_layout
5249
5250 \end_inset
5251 </cell>
5252 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5253 \begin_inset Text
5254
5255 \begin_layout Standard
5256 3
5257 \end_layout
5258
5259 \end_inset
5260 </cell>
5261 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5262 \begin_inset Text
5263
5264 \begin_layout Standard
5265 4
5266 \end_layout
5267
5268 \end_inset
5269 </cell>
5270 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5271 \begin_inset Text
5272
5273 \begin_layout Standard
5274 5
5275 \end_layout
5276
5277 \end_inset
5278 </cell>
5279 </row>
5280 <row topline="true">
5281 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5282 \begin_inset Text
5283
5284 \begin_layout Standard
5285 asd
5286 \end_layout
5287
5288 \end_inset
5289 </cell>
5290 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5291 \begin_inset Text
5292
5293 \begin_layout Standard
5294 s
5295 \end_layout
5296
5297 \end_inset
5298 </cell>
5299 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5300 \begin_inset Text
5301
5302 \begin_layout Standard
5303 s
5304 \end_layout
5305
5306 \end_inset
5307 </cell>
5308 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5309 \begin_inset Text
5310
5311 \begin_layout Standard
5312 s
5313 \end_layout
5314
5315 \end_inset
5316 </cell>
5317 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5318 \begin_inset Text
5319
5320 \begin_layout Standard
5321 asd
5322 \end_layout
5323
5324 \end_inset
5325 </cell>
5326 </row>
5327 <row topline="true">
5328 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5329 \begin_inset Text
5330
5331 \begin_layout Standard
5332 asd
5333 \end_layout
5334
5335 \end_inset
5336 </cell>
5337 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5338 \begin_inset Text
5339
5340 \begin_layout Standard
5341 s
5342 \end_layout
5343
5344 \end_inset
5345 </cell>
5346 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5347 \begin_inset Text
5348
5349 \begin_layout Standard
5350 s
5351 \end_layout
5352
5353 \end_inset
5354 </cell>
5355 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5356 \begin_inset Text
5357
5358 \begin_layout Standard
5359 s
5360 \end_layout
5361
5362 \end_inset
5363 </cell>
5364 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5365 \begin_inset Text
5366
5367 \begin_layout Standard
5368 asd
5369 \end_layout
5370
5371 \end_inset
5372 </cell>
5373 </row>
5374 <row topline="true">
5375 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5376 \begin_inset Text
5377
5378 \begin_layout Standard
5379 asd
5380 \end_layout
5381
5382 \end_inset
5383 </cell>
5384 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5385 \begin_inset Text
5386
5387 \begin_layout Standard
5388 s
5389 \end_layout
5390
5391 \end_inset
5392 </cell>
5393 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5394 \begin_inset Text
5395
5396 \begin_layout Standard
5397 s
5398 \end_layout
5399
5400 \end_inset
5401 </cell>
5402 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5403 \begin_inset Text
5404
5405 \begin_layout Standard
5406 s
5407 \end_layout
5408
5409 \end_inset
5410 </cell>
5411 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5412 \begin_inset Text
5413
5414 \begin_layout Standard
5415 asd
5416 \end_layout
5417
5418 \end_inset
5419 </cell>
5420 </row>
5421 <row topline="true" bottomline="true">
5422 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5423 \begin_inset Text
5424
5425 \begin_layout Standard
5426 asd
5427 \end_layout
5428
5429 \end_inset
5430 </cell>
5431 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5432 \begin_inset Text
5433
5434 \begin_layout Standard
5435 sad
5436 \end_layout
5437
5438 \end_inset
5439 </cell>
5440 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5441 \begin_inset Text
5442
5443 \begin_layout Standard
5444 asd
5445 \end_layout
5446
5447 \end_inset
5448 </cell>
5449 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5450 \begin_inset Text
5451
5452 \begin_layout Standard
5453 asd
5454 \end_layout
5455
5456 \end_inset
5457 </cell>
5458 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5459 \begin_inset Text
5460
5461 \begin_layout Standard
5462 asd
5463 \end_layout
5464
5465 \end_inset
5466 </cell>
5467 </row>
5468 </lyxtabular>
5469
5470 \end_inset
5471
5472
5473 \end_layout
5474
5475 \begin_layout Standard
5476 To reference a longtable, insert a label into the caption.
5477  Note that you have to add the label prefix 
5478 \begin_inset Quotes eld
5479 \end_inset
5480
5481
5482 \emph on
5483 tab:
5484 \emph default
5485
5486 \begin_inset Quotes eld
5487 \end_inset
5488
5489  manually in the label field.
5490 \end_layout
5491
5492 \begin_layout Standard
5493 This is a reference to Table\InsetSpace ~
5494
5495 \begin_inset LatexCommand ref
5496 reference "tab:RefExample"
5497
5498 \end_inset
5499
5500 .
5501 \end_layout
5502
5503 \begin_layout Standard
5504 The caption layout can be set together with all other caption of your document
5505  using the LaTeX-package 
5506 \series bold
5507 caption
5508 \series default
5509
5510 \begin_inset LatexCommand index
5511 name "LaTeX-packages ! caption"
5512
5513 \end_inset
5514
5515 , see section\InsetSpace ~
5516
5517 \begin_inset LatexCommand ref
5518 reference "sec:Caption-Formatting"
5519
5520 \end_inset
5521
5522 .
5523 \end_layout
5524
5525 \begin_layout Subsubsection
5526 Caption Width
5527 \begin_inset LatexCommand index
5528 name "Longtables ! Caption Width"
5529
5530 \end_inset
5531
5532
5533 \end_layout
5534
5535 \begin_layout Standard
5536 The maximal width of of caption lines is defined by the length 
5537 \series bold
5538
5539 \backslash
5540 LTcapwidth
5541 \series default
5542 .
5543  Its default value is 4\InsetSpace \thinspace{}
5544 in.
5545  To change it add the following command to your document preamble or as
5546  ERT into your document before the longtable that should be affected
5547 \end_layout
5548
5549 \begin_layout Standard
5550
5551 \series bold
5552
5553 \backslash
5554 setlength{
5555 \backslash
5556 LTcapwidth}{width}
5557 \end_layout
5558
5559 \begin_layout Standard
5560 where the width could have one of the units listed in appendix\InsetSpace ~
5561
5562 \begin_inset LatexCommand ref
5563 reference "cha:Units-available-in"
5564
5565 \end_inset
5566
5567 .
5568 \end_layout
5569
5570 \begin_layout Standard
5571 The following tables show the difference:
5572 \end_layout
5573
5574 \begin_layout Standard
5575 \begin_inset Tabular
5576 <lyxtabular version="3" rows="6" columns="5">
5577 <features islongtable="true">
5578 <column alignment="center" valignment="top" leftline="true" width="0">
5579 <column alignment="center" valignment="top" leftline="true" width="0">
5580 <column alignment="center" valignment="top" leftline="true" width="0">
5581 <column alignment="center" valignment="top" leftline="true" width="0">
5582 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
5583 <row>
5584 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5585 \begin_inset Text
5586
5587 \begin_layout Standard
5588 \begin_inset Caption
5589
5590 \begin_layout Standard
5591 long full title with default width long full title with default width long
5592  full title with default width
5593 \begin_inset OptArg
5594 status collapsed
5595
5596 \begin_layout Standard
5597 caption with default width
5598 \end_layout
5599
5600 \end_inset
5601
5602
5603 \end_layout
5604
5605 \end_inset
5606
5607
5608 \begin_inset ERT
5609 status collapsed
5610
5611 \begin_layout Standard
5612
5613
5614 \backslash
5615
5616 \backslash
5617 %
5618 \end_layout
5619
5620 \end_inset
5621
5622
5623 \end_layout
5624
5625 \end_inset
5626 </cell>
5627 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5628 \begin_inset Text
5629
5630 \begin_layout Standard
5631
5632 \end_layout
5633
5634 \end_inset
5635 </cell>
5636 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5637 \begin_inset Text
5638
5639 \begin_layout Standard
5640
5641 \end_layout
5642
5643 \end_inset
5644 </cell>
5645 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5646 \begin_inset Text
5647
5648 \begin_layout Standard
5649
5650 \end_layout
5651
5652 \end_inset
5653 </cell>
5654 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5655 \begin_inset Text
5656
5657 \begin_layout Standard
5658
5659 \end_layout
5660
5661 \end_inset
5662 </cell>
5663 </row>
5664 <row topline="true">
5665 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5666 \begin_inset Text
5667
5668 \begin_layout Standard
5669 1
5670 \end_layout
5671
5672 \end_inset
5673 </cell>
5674 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5675 \begin_inset Text
5676
5677 \begin_layout Standard
5678 2
5679 \end_layout
5680
5681 \end_inset
5682 </cell>
5683 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5684 \begin_inset Text
5685
5686 \begin_layout Standard
5687 3
5688 \end_layout
5689
5690 \end_inset
5691 </cell>
5692 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5693 \begin_inset Text
5694
5695 \begin_layout Standard
5696 4
5697 \end_layout
5698
5699 \end_inset
5700 </cell>
5701 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5702 \begin_inset Text
5703
5704 \begin_layout Standard
5705 5
5706 \end_layout
5707
5708 \end_inset
5709 </cell>
5710 </row>
5711 <row topline="true">
5712 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5713 \begin_inset Text
5714
5715 \begin_layout Standard
5716 asd
5717 \end_layout
5718
5719 \end_inset
5720 </cell>
5721 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5722 \begin_inset Text
5723
5724 \begin_layout Standard
5725 s
5726 \end_layout
5727
5728 \end_inset
5729 </cell>
5730 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5731 \begin_inset Text
5732
5733 \begin_layout Standard
5734 s
5735 \end_layout
5736
5737 \end_inset
5738 </cell>
5739 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5740 \begin_inset Text
5741
5742 \begin_layout Standard
5743 s
5744 \end_layout
5745
5746 \end_inset
5747 </cell>
5748 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5749 \begin_inset Text
5750
5751 \begin_layout Standard
5752 asd
5753 \end_layout
5754
5755 \end_inset
5756 </cell>
5757 </row>
5758 <row topline="true">
5759 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5760 \begin_inset Text
5761
5762 \begin_layout Standard
5763 asd
5764 \end_layout
5765
5766 \end_inset
5767 </cell>
5768 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5769 \begin_inset Text
5770
5771 \begin_layout Standard
5772 s
5773 \end_layout
5774
5775 \end_inset
5776 </cell>
5777 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5778 \begin_inset Text
5779
5780 \begin_layout Standard
5781 s
5782 \end_layout
5783
5784 \end_inset
5785 </cell>
5786 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5787 \begin_inset Text
5788
5789 \begin_layout Standard
5790 s
5791 \end_layout
5792
5793 \end_inset
5794 </cell>
5795 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5796 \begin_inset Text
5797
5798 \begin_layout Standard
5799 asd
5800 \end_layout
5801
5802 \end_inset
5803 </cell>
5804 </row>
5805 <row topline="true">
5806 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5807 \begin_inset Text
5808
5809 \begin_layout Standard
5810 asd
5811 \end_layout
5812
5813 \end_inset
5814 </cell>
5815 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5816 \begin_inset Text
5817
5818 \begin_layout Standard
5819 s
5820 \end_layout
5821
5822 \end_inset
5823 </cell>
5824 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5825 \begin_inset Text
5826
5827 \begin_layout Standard
5828 s
5829 \end_layout
5830
5831 \end_inset
5832 </cell>
5833 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5834 \begin_inset Text
5835
5836 \begin_layout Standard
5837 s
5838 \end_layout
5839
5840 \end_inset
5841 </cell>
5842 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5843 \begin_inset Text
5844
5845 \begin_layout Standard
5846 asd
5847 \end_layout
5848
5849 \end_inset
5850 </cell>
5851 </row>
5852 <row topline="true" bottomline="true">
5853 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5854 \begin_inset Text
5855
5856 \begin_layout Standard
5857 asd
5858 \end_layout
5859
5860 \end_inset
5861 </cell>
5862 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5863 \begin_inset Text
5864
5865 \begin_layout Standard
5866 sad
5867 \end_layout
5868
5869 \end_inset
5870 </cell>
5871 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5872 \begin_inset Text
5873
5874 \begin_layout Standard
5875 asd
5876 \end_layout
5877
5878 \end_inset
5879 </cell>
5880 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5881 \begin_inset Text
5882
5883 \begin_layout Standard
5884 asd
5885 \end_layout
5886
5887 \end_inset
5888 </cell>
5889 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5890 \begin_inset Text
5891
5892 \begin_layout Standard
5893 asd
5894 \end_layout
5895
5896 \end_inset
5897 </cell>
5898 </row>
5899 </lyxtabular>
5900
5901 \end_inset
5902
5903
5904 \end_layout
5905
5906 \begin_layout Standard
5907 \begin_inset ERT
5908 status open
5909
5910 \begin_layout Standard
5911
5912
5913 \backslash
5914 setlength{
5915 \backslash
5916 LTcapwidth}{5cm}
5917 \end_layout
5918
5919 \end_inset
5920
5921
5922 \begin_inset Tabular
5923 <lyxtabular version="3" rows="6" columns="5">
5924 <features islongtable="true">
5925 <column alignment="center" valignment="top" leftline="true" width="0">
5926 <column alignment="center" valignment="top" leftline="true" width="0">
5927 <column alignment="center" valignment="top" leftline="true" width="0">
5928 <column alignment="center" valignment="top" leftline="true" width="0">
5929 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
5930 <row>
5931 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5932 \begin_inset Text
5933
5934 \begin_layout Standard
5935 \begin_inset Caption
5936
5937 \begin_layout Standard
5938 long full title with width set to 5\InsetSpace \thinspace{}
5939 cm long full title with width set to
5940  5\InsetSpace \thinspace{}
5941 cm long full title with width set to 5\InsetSpace \thinspace{}
5942 cm
5943 \begin_inset OptArg
5944 status collapsed
5945
5946 \begin_layout Standard
5947 caption with width\InsetSpace \thinspace{}
5948 =\InsetSpace \thinspace{}
5949 5\InsetSpace \thinspace{}
5950 cm
5951 \end_layout
5952
5953 \end_inset
5954
5955
5956 \end_layout
5957
5958 \end_inset
5959
5960
5961 \begin_inset ERT
5962 status collapsed
5963
5964 \begin_layout Standard
5965
5966
5967 \backslash
5968
5969 \backslash
5970 %
5971 \end_layout
5972
5973 \end_inset
5974
5975
5976 \end_layout
5977
5978 \end_inset
5979 </cell>
5980 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5981 \begin_inset Text
5982
5983 \begin_layout Standard
5984
5985 \end_layout
5986
5987 \end_inset
5988 </cell>
5989 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5990 \begin_inset Text
5991
5992 \begin_layout Standard
5993
5994 \end_layout
5995
5996 \end_inset
5997 </cell>
5998 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5999 \begin_inset Text
6000
6001 \begin_layout Standard
6002
6003 \end_layout
6004
6005 \end_inset
6006 </cell>
6007 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6008 \begin_inset Text
6009
6010 \begin_layout Standard
6011
6012 \end_layout
6013
6014 \end_inset
6015 </cell>
6016 </row>
6017 <row topline="true">
6018 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6019 \begin_inset Text
6020
6021 \begin_layout Standard
6022 1
6023 \end_layout
6024
6025 \end_inset
6026 </cell>
6027 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6028 \begin_inset Text
6029
6030 \begin_layout Standard
6031 2
6032 \end_layout
6033
6034 \end_inset
6035 </cell>
6036 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6037 \begin_inset Text
6038
6039 \begin_layout Standard
6040 3
6041 \end_layout
6042
6043 \end_inset
6044 </cell>
6045 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6046 \begin_inset Text
6047
6048 \begin_layout Standard
6049 4
6050 \end_layout
6051
6052 \end_inset
6053 </cell>
6054 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6055 \begin_inset Text
6056
6057 \begin_layout Standard
6058 5
6059 \end_layout
6060
6061 \end_inset
6062 </cell>
6063 </row>
6064 <row topline="true">
6065 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6066 \begin_inset Text
6067
6068 \begin_layout Standard
6069 asd
6070 \end_layout
6071
6072 \end_inset
6073 </cell>
6074 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6075 \begin_inset Text
6076
6077 \begin_layout Standard
6078 s
6079 \end_layout
6080
6081 \end_inset
6082 </cell>
6083 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6084 \begin_inset Text
6085
6086 \begin_layout Standard
6087 s
6088 \end_layout
6089
6090 \end_inset
6091 </cell>
6092 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6093 \begin_inset Text
6094
6095 \begin_layout Standard
6096 s
6097 \end_layout
6098
6099 \end_inset
6100 </cell>
6101 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6102 \begin_inset Text
6103
6104 \begin_layout Standard
6105 asd
6106 \end_layout
6107
6108 \end_inset
6109 </cell>
6110 </row>
6111 <row topline="true">
6112 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6113 \begin_inset Text
6114
6115 \begin_layout Standard
6116 asd
6117 \end_layout
6118
6119 \end_inset
6120 </cell>
6121 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6122 \begin_inset Text
6123
6124 \begin_layout Standard
6125 s
6126 \end_layout
6127
6128 \end_inset
6129 </cell>
6130 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6131 \begin_inset Text
6132
6133 \begin_layout Standard
6134 s
6135 \end_layout
6136
6137 \end_inset
6138 </cell>
6139 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6140 \begin_inset Text
6141
6142 \begin_layout Standard
6143 s
6144 \end_layout
6145
6146 \end_inset
6147 </cell>
6148 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6149 \begin_inset Text
6150
6151 \begin_layout Standard
6152 asd
6153 \end_layout
6154
6155 \end_inset
6156 </cell>
6157 </row>
6158 <row topline="true">
6159 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6160 \begin_inset Text
6161
6162 \begin_layout Standard
6163 asd
6164 \end_layout
6165
6166 \end_inset
6167 </cell>
6168 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6169 \begin_inset Text
6170
6171 \begin_layout Standard
6172 s
6173 \end_layout
6174
6175 \end_inset
6176 </cell>
6177 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6178 \begin_inset Text
6179
6180 \begin_layout Standard
6181 s
6182 \end_layout
6183
6184 \end_inset
6185 </cell>
6186 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6187 \begin_inset Text
6188
6189 \begin_layout Standard
6190 s
6191 \end_layout
6192
6193 \end_inset
6194 </cell>
6195 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6196 \begin_inset Text
6197
6198 \begin_layout Standard
6199 asd
6200 \end_layout
6201
6202 \end_inset
6203 </cell>
6204 </row>
6205 <row topline="true" bottomline="true">
6206 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6207 \begin_inset Text
6208
6209 \begin_layout Standard
6210 asd
6211 \end_layout
6212
6213 \end_inset
6214 </cell>
6215 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6216 \begin_inset Text
6217
6218 \begin_layout Standard
6219 sad
6220 \end_layout
6221
6222 \end_inset
6223 </cell>
6224 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6225 \begin_inset Text
6226
6227 \begin_layout Standard
6228 asd
6229 \end_layout
6230
6231 \end_inset
6232 </cell>
6233 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6234 \begin_inset Text
6235
6236 \begin_layout Standard
6237 asd
6238 \end_layout
6239
6240 \end_inset
6241 </cell>
6242 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6243 \begin_inset Text
6244
6245 \begin_layout Standard
6246 asd
6247 \end_layout
6248
6249 \end_inset
6250 </cell>
6251 </row>
6252 </lyxtabular>
6253
6254 \end_inset
6255
6256
6257 \end_layout
6258
6259 \begin_layout Standard
6260 \begin_inset ERT
6261 status collapsed
6262
6263 \begin_layout Standard
6264
6265
6266 \backslash
6267 setlength{
6268 \backslash
6269 LTcapwidth}{4in}
6270 \end_layout
6271
6272 \end_inset
6273
6274
6275 \end_layout
6276
6277 \begin_layout Standard
6278 \begin_inset Note Greyedout
6279 status open
6280
6281 \begin_layout Standard
6282
6283 \series bold
6284 Note:
6285 \series default
6286  When the LaTeX-package 
6287 \series bold
6288 caption
6289 \series default
6290
6291 \begin_inset LatexCommand index
6292 name "LaTeX-packages ! caption"
6293
6294 \end_inset
6295
6296  is used, as in this document, the full page width is used for the caption
6297  when you use the default value of 4\InsetSpace \thinspace{}
6298 in for 
6299 \series bold
6300
6301 \backslash
6302 LTcapwidth
6303 \series default
6304 .
6305  To get in this case exactly a 4\InsetSpace \thinspace{}
6306 in wide caption, you can either use a value
6307  slightly different from 4.0\InsetSpace \thinspace{}
6308 in, e.g.
6309  3.99\InsetSpace \thinspace{}
6310 in, or the LaTeX-command 
6311 \series bold
6312
6313 \backslash
6314 captionsetup{width=value}
6315 \series default
6316  that is provided by the 
6317 \series bold
6318 caption
6319 \series default
6320 -package.
6321 \end_layout
6322
6323 \end_inset
6324
6325
6326 \end_layout
6327
6328 \begin_layout Subsubsection
6329 Different Captions for Table Pages
6330 \begin_inset LatexCommand index
6331 name "Longtables ! Different Captions for Pages"
6332
6333 \end_inset
6334
6335
6336 \end_layout
6337
6338 \begin_layout Standard
6339 When the other captions should differ from the one of the first table page,
6340  insert a caption with a non-empty short title in a dummy caption row marked
6341  as first header.
6342  The caption used for the other table pages is inserted as caption without
6343  a short title in a dummy caption row that is marked as main header.
6344  When this caption shouldn't include the table number, use the command
6345 \end_layout
6346
6347 \begin_layout Standard
6348
6349 \series bold
6350
6351 \backslash
6352 caption*{caption text}
6353 \end_layout
6354
6355 \begin_layout Standard
6356 instead of LyX's caption box.
6357  The label to reference the table is inserted into the caption of the first
6358  header.
6359  Table\InsetSpace ~
6360
6361 \begin_inset LatexCommand ref
6362 reference "tab:DiffCaptions"
6363
6364 \end_inset
6365
6366  is an example for a longtable with different heading where the second caption
6367  doesn't include the table number.
6368 \end_layout
6369
6370 \begin_layout Standard
6371 \align center
6372 \begin_inset Tabular
6373 <lyxtabular version="3" rows="60" columns="3">
6374 <features islongtable="true">
6375 <column alignment="left" valignment="top" leftline="true" width="0cm">
6376 <column alignment="left" valignment="top" rightline="true" width="0pt">
6377 <column alignment="right" valignment="top" rightline="true" width="0pt">
6378 <row endfirsthead="true">
6379 <cell alignment="right" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
6380 \begin_inset Text
6381
6382 \begin_layout Standard
6383 \begin_inset Caption
6384
6385 \begin_layout Standard
6386 Example Phone List
6387 \begin_inset LatexCommand label
6388 name "tab:DiffCaptions"
6389
6390 \end_inset
6391
6392
6393 \begin_inset OptArg
6394 status collapsed
6395
6396 \begin_layout Standard
6397 Example Phone List
6398 \end_layout
6399
6400 \end_inset
6401
6402
6403 \end_layout
6404
6405 \end_inset
6406
6407
6408 \begin_inset ERT
6409 status collapsed
6410
6411 \begin_layout Standard
6412
6413
6414 \backslash
6415
6416 \backslash
6417 %
6418 \end_layout
6419
6420 \end_inset
6421
6422
6423 \end_layout
6424
6425 \end_inset
6426 </cell>
6427 <cell alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
6428 \begin_inset Text
6429
6430 \begin_layout Standard
6431
6432 \end_layout
6433
6434 \end_inset
6435 </cell>
6436 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6437 \begin_inset Text
6438
6439 \begin_layout Standard
6440
6441 \end_layout
6442
6443 \end_inset
6444 </cell>
6445 </row>
6446 <row topline="true" bottomline="true" endfirsthead="true">
6447 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6448 \begin_inset Text
6449
6450 \begin_layout Standard
6451
6452 \series bold
6453 Example Phone List (ignore the names)
6454 \end_layout
6455
6456 \end_inset
6457 </cell>
6458 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6459 \begin_inset Text
6460
6461 \begin_layout Standard
6462
6463 \end_layout
6464
6465 \end_inset
6466 </cell>
6467 <cell multicolumn="2" alignment="right" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6468 \begin_inset Text
6469
6470 \begin_layout Standard
6471
6472 \end_layout
6473
6474 \end_inset
6475 </cell>
6476 </row>
6477 <row topline="true" bottomline="true" endfirsthead="true">
6478 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
6479 \begin_inset Text
6480
6481 \begin_layout Standard
6482
6483 \series bold
6484 NAME
6485 \end_layout
6486
6487 \end_inset
6488 </cell>
6489 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
6490 \begin_inset Text
6491
6492 \begin_layout Standard
6493
6494 \end_layout
6495
6496 \end_inset
6497 </cell>
6498 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
6499 \begin_inset Text
6500
6501 \begin_layout Standard
6502
6503 \series bold
6504 TEL.
6505 \end_layout
6506
6507 \end_inset
6508 </cell>
6509 </row>
6510 <row bottomline="true" endhead="true">
6511 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6512 \begin_inset Text
6513
6514 \begin_layout Standard
6515 \begin_inset ERT
6516 status open
6517
6518 \begin_layout Standard
6519
6520
6521 \backslash
6522 caption*{Continued Example Phone List}
6523 \backslash
6524
6525 \backslash
6526 %
6527 \end_layout
6528
6529 \end_inset
6530
6531
6532 \end_layout
6533
6534 \end_inset
6535 </cell>
6536 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6537 \begin_inset Text
6538
6539 \begin_layout Standard
6540
6541 \end_layout
6542
6543 \end_inset
6544 </cell>
6545 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6546 \begin_inset Text
6547
6548 \begin_layout Standard
6549
6550 \end_layout
6551
6552 \end_inset
6553 </cell>
6554 </row>
6555 <row topline="true" bottomline="true" endhead="true">
6556 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
6557 \begin_inset Text
6558
6559 \begin_layout Standard
6560
6561 \series bold
6562 Example Phone List
6563 \end_layout
6564
6565 \end_inset
6566 </cell>
6567 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
6568 \begin_inset Text
6569
6570 \begin_layout Standard
6571
6572 \end_layout
6573
6574 \end_inset
6575 </cell>
6576 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6577 \begin_inset Text
6578
6579 \begin_layout Standard
6580
6581 \end_layout
6582
6583 \end_inset
6584 </cell>
6585 </row>
6586 <row topline="true" bottomline="true" endhead="true">
6587 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
6588 \begin_inset Text
6589
6590 \begin_layout Standard
6591
6592 \series bold
6593 NAME
6594 \end_layout
6595
6596 \end_inset
6597 </cell>
6598 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
6599 \begin_inset Text
6600
6601 \begin_layout Standard
6602
6603 \end_layout
6604
6605 \end_inset
6606 </cell>
6607 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
6608 \begin_inset Text
6609
6610 \begin_layout Standard
6611
6612 \series bold
6613 TEL.
6614 \end_layout
6615
6616 \end_inset
6617 </cell>
6618 </row>
6619 <row topline="true" bottomline="true" endfoot="true">
6620 <cell multicolumn="1" alignment="right" valignment="top" topline="true" usebox="none">
6621 \begin_inset Text
6622
6623 \begin_layout Standard
6624 continued on next page
6625 \end_layout
6626
6627 \end_inset
6628 </cell>
6629 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
6630 \begin_inset Text
6631
6632 \begin_layout Standard
6633
6634 \end_layout
6635
6636 \end_inset
6637 </cell>
6638 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6639 \begin_inset Text
6640
6641 \begin_layout Standard
6642
6643 \end_layout
6644
6645 \end_inset
6646 </cell>
6647 </row>
6648 <row>
6649 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6650 \begin_inset Text
6651
6652 \begin_layout Standard
6653
6654 \series bold
6655 Annovi
6656 \end_layout
6657
6658 \end_inset
6659 </cell>
6660 <cell alignment="center" valignment="top" topline="true" usebox="none">
6661 \begin_inset Text
6662
6663 \begin_layout Standard
6664 Silvia
6665 \end_layout
6666
6667 \end_inset
6668 </cell>
6669 <cell alignment="right" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6670 \begin_inset Text
6671
6672 \begin_layout Standard
6673 111
6674 \end_layout
6675
6676 \end_inset
6677 </cell>
6678 </row>
6679 <row>
6680 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6681 \begin_inset Text
6682
6683 \begin_layout Standard
6684
6685 \series bold
6686 Bertoli
6687 \end_layout
6688
6689 \end_inset
6690 </cell>
6691 <cell alignment="center" valignment="top" topline="true" usebox="none">
6692 \begin_inset Text
6693
6694 \begin_layout Standard
6695 Stefano
6696 \end_layout
6697
6698 \end_inset
6699 </cell>
6700 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6701 \begin_inset Text
6702
6703 \begin_layout Standard
6704 111
6705 \end_layout
6706
6707 \end_inset
6708 </cell>
6709 </row>
6710 <row>
6711 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6712 \begin_inset Text
6713
6714 \begin_layout Standard
6715
6716 \series bold
6717 Bozzi
6718 \end_layout
6719
6720 \end_inset
6721 </cell>
6722 <cell alignment="center" valignment="top" topline="true" usebox="none">
6723 \begin_inset Text
6724
6725 \begin_layout Standard
6726 Walter
6727 \end_layout
6728
6729 \end_inset
6730 </cell>
6731 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6732 \begin_inset Text
6733
6734 \begin_layout Standard
6735 111
6736 \end_layout
6737
6738 \end_inset
6739 </cell>
6740 </row>
6741 <row>
6742 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6743 \begin_inset Text
6744
6745 \begin_layout Standard
6746
6747 \series bold
6748 Cachia
6749 \end_layout
6750
6751 \end_inset
6752 </cell>
6753 <cell alignment="center" valignment="top" topline="true" usebox="none">
6754 \begin_inset Text
6755
6756 \begin_layout Standard
6757 Maria
6758 \end_layout
6759
6760 \end_inset
6761 </cell>
6762 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6763 \begin_inset Text
6764
6765 \begin_layout Standard
6766 111
6767 \end_layout
6768
6769 \end_inset
6770 </cell>
6771 </row>
6772 <row>
6773 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6774 \begin_inset Text
6775
6776 \begin_layout Standard
6777
6778 \series bold
6779 Cachia
6780 \end_layout
6781
6782 \end_inset
6783 </cell>
6784 <cell alignment="center" valignment="top" topline="true" usebox="none">
6785 \begin_inset Text
6786
6787 \begin_layout Standard
6788 Maurizio
6789 \end_layout
6790
6791 \end_inset
6792 </cell>
6793 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6794 \begin_inset Text
6795
6796 \begin_layout Standard
6797 111
6798 \end_layout
6799
6800 \end_inset
6801 </cell>
6802 </row>
6803 <row>
6804 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6805 \begin_inset Text
6806
6807 \begin_layout Standard
6808
6809 \series bold
6810 Cinquemani
6811 \end_layout
6812
6813 \end_inset
6814 </cell>
6815 <cell alignment="center" valignment="top" topline="true" usebox="none">
6816 \begin_inset Text
6817
6818 \begin_layout Standard
6819 Giusi
6820 \end_layout
6821
6822 \end_inset
6823 </cell>
6824 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6825 \begin_inset Text
6826
6827 \begin_layout Standard
6828 111
6829 \end_layout
6830
6831 \end_inset
6832 </cell>
6833 </row>
6834 <row>
6835 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6836 \begin_inset Text
6837
6838 \begin_layout Standard
6839
6840 \series bold
6841 Colin
6842 \end_layout
6843
6844 \end_inset
6845 </cell>
6846 <cell alignment="center" valignment="top" topline="true" usebox="none">
6847 \begin_inset Text
6848
6849 \begin_layout Standard
6850 Bernard
6851 \end_layout
6852
6853 \end_inset
6854 </cell>
6855 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6856 \begin_inset Text
6857
6858 \begin_layout Standard
6859 111
6860 \end_layout
6861
6862 \end_inset
6863 </cell>
6864 </row>
6865 <row>
6866 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6867 \begin_inset Text
6868
6869 \begin_layout Standard
6870
6871 \series bold
6872 Concli
6873 \end_layout
6874
6875 \end_inset
6876 </cell>
6877 <cell alignment="center" valignment="top" topline="true" usebox="none">
6878 \begin_inset Text
6879
6880 \begin_layout Standard
6881 Gianfranco
6882 \end_layout
6883
6884 \end_inset
6885 </cell>
6886 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6887 \begin_inset Text
6888
6889 \begin_layout Standard
6890 111
6891 \end_layout
6892
6893 \end_inset
6894 </cell>
6895 </row>
6896 <row>
6897 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6898 \begin_inset Text
6899
6900 \begin_layout Standard
6901
6902 \series bold
6903 Dal Bosco
6904 \end_layout
6905
6906 \end_inset
6907 </cell>
6908 <cell alignment="center" valignment="top" topline="true" usebox="none">
6909 \begin_inset Text
6910
6911 \begin_layout Standard
6912 Carolina
6913 \end_layout
6914
6915 \end_inset
6916 </cell>
6917 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6918 \begin_inset Text
6919
6920 \begin_layout Standard
6921 111
6922 \end_layout
6923
6924 \end_inset
6925 </cell>
6926 </row>
6927 <row>
6928 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6929 \begin_inset Text
6930
6931 \begin_layout Standard
6932
6933 \series bold
6934 Dalpiaz
6935 \end_layout
6936
6937 \end_inset
6938 </cell>
6939 <cell alignment="center" valignment="top" topline="true" usebox="none">
6940 \begin_inset Text
6941
6942 \begin_layout Standard
6943 Annamaria
6944 \end_layout
6945
6946 \end_inset
6947 </cell>
6948 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6949 \begin_inset Text
6950
6951 \begin_layout Standard
6952 111
6953 \end_layout
6954
6955 \end_inset
6956 </cell>
6957 </row>
6958 <row>
6959 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6960 \begin_inset Text
6961
6962 \begin_layout Standard
6963
6964 \series bold
6965 Feliciello
6966 \end_layout
6967
6968 \end_inset
6969 </cell>
6970 <cell alignment="center" valignment="top" topline="true" usebox="none">
6971 \begin_inset Text
6972
6973 \begin_layout Standard
6974 Domenico
6975 \end_layout
6976
6977 \end_inset
6978 </cell>
6979 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6980 \begin_inset Text
6981
6982 \begin_layout Standard
6983 111
6984 \end_layout
6985
6986 \end_inset
6987 </cell>
6988 </row>
6989 <row>
6990 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6991 \begin_inset Text
6992
6993 \begin_layout Standard
6994
6995 \series bold
6996 Focarelli
6997 \end_layout
6998
6999 \end_inset
7000 </cell>
7001 <cell alignment="center" valignment="top" topline="true" usebox="none">
7002 \begin_inset Text
7003
7004 \begin_layout Standard
7005 Paola
7006 \end_layout
7007
7008 \end_inset
7009 </cell>
7010 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7011 \begin_inset Text
7012
7013 \begin_layout Standard
7014 111
7015 \end_layout
7016
7017 \end_inset
7018 </cell>
7019 </row>
7020 <row>
7021 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7022 \begin_inset Text
7023
7024 \begin_layout Standard
7025
7026 \series bold
7027 Galletti
7028 \end_layout
7029
7030 \end_inset
7031 </cell>
7032 <cell alignment="center" valignment="top" topline="true" usebox="none">
7033 \begin_inset Text
7034
7035 \begin_layout Standard
7036 Oreste
7037 \end_layout
7038
7039 \end_inset
7040 </cell>
7041 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7042 \begin_inset Text
7043
7044 \begin_layout Standard
7045 111
7046 \end_layout
7047
7048 \end_inset
7049 </cell>
7050 </row>
7051 <row>
7052 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7053 \begin_inset Text
7054
7055 \begin_layout Standard
7056
7057 \series bold
7058 Gasparini
7059 \end_layout
7060
7061 \end_inset
7062 </cell>
7063 <cell alignment="center" valignment="top" topline="true" usebox="none">
7064 \begin_inset Text
7065
7066 \begin_layout Standard
7067 Franca
7068 \end_layout
7069
7070 \end_inset
7071 </cell>
7072 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7073 \begin_inset Text
7074
7075 \begin_layout Standard
7076 111
7077 \end_layout
7078
7079 \end_inset
7080 </cell>
7081 </row>
7082 <row>
7083 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7084 \begin_inset Text
7085
7086 \begin_layout Standard
7087
7088 \series bold
7089 Rizzardi
7090 \series default
7091
7092 \begin_inset Foot
7093 status collapsed
7094
7095 \begin_layout Standard
7096 Example footnote
7097 \end_layout
7098
7099 \end_inset
7100
7101
7102 \end_layout
7103
7104 \end_inset
7105 </cell>
7106 <cell alignment="center" valignment="top" topline="true" usebox="none">
7107 \begin_inset Text
7108
7109 \begin_layout Standard
7110 Paola
7111 \end_layout
7112
7113 \end_inset
7114 </cell>
7115 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7116 \begin_inset Text
7117
7118 \begin_layout Standard
7119 111
7120 \end_layout
7121
7122 \end_inset
7123 </cell>
7124 </row>
7125 <row>
7126 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7127 \begin_inset Text
7128
7129 \begin_layout Standard
7130
7131 \series bold
7132 Lassini
7133 \end_layout
7134
7135 \end_inset
7136 </cell>
7137 <cell alignment="center" valignment="top" topline="true" usebox="none">
7138 \begin_inset Text
7139
7140 \begin_layout Standard
7141 Giancarlo
7142 \end_layout
7143
7144 \end_inset
7145 </cell>
7146 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7147 \begin_inset Text
7148
7149 \begin_layout Standard
7150 111
7151 \end_layout
7152
7153 \end_inset
7154 </cell>
7155 </row>
7156 <row>
7157 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7158 \begin_inset Text
7159
7160 \begin_layout Standard
7161
7162 \series bold
7163 Malfatti
7164 \end_layout
7165
7166 \end_inset
7167 </cell>
7168 <cell alignment="center" valignment="top" topline="true" usebox="none">
7169 \begin_inset Text
7170
7171 \begin_layout Standard
7172 Luciano
7173 \end_layout
7174
7175 \end_inset
7176 </cell>
7177 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7178 \begin_inset Text
7179
7180 \begin_layout Standard
7181 111
7182 \end_layout
7183
7184 \end_inset
7185 </cell>
7186 </row>
7187 <row>
7188 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7189 \begin_inset Text
7190
7191 \begin_layout Standard
7192
7193 \series bold
7194 Malfatti
7195 \end_layout
7196
7197 \end_inset
7198 </cell>
7199 <cell alignment="center" valignment="top" topline="true" usebox="none">
7200 \begin_inset Text
7201
7202 \begin_layout Standard
7203 Valeriano
7204 \end_layout
7205
7206 \end_inset
7207 </cell>
7208 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7209 \begin_inset Text
7210
7211 \begin_layout Standard
7212 111
7213 \end_layout
7214
7215 \end_inset
7216 </cell>
7217 </row>
7218 <row>
7219 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7220 \begin_inset Text
7221
7222 \begin_layout Standard
7223
7224 \series bold
7225 Meneguzzo
7226 \end_layout
7227
7228 \end_inset
7229 </cell>
7230 <cell alignment="center" valignment="top" topline="true" usebox="none">
7231 \begin_inset Text
7232
7233 \begin_layout Standard
7234 Roberto
7235 \end_layout
7236
7237 \end_inset
7238 </cell>
7239 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7240 \begin_inset Text
7241
7242 \begin_layout Standard
7243 111
7244 \end_layout
7245
7246 \end_inset
7247 </cell>
7248 </row>
7249 <row>
7250 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7251 \begin_inset Text
7252
7253 \begin_layout Standard
7254
7255 \series bold
7256 Mezzadra
7257 \end_layout
7258
7259 \end_inset
7260 </cell>
7261 <cell alignment="center" valignment="top" topline="true" usebox="none">
7262 \begin_inset Text
7263
7264 \begin_layout Standard
7265 Roberto
7266 \end_layout
7267
7268 \end_inset
7269 </cell>
7270 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7271 \begin_inset Text
7272
7273 \begin_layout Standard
7274 111
7275 \end_layout
7276
7277 \end_inset
7278 </cell>
7279 </row>
7280 <row>
7281 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7282 \begin_inset Text
7283
7284 \begin_layout Standard
7285
7286 \series bold
7287 Pirpamer
7288 \end_layout
7289
7290 \end_inset
7291 </cell>
7292 <cell alignment="center" valignment="top" topline="true" usebox="none">
7293 \begin_inset Text
7294
7295 \begin_layout Standard
7296 Erich
7297 \end_layout
7298
7299 \end_inset
7300 </cell>
7301 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7302 \begin_inset Text
7303
7304 \begin_layout Standard
7305 111
7306 \end_layout
7307
7308 \end_inset
7309 </cell>
7310 </row>
7311 <row>
7312 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7313 \begin_inset Text
7314
7315 \begin_layout Standard
7316
7317 \series bold
7318 Pochiesa
7319 \end_layout
7320
7321 \end_inset
7322 </cell>
7323 <cell alignment="center" valignment="top" topline="true" usebox="none">
7324 \begin_inset Text
7325
7326 \begin_layout Standard
7327 Paolo
7328 \end_layout
7329
7330 \end_inset
7331 </cell>
7332 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7333 \begin_inset Text
7334
7335 \begin_layout Standard
7336 111, 222
7337 \end_layout
7338
7339 \end_inset
7340 </cell>
7341 </row>
7342 <row>
7343 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7344 \begin_inset Text
7345
7346 \begin_layout Standard
7347
7348 \series bold
7349 Radina
7350 \end_layout
7351
7352 \end_inset
7353 </cell>
7354 <cell alignment="center" valignment="top" topline="true" usebox="none">
7355 \begin_inset Text
7356
7357 \begin_layout Standard
7358 Claudio
7359 \end_layout
7360
7361 \end_inset
7362 </cell>
7363 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7364 \begin_inset Text
7365
7366 \begin_layout Standard
7367 111
7368 \end_layout
7369
7370 \end_inset
7371 </cell>
7372 </row>
7373 <row>
7374 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7375 \begin_inset Text
7376
7377 \begin_layout Standard
7378
7379 \series bold
7380 Stuffer
7381 \end_layout
7382
7383 \end_inset
7384 </cell>
7385 <cell alignment="center" valignment="top" topline="true" usebox="none">
7386 \begin_inset Text
7387
7388 \begin_layout Standard
7389 Oskar
7390 \end_layout
7391
7392 \end_inset
7393 </cell>
7394 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7395 \begin_inset Text
7396
7397 \begin_layout Standard
7398 111
7399 \end_layout
7400
7401 \end_inset
7402 </cell>
7403 </row>
7404 <row>
7405 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7406 \begin_inset Text
7407
7408 \begin_layout Standard
7409
7410 \series bold
7411 Tacchelli
7412 \end_layout
7413
7414 \end_inset
7415 </cell>
7416 <cell alignment="center" valignment="top" topline="true" usebox="none">
7417 \begin_inset Text
7418
7419 \begin_layout Standard
7420 Ugo
7421 \end_layout
7422
7423 \end_inset
7424 </cell>
7425 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7426 \begin_inset Text
7427
7428 \begin_layout Standard
7429 111
7430 \end_layout
7431
7432 \end_inset
7433 </cell>
7434 </row>
7435 <row>
7436 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7437 \begin_inset Text
7438
7439 \begin_layout Standard
7440
7441 \series bold
7442 Tezzele
7443 \end_layout
7444
7445 \end_inset
7446 </cell>
7447 <cell alignment="center" valignment="top" topline="true" usebox="none">
7448 \begin_inset Text
7449
7450 \begin_layout Standard
7451 Margit
7452 \end_layout
7453
7454 \end_inset
7455 </cell>
7456 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7457 \begin_inset Text
7458
7459 \begin_layout Standard
7460 111
7461 \end_layout
7462
7463 \end_inset
7464 </cell>
7465 </row>
7466 <row>
7467 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7468 \begin_inset Text
7469
7470 \begin_layout Standard
7471
7472 \series bold
7473 Unterkalmsteiner
7474 \end_layout
7475
7476 \end_inset
7477 </cell>
7478 <cell alignment="center" valignment="top" topline="true" usebox="none">
7479 \begin_inset Text
7480
7481 \begin_layout Standard
7482 Frieda
7483 \end_layout
7484
7485 \end_inset
7486 </cell>
7487 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7488 \begin_inset Text
7489
7490 \begin_layout Standard
7491 111
7492 \end_layout
7493
7494 \end_inset
7495 </cell>
7496 </row>
7497 <row>
7498 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7499 \begin_inset Text
7500
7501 \begin_layout Standard
7502
7503 \series bold
7504 Vieider
7505 \end_layout
7506
7507 \end_inset
7508 </cell>
7509 <cell alignment="center" valignment="top" topline="true" usebox="none">
7510 \begin_inset Text
7511
7512 \begin_layout Standard
7513 Hilde
7514 \end_layout
7515
7516 \end_inset
7517 </cell>
7518 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7519 \begin_inset Text
7520
7521 \begin_layout Standard
7522 111
7523 \end_layout
7524
7525 \end_inset
7526 </cell>
7527 </row>
7528 <row>
7529 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7530 \begin_inset Text
7531
7532 \begin_layout Standard
7533
7534 \series bold
7535 Vigna
7536 \end_layout
7537
7538 \end_inset
7539 </cell>
7540 <cell alignment="center" valignment="top" topline="true" usebox="none">
7541 \begin_inset Text
7542
7543 \begin_layout Standard
7544 Jürgen
7545 \end_layout
7546
7547 \end_inset
7548 </cell>
7549 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7550 \begin_inset Text
7551
7552 \begin_layout Standard
7553 111
7554 \end_layout
7555
7556 \end_inset
7557 </cell>
7558 </row>
7559 <row>
7560 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7561 \begin_inset Text
7562
7563 \begin_layout Standard
7564
7565 \series bold
7566 Weber
7567 \end_layout
7568
7569 \end_inset
7570 </cell>
7571 <cell alignment="center" valignment="top" topline="true" usebox="none">
7572 \begin_inset Text
7573
7574 \begin_layout Standard
7575 Maurizio
7576 \end_layout
7577
7578 \end_inset
7579 </cell>
7580 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7581 \begin_inset Text
7582
7583 \begin_layout Standard
7584 111
7585 \end_layout
7586
7587 \end_inset
7588 </cell>
7589 </row>
7590 <row bottomline="true">
7591 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7592 \begin_inset Text
7593
7594 \begin_layout Standard
7595
7596 \series bold
7597 Winkler
7598 \end_layout
7599
7600 \end_inset
7601 </cell>
7602 <cell alignment="center" valignment="top" topline="true" usebox="none">
7603 \begin_inset Text
7604
7605 \begin_layout Standard
7606 Franz
7607 \end_layout
7608
7609 \end_inset
7610 </cell>
7611 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7612 \begin_inset Text
7613
7614 \begin_layout Standard
7615 111
7616 \end_layout
7617
7618 \end_inset
7619 </cell>
7620 </row>
7621 <row bottomline="true">
7622 <cell multicolumn="1" alignment="left" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
7623 \begin_inset Text
7624
7625 \begin_layout Standard
7626  
7627 \end_layout
7628
7629 \end_inset
7630 </cell>
7631 <cell multicolumn="2" alignment="center" valignment="top" topline="true" usebox="none">
7632 \begin_inset Text
7633
7634 \begin_layout Standard
7635
7636 \end_layout
7637
7638 \end_inset
7639 </cell>
7640 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7641 \begin_inset Text
7642
7643 \begin_layout Standard
7644
7645 \end_layout
7646
7647 \end_inset
7648 </cell>
7649 </row>
7650 <row>
7651 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7652 \begin_inset Text
7653
7654 \begin_layout Standard
7655
7656 \series bold
7657 Annovi
7658 \end_layout
7659
7660 \end_inset
7661 </cell>
7662 <cell alignment="center" valignment="top" topline="true" usebox="none">
7663 \begin_inset Text
7664
7665 \begin_layout Standard
7666 Silvia
7667 \end_layout
7668
7669 \end_inset
7670 </cell>
7671 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7672 \begin_inset Text
7673
7674 \begin_layout Standard
7675 555
7676 \end_layout
7677
7678 \end_inset
7679 </cell>
7680 </row>
7681 <row>
7682 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7683 \begin_inset Text
7684
7685 \begin_layout Standard
7686
7687 \series bold
7688 Bertoli
7689 \end_layout
7690
7691 \end_inset
7692 </cell>
7693 <cell alignment="center" valignment="top" topline="true" usebox="none">
7694 \begin_inset Text
7695
7696 \begin_layout Standard
7697 Stefano
7698 \end_layout
7699
7700 \end_inset
7701 </cell>
7702 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7703 \begin_inset Text
7704
7705 \begin_layout Standard
7706 555
7707 \end_layout
7708
7709 \end_inset
7710 </cell>
7711 </row>
7712 <row>
7713 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7714 \begin_inset Text
7715
7716 \begin_layout Standard
7717
7718 \series bold
7719 Bozzi
7720 \end_layout
7721
7722 \end_inset
7723 </cell>
7724 <cell alignment="center" valignment="top" topline="true" usebox="none">
7725 \begin_inset Text
7726
7727 \begin_layout Standard
7728 Walter
7729 \end_layout
7730
7731 \end_inset
7732 </cell>
7733 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7734 \begin_inset Text
7735
7736 \begin_layout Standard
7737 555
7738 \end_layout
7739
7740 \end_inset
7741 </cell>
7742 </row>
7743 <row>
7744 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7745 \begin_inset Text
7746
7747 \begin_layout Standard
7748
7749 \series bold
7750 Cachia
7751 \end_layout
7752
7753 \end_inset
7754 </cell>
7755 <cell alignment="center" valignment="top" topline="true" usebox="none">
7756 \begin_inset Text
7757
7758 \begin_layout Standard
7759 Maria
7760 \end_layout
7761
7762 \end_inset
7763 </cell>
7764 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7765 \begin_inset Text
7766
7767 \begin_layout Standard
7768 555
7769 \end_layout
7770
7771 \end_inset
7772 </cell>
7773 </row>
7774 <row>
7775 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7776 \begin_inset Text
7777
7778 \begin_layout Standard
7779
7780 \series bold
7781 Cachia
7782 \end_layout
7783
7784 \end_inset
7785 </cell>
7786 <cell alignment="center" valignment="top" topline="true" usebox="none">
7787 \begin_inset Text
7788
7789 \begin_layout Standard
7790 Maurizio
7791 \end_layout
7792
7793 \end_inset
7794 </cell>
7795 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7796 \begin_inset Text
7797
7798 \begin_layout Standard
7799 555
7800 \end_layout
7801
7802 \end_inset
7803 </cell>
7804 </row>
7805 <row>
7806 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7807 \begin_inset Text
7808
7809 \begin_layout Standard
7810
7811 \series bold
7812 Cinquemani
7813 \end_layout
7814
7815 \end_inset
7816 </cell>
7817 <cell alignment="center" valignment="top" topline="true" usebox="none">
7818 \begin_inset Text
7819
7820 \begin_layout Standard
7821 Giusi
7822 \end_layout
7823
7824 \end_inset
7825 </cell>
7826 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7827 \begin_inset Text
7828
7829 \begin_layout Standard
7830 555
7831 \end_layout
7832
7833 \end_inset
7834 </cell>
7835 </row>
7836 <row>
7837 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7838 \begin_inset Text
7839
7840 \begin_layout Standard
7841
7842 \series bold
7843 Colin
7844 \end_layout
7845
7846 \end_inset
7847 </cell>
7848 <cell alignment="center" valignment="top" topline="true" usebox="none">
7849 \begin_inset Text
7850
7851 \begin_layout Standard
7852 Bernard
7853 \end_layout
7854
7855 \end_inset
7856 </cell>
7857 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7858 \begin_inset Text
7859
7860 \begin_layout Standard
7861 555
7862 \end_layout
7863
7864 \end_inset
7865 </cell>
7866 </row>
7867 <row>
7868 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7869 \begin_inset Text
7870
7871 \begin_layout Standard
7872
7873 \series bold
7874 Concli
7875 \end_layout
7876
7877 \end_inset
7878 </cell>
7879 <cell alignment="center" valignment="top" topline="true" usebox="none">
7880 \begin_inset Text
7881
7882 \begin_layout Standard
7883 Gianfranco
7884 \end_layout
7885
7886 \end_inset
7887 </cell>
7888 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7889 \begin_inset Text
7890
7891 \begin_layout Standard
7892 555
7893 \end_layout
7894
7895 \end_inset
7896 </cell>
7897 </row>
7898 <row>
7899 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7900 \begin_inset Text
7901
7902 \begin_layout Standard
7903
7904 \series bold
7905 Dal Bosco
7906 \end_layout
7907
7908 \end_inset
7909 </cell>
7910 <cell alignment="center" valignment="top" topline="true" usebox="none">
7911 \begin_inset Text
7912
7913 \begin_layout Standard
7914 Carolina
7915 \end_layout
7916
7917 \end_inset
7918 </cell>
7919 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7920 \begin_inset Text
7921
7922 \begin_layout Standard
7923 555
7924 \end_layout
7925
7926 \end_inset
7927 </cell>
7928 </row>
7929 <row>
7930 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7931 \begin_inset Text
7932
7933 \begin_layout Standard
7934
7935 \series bold
7936 Dalpiaz
7937 \end_layout
7938
7939 \end_inset
7940 </cell>
7941 <cell alignment="center" valignment="top" topline="true" usebox="none">
7942 \begin_inset Text
7943
7944 \begin_layout Standard
7945 Annamaria
7946 \end_layout
7947
7948 \end_inset
7949 </cell>
7950 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7951 \begin_inset Text
7952
7953 \begin_layout Standard
7954 555
7955 \end_layout
7956
7957 \end_inset
7958 </cell>
7959 </row>
7960 <row>
7961 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7962 \begin_inset Text
7963
7964 \begin_layout Standard
7965
7966 \series bold
7967 Feliciello
7968 \end_layout
7969
7970 \end_inset
7971 </cell>
7972 <cell alignment="center" valignment="top" topline="true" usebox="none">
7973 \begin_inset Text
7974
7975 \begin_layout Standard
7976 Domenico
7977 \end_layout
7978
7979 \end_inset
7980 </cell>
7981 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7982 \begin_inset Text
7983
7984 \begin_layout Standard
7985 555
7986 \end_layout
7987
7988 \end_inset
7989 </cell>
7990 </row>
7991 <row>
7992 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7993 \begin_inset Text
7994
7995 \begin_layout Standard
7996
7997 \series bold
7998 Focarelli
7999 \end_layout
8000
8001 \end_inset
8002 </cell>
8003 <cell alignment="center" valignment="top" topline="true" usebox="none">
8004 \begin_inset Text
8005
8006 \begin_layout Standard
8007 Paola
8008 \end_layout
8009
8010 \end_inset
8011 </cell>
8012 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8013 \begin_inset Text
8014
8015 \begin_layout Standard
8016 555
8017 \end_layout
8018
8019 \end_inset
8020 </cell>
8021 </row>
8022 <row>
8023 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8024 \begin_inset Text
8025
8026 \begin_layout Standard
8027
8028 \series bold
8029 Galletti
8030 \end_layout
8031
8032 \end_inset
8033 </cell>
8034 <cell alignment="center" valignment="top" topline="true" usebox="none">
8035 \begin_inset Text
8036
8037 \begin_layout Standard
8038 Oreste
8039 \end_layout
8040
8041 \end_inset
8042 </cell>
8043 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8044 \begin_inset Text
8045
8046 \begin_layout Standard
8047 555
8048 \end_layout
8049
8050 \end_inset
8051 </cell>
8052 </row>
8053 <row>
8054 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8055 \begin_inset Text
8056
8057 \begin_layout Standard
8058
8059 \series bold
8060 Gasparini
8061 \end_layout
8062
8063 \end_inset
8064 </cell>
8065 <cell alignment="center" valignment="top" topline="true" usebox="none">
8066 \begin_inset Text
8067
8068 \begin_layout Standard
8069 Franca
8070 \end_layout
8071
8072 \end_inset
8073 </cell>
8074 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8075 \begin_inset Text
8076
8077 \begin_layout Standard
8078 555
8079 \end_layout
8080
8081 \end_inset
8082 </cell>
8083 </row>
8084 <row>
8085 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8086 \begin_inset Text
8087
8088 \begin_layout Standard
8089
8090 \series bold
8091 Rizzardi
8092 \end_layout
8093
8094 \end_inset
8095 </cell>
8096 <cell alignment="center" valignment="top" topline="true" usebox="none">
8097 \begin_inset Text
8098
8099 \begin_layout Standard
8100 Paola
8101 \end_layout
8102
8103 \end_inset
8104 </cell>
8105 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8106 \begin_inset Text
8107
8108 \begin_layout Standard
8109 555
8110 \end_layout
8111
8112 \end_inset
8113 </cell>
8114 </row>
8115 <row>
8116 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8117 \begin_inset Text
8118
8119 \begin_layout Standard
8120
8121 \series bold
8122 Lassini
8123 \end_layout
8124
8125 \end_inset
8126 </cell>
8127 <cell alignment="center" valignment="top" topline="true" usebox="none">
8128 \begin_inset Text
8129
8130 \begin_layout Standard
8131 Giancarlo
8132 \end_layout
8133
8134 \end_inset
8135 </cell>
8136 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8137 \begin_inset Text
8138
8139 \begin_layout Standard
8140 555
8141 \end_layout
8142
8143 \end_inset
8144 </cell>
8145 </row>
8146 <row>
8147 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8148 \begin_inset Text
8149
8150 \begin_layout Standard
8151
8152 \series bold
8153 Malfatti
8154 \end_layout
8155
8156 \end_inset
8157 </cell>
8158 <cell alignment="center" valignment="top" topline="true" usebox="none">
8159 \begin_inset Text
8160
8161 \begin_layout Standard
8162 Luciano
8163 \end_layout
8164
8165 \end_inset
8166 </cell>
8167 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8168 \begin_inset Text
8169
8170 \begin_layout Standard
8171 555
8172 \end_layout
8173
8174 \end_inset
8175 </cell>
8176 </row>
8177 <row>
8178 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8179 \begin_inset Text
8180
8181 \begin_layout Standard
8182
8183 \series bold
8184 Malfatti
8185 \end_layout
8186
8187 \end_inset
8188 </cell>
8189 <cell alignment="center" valignment="top" topline="true" usebox="none">
8190 \begin_inset Text
8191
8192 \begin_layout Standard
8193 Valeriano
8194 \end_layout
8195
8196 \end_inset
8197 </cell>
8198 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8199 \begin_inset Text
8200
8201 \begin_layout Standard
8202 555
8203 \end_layout
8204
8205 \end_inset
8206 </cell>
8207 </row>
8208 <row>
8209 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8210 \begin_inset Text
8211
8212 \begin_layout Standard
8213
8214 \series bold
8215 Meneguzzo
8216 \end_layout
8217
8218 \end_inset
8219 </cell>
8220 <cell alignment="center" valignment="top" topline="true" usebox="none">
8221 \begin_inset Text
8222
8223 \begin_layout Standard
8224 Roberto
8225 \end_layout
8226
8227 \end_inset
8228 </cell>
8229 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8230 \begin_inset Text
8231
8232 \begin_layout Standard
8233 555
8234 \end_layout
8235
8236 \end_inset
8237 </cell>
8238 </row>
8239 <row bottomline="true">
8240 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8241 \begin_inset Text
8242
8243 \begin_layout Standard
8244
8245 \series bold
8246 Mezzadra
8247 \end_layout
8248
8249 \end_inset
8250 </cell>
8251 <cell alignment="center" valignment="top" topline="true" usebox="none">
8252 \begin_inset Text
8253
8254 \begin_layout Standard
8255 Roberto
8256 \end_layout
8257
8258 \end_inset
8259 </cell>
8260 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8261 \begin_inset Text
8262
8263 \begin_layout Standard
8264 555
8265 \end_layout
8266
8267 \end_inset
8268 </cell>
8269 </row>
8270 <row bottomline="true" endlastfoot="true">
8271 <cell multicolumn="1" alignment="left" valignment="top" usebox="none">
8272 \begin_inset Text
8273
8274 \begin_layout Standard
8275
8276 \end_layout
8277
8278 \end_inset
8279 </cell>
8280 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8281 \begin_inset Text
8282
8283 \begin_layout Standard
8284
8285 \end_layout
8286
8287 \end_inset
8288 </cell>
8289 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8290 \begin_inset Text
8291
8292 \begin_layout Standard
8293
8294 \end_layout
8295
8296 \end_inset
8297 </cell>
8298 </row>
8299 </lyxtabular>
8300
8301 \end_inset
8302
8303
8304 \end_layout
8305
8306 \begin_layout Section
8307 Special Longtable Issues
8308 \begin_inset LatexCommand label
8309 name "sec:Special-Longtable-Issues"
8310
8311 \end_inset
8312
8313
8314 \end_layout
8315
8316 \begin_layout Subsection
8317 Longtable Calculation
8318 \begin_inset LatexCommand index
8319 name "Longtables ! Calculation"
8320
8321 \end_inset
8322
8323
8324 \end_layout
8325
8326 \begin_layout Standard
8327 LaTeX calculates the height of table pages and their page breaks using so
8328  called chunks.
8329  Chunks are pieces of the tables that are at once in LaTeX's memory.
8330  The default value is historically set to only 20 table rows.
8331  If you are using longtables with many pages this may slow down the creation
8332  of your document.
8333  You can safely increase the chunk size to values of 100-1000 by adding
8334  this command line to your document preamble:
8335 \end_layout
8336
8337 \begin_layout Standard
8338
8339 \series bold
8340
8341 \backslash
8342 setcounter{LTchunksize}{100}
8343 \end_layout
8344
8345 \begin_layout Subsection
8346 Floats and Longtables
8347 \begin_inset LatexCommand index
8348 name "Longtables ! Floats"
8349
8350 \end_inset
8351
8352
8353 \end_layout
8354
8355 \begin_layout Standard
8356 There might be problems when a float appears on the same page where a longtable
8357  starts.
8358  To avoid such situation, add the command 
8359 \series bold
8360
8361 \backslash
8362 clearpage
8363 \series default
8364  as ERT before your longtable.
8365 \end_layout
8366
8367 \begin_layout Subsection
8368 Forced Page Breaks
8369 \begin_inset LatexCommand index
8370 name "Longtables ! Forced Page Breaks"
8371
8372 \end_inset
8373
8374
8375 \end_layout
8376
8377 \begin_layout Standard
8378 By default tables are only broken between rows.
8379  If you have a cell with multiples lines and want to have a page break within
8380  the cell, insert the new line command 
8381 \begin_inset Quotes eld
8382 \end_inset
8383
8384
8385 \series bold
8386
8387 \backslash
8388
8389 \backslash
8390
8391 \series default
8392
8393 \begin_inset Quotes erd
8394 \end_inset
8395
8396  as ERT at this point of the cell where it should be broken.
8397  Before the 
8398 \series bold
8399
8400 \backslash
8401
8402 \backslash
8403
8404 \series default
8405  command you have to insert in ERT so many 
8406 \begin_inset Quotes eld
8407 \end_inset
8408
8409
8410 \series bold
8411 &
8412 \series default
8413
8414 \begin_inset Quotes erd
8415 \end_inset
8416
8417  characters like the number of the following table columns.
8418  The 
8419 \series bold
8420 &
8421 \series default
8422  is the character to separate table cells.
8423  Write in ERT after each 
8424 \series bold
8425 &
8426 \series default
8427  the content of the corresponding following cell and delete the content
8428  of these cells.
8429 \newline
8430 Behind the the 
8431 \series bold
8432
8433 \backslash
8434
8435 \backslash
8436
8437 \series default
8438  command, insert so many 
8439 \series bold
8440 &
8441 \series default
8442  characters like the number of table columns before the current column.
8443  In Table\InsetSpace ~
8444
8445 \begin_inset LatexCommand ref
8446 reference "tab:ForcedPagebreak"
8447
8448 \end_inset
8449
8450  the cell that should be broken is in the second column followed by another
8451  column.
8452  Therefore the following command was inserted in the cell as ERT behind
8453  
8454 \begin_inset Quotes eld
8455 \end_inset
8456
8457
8458 \emph on
8459 Castelchiodato,
8460 \emph default
8461
8462 \begin_inset Quotes erd
8463 \end_inset
8464
8465 :
8466 \end_layout
8467
8468 \begin_layout Standard
8469
8470 \series bold
8471 & 111
8472 \backslash
8473
8474 \backslash
8475
8476 \newline
8477 &
8478 \end_layout
8479
8480 \begin_layout Standard
8481 The 
8482 \begin_inset Quotes eld
8483 \end_inset
8484
8485 111
8486 \begin_inset Quotes erd
8487 \end_inset
8488
8489  in the third columns of the row was deleted.
8490  If your footer row of the longtable has for a certain reason no upper line
8491  but you would have a horizontal line where the cell is broken, use this
8492  command instead:
8493 \end_layout
8494
8495 \begin_layout Standard
8496
8497 \series bold
8498 & 111
8499 \backslash
8500
8501 \backslash
8502
8503 \newline
8504
8505 \backslash
8506 hline &
8507 \end_layout
8508
8509 \begin_layout Standard
8510 When the cell to be broken is in the last column, the command
8511 \end_layout
8512
8513 \begin_layout Standard
8514
8515 \series bold
8516
8517 \backslash
8518 setlength{
8519 \backslash
8520 parf\SpecialChar \textcompwordmark{}
8521 illskip}{0pt}
8522 \end_layout
8523
8524 \begin_layout Standard
8525 must be inserted as ERT at the beginning of the cell.
8526  This assures that the part of the cell that will be displayed on the new
8527  page appears with the full width.
8528 \end_layout
8529
8530 \begin_layout Standard
8531 \align center
8532 \begin_inset Tabular
8533 <lyxtabular version="3" rows="39" columns="3">
8534 <features islongtable="true">
8535 <column alignment="left" valignment="top" leftline="true" width="0cm">
8536 <column alignment="left" valignment="top" rightline="true" width="3cm">
8537 <column alignment="right" valignment="top" rightline="true" width="0pt">
8538 <row endfirsthead="true">
8539 <cell alignment="right" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8540 \begin_inset Text
8541
8542 \begin_layout Standard
8543 \begin_inset Caption
8544
8545 \begin_layout Standard
8546 Table with forced page break in table cell
8547 \begin_inset LatexCommand label
8548 name "tab:ForcedPagebreak"
8549
8550 \end_inset
8551
8552
8553 \begin_inset OptArg
8554 status collapsed
8555
8556 \begin_layout Standard
8557 Table with forced page break in table cell
8558 \end_layout
8559
8560 \end_inset
8561
8562
8563 \end_layout
8564
8565 \end_inset
8566
8567
8568 \begin_inset ERT
8569 status collapsed
8570
8571 \begin_layout Standard
8572
8573
8574 \backslash
8575
8576 \backslash
8577 %
8578 \end_layout
8579
8580 \end_inset
8581
8582
8583 \end_layout
8584
8585 \end_inset
8586 </cell>
8587 <cell alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
8588 \begin_inset Text
8589
8590 \begin_layout Standard
8591
8592 \end_layout
8593
8594 \end_inset
8595 </cell>
8596 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8597 \begin_inset Text
8598
8599 \begin_layout Standard
8600
8601 \end_layout
8602
8603 \end_inset
8604 </cell>
8605 </row>
8606 <row topline="true" bottomline="true" endfirsthead="true">
8607 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8608 \begin_inset Text
8609
8610 \begin_layout Standard
8611
8612 \series bold
8613 Example Phone List (ignore the names)
8614 \end_layout
8615
8616 \end_inset
8617 </cell>
8618 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8619 \begin_inset Text
8620
8621 \begin_layout Standard
8622
8623 \end_layout
8624
8625 \end_inset
8626 </cell>
8627 <cell multicolumn="2" alignment="right" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8628 \begin_inset Text
8629
8630 \begin_layout Standard
8631
8632 \end_layout
8633
8634 \end_inset
8635 </cell>
8636 </row>
8637 <row topline="true" bottomline="true" endfirsthead="true">
8638 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8639 \begin_inset Text
8640
8641 \begin_layout Standard
8642
8643 \series bold
8644 NAME
8645 \end_layout
8646
8647 \end_inset
8648 </cell>
8649 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
8650 \begin_inset Text
8651
8652 \begin_layout Standard
8653
8654 \end_layout
8655
8656 \end_inset
8657 </cell>
8658 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8659 \begin_inset Text
8660
8661 \begin_layout Standard
8662
8663 \series bold
8664 TEL.
8665 \end_layout
8666
8667 \end_inset
8668 </cell>
8669 </row>
8670 <row bottomline="true" endhead="true">
8671 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8672 \begin_inset Text
8673
8674 \begin_layout Standard
8675 \begin_inset ERT
8676 status collapsed
8677
8678 \begin_layout Standard
8679
8680
8681 \backslash
8682 caption*{Continued table with forced page break in table cell}
8683 \backslash
8684
8685 \backslash
8686 %
8687 \end_layout
8688
8689 \end_inset
8690
8691
8692 \end_layout
8693
8694 \end_inset
8695 </cell>
8696 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8697 \begin_inset Text
8698
8699 \begin_layout Standard
8700
8701 \end_layout
8702
8703 \end_inset
8704 </cell>
8705 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8706 \begin_inset Text
8707
8708 \begin_layout Standard
8709
8710 \end_layout
8711
8712 \end_inset
8713 </cell>
8714 </row>
8715 <row topline="true" bottomline="true" endhead="true">
8716 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8717 \begin_inset Text
8718
8719 \begin_layout Standard
8720  
8721 \series bold
8722 Example Phone List
8723 \end_layout
8724
8725 \end_inset
8726 </cell>
8727 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
8728 \begin_inset Text
8729
8730 \begin_layout Standard
8731
8732 \end_layout
8733
8734 \end_inset
8735 </cell>
8736 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8737 \begin_inset Text
8738
8739 \begin_layout Standard
8740
8741 \end_layout
8742
8743 \end_inset
8744 </cell>
8745 </row>
8746 <row topline="true" bottomline="true" endhead="true">
8747 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8748 \begin_inset Text
8749
8750 \begin_layout Standard
8751
8752 \series bold
8753 NAME
8754 \end_layout
8755
8756 \end_inset
8757 </cell>
8758 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
8759 \begin_inset Text
8760
8761 \begin_layout Standard
8762
8763 \end_layout
8764
8765 \end_inset
8766 </cell>
8767 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8768 \begin_inset Text
8769
8770 \begin_layout Standard
8771
8772 \series bold
8773 TEL.
8774 \end_layout
8775
8776 \end_inset
8777 </cell>
8778 </row>
8779 <row topline="true" bottomline="true" endfoot="true">
8780 <cell multicolumn="1" alignment="right" valignment="top" topline="true" usebox="none">
8781 \begin_inset Text
8782
8783 \begin_layout Standard
8784 continued on next page
8785 \end_layout
8786
8787 \end_inset
8788 </cell>
8789 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
8790 \begin_inset Text
8791
8792 \begin_layout Standard
8793
8794 \end_layout
8795
8796 \end_inset
8797 </cell>
8798 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8799 \begin_inset Text
8800
8801 \begin_layout Standard
8802
8803 \end_layout
8804
8805 \end_inset
8806 </cell>
8807 </row>
8808 <row>
8809 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8810 \begin_inset Text
8811
8812 \begin_layout Standard
8813
8814 \series bold
8815 Annovi
8816 \end_layout
8817
8818 \end_inset
8819 </cell>
8820 <cell alignment="center" valignment="top" topline="true" usebox="none">
8821 \begin_inset Text
8822
8823 \begin_layout Standard
8824 Silvia
8825 \end_layout
8826
8827 \end_inset
8828 </cell>
8829 <cell alignment="right" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8830 \begin_inset Text
8831
8832 \begin_layout Standard
8833 111
8834 \end_layout
8835
8836 \end_inset
8837 </cell>
8838 </row>
8839 <row>
8840 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8841 \begin_inset Text
8842
8843 \begin_layout Standard
8844
8845 \series bold
8846 Bertoli
8847 \end_layout
8848
8849 \end_inset
8850 </cell>
8851 <cell alignment="center" valignment="top" topline="true" usebox="none">
8852 \begin_inset Text
8853
8854 \begin_layout Standard
8855 Stefano
8856 \end_layout
8857
8858 \end_inset
8859 </cell>
8860 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8861 \begin_inset Text
8862
8863 \begin_layout Standard
8864 111
8865 \end_layout
8866
8867 \end_inset
8868 </cell>
8869 </row>
8870 <row>
8871 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8872 \begin_inset Text
8873
8874 \begin_layout Standard
8875
8876 \series bold
8877 Bozzi
8878 \end_layout
8879
8880 \end_inset
8881 </cell>
8882 <cell alignment="center" valignment="top" topline="true" usebox="none">
8883 \begin_inset Text
8884
8885 \begin_layout Standard
8886 Walter
8887 \end_layout
8888
8889 \end_inset
8890 </cell>
8891 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8892 \begin_inset Text
8893
8894 \begin_layout Standard
8895 111
8896 \end_layout
8897
8898 \end_inset
8899 </cell>
8900 </row>
8901 <row>
8902 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8903 \begin_inset Text
8904
8905 \begin_layout Standard
8906
8907 \series bold
8908 Cachia
8909 \end_layout
8910
8911 \end_inset
8912 </cell>
8913 <cell alignment="center" valignment="top" topline="true" usebox="none">
8914 \begin_inset Text
8915
8916 \begin_layout Standard
8917 Maria
8918 \end_layout
8919
8920 \end_inset
8921 </cell>
8922 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8923 \begin_inset Text
8924
8925 \begin_layout Standard
8926 111
8927 \end_layout
8928
8929 \end_inset
8930 </cell>
8931 </row>
8932 <row>
8933 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8934 \begin_inset Text
8935
8936 \begin_layout Standard
8937
8938 \series bold
8939 Cachia
8940 \end_layout
8941
8942 \end_inset
8943 </cell>
8944 <cell alignment="center" valignment="top" topline="true" usebox="none">
8945 \begin_inset Text
8946
8947 \begin_layout Standard
8948 Maurizio
8949 \end_layout
8950
8951 \end_inset
8952 </cell>
8953 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8954 \begin_inset Text
8955
8956 \begin_layout Standard
8957 111
8958 \end_layout
8959
8960 \end_inset
8961 </cell>
8962 </row>
8963 <row>
8964 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8965 \begin_inset Text
8966
8967 \begin_layout Standard
8968
8969 \series bold
8970 Cinquemani
8971 \end_layout
8972
8973 \end_inset
8974 </cell>
8975 <cell alignment="center" valignment="top" topline="true" usebox="none">
8976 \begin_inset Text
8977
8978 \begin_layout Standard
8979 Giusi
8980 \end_layout
8981
8982 \end_inset
8983 </cell>
8984 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8985 \begin_inset Text
8986
8987 \begin_layout Standard
8988 111
8989 \end_layout
8990
8991 \end_inset
8992 </cell>
8993 </row>
8994 <row>
8995 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8996 \begin_inset Text
8997
8998 \begin_layout Standard
8999
9000 \series bold
9001 Colin
9002 \end_layout
9003
9004 \end_inset
9005 </cell>
9006 <cell alignment="center" valignment="top" topline="true" usebox="none">
9007 \begin_inset Text
9008
9009 \begin_layout Standard
9010 Bernard
9011 \end_layout
9012
9013 \end_inset
9014 </cell>
9015 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9016 \begin_inset Text
9017
9018 \begin_layout Standard
9019 111
9020 \end_layout
9021
9022 \end_inset
9023 </cell>
9024 </row>
9025 <row>
9026 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9027 \begin_inset Text
9028
9029 \begin_layout Standard
9030
9031 \series bold
9032 Concli
9033 \end_layout
9034
9035 \end_inset
9036 </cell>
9037 <cell alignment="center" valignment="top" topline="true" usebox="none">
9038 \begin_inset Text
9039
9040 \begin_layout Standard
9041 Gianfranco
9042 \end_layout
9043
9044 \end_inset
9045 </cell>
9046 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9047 \begin_inset Text
9048
9049 \begin_layout Standard
9050 111
9051 \end_layout
9052
9053 \end_inset
9054 </cell>
9055 </row>
9056 <row>
9057 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9058 \begin_inset Text
9059
9060 \begin_layout Standard
9061
9062 \series bold
9063 Dal Bosco
9064 \end_layout
9065
9066 \end_inset
9067 </cell>
9068 <cell alignment="center" valignment="top" topline="true" usebox="none">
9069 \begin_inset Text
9070
9071 \begin_layout Standard
9072 Carolina
9073 \end_layout
9074
9075 \end_inset
9076 </cell>
9077 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9078 \begin_inset Text
9079
9080 \begin_layout Standard
9081 111
9082 \end_layout
9083
9084 \end_inset
9085 </cell>
9086 </row>
9087 <row>
9088 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9089 \begin_inset Text
9090
9091 \begin_layout Standard
9092
9093 \series bold
9094 Dalpiaz
9095 \end_layout
9096
9097 \end_inset
9098 </cell>
9099 <cell alignment="center" valignment="top" topline="true" usebox="none">
9100 \begin_inset Text
9101
9102 \begin_layout Standard
9103 Annamaria
9104 \end_layout
9105
9106 \end_inset
9107 </cell>
9108 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9109 \begin_inset Text
9110
9111 \begin_layout Standard
9112 111
9113 \end_layout
9114
9115 \end_inset
9116 </cell>
9117 </row>
9118 <row>
9119 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9120 \begin_inset Text
9121
9122 \begin_layout Standard
9123
9124 \series bold
9125 Feliciello
9126 \end_layout
9127
9128 \end_inset
9129 </cell>
9130 <cell alignment="center" valignment="top" topline="true" usebox="none">
9131 \begin_inset Text
9132
9133 \begin_layout Standard
9134 Domenico
9135 \end_layout
9136
9137 \end_inset
9138 </cell>
9139 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9140 \begin_inset Text
9141
9142 \begin_layout Standard
9143 111
9144 \end_layout
9145
9146 \end_inset
9147 </cell>
9148 </row>
9149 <row>
9150 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9151 \begin_inset Text
9152
9153 \begin_layout Standard
9154
9155 \series bold
9156 Focarelli
9157 \end_layout
9158
9159 \end_inset
9160 </cell>
9161 <cell alignment="center" valignment="top" topline="true" usebox="none">
9162 \begin_inset Text
9163
9164 \begin_layout Standard
9165 Paola
9166 \end_layout
9167
9168 \end_inset
9169 </cell>
9170 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9171 \begin_inset Text
9172
9173 \begin_layout Standard
9174 111
9175 \end_layout
9176
9177 \end_inset
9178 </cell>
9179 </row>
9180 <row>
9181 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9182 \begin_inset Text
9183
9184 \begin_layout Standard
9185
9186 \series bold
9187 Galletti
9188 \end_layout
9189
9190 \end_inset
9191 </cell>
9192 <cell alignment="center" valignment="top" topline="true" usebox="none">
9193 \begin_inset Text
9194
9195 \begin_layout Standard
9196 Oreste
9197 \end_layout
9198
9199 \end_inset
9200 </cell>
9201 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9202 \begin_inset Text
9203
9204 \begin_layout Standard
9205 111
9206 \end_layout
9207
9208 \end_inset
9209 </cell>
9210 </row>
9211 <row>
9212 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9213 \begin_inset Text
9214
9215 \begin_layout Standard
9216
9217 \series bold
9218 Gasparini
9219 \end_layout
9220
9221 \end_inset
9222 </cell>
9223 <cell alignment="center" valignment="top" topline="true" usebox="none">
9224 \begin_inset Text
9225
9226 \begin_layout Standard
9227 Franca
9228 \end_layout
9229
9230 \end_inset
9231 </cell>
9232 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9233 \begin_inset Text
9234
9235 \begin_layout Standard
9236 111
9237 \end_layout
9238
9239 \end_inset
9240 </cell>
9241 </row>
9242 <row>
9243 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9244 \begin_inset Text
9245
9246 \begin_layout Standard
9247
9248 \series bold
9249 Lassini
9250 \end_layout
9251
9252 \end_inset
9253 </cell>
9254 <cell alignment="center" valignment="top" topline="true" usebox="none">
9255 \begin_inset Text
9256
9257 \begin_layout Standard
9258 Giancarlo
9259 \end_layout
9260
9261 \end_inset
9262 </cell>
9263 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9264 \begin_inset Text
9265
9266 \begin_layout Standard
9267 111
9268 \end_layout
9269
9270 \end_inset
9271 </cell>
9272 </row>
9273 <row>
9274 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9275 \begin_inset Text
9276
9277 \begin_layout Standard
9278
9279 \series bold
9280 Malfatti
9281 \end_layout
9282
9283 \end_inset
9284 </cell>
9285 <cell alignment="center" valignment="top" topline="true" usebox="none">
9286 \begin_inset Text
9287
9288 \begin_layout Standard
9289 Luciano
9290 \end_layout
9291
9292 \end_inset
9293 </cell>
9294 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9295 \begin_inset Text
9296
9297 \begin_layout Standard
9298 111
9299 \end_layout
9300
9301 \end_inset
9302 </cell>
9303 </row>
9304 <row>
9305 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9306 \begin_inset Text
9307
9308 \begin_layout Standard
9309
9310 \series bold
9311 Malfatti
9312 \end_layout
9313
9314 \end_inset
9315 </cell>
9316 <cell alignment="center" valignment="top" topline="true" usebox="none">
9317 \begin_inset Text
9318
9319 \begin_layout Standard
9320 Valeriano
9321 \end_layout
9322
9323 \end_inset
9324 </cell>
9325 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9326 \begin_inset Text
9327
9328 \begin_layout Standard
9329 111
9330 \end_layout
9331
9332 \end_inset
9333 </cell>
9334 </row>
9335 <row>
9336 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9337 \begin_inset Text
9338
9339 \begin_layout Standard
9340
9341 \series bold
9342 Meneguzzo
9343 \end_layout
9344
9345 \end_inset
9346 </cell>
9347 <cell alignment="center" valignment="top" topline="true" usebox="none">
9348 \begin_inset Text
9349
9350 \begin_layout Standard
9351 Roberto
9352 \end_layout
9353
9354 \end_inset
9355 </cell>
9356 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9357 \begin_inset Text
9358
9359 \begin_layout Standard
9360 111
9361 \end_layout
9362
9363 \end_inset
9364 </cell>
9365 </row>
9366 <row>
9367 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9368 \begin_inset Text
9369
9370 \begin_layout Standard
9371
9372 \series bold
9373 Mezzadra
9374 \end_layout
9375
9376 \end_inset
9377 </cell>
9378 <cell alignment="center" valignment="top" topline="true" usebox="none">
9379 \begin_inset Text
9380
9381 \begin_layout Standard
9382 Roberto
9383 \end_layout
9384
9385 \end_inset
9386 </cell>
9387 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9388 \begin_inset Text
9389
9390 \begin_layout Standard
9391 111
9392 \end_layout
9393
9394 \end_inset
9395 </cell>
9396 </row>
9397 <row>
9398 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9399 \begin_inset Text
9400
9401 \begin_layout Standard
9402
9403 \series bold
9404 Pirpamer
9405 \end_layout
9406
9407 \end_inset
9408 </cell>
9409 <cell alignment="center" valignment="top" topline="true" usebox="none">
9410 \begin_inset Text
9411
9412 \begin_layout Standard
9413 Erich
9414 \end_layout
9415
9416 \end_inset
9417 </cell>
9418 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9419 \begin_inset Text
9420
9421 \begin_layout Standard
9422 111
9423 \end_layout
9424
9425 \end_inset
9426 </cell>
9427 </row>
9428 <row>
9429 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9430 \begin_inset Text
9431
9432 \begin_layout Standard
9433
9434 \series bold
9435 Pochiesa
9436 \end_layout
9437
9438 \end_inset
9439 </cell>
9440 <cell alignment="center" valignment="top" topline="true" usebox="none">
9441 \begin_inset Text
9442
9443 \begin_layout Standard
9444 Paolo
9445 \end_layout
9446
9447 \end_inset
9448 </cell>
9449 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9450 \begin_inset Text
9451
9452 \begin_layout Standard
9453 111, 222
9454 \end_layout
9455
9456 \end_inset
9457 </cell>
9458 </row>
9459 <row>
9460 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9461 \begin_inset Text
9462
9463 \begin_layout Standard
9464
9465 \series bold
9466 Radina
9467 \end_layout
9468
9469 \end_inset
9470 </cell>
9471 <cell alignment="center" valignment="top" topline="true" usebox="none">
9472 \begin_inset Text
9473
9474 \begin_layout Standard
9475 Claudio
9476 \end_layout
9477
9478 \end_inset
9479 </cell>
9480 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9481 \begin_inset Text
9482
9483 \begin_layout Standard
9484 111
9485 \end_layout
9486
9487 \end_inset
9488 </cell>
9489 </row>
9490 <row>
9491 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9492 \begin_inset Text
9493
9494 \begin_layout Standard
9495
9496 \series bold
9497 Rizzardi
9498 \end_layout
9499
9500 \end_inset
9501 </cell>
9502 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9503 \begin_inset Text
9504
9505 \begin_layout Standard
9506 Paolo, 11.
9507  Fürst von Montecompatri, 11.
9508  Fürst von Sulmona und Vivaro, 10.
9509  Fürst von Rossano, 5.
9510  Herzog von Canemorte, 11.
9511  Herzog von Palombara, 5.
9512  Herzog von Castelchiodato,
9513 \begin_inset ERT
9514 status collapsed
9515
9516 \begin_layout Standard
9517
9518 & 111
9519 \backslash
9520
9521 \backslash
9522
9523 \end_layout
9524
9525 \begin_layout Standard
9526
9527 &
9528 \end_layout
9529
9530 \end_inset
9531
9532  11.
9533  Herzog von Poggionativo, 11.
9534  Markis von Mentana, Norma, Civitella, Pratica, Moricone und Percille, 11.
9535  Graf von Valinfreda, 11.
9536  Baron von Cropalati, 11.
9537  Herr von Scarpa, Edelmann von Rom, Patrizier von Venedig, Neapel und Genua
9538 \end_layout
9539
9540 \end_inset
9541 </cell>
9542 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9543 \begin_inset Text
9544
9545 \begin_layout Standard
9546
9547 \end_layout
9548
9549 \end_inset
9550 </cell>
9551 </row>
9552 <row>
9553 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9554 \begin_inset Text
9555
9556 \begin_layout Standard
9557
9558 \series bold
9559 Stuffer
9560 \end_layout
9561
9562 \end_inset
9563 </cell>
9564 <cell alignment="center" valignment="top" topline="true" usebox="none">
9565 \begin_inset Text
9566
9567 \begin_layout Standard
9568 Oskar
9569 \end_layout
9570
9571 \end_inset
9572 </cell>
9573 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9574 \begin_inset Text
9575
9576 \begin_layout Standard
9577 111
9578 \end_layout
9579
9580 \end_inset
9581 </cell>
9582 </row>
9583 <row>
9584 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9585 \begin_inset Text
9586
9587 \begin_layout Standard
9588
9589 \series bold
9590 Tacchelli
9591 \end_layout
9592
9593 \end_inset
9594 </cell>
9595 <cell alignment="center" valignment="top" topline="true" usebox="none">
9596 \begin_inset Text
9597
9598 \begin_layout Standard
9599 Ugo
9600 \end_layout
9601
9602 \end_inset
9603 </cell>
9604 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9605 \begin_inset Text
9606
9607 \begin_layout Standard
9608 111
9609 \end_layout
9610
9611 \end_inset
9612 </cell>
9613 </row>
9614 <row>
9615 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9616 \begin_inset Text
9617
9618 \begin_layout Standard
9619
9620 \series bold
9621 Tezzele
9622 \end_layout
9623
9624 \end_inset
9625 </cell>
9626 <cell alignment="center" valignment="top" topline="true" usebox="none">
9627 \begin_inset Text
9628
9629 \begin_layout Standard
9630 Margit
9631 \end_layout
9632
9633 \end_inset
9634 </cell>
9635 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9636 \begin_inset Text
9637
9638 \begin_layout Standard
9639 111
9640 \end_layout
9641
9642 \end_inset
9643 </cell>
9644 </row>
9645 <row>
9646 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9647 \begin_inset Text
9648
9649 \begin_layout Standard
9650
9651 \series bold
9652 Unterkalmsteiner
9653 \end_layout
9654
9655 \end_inset
9656 </cell>
9657 <cell alignment="center" valignment="top" topline="true" usebox="none">
9658 \begin_inset Text
9659
9660 \begin_layout Standard
9661 Frieda
9662 \end_layout
9663
9664 \end_inset
9665 </cell>
9666 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9667 \begin_inset Text
9668
9669 \begin_layout Standard
9670 111
9671 \end_layout
9672
9673 \end_inset
9674 </cell>
9675 </row>
9676 <row>
9677 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9678 \begin_inset Text
9679
9680 \begin_layout Standard
9681
9682 \series bold
9683 Vieider
9684 \end_layout
9685
9686 \end_inset
9687 </cell>
9688 <cell alignment="center" valignment="top" topline="true" usebox="none">
9689 \begin_inset Text
9690
9691 \begin_layout Standard
9692 Hilde
9693 \end_layout
9694
9695 \end_inset
9696 </cell>
9697 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9698 \begin_inset Text
9699
9700 \begin_layout Standard
9701 111
9702 \end_layout
9703
9704 \end_inset
9705 </cell>
9706 </row>
9707 <row>
9708 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9709 \begin_inset Text
9710
9711 \begin_layout Standard
9712
9713 \series bold
9714 Vigna
9715 \end_layout
9716
9717 \end_inset
9718 </cell>
9719 <cell alignment="center" valignment="top" topline="true" usebox="none">
9720 \begin_inset Text
9721
9722 \begin_layout Standard
9723 Jürgen
9724 \end_layout
9725
9726 \end_inset
9727 </cell>
9728 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9729 \begin_inset Text
9730
9731 \begin_layout Standard
9732 111
9733 \end_layout
9734
9735 \end_inset
9736 </cell>
9737 </row>
9738 <row>
9739 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9740 \begin_inset Text
9741
9742 \begin_layout Standard
9743
9744 \series bold
9745 Weber
9746 \end_layout
9747
9748 \end_inset
9749 </cell>
9750 <cell alignment="center" valignment="top" topline="true" usebox="none">
9751 \begin_inset Text
9752
9753 \begin_layout Standard
9754 Maurizio
9755 \end_layout
9756
9757 \end_inset
9758 </cell>
9759 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9760 \begin_inset Text
9761
9762 \begin_layout Standard
9763 111
9764 \end_layout
9765
9766 \end_inset
9767 </cell>
9768 </row>
9769 <row bottomline="true">
9770 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9771 \begin_inset Text
9772
9773 \begin_layout Standard
9774
9775 \series bold
9776 Winkler
9777 \end_layout
9778
9779 \end_inset
9780 </cell>
9781 <cell alignment="center" valignment="top" topline="true" usebox="none">
9782 \begin_inset Text
9783
9784 \begin_layout Standard
9785 Franz
9786 \end_layout
9787
9788 \end_inset
9789 </cell>
9790 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9791 \begin_inset Text
9792
9793 \begin_layout Standard
9794 111
9795 \end_layout
9796
9797 \end_inset
9798 </cell>
9799 </row>
9800 <row endlastfoot="true">
9801 <cell multicolumn="1" alignment="left" valignment="top" usebox="none">
9802 \begin_inset Text
9803
9804 \begin_layout Standard
9805
9806 \end_layout
9807
9808 \end_inset
9809 </cell>
9810 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9811 \begin_inset Text
9812
9813 \begin_layout Standard
9814
9815 \end_layout
9816
9817 \end_inset
9818 </cell>
9819 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9820 \begin_inset Text
9821
9822 \begin_layout Standard
9823
9824 \end_layout
9825
9826 \end_inset
9827 </cell>
9828 </row>
9829 </lyxtabular>
9830
9831 \end_inset
9832
9833
9834 \end_layout
9835
9836 \begin_layout Section
9837 Multiple Lines Columns and Rows
9838 \end_layout
9839
9840 \begin_layout Subsection
9841 Multiple Lines in Table Cells
9842 \begin_inset LatexCommand label
9843 name "sub:Multiple-Lines-in"
9844
9845 \end_inset
9846
9847
9848 \begin_inset LatexCommand index
9849 name "Multiple Lines in Table Cells"
9850
9851 \end_inset
9852
9853
9854 \begin_inset LatexCommand index
9855 name "Table ! Linebreaks"
9856
9857 \end_inset
9858
9859
9860 \end_layout
9861
9862 \begin_layout Standard
9863 \align center
9864 \begin_inset Float table
9865 placement H
9866 wide false
9867 sideways false
9868 status open
9869
9870 \begin_layout Standard
9871 \begin_inset Caption
9872
9873 \begin_layout Standard
9874 \begin_inset LatexCommand label
9875 name "tab:Table-with-multiple"
9876
9877 \end_inset
9878
9879 Table with multiple lines in cells
9880 \end_layout
9881
9882 \end_inset
9883
9884
9885 \end_layout
9886
9887 \begin_layout Standard
9888 \align center
9889 \begin_inset Tabular
9890 <lyxtabular version="3" rows="3" columns="3">
9891 <features>
9892 <column alignment="center" valignment="middle" leftline="true" width="2.5cm">
9893 <column alignment="center" valignment="middle" leftline="true" width="0">
9894 <column alignment="center" valignment="middle" leftline="true" rightline="true" width="0">
9895 <row topline="true">
9896 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9897 \begin_inset Text
9898
9899 \begin_layout Standard
9900 multiple
9901 \begin_inset ERT
9902 status collapsed
9903
9904 \begin_layout Standard
9905
9906
9907 \backslash
9908 linebreak 
9909 \end_layout
9910
9911 \end_inset
9912
9913  lines
9914 \end_layout
9915
9916 \end_inset
9917 </cell>
9918 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9919 \begin_inset Text
9920
9921 \begin_layout Standard
9922 b
9923 \end_layout
9924
9925 \end_inset
9926 </cell>
9927 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9928 \begin_inset Text
9929
9930 \begin_layout Standard
9931 c
9932 \end_layout
9933
9934 \end_inset
9935 </cell>
9936 </row>
9937 <row topline="true">
9938 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9939 \begin_inset Text
9940
9941 \begin_layout Standard
9942 d
9943 \end_layout
9944
9945 \end_inset
9946 </cell>
9947 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9948 \begin_inset Text
9949
9950 \begin_layout Standard
9951 e
9952 \end_layout
9953
9954 \end_inset
9955 </cell>
9956 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9957 \begin_inset Text
9958
9959 \begin_layout Standard
9960 f
9961 \end_layout
9962
9963 \end_inset
9964 </cell>
9965 </row>
9966 <row topline="true" bottomline="true">
9967 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9968 \begin_inset Text
9969
9970 \begin_layout Standard
9971 g
9972 \end_layout
9973
9974 \end_inset
9975 </cell>
9976 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9977 \begin_inset Text
9978
9979 \begin_layout Standard
9980 h
9981 \end_layout
9982
9983 \end_inset
9984 </cell>
9985 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9986 \begin_inset Text
9987
9988 \begin_layout Standard
9989 i
9990 \end_layout
9991
9992 \end_inset
9993 </cell>
9994 </row>
9995 </lyxtabular>
9996
9997 \end_inset
9998
9999
10000 \end_layout
10001
10002 \end_inset
10003
10004
10005 \end_layout
10006
10007 \begin_layout Standard
10008 Adjusting a fixed width for a column, enables to enter text as a paragraph
10009  with multiple lines and hyphenations.
10010 \end_layout
10011
10012 \begin_layout Standard
10013 To produce Table\InsetSpace ~
10014
10015 \begin_inset LatexCommand ref
10016 reference "tab:Table-with-multiple"
10017
10018 \end_inset
10019
10020 , create a 3×3 table, mark the first cell and right-click on it.
10021  In the appearing table dialog we set a cell width of 2.5\InsetSpace \thinspace{}
10022 cm and choose centered
10023  for the vertical and horizontal alignment.
10024  The vertical alignment is used for all cells of the row.
10025  As our text is smaller than than 2.5\InsetSpace \thinspace{}
10026 cm, only one line will appear.
10027  To get two lines, we add a line break with the command
10028 \end_layout
10029
10030 \begin_layout Standard
10031
10032 \series bold
10033
10034 \backslash
10035 linebreak
10036 \end_layout
10037
10038 \begin_layout Standard
10039 in ERT.
10040  If the text is wider than the set cell width it will automatically be broken
10041  to several lines.
10042 \end_layout
10043
10044 \begin_layout Standard
10045 If you have a long word in a cell with a fixed width, it cannot be hyphenated
10046  by LaTeX if it is the first entry.
10047  Therefore you need to insert something, to make the word not being the
10048  first entry: Add the command
10049 \end_layout
10050
10051 \begin_layout Standard
10052
10053 \series bold
10054
10055 \backslash
10056 hspace{0pt}
10057 \end_layout
10058
10059 \begin_layout Standard
10060 in ERT before the word.
10061  As the space is zero, it doesn't change the output.
10062  Table\InsetSpace ~
10063
10064 \begin_inset LatexCommand ref
10065 reference "tab:Table-with-and"
10066
10067 \end_inset
10068
10069  shows the effect.
10070 \end_layout
10071
10072 \begin_layout Standard
10073 \begin_inset Float table
10074 placement h
10075 wide false
10076 sideways false
10077 status open
10078
10079 \begin_layout Standard
10080 \begin_inset Caption
10081
10082 \begin_layout Standard
10083 \begin_inset LatexCommand label
10084 name "tab:Table-with-and"
10085
10086 \end_inset
10087
10088 Table with and without hyphenation
10089 \end_layout
10090
10091 \end_inset
10092
10093
10094 \end_layout
10095
10096 \begin_layout Standard
10097
10098 \hfill
10099
10100 \begin_inset Tabular
10101 <lyxtabular version="3" rows="3" columns="3">
10102 <features>
10103 <column alignment="center" valignment="middle" leftline="true" width="2.5cm">
10104 <column alignment="center" valignment="middle" leftline="true" width="0">
10105 <column alignment="center" valignment="middle" leftline="true" rightline="true" width="0">
10106 <row topline="true">
10107 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10108 \begin_inset Text
10109
10110 \begin_layout Standard
10111 verylongtablecellword
10112 \end_layout
10113
10114 \end_inset
10115 </cell>
10116 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10117 \begin_inset Text
10118
10119 \begin_layout Standard
10120 b
10121 \end_layout
10122
10123 \end_inset
10124 </cell>
10125 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10126 \begin_inset Text
10127
10128 \begin_layout Standard
10129 c
10130 \end_layout
10131
10132 \end_inset
10133 </cell>
10134 </row>
10135 <row topline="true">
10136 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10137 \begin_inset Text
10138
10139 \begin_layout Standard
10140 d
10141 \end_layout
10142
10143 \end_inset
10144 </cell>
10145 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10146 \begin_inset Text
10147
10148 \begin_layout Standard
10149 e
10150 \end_layout
10151
10152 \end_inset
10153 </cell>
10154 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10155 \begin_inset Text
10156
10157 \begin_layout Standard
10158 f
10159 \end_layout
10160
10161 \end_inset
10162 </cell>
10163 </row>
10164 <row topline="true" bottomline="true">
10165 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10166 \begin_inset Text
10167
10168 \begin_layout Standard
10169 g
10170 \end_layout
10171
10172 \end_inset
10173 </cell>
10174 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10175 \begin_inset Text
10176
10177 \begin_layout Standard
10178 h
10179 \end_layout
10180
10181 \end_inset
10182 </cell>
10183 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10184 \begin_inset Text
10185
10186 \begin_layout Standard
10187 i
10188 \end_layout
10189
10190 \end_inset
10191 </cell>
10192 </row>
10193 </lyxtabular>
10194
10195 \end_inset
10196
10197
10198 \hfill
10199
10200 \begin_inset Tabular
10201 <lyxtabular version="3" rows="3" columns="3">
10202 <features>
10203 <column alignment="center" valignment="middle" leftline="true" width="2.5cm">
10204 <column alignment="center" valignment="middle" leftline="true" width="0">
10205 <column alignment="center" valignment="middle" leftline="true" rightline="true" width="0">
10206 <row topline="true">
10207 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10208 \begin_inset Text
10209
10210 \begin_layout Standard
10211 \begin_inset ERT
10212 status collapsed
10213
10214 \begin_layout Standard
10215
10216
10217 \backslash
10218 hspace{0pt}
10219 \end_layout
10220
10221 \end_inset
10222
10223 verylongtablecellword
10224 \end_layout
10225
10226 \end_inset
10227 </cell>
10228 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10229 \begin_inset Text
10230
10231 \begin_layout Standard
10232 b
10233 \end_layout
10234
10235 \end_inset
10236 </cell>
10237 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10238 \begin_inset Text
10239
10240 \begin_layout Standard
10241 c
10242 \end_layout
10243
10244 \end_inset
10245 </cell>
10246 </row>
10247 <row topline="true">
10248 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10249 \begin_inset Text
10250
10251 \begin_layout Standard
10252 d
10253 \end_layout
10254
10255 \end_inset
10256 </cell>
10257 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10258 \begin_inset Text
10259
10260 \begin_layout Standard
10261 e
10262 \end_layout
10263
10264 \end_inset
10265 </cell>
10266 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10267 \begin_inset Text
10268
10269 \begin_layout Standard
10270 f
10271 \end_layout
10272
10273 \end_inset
10274 </cell>
10275 </row>
10276 <row topline="true" bottomline="true">
10277 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10278 \begin_inset Text
10279
10280 \begin_layout Standard
10281 g
10282 \end_layout
10283
10284 \end_inset
10285 </cell>
10286 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10287 \begin_inset Text
10288
10289 \begin_layout Standard
10290 h
10291 \end_layout
10292
10293 \end_inset
10294 </cell>
10295 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10296 \begin_inset Text
10297
10298 \begin_layout Standard
10299 i
10300 \end_layout
10301
10302 \end_inset
10303 </cell>
10304 </row>
10305 </lyxtabular>
10306
10307 \end_inset
10308
10309
10310 \hfill
10311
10312 \end_layout
10313
10314 \end_inset
10315
10316
10317 \end_layout
10318
10319 \begin_layout Standard
10320
10321 \newpage
10322
10323 \end_layout
10324
10325 \begin_layout Subsection
10326 Multicolumns
10327 \begin_inset LatexCommand label
10328 name "sub:Multicolumns"
10329
10330 \end_inset
10331
10332
10333 \begin_inset LatexCommand index
10334 name "Multicolumns"
10335
10336 \end_inset
10337
10338
10339 \begin_inset LatexCommand index
10340 name "Table ! Multicolumns"
10341
10342 \end_inset
10343
10344
10345 \end_layout
10346
10347 \begin_layout Subsubsection
10348 Multicolumn Basics
10349 \end_layout
10350
10351 \begin_layout Standard
10352 To span a cell over multiple columns, mark as much cells within a line that
10353  should be one spanned cell and use either the table-toolbar button 
10354 \begin_inset Graphics
10355         filename ../images/tabular-feature_multicolumn.xpm
10356         scale 85
10357
10358 \end_inset
10359
10360 , or the menu 
10361 \family sans
10362 Edit\SpecialChar \menuseparator
10363 Table\SpecialChar \menuseparator
10364 Multicolumn
10365 \family default
10366 , or right click on the marked cells and choose multicolumn in the appearing
10367  table dialog under the tab 
10368 \family sans
10369 Table Settings
10370 \family default
10371 .
10372 \end_layout
10373
10374 \begin_layout Standard
10375 Multicolumns have there own cell settings.
10376  That means changing cell borders, cell alignment, and the width only affects
10377  the multicolumn.
10378  Here is an example table with a multicolumn cell in the first row and one
10379  in the last row without the upper border:
10380 \end_layout
10381
10382 \begin_layout Standard
10383 \align center
10384 \begin_inset Tabular
10385 <lyxtabular version="3" rows="3" columns="4">
10386 <features firstHeadTopDL="true" firstHeadBottomDL="true">
10387 <column alignment="center" valignment="top" leftline="true" width="0pt">
10388 <column alignment="center" valignment="middle" leftline="true" width="0">
10389 <column alignment="center" valignment="top" leftline="true" width="0in">
10390 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0pt">
10391 <row topline="true" bottomline="true">
10392 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10393 \begin_inset Text
10394
10395 \begin_layout Standard
10396 abc
10397 \end_layout
10398
10399 \end_inset
10400 </cell>
10401 <cell multicolumn="1" alignment="center" valignment="middle" topline="true" bottomline="true" leftline="true" usebox="none">
10402 \begin_inset Text
10403
10404 \begin_layout Standard
10405 def ghi
10406 \end_layout
10407
10408 \end_inset
10409 </cell>
10410 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10411 \begin_inset Text
10412
10413 \begin_layout Standard
10414
10415 \end_layout
10416
10417 \end_inset
10418 </cell>
10419 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10420 \begin_inset Text
10421
10422 \begin_layout Standard
10423 jkl
10424 \end_layout
10425
10426 \end_inset
10427 </cell>
10428 </row>
10429 <row topline="true">
10430 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10431 \begin_inset Text
10432
10433 \begin_layout Standard
10434
10435 \family roman
10436 \series medium
10437 \shape up
10438 \size normal
10439 \emph off
10440 \bar no
10441 \noun off
10442 \color none
10443 A
10444 \end_layout
10445
10446 \end_inset
10447 </cell>
10448 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10449 \begin_inset Text
10450
10451 \begin_layout Standard
10452 B
10453 \end_layout
10454
10455 \end_inset
10456 </cell>
10457 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10458 \begin_inset Text
10459
10460 \begin_layout Standard
10461 C
10462 \end_layout
10463
10464 \end_inset
10465 </cell>
10466 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10467 \begin_inset Text
10468
10469 \begin_layout Standard
10470 D
10471 \end_layout
10472
10473 \end_inset
10474 </cell>
10475 </row>
10476 <row topline="true" bottomline="true">
10477 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10478 \begin_inset Text
10479
10480 \begin_layout Standard
10481 1
10482 \end_layout
10483
10484 \end_inset
10485 </cell>
10486 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10487 \begin_inset Text
10488
10489 \begin_layout Standard
10490 2
10491 \end_layout
10492
10493 \end_inset
10494 </cell>
10495 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10496 \begin_inset Text
10497
10498 \begin_layout Standard
10499 3
10500 \end_layout
10501
10502 \end_inset
10503 </cell>
10504 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10505 \begin_inset Text
10506
10507 \begin_layout Standard
10508 4
10509 \end_layout
10510
10511 \end_inset
10512 </cell>
10513 </row>
10514 </lyxtabular>
10515
10516 \end_inset
10517
10518
10519 \end_layout
10520
10521 \begin_layout Subsubsection
10522 Multicolumn Calculations
10523 \begin_inset LatexCommand label
10524 name "sub:Multicolumn-Calculations"
10525
10526 \end_inset
10527
10528
10529 \begin_inset LatexCommand index
10530 name "Multicolumns ! Calculations"
10531
10532 \end_inset
10533
10534
10535 \end_layout
10536
10537 \begin_layout Standard
10538 LyX supports multicolumns directly, but we have to take notice of the cell
10539  width of the columns spanned by the multicolumn cell.
10540 \end_layout
10541
10542 \begin_layout Standard
10543 \begin_inset Float table
10544 wide false
10545 sideways false
10546 status open
10547
10548 \begin_layout Standard
10549 \begin_inset Caption
10550
10551 \begin_layout Standard
10552 \begin_inset LatexCommand label
10553 name "tab:Table-with-centered"
10554
10555 \end_inset
10556
10557 Table with centered multicolumn text above two columns that have exactly
10558  half the width of the multicolumn cell
10559 \begin_inset OptArg
10560 status collapsed
10561
10562 \begin_layout Standard
10563 Perfect multicolumn table
10564 \end_layout
10565
10566 \end_inset
10567
10568
10569 \end_layout
10570
10571 \end_inset
10572
10573
10574 \end_layout
10575
10576 \begin_layout Standard
10577 \align center
10578 \begin_inset Tabular
10579 <lyxtabular version="3" rows="3" columns="3">
10580 <features>
10581 <column alignment="center" valignment="middle" leftline="true" width="0" special=">{\centering}m{1.25cm-6.2pt}">
10582 <column alignment="center" valignment="middle" leftline="true" width="0">
10583 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
10584 <row topline="true">
10585 <cell multicolumn="1" alignment="center" valignment="middle" topline="true" leftline="true" usebox="none" special=">{\centering}m{2.5cm}">
10586 \begin_inset Text
10587
10588 \begin_layout Standard
10589 multiple lines multicolumn
10590 \end_layout
10591
10592 \end_inset
10593 </cell>
10594 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10595 \begin_inset Text
10596
10597 \begin_layout Standard
10598
10599 \end_layout
10600
10601 \end_inset
10602 </cell>
10603 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10604 \begin_inset Text
10605
10606 \begin_layout Standard
10607 c
10608 \end_layout
10609
10610 \end_inset
10611 </cell>
10612 </row>
10613 <row topline="true">
10614 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10615 \begin_inset Text
10616
10617 \begin_layout Standard
10618 d
10619 \end_layout
10620
10621 \end_inset
10622 </cell>
10623 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10624 \begin_inset Text
10625
10626 \begin_layout Standard
10627 e
10628 \end_layout
10629
10630 \end_inset
10631 </cell>
10632 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10633 \begin_inset Text
10634
10635 \begin_layout Standard
10636 f
10637 \end_layout
10638
10639 \end_inset
10640 </cell>
10641 </row>
10642 <row topline="true" bottomline="true">
10643 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10644 \begin_inset Text
10645
10646 \begin_layout Standard
10647 g
10648 \end_layout
10649
10650 \end_inset
10651 </cell>
10652 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10653 \begin_inset Text
10654
10655 \begin_layout Standard
10656 h
10657 \end_layout
10658
10659 \end_inset
10660 </cell>
10661 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10662 \begin_inset Text
10663
10664 \begin_layout Standard
10665 i
10666 \end_layout
10667
10668 \end_inset
10669 </cell>
10670 </row>
10671 </lyxtabular>
10672
10673 \end_inset
10674
10675
10676 \end_layout
10677
10678 \end_inset
10679
10680
10681 \end_layout
10682
10683 \begin_layout Standard
10684 To create for example Table\InsetSpace ~
10685
10686 \begin_inset LatexCommand ref
10687 reference "tab:Table-with-centered"
10688
10689 \end_inset
10690
10691 , mark the first two cells in the first row of a 3×3 table and right-click
10692  on them.
10693  Now choose for this cell 
10694 \emph on
10695 multicolumn
10696 \emph default
10697
10698 \emph on
10699 centered alignment
10700 \emph default
10701  and a width of 2.5\InsetSpace \thinspace{}
10702 cm in the table dialog.
10703  The spanned columns should have exactly half the width of the multicolumn
10704  cell, so that you would adjust a width of 1.25\InsetSpace \thinspace{}
10705 cm for the first column.
10706  The second column has then automatically a width of 1.25\InsetSpace \thinspace{}
10707 cm (multicolumn
10708  width - width of first column).
10709  This was done for Table\InsetSpace ~
10710
10711 \begin_inset LatexCommand ref
10712 reference "tab:Table-without-half"
10713
10714 \end_inset
10715
10716 .
10717 \end_layout
10718
10719 \begin_layout Standard
10720 \begin_inset Float table
10721 wide false
10722 sideways false
10723 status open
10724
10725 \begin_layout Standard
10726 \begin_inset Caption
10727
10728 \begin_layout Standard
10729 \begin_inset LatexCommand label
10730 name "tab:Table-without-half"
10731
10732 \end_inset
10733
10734 Table where the spanned table columns have not exactly half the width of
10735  the multicolumn cell
10736 \begin_inset OptArg
10737 status collapsed
10738
10739 \begin_layout Standard
10740 Imperfect multicolumn table
10741 \end_layout
10742
10743 \end_inset
10744
10745
10746 \end_layout
10747
10748 \end_inset
10749
10750
10751 \end_layout
10752
10753 \begin_layout Standard
10754 \align center
10755 \begin_inset Tabular
10756 <lyxtabular version="3" rows="3" columns="3">
10757 <features>
10758 <column alignment="center" valignment="top" leftline="true" width="1.25cm">
10759 <column alignment="center" valignment="top" leftline="true" width="0">
10760 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
10761 <row topline="true" bottomline="true">
10762 <cell multicolumn="1" alignment="center" valignment="top" topline="true" leftline="true" usebox="none" width="2.5cm">
10763 \begin_inset Text
10764
10765 \begin_layout Standard
10766 multiple lines multicolumn
10767 \end_layout
10768
10769 \end_inset
10770 </cell>
10771 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10772 \begin_inset Text
10773
10774 \begin_layout Standard
10775
10776 \end_layout
10777
10778 \end_inset
10779 </cell>
10780 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10781 \begin_inset Text
10782
10783 \begin_layout Standard
10784 c
10785 \end_layout
10786
10787 \end_inset
10788 </cell>
10789 </row>
10790 <row topline="true">
10791 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10792 \begin_inset Text
10793
10794 \begin_layout Standard
10795 d
10796 \end_layout
10797
10798 \end_inset
10799 </cell>
10800 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10801 \begin_inset Text
10802
10803 \begin_layout Standard
10804 e
10805 \end_layout
10806
10807 \end_inset
10808 </cell>
10809 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10810 \begin_inset Text
10811
10812 \begin_layout Standard
10813 f
10814 \end_layout
10815
10816 \end_inset
10817 </cell>
10818 </row>
10819 <row topline="true" bottomline="true">
10820 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10821 \begin_inset Text
10822
10823 \begin_layout Standard
10824 g
10825 \end_layout
10826
10827 \end_inset
10828 </cell>
10829 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10830 \begin_inset Text
10831
10832 \begin_layout Standard
10833 h
10834 \end_layout
10835
10836 \end_inset
10837 </cell>
10838 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10839 \begin_inset Text
10840
10841 \begin_layout Standard
10842 i
10843 \end_layout
10844
10845 \end_inset
10846 </cell>
10847 </row>
10848 </lyxtabular>
10849
10850 \end_inset
10851
10852
10853 \end_layout
10854
10855 \end_inset
10856
10857
10858 \end_layout
10859
10860 \begin_layout Standard
10861 You can see that the first column has not the half width of the multicolumn
10862  cell, it is a bit bigger.
10863  The reason is that the given width of a cell 
10864 \begin_inset Formula $W_{g}$
10865 \end_inset
10866
10867  is not its total width 
10868 \begin_inset Formula $W_{\mathrm{tot}}$
10869 \end_inset
10870
10871  because a cell is always a bit larger than its given width.
10872  Appendix\InsetSpace ~
10873
10874 \begin_inset LatexCommand eqref
10875 reference "cha:Explanation-of-Equation"
10876
10877 \end_inset
10878
10879  explains it in detail.
10880 \end_layout
10881
10882 \begin_layout Standard
10883 The needed given width 
10884 \begin_inset Formula $W_{g\, n}$
10885 \end_inset
10886
10887  when 
10888 \emph on
10889 n
10890 \emph default
10891  columns are spanned can be calculated, so that each column has a total
10892  width of 
10893 \begin_inset Formula $W_{\mathrm{tot\, multicolumn}}/n$
10894 \end_inset
10895
10896 :
10897 \begin_inset Formula \begin{equation}
10898 W_{g\, n}=(W_{g\,\mathrm{multicolumn}}+(1-n)·(12.4\,\mathrm{pt}))/n\label{eq:Wgn}\end{equation}
10899
10900 \end_inset
10901
10902
10903 \end_layout
10904
10905 \begin_layout Standard
10906 In our case we have 
10907 \begin_inset Formula $n=2$
10908 \end_inset
10909
10910
10911 \begin_inset Formula $W_{g\,\mathrm{multicolumn}}=2.5\,$
10912 \end_inset
10913
10914 cm and the default values for the lengths, so that equation 
10915 \begin_inset LatexCommand ref
10916 reference "eq:Wgn"
10917
10918 \end_inset
10919
10920  becomes
10921 \begin_inset Formula \begin{equation}
10922 W_{g\,2}=1.25\,\mathrm{cm}-6.2\,\mathrm{pt}\end{equation}
10923
10924 \end_inset
10925
10926
10927 \end_layout
10928
10929 \begin_layout Standard
10930 To enable calculations in LaTeX, the LaTeX-package 
10931 \series bold
10932 calc
10933 \series default
10934  must be loaded with the document preamble line
10935 \begin_inset LatexCommand index
10936 name "LaTeX-packages ! calc"
10937
10938 \end_inset
10939
10940
10941 \end_layout
10942
10943 \begin_layout Standard
10944
10945 \series bold
10946
10947 \backslash
10948 usepackage{calc}
10949 \end_layout
10950
10951 \begin_layout Standard
10952 LyX does not allow to calculate lengths in the width-field of the table
10953  dialog.
10954  Therefore you have to format the column by inserting a LaTeX-argument in
10955  the dialog.
10956  Here is an overview about the arguments:
10957 \end_layout
10958
10959 \begin_layout Itemize
10960
10961 \series bold
10962 p{width}
10963 \series default
10964  creates cell with a fixed width, its text is vertically top-aligned
10965 \end_layout
10966
10967 \begin_layout Itemize
10968
10969 \series bold
10970 m{width}
10971 \series default
10972  creates cell with a fixed width, its text is vertically centered
10973 \end_layout
10974
10975 \begin_layout Itemize
10976
10977 \series bold
10978 b{width}
10979 \series default
10980  creates cell with a fixed width, its text is vertically bottom-aligned
10981 \end_layout
10982
10983 \begin_layout Standard
10984 By entering a LaTeX-argument, all cell settings set in the table dialog
10985  are overwritten.
10986 \end_layout
10987
10988 \begin_layout Standard
10989 \begin_inset Note Greyedout
10990 status open
10991
10992 \begin_layout Standard
10993
10994 \series bold
10995 Note:
10996 \series default
10997  Due to a bug, LyX shows the overwritten settings anyway.
10998 \end_layout
10999
11000 \end_inset
11001
11002
11003 \end_layout
11004
11005 \begin_layout Standard
11006 As the text should be horizontally centered, the command 
11007 \series bold
11008
11009 \backslash
11010 centering
11011 \series default
11012  is added.
11013  You can now enter the following LaTeX-argument for the first spanned column:
11014 \end_layout
11015
11016 \begin_layout Standard
11017
11018 \series bold
11019 >{
11020 \backslash
11021 centering}m{1.25cm-6.2pt}
11022 \end_layout
11023
11024 \begin_layout Standard
11025 The command 
11026 \series bold
11027 >{ }
11028 \series default
11029  means, that the commands inside the braces are applied before the cell
11030  is created.
11031 \end_layout
11032
11033 \begin_layout Standard
11034 Although we have chosen centered alignment for the text of the multicolumn
11035  cell, it is still left aligned.
11036  This is because LyX only applies the alignment to single columns.
11037  So we have to use for the multicolumn the LaTeX-argument
11038 \end_layout
11039
11040 \begin_layout Standard
11041
11042 \series bold
11043 >{
11044 \backslash
11045 centering}m{2.5cm}
11046 \end_layout
11047
11048 \begin_layout Subsection
11049 Multirows
11050 \begin_inset LatexCommand index
11051 name "Multirows"
11052
11053 \end_inset
11054
11055
11056 \begin_inset LatexCommand index
11057 name "Table ! Multirows"
11058
11059 \end_inset
11060
11061
11062 \begin_inset LatexCommand index
11063 name "LaTeX-packages ! multirow"
11064
11065 \end_inset
11066
11067
11068 \end_layout
11069
11070 \begin_layout Standard
11071 In contrary to multicolumns multirows are not yet supported by LyX so a
11072  bit of ERT needs to be used.
11073  To use multirows load the LaTeX-package 
11074 \series bold
11075 multirow
11076 \series default
11077  in your document preamble with the command
11078 \end_layout
11079
11080 \begin_layout Standard
11081
11082 \series bold
11083
11084 \backslash
11085 usepackage{multirow}
11086 \end_layout
11087
11088 \begin_layout Standard
11089 Multirows are created with the command
11090 \end_layout
11091
11092 \begin_layout Standard
11093
11094 \series bold
11095
11096 \backslash
11097 multirow{number of rows}{cell width}{cell entry}
11098 \end_layout
11099
11100 \begin_layout Standard
11101 To create the following table:
11102 \end_layout
11103
11104 \begin_layout Standard
11105 \align center
11106 \begin_inset ERT
11107 status collapsed
11108
11109 \begin_layout Standard
11110
11111
11112 \backslash
11113 renewcommand{
11114 \backslash
11115 multirowsetup}{
11116 \backslash
11117 centering}
11118 \end_layout
11119
11120 \end_inset
11121
11122
11123 \begin_inset Tabular
11124 <lyxtabular version="3" rows="3" columns="3">
11125 <features>
11126 <column alignment="center" valignment="top" leftline="true" width="0">
11127 <column alignment="center" valignment="top" leftline="true" width="0">
11128 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
11129 <row topline="true">
11130 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11131 \begin_inset Text
11132
11133 \begin_layout Standard
11134 a
11135 \end_layout
11136
11137 \end_inset
11138 </cell>
11139 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11140 \begin_inset Text
11141
11142 \begin_layout Standard
11143 b
11144 \end_layout
11145
11146 \end_inset
11147 </cell>
11148 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11149 \begin_inset Text
11150
11151 \begin_layout Standard
11152 c
11153 \end_layout
11154
11155 \end_inset
11156 </cell>
11157 </row>
11158 <row topline="true">
11159 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11160 \begin_inset Text
11161
11162 \begin_layout Standard
11163 \begin_inset ERT
11164 status collapsed
11165
11166 \begin_layout Standard
11167
11168
11169 \backslash
11170 multirow{2}{2.5cm}{
11171 \end_layout
11172
11173 \end_inset
11174
11175 multirow entry
11176 \begin_inset ERT
11177 status collapsed
11178
11179 \begin_layout Standard
11180
11181 }
11182 \end_layout
11183
11184 \end_inset
11185
11186
11187 \end_layout
11188
11189 \end_inset
11190 </cell>
11191 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11192 \begin_inset Text
11193
11194 \begin_layout Standard
11195 e
11196 \end_layout
11197
11198 \end_inset
11199 </cell>
11200 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11201 \begin_inset Text
11202
11203 \begin_layout Standard
11204 f
11205 \end_layout
11206
11207 \end_inset
11208 </cell>
11209 </row>
11210 <row topline="true" bottomline="true">
11211 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11212 \begin_inset Text
11213
11214 \begin_layout Standard
11215
11216 \end_layout
11217
11218 \end_inset
11219 </cell>
11220 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11221 \begin_inset Text
11222
11223 \begin_layout Standard
11224 h
11225 \end_layout
11226
11227 \end_inset
11228 </cell>
11229 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11230 \begin_inset Text
11231
11232 \begin_layout Standard
11233 i
11234 \end_layout
11235
11236 \end_inset
11237 </cell>
11238 </row>
11239 </lyxtabular>
11240
11241 \end_inset
11242
11243
11244 \begin_inset ERT
11245 status collapsed
11246
11247 \begin_layout Standard
11248
11249
11250 \backslash
11251 renewcommand{
11252 \backslash
11253 multirowsetup}{
11254 \backslash
11255 raggedright}
11256 \end_layout
11257
11258 \end_inset
11259
11260
11261 \end_layout
11262
11263 \begin_layout Standard
11264 create a 3×3 table.
11265  To get rid of the line above the last cell in the first column, the cell
11266  is marked as multicolumn and the upper border is unset.
11267  The multirow is now created in the second row of the first column by inserting
11268  there the command
11269 \end_layout
11270
11271 \begin_layout Standard
11272
11273 \series bold
11274
11275 \backslash
11276 multirow{2}{2.5cm}{
11277 \end_layout
11278
11279 \begin_layout Standard
11280 as ERT.
11281  According to the command parameters the multirow spans now two rows and
11282  has a width of 2.5\InsetSpace \thinspace{}
11283 cm.
11284  The content of the multirow cell follows outside the ERT box and the command
11285  is finished with a right brace 
11286 \series bold
11287 }
11288 \series default
11289  in another ERT-box behind the text.
11290 \end_layout
11291
11292 \begin_layout Standard
11293
11294 \series bold
11295
11296 \backslash
11297 multirow
11298 \series default
11299  left-aligns its content by default.
11300  To override the default, renew the command 
11301 \series bold
11302
11303 \backslash
11304 multirowsetup
11305 \series default
11306  with the command
11307 \end_layout
11308
11309 \begin_layout Standard
11310
11311 \series bold
11312
11313 \backslash
11314 renewcommand{
11315 \backslash
11316 multirowsetup}{
11317 \backslash
11318 centering}
11319 \end_layout
11320
11321 \begin_layout Standard
11322 in ERT in the document preamble.
11323  Then all entries of multirow cells in the document are centered.
11324  If centering is only needed for several tables, you can renew the command
11325  in an ERT box just before the table instead of the preamble.
11326  If the text should be right-aligned, replace 
11327 \series bold
11328
11329 \backslash
11330 centering
11331 \series default
11332  by 
11333 \series bold
11334
11335 \backslash
11336 raggedleft
11337 \series default
11338 .
11339  To return to left-alignment 
11340 \series bold
11341
11342 \backslash
11343 raggedright
11344 \series default
11345  is used.
11346 \end_layout
11347
11348 \begin_layout Section
11349 Formal Tables
11350 \begin_inset LatexCommand label
11351 name "sec:Formal-Tables"
11352
11353 \end_inset
11354
11355
11356 \begin_inset LatexCommand index
11357 name "Table ! Formal"
11358
11359 \end_inset
11360
11361
11362 \end_layout
11363
11364 \begin_layout Standard
11365 Tables are often typeset in books similar to Table\InsetSpace ~
11366
11367 \begin_inset LatexCommand ref
11368 reference "tab:Example-booktabs-table"
11369
11370 \end_inset
11371
11372 .
11373  This kind of tables is called 
11374 \begin_inset Quotes eld
11375 \end_inset
11376
11377
11378 \emph on
11379 formal
11380 \emph default
11381
11382 \begin_inset Quotes erd
11383 \end_inset
11384
11385 .
11386  To make a table a formal table use the option 
11387 \family sans
11388 Formal
11389 \family default
11390  in the 
11391 \family sans
11392 Borders
11393 \family default
11394  tab of the table dialog.
11395 \end_layout
11396
11397 \begin_layout Standard
11398 \begin_inset Float table
11399 placement h
11400 wide false
11401 sideways false
11402 status open
11403
11404 \begin_layout Standard
11405 \begin_inset Caption
11406
11407 \begin_layout Standard
11408 \begin_inset LatexCommand label
11409 name "tab:Example-booktabs-table"
11410
11411 \end_inset
11412
11413 Example booktabs-table
11414 \end_layout
11415
11416 \end_inset
11417
11418
11419 \end_layout
11420
11421 \begin_layout Standard
11422 \align center
11423 \begin_inset Tabular
11424 <lyxtabular version="3" rows="8" columns="4">
11425 <features booktabs="true">
11426 <column alignment="center" valignment="top" rightline="true" width="0">
11427 <column alignment="center" valignment="top" width="0">
11428 <column alignment="center" valignment="top" width="0">
11429 <column alignment="center" valignment="top" width="0">
11430 <row topline="true">
11431 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11432 \begin_inset Text
11433
11434 \begin_layout Standard
11435 System
11436 \end_layout
11437
11438 \end_inset
11439 </cell>
11440 <cell alignment="center" valignment="top" topline="true" usebox="none">
11441 \begin_inset Text
11442
11443 \begin_layout Standard
11444 Medipix
11445 \begin_inset Formula $\,$
11446 \end_inset
11447
11448 1
11449 \end_layout
11450
11451 \end_inset
11452 </cell>
11453 <cell multicolumn="1" alignment="center" valignment="top" leftline="true" usebox="none">
11454 \begin_inset Text
11455
11456 \begin_layout Standard
11457 Medipix
11458 \begin_inset Formula $\,$
11459 \end_inset
11460
11461 2
11462 \end_layout
11463
11464 \end_inset
11465 </cell>
11466 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11467 \begin_inset Text
11468
11469 \begin_layout Standard
11470
11471 \end_layout
11472
11473 \end_inset
11474 </cell>
11475 </row>
11476 <row>
11477 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11478 \begin_inset Text
11479
11480 \begin_layout Standard
11481 \begin_inset ERT
11482 status collapsed
11483
11484 \begin_layout Standard
11485
11486
11487 \backslash
11488 cmidrule(r){2-2}
11489 \end_layout
11490
11491 \end_inset
11492
11493
11494 \begin_inset ERT
11495 status collapsed
11496
11497 \begin_layout Standard
11498
11499
11500 \backslash
11501 cmidrule(l){3-4}
11502 \end_layout
11503
11504 \end_inset
11505
11506 Detector thickness [µm]
11507 \end_layout
11508
11509 \end_inset
11510 </cell>
11511 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11512 \begin_inset Text
11513
11514 \begin_layout Standard
11515 300
11516 \end_layout
11517
11518 \end_inset
11519 </cell>
11520 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11521 \begin_inset Text
11522
11523 \begin_layout Standard
11524 300
11525 \end_layout
11526
11527 \end_inset
11528 </cell>
11529 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11530 \begin_inset Text
11531
11532 \begin_layout Standard
11533 700
11534 \end_layout
11535
11536 \end_inset
11537 </cell>
11538 </row>
11539 <row topline="true">
11540 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11541 \begin_inset Text
11542
11543 \begin_layout Standard
11544 Edge angle [°]
11545 \end_layout
11546
11547 \end_inset
11548 </cell>
11549 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11550 \begin_inset Text
11551
11552 \begin_layout Standard
11553 3.55
11554 \end_layout
11555
11556 \end_inset
11557 </cell>
11558 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11559 \begin_inset Text
11560
11561 \begin_layout Standard
11562 2.71
11563 \end_layout
11564
11565 \end_inset
11566 </cell>
11567 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11568 \begin_inset Text
11569
11570 \begin_layout Standard
11571 7.99
11572 \end_layout
11573
11574 \end_inset
11575 </cell>
11576 </row>
11577 <row topspace="default">
11578 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11579 \begin_inset Text
11580
11581 \begin_layout Standard
11582 Spatial resolution [µm]
11583 \end_layout
11584
11585 \end_inset
11586 </cell>
11587 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11588 \begin_inset Text
11589
11590 \begin_layout Standard
11591 4.26
11592 \end_layout
11593
11594 \end_inset
11595 </cell>
11596 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11597 \begin_inset Text
11598
11599 \begin_layout Standard
11600 10.17
11601 \end_layout
11602
11603 \end_inset
11604 </cell>
11605 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11606 \begin_inset Text
11607
11608 \begin_layout Standard
11609 10.56
11610 \end_layout
11611
11612 \end_inset
11613 </cell>
11614 </row>
11615 <row topspace="default">
11616 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11617 \begin_inset Text
11618
11619 \begin_layout Standard
11620 MTF at 
11621 \begin_inset Formula $f_{\mathrm{max}}$
11622 \end_inset
11623
11624
11625 \end_layout
11626
11627 \end_inset
11628 </cell>
11629 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11630 \begin_inset Text
11631
11632 \begin_layout Standard
11633 0.53
11634 \end_layout
11635
11636 \end_inset
11637 </cell>
11638 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11639 \begin_inset Text
11640
11641 \begin_layout Standard
11642 0.37
11643 \end_layout
11644
11645 \end_inset
11646 </cell>
11647 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11648 \begin_inset Text
11649
11650 \begin_layout Standard
11651 0.39
11652 \end_layout
11653
11654 \end_inset
11655 </cell>
11656 </row>
11657 <row topspace="default">
11658 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11659 \begin_inset Text
11660
11661 \begin_layout Standard
11662 \begin_inset ERT
11663 status collapsed
11664
11665 \begin_layout Standard
11666
11667
11668 \backslash
11669 cmidrule(l{10pt}){1-1}
11670 \end_layout
11671
11672 \end_inset
11673
11674 LSF-spatial resolution
11675 \end_layout
11676
11677 \end_inset
11678 </cell>
11679 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11680 \begin_inset Text
11681
11682 \begin_layout Standard
11683
11684 \end_layout
11685
11686 \end_inset
11687 </cell>
11688 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11689 \begin_inset Text
11690
11691 \begin_layout Standard
11692
11693 \end_layout
11694
11695 \end_inset
11696 </cell>
11697 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11698 \begin_inset Text
11699
11700 \begin_layout Standard
11701
11702 \end_layout
11703
11704 \end_inset
11705 </cell>
11706 </row>
11707 <row>
11708 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11709 \begin_inset Text
11710
11711 \begin_layout Standard
11712 in µm
11713 \end_layout
11714
11715 \end_inset
11716 </cell>
11717 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11718 \begin_inset Text
11719
11720 \begin_layout Standard
11721 129.7
11722 \end_layout
11723
11724 \end_inset
11725 </cell>
11726 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11727 \begin_inset Text
11728
11729 \begin_layout Standard
11730 52.75
11731 \end_layout
11732
11733 \end_inset
11734 </cell>
11735 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11736 \begin_inset Text
11737
11738 \begin_layout Standard
11739 50.78
11740 \end_layout
11741
11742 \end_inset
11743 </cell>
11744 </row>
11745 <row bottomline="true">
11746 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11747 \begin_inset Text
11748
11749 \begin_layout Standard
11750 in % of pixel size
11751 \end_layout
11752
11753 \end_inset
11754 </cell>
11755 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11756 \begin_inset Text
11757
11758 \begin_layout Standard
11759 76.3
11760 \end_layout
11761
11762 \end_inset
11763 </cell>
11764 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11765 \begin_inset Text
11766
11767 \begin_layout Standard
11768 95.9
11769 \end_layout
11770
11771 \end_inset
11772 </cell>
11773 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11774 \begin_inset Text
11775
11776 \begin_layout Standard
11777 92.3
11778 \end_layout
11779
11780 \end_inset
11781 </cell>
11782 </row>
11783 </lyxtabular>
11784
11785 \end_inset
11786
11787
11788 \end_layout
11789
11790 \end_inset
11791
11792
11793 \end_layout
11794
11795 \begin_layout Standard
11796 Spaces to table rows can be added using the 
11797 \family sans
11798 Borders
11799 \family default
11800  tab of the table dialog as described in section\InsetSpace ~
11801
11802 \begin_inset LatexCommand ref
11803 reference "sub:Row-Spacing"
11804
11805 \end_inset
11806
11807 .
11808 \end_layout
11809
11810 \begin_layout Standard
11811 In contrary to normal tables, formal tables have no vertical table lines.
11812  The horizontal table lines can be set like for normal tables but they appear
11813  with different width in the output:
11814 \newline
11815 The first and the last table line have
11816  a default width of 0.08\InsetSpace \thinspace{}
11817 em while the other lines have a default width of
11818  0.05\InsetSpace \thinspace{}
11819 em.
11820 \end_layout
11821
11822 \begin_layout Standard
11823 The default widths can be changed with the following preamble lines
11824 \end_layout
11825
11826 \begin_layout Standard
11827
11828 \series bold
11829
11830 \backslash
11831 let
11832 \backslash
11833 mytoprule
11834 \backslash
11835 toprule
11836 \newline
11837
11838 \backslash
11839 renewcommand{
11840 \backslash
11841 toprule}{
11842 \backslash
11843 mytoprule[width]}
11844 \end_layout
11845
11846 \begin_layout Standard
11847 This example is for the first line, the so called 
11848 \series bold
11849 toprule
11850 \series default
11851 .
11852  If you want to change the width for the last line, replace 
11853 \series bold
11854 toprule
11855 \series default
11856  by 
11857 \series bold
11858 bottomrule
11859 \series default
11860 .
11861  To change the width for the other lines replace 
11862 \series bold
11863 toprule
11864 \series default
11865  by 
11866 \series bold
11867 midrule
11868 \series default
11869 .
11870  You can use all units listed in appendix\InsetSpace ~
11871
11872 \begin_inset LatexCommand ref
11873 reference "cha:Units-available-in"
11874
11875 \end_inset
11876
11877  to set the width.
11878 \end_layout
11879
11880 \begin_layout Standard
11881 Lines that don't span over all table columns can be created by setting a
11882  table line for multicolumn cells.
11883  LyX will then internally use the command 
11884 \series bold
11885
11886 \backslash
11887 cmidrule
11888 \series default
11889  to create this line.
11890  Its full scheme is
11891 \end_layout
11892
11893 \begin_layout Standard
11894
11895 \series bold
11896
11897 \backslash
11898 cmidrule[width](trim){startcol-endcol}
11899 \end_layout
11900
11901 \begin_layout Standard
11902 The options of 
11903 \series bold
11904
11905 \backslash
11906 cmidrule
11907 \series default
11908  are are currently not supported by LyX so you have to use ERT to be able
11909  to use them.
11910  
11911 \series bold
11912
11913 \backslash
11914 cmidrule
11915 \series default
11916 s can manually be created by inserting the command as ERT as first cell
11917  entry of the first cell of a row.
11918  The line is then drawn in the output above the current row.
11919 \end_layout
11920
11921 \begin_layout Standard
11922 The default for the width is 0.03\InsetSpace \thinspace{}
11923 em.
11924  Startcol is the number of the column where the line starts and endcol the
11925  column number where the line ends.
11926  The endcol always needs to be specified, also when the line should span
11927  only one column.
11928  The optional parameter trim could be either 
11929 \emph on
11930 l{trimwidth}
11931 \emph default
11932 , or 
11933 \emph on
11934 r{trimwidth}
11935 \emph default
11936  where the trimwidth is also optional.
11937  Using for example the parameter 
11938 \emph on
11939 l{2pt}
11940 \emph default
11941  means that the line is trimmed from its left end by 2\InsetSpace \thinspace{}
11942 pt.
11943  If you don't specify the trimwidth the lines are trimmed by the default
11944  of 0.5\InsetSpace \thinspace{}
11945 em.
11946 \end_layout
11947
11948 \begin_layout Standard
11949 \begin_inset VSpace bigskip
11950 \end_inset
11951
11952 Table\InsetSpace ~
11953
11954 \begin_inset LatexCommand ref
11955 reference "tab:Example-booktabs-table"
11956
11957 \end_inset
11958
11959  was created using the commands
11960 \end_layout
11961
11962 \begin_layout Standard
11963
11964 \series bold
11965
11966 \backslash
11967 cmidrule(r){2-2}
11968 \backslash
11969 cmidrule(l){3-4}
11970 \end_layout
11971
11972 \begin_layout Standard
11973 at the beginning of the in the second row and
11974 \end_layout
11975
11976 \begin_layout Standard
11977
11978 \series bold
11979
11980 \backslash
11981 cmidrule(l{10pt}){1-1}
11982 \end_layout
11983
11984 \begin_layout Standard
11985 in the sixth row.
11986 \end_layout
11987
11988 \begin_layout Standard
11989 \begin_inset VSpace bigskip
11990 \end_inset
11991
11992
11993 \end_layout
11994
11995 \begin_layout Standard
11996 You might want to have overlapping 
11997 \series bold
11998
11999 \backslash
12000 cmidrule
12001 \series default
12002 s like in Table\InsetSpace ~
12003
12004 \begin_inset LatexCommand ref
12005 reference "tab:Special-booktabs-table"
12006
12007 \end_inset
12008
12009 .
12010  This can be achieved with the ERT command
12011 \end_layout
12012
12013 \begin_layout Standard
12014
12015 \series bold
12016
12017 \backslash
12018 morecmidrules
12019 \end_layout
12020
12021 \begin_layout Standard
12022 The command that was used for the second row of Table\InsetSpace ~
12023
12024 \begin_inset LatexCommand ref
12025 reference "tab:Special-booktabs-table"
12026
12027 \end_inset
12028
12029  is
12030 \end_layout
12031
12032 \begin_layout Standard
12033
12034 \series bold
12035
12036 \backslash
12037 cmidrule(r){2-2}
12038 \backslash
12039 cmidrule(l){3-4}
12040 \backslash
12041 morecmidrules
12042 \backslash
12043 cmidrule{2-4}
12044 \end_layout
12045
12046 \begin_layout Standard
12047 The command for the sixth row is
12048 \end_layout
12049
12050 \begin_layout Standard
12051
12052 \series bold
12053
12054 \backslash
12055 midrule
12056 \backslash
12057 morecmidrules
12058 \backslash
12059 cmidrule{3-4}
12060 \end_layout
12061
12062 \begin_layout Standard
12063 \begin_inset VSpace bigskip
12064 \end_inset
12065
12066
12067 \end_layout
12068
12069 \begin_layout Standard
12070 If you are anyway not satisfied with the border line spacing, you can use
12071  the following command to produce lines that span over all table columns
12072 \series bold
12073 :
12074 \end_layout
12075
12076 \begin_layout Standard
12077
12078 \series bold
12079
12080 \backslash
12081 specialrule{width}{space above}{space below}
12082 \end_layout
12083
12084 \begin_layout Standard
12085 For more informations about these specialties, we refer to the manual of
12086  the LaTeX-package 
12087 \series bold
12088 booktabs
12089 \series default
12090  
12091 \begin_inset LatexCommand cite
12092 key "booktabs"
12093
12094 \end_inset
12095
12096 .
12097 \begin_inset LatexCommand index
12098 name "LaTeX-packages ! booktabs"
12099
12100 \end_inset
12101
12102
12103 \end_layout
12104
12105 \begin_layout Standard
12106 \begin_inset Float table
12107 placement h
12108 wide false
12109 sideways false
12110 status open
12111
12112 \begin_layout Standard
12113 \begin_inset Caption
12114
12115 \begin_layout Standard
12116 \begin_inset LatexCommand label
12117 name "tab:Special-booktabs-table"
12118
12119 \end_inset
12120
12121 Special booktabs-table
12122 \end_layout
12123
12124 \end_inset
12125
12126
12127 \end_layout
12128
12129 \begin_layout Standard
12130 \align center
12131 \begin_inset Tabular
12132 <lyxtabular version="3" rows="8" columns="4">
12133 <features booktabs="true">
12134 <column alignment="center" valignment="top" width="0">
12135 <column alignment="center" valignment="top" width="0">
12136 <column alignment="center" valignment="top" width="0">
12137 <column alignment="center" valignment="top" width="0">
12138 <row topline="true">
12139 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12140 \begin_inset Text
12141
12142 \begin_layout Standard
12143 System
12144 \end_layout
12145
12146 \end_inset
12147 </cell>
12148 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12149 \begin_inset Text
12150
12151 \begin_layout Standard
12152 Medipix\InsetSpace \thinspace{}
12153 1
12154 \end_layout
12155
12156 \end_inset
12157 </cell>
12158 <cell multicolumn="1" alignment="center" valignment="top" leftline="true" usebox="none">
12159 \begin_inset Text
12160
12161 \begin_layout Standard
12162 Medipix\InsetSpace \thinspace{}
12163 2
12164 \end_layout
12165
12166 \end_inset
12167 </cell>
12168 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12169 \begin_inset Text
12170
12171 \begin_layout Standard
12172
12173 \end_layout
12174
12175 \end_inset
12176 </cell>
12177 </row>
12178 <row>
12179 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12180 \begin_inset Text
12181
12182 \begin_layout Standard
12183 \begin_inset ERT
12184 status collapsed
12185
12186 \begin_layout Standard
12187
12188
12189 \backslash
12190 cmidrule(r){2-2}
12191 \end_layout
12192
12193 \end_inset
12194
12195
12196 \begin_inset ERT
12197 status collapsed
12198
12199 \begin_layout Standard
12200
12201
12202 \backslash
12203 cmidrule(l){3-4}
12204 \end_layout
12205
12206 \end_inset
12207
12208
12209 \begin_inset ERT
12210 status collapsed
12211
12212 \begin_layout Standard
12213
12214
12215 \backslash
12216 morecmidrules 
12217 \end_layout
12218
12219 \end_inset
12220
12221
12222 \begin_inset ERT
12223 status collapsed
12224
12225 \begin_layout Standard
12226
12227
12228 \backslash
12229 cmidrule{2-4}
12230 \end_layout
12231
12232 \end_inset
12233
12234 Detector thickness [µm]
12235 \end_layout
12236
12237 \end_inset
12238 </cell>
12239 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12240 \begin_inset Text
12241
12242 \begin_layout Standard
12243 300
12244 \end_layout
12245
12246 \end_inset
12247 </cell>
12248 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12249 \begin_inset Text
12250
12251 \begin_layout Standard
12252 300
12253 \end_layout
12254
12255 \end_inset
12256 </cell>
12257 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12258 \begin_inset Text
12259
12260 \begin_layout Standard
12261 700
12262 \end_layout
12263
12264 \end_inset
12265 </cell>
12266 </row>
12267 <row topline="true">
12268 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12269 \begin_inset Text
12270
12271 \begin_layout Standard
12272 Edge angle [°]
12273 \end_layout
12274
12275 \end_inset
12276 </cell>
12277 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12278 \begin_inset Text
12279
12280 \begin_layout Standard
12281 3.55
12282 \end_layout
12283
12284 \end_inset
12285 </cell>
12286 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12287 \begin_inset Text
12288
12289 \begin_layout Standard
12290 2.71
12291 \end_layout
12292
12293 \end_inset
12294 </cell>
12295 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12296 \begin_inset Text
12297
12298 \begin_layout Standard
12299 7.99
12300 \end_layout
12301
12302 \end_inset
12303 </cell>
12304 </row>
12305 <row topspace="default">
12306 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12307 \begin_inset Text
12308
12309 \begin_layout Standard
12310 Spatial resolution [µm]
12311 \end_layout
12312
12313 \end_inset
12314 </cell>
12315 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12316 \begin_inset Text
12317
12318 \begin_layout Standard
12319 4.26
12320 \end_layout
12321
12322 \end_inset
12323 </cell>
12324 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12325 \begin_inset Text
12326
12327 \begin_layout Standard
12328 10.17
12329 \end_layout
12330
12331 \end_inset
12332 </cell>
12333 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12334 \begin_inset Text
12335
12336 \begin_layout Standard
12337 10.56
12338 \end_layout
12339
12340 \end_inset
12341 </cell>
12342 </row>
12343 <row topspace="default">
12344 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12345 \begin_inset Text
12346
12347 \begin_layout Standard
12348 MTF at 
12349 \begin_inset Formula $f_{\mathrm{max}}$
12350 \end_inset
12351
12352
12353 \end_layout
12354
12355 \end_inset
12356 </cell>
12357 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12358 \begin_inset Text
12359
12360 \begin_layout Standard
12361 0.53
12362 \end_layout
12363
12364 \end_inset
12365 </cell>
12366 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12367 \begin_inset Text
12368
12369 \begin_layout Standard
12370 0.37
12371 \end_layout
12372
12373 \end_inset
12374 </cell>
12375 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12376 \begin_inset Text
12377
12378 \begin_layout Standard
12379 0.39
12380 \end_layout
12381
12382 \end_inset
12383 </cell>
12384 </row>
12385 <row topline="true">
12386 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12387 \begin_inset Text
12388
12389 \begin_layout Standard
12390 \begin_inset ERT
12391 status collapsed
12392
12393 \begin_layout Standard
12394
12395
12396 \backslash
12397 morecmidrules 
12398 \end_layout
12399
12400 \end_inset
12401
12402
12403 \begin_inset ERT
12404 status collapsed
12405
12406 \begin_layout Standard
12407
12408
12409 \backslash
12410 cmidrule{3-4}
12411 \end_layout
12412
12413 \end_inset
12414
12415 LSF-spatial resolution
12416 \end_layout
12417
12418 \end_inset
12419 </cell>
12420 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12421 \begin_inset Text
12422
12423 \begin_layout Standard
12424
12425 \end_layout
12426
12427 \end_inset
12428 </cell>
12429 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12430 \begin_inset Text
12431
12432 \begin_layout Standard
12433
12434 \end_layout
12435
12436 \end_inset
12437 </cell>
12438 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12439 \begin_inset Text
12440
12441 \begin_layout Standard
12442
12443 \end_layout
12444
12445 \end_inset
12446 </cell>
12447 </row>
12448 <row>
12449 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12450 \begin_inset Text
12451
12452 \begin_layout Standard
12453 in µm
12454 \end_layout
12455
12456 \end_inset
12457 </cell>
12458 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12459 \begin_inset Text
12460
12461 \begin_layout Standard
12462 129.7
12463 \end_layout
12464
12465 \end_inset
12466 </cell>
12467 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12468 \begin_inset Text
12469
12470 \begin_layout Standard
12471 52.75
12472 \end_layout
12473
12474 \end_inset
12475 </cell>
12476 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12477 \begin_inset Text
12478
12479 \begin_layout Standard
12480 50.78
12481 \end_layout
12482
12483 \end_inset
12484 </cell>
12485 </row>
12486 <row bottomline="true">
12487 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12488 \begin_inset Text
12489
12490 \begin_layout Standard
12491 in % of pixel size
12492 \end_layout
12493
12494 \end_inset
12495 </cell>
12496 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12497 \begin_inset Text
12498
12499 \begin_layout Standard
12500 76.3
12501 \end_layout
12502
12503 \end_inset
12504 </cell>
12505 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12506 \begin_inset Text
12507
12508 \begin_layout Standard
12509 95.9
12510 \end_layout
12511
12512 \end_inset
12513 </cell>
12514 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12515 \begin_inset Text
12516
12517 \begin_layout Standard
12518 92.3
12519 \end_layout
12520
12521 \end_inset
12522 </cell>
12523 </row>
12524 </lyxtabular>
12525
12526 \end_inset
12527
12528
12529 \end_layout
12530
12531 \end_inset
12532
12533
12534 \end_layout
12535
12536 \begin_layout Section
12537 Vertical Table Alignment
12538 \begin_inset LatexCommand index
12539 name "Table ! Alignment"
12540
12541 \end_inset
12542
12543
12544 \end_layout
12545
12546 \begin_layout Standard
12547 To align tables vertically in a text line the table must be inside a box.
12548  The box can then be vertically aligned as described in section\InsetSpace ~
12549
12550 \begin_inset LatexCommand ref
12551 reference "sec:Box-Dialog"
12552
12553 \end_inset
12554
12555 .
12556 \end_layout
12557
12558 \begin_layout Standard
12559 In the following example the tables are inside a minipage
12560 \begin_inset Foot
12561 status collapsed
12562
12563 \begin_layout Standard
12564 Minipages are described in section\InsetSpace ~
12565
12566 \begin_inset LatexCommand ref
12567 reference "sec:Minipages"
12568
12569 \end_inset
12570
12571 .
12572 \end_layout
12573
12574 \end_inset
12575
12576  box that has a width of 15\InsetSpace \thinspace{}
12577 col%:
12578 \end_layout
12579
12580 \begin_layout Itemize
12581 test 
12582 \begin_inset Box Frameless
12583 position "t"
12584 hor_pos "c"
12585 has_inner_box 1
12586 inner_pos "c"
12587 use_parbox 0
12588 width "15col%"
12589 special "none"
12590 height "1in"
12591 height_special "totalheight"
12592 status collapsed
12593
12594 \begin_layout Standard
12595 \begin_inset Tabular
12596 <lyxtabular version="3" rows="3" columns="3">
12597 <features>
12598 <column alignment="center" valignment="top" leftline="true" width="0">
12599 <column alignment="center" valignment="top" leftline="true" width="0">
12600 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
12601 <row topline="true">
12602 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12603 \begin_inset Text
12604
12605 \begin_layout Standard
12606 a
12607 \end_layout
12608
12609 \end_inset
12610 </cell>
12611 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12612 \begin_inset Text
12613
12614 \begin_layout Standard
12615 d
12616 \end_layout
12617
12618 \end_inset
12619 </cell>
12620 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12621 \begin_inset Text
12622
12623 \begin_layout Standard
12624 g
12625 \end_layout
12626
12627 \end_inset
12628 </cell>
12629 </row>
12630 <row topline="true">
12631 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12632 \begin_inset Text
12633
12634 \begin_layout Standard
12635 b
12636 \end_layout
12637
12638 \end_inset
12639 </cell>
12640 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12641 \begin_inset Text
12642
12643 \begin_layout Standard
12644 e
12645 \end_layout
12646
12647 \end_inset
12648 </cell>
12649 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12650 \begin_inset Text
12651
12652 \begin_layout Standard
12653 h
12654 \end_layout
12655
12656 \end_inset
12657 </cell>
12658 </row>
12659 <row topline="true" bottomline="true">
12660 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12661 \begin_inset Text
12662
12663 \begin_layout Standard
12664 c
12665 \end_layout
12666
12667 \end_inset
12668 </cell>
12669 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12670 \begin_inset Text
12671
12672 \begin_layout Standard
12673 f
12674 \end_layout
12675
12676 \end_inset
12677 </cell>
12678 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12679 \begin_inset Text
12680
12681 \begin_layout Standard
12682 i
12683 \end_layout
12684
12685 \end_inset
12686 </cell>
12687 </row>
12688 </lyxtabular>
12689
12690 \end_inset
12691
12692
12693 \end_layout
12694
12695 \end_inset
12696
12697  test 
12698 \begin_inset ERT
12699 status collapsed
12700
12701 \begin_layout Standard
12702
12703
12704 \backslash
12705 raisebox{0.85
12706 \backslash
12707 baselineskip}{
12708 \end_layout
12709
12710 \end_inset
12711
12712
12713 \begin_inset Box Frameless
12714 position "t"
12715 hor_pos "c"
12716 has_inner_box 1
12717 inner_pos "c"
12718 use_parbox 0
12719 width "15col%"
12720 special "none"
12721 height "1in"
12722 height_special "totalheight"
12723 status collapsed
12724
12725 \begin_layout Standard
12726 \begin_inset Tabular
12727 <lyxtabular version="3" rows="3" columns="3">
12728 <features>
12729 <column alignment="center" valignment="top" leftline="true" width="0">
12730 <column alignment="center" valignment="top" leftline="true" width="0">
12731 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
12732 <row topline="true">
12733 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12734 \begin_inset Text
12735
12736 \begin_layout Standard
12737 a
12738 \end_layout
12739
12740 \end_inset
12741 </cell>
12742 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12743 \begin_inset Text
12744
12745 \begin_layout Standard
12746 d
12747 \end_layout
12748
12749 \end_inset
12750 </cell>
12751 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12752 \begin_inset Text
12753
12754 \begin_layout Standard
12755 g
12756 \end_layout
12757
12758 \end_inset
12759 </cell>
12760 </row>
12761 <row topline="true">
12762 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12763 \begin_inset Text
12764
12765 \begin_layout Standard
12766 b
12767 \end_layout
12768
12769 \end_inset
12770 </cell>
12771 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12772 \begin_inset Text
12773
12774 \begin_layout Standard
12775 e
12776 \end_layout
12777
12778 \end_inset
12779 </cell>
12780 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12781 \begin_inset Text
12782
12783 \begin_layout Standard
12784 h
12785 \end_layout
12786
12787 \end_inset
12788 </cell>
12789 </row>
12790 <row topline="true" bottomline="true">
12791 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12792 \begin_inset Text
12793
12794 \begin_layout Standard
12795 c
12796 \end_layout
12797
12798 \end_inset
12799 </cell>
12800 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12801 \begin_inset Text
12802
12803 \begin_layout Standard
12804 f
12805 \end_layout
12806
12807 \end_inset
12808 </cell>
12809 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12810 \begin_inset Text
12811
12812 \begin_layout Standard
12813 i
12814 \end_layout
12815
12816 \end_inset
12817 </cell>
12818 </row>
12819 </lyxtabular>
12820
12821 \end_inset
12822
12823
12824 \end_layout
12825
12826 \end_inset
12827
12828
12829 \begin_inset ERT
12830 status collapsed
12831
12832 \begin_layout Standard
12833
12834 }
12835 \end_layout
12836
12837 \end_inset
12838
12839
12840 \end_layout
12841
12842 \begin_layout Itemize
12843 test 
12844 \begin_inset Box Frameless
12845 position "c"
12846 hor_pos "c"
12847 has_inner_box 1
12848 inner_pos "c"
12849 use_parbox 0
12850 width "15col%"
12851 special "none"
12852 height "1in"
12853 height_special "totalheight"
12854 status collapsed
12855
12856 \begin_layout Standard
12857 \begin_inset Tabular
12858 <lyxtabular version="3" rows="3" columns="3">
12859 <features>
12860 <column alignment="center" valignment="top" leftline="true" width="0">
12861 <column alignment="center" valignment="top" leftline="true" width="0">
12862 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
12863 <row topline="true">
12864 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12865 \begin_inset Text
12866
12867 \begin_layout Standard
12868 a
12869 \end_layout
12870
12871 \end_inset
12872 </cell>
12873 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12874 \begin_inset Text
12875
12876 \begin_layout Standard
12877 d
12878 \end_layout
12879
12880 \end_inset
12881 </cell>
12882 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12883 \begin_inset Text
12884
12885 \begin_layout Standard
12886 g
12887 \end_layout
12888
12889 \end_inset
12890 </cell>
12891 </row>
12892 <row topline="true">
12893 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12894 \begin_inset Text
12895
12896 \begin_layout Standard
12897 b
12898 \end_layout
12899
12900 \end_inset
12901 </cell>
12902 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12903 \begin_inset Text
12904
12905 \begin_layout Standard
12906 e
12907 \end_layout
12908
12909 \end_inset
12910 </cell>
12911 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12912 \begin_inset Text
12913
12914 \begin_layout Standard
12915 h
12916 \end_layout
12917
12918 \end_inset
12919 </cell>
12920 </row>
12921 <row topline="true" bottomline="true">
12922 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12923 \begin_inset Text
12924
12925 \begin_layout Standard
12926 c
12927 \end_layout
12928
12929 \end_inset
12930 </cell>
12931 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12932 \begin_inset Text
12933
12934 \begin_layout Standard
12935 f
12936 \end_layout
12937
12938 \end_inset
12939 </cell>
12940 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12941 \begin_inset Text
12942
12943 \begin_layout Standard
12944 i
12945 \end_layout
12946
12947 \end_inset
12948 </cell>
12949 </row>
12950 </lyxtabular>
12951
12952 \end_inset
12953
12954
12955 \end_layout
12956
12957 \end_inset
12958
12959
12960 \end_layout
12961
12962 \begin_layout Itemize
12963 test 
12964 \begin_inset Box Frameless
12965 position "b"
12966 hor_pos "c"
12967 has_inner_box 1
12968 inner_pos "c"
12969 use_parbox 0
12970 width "15col%"
12971 special "none"
12972 height "1in"
12973 height_special "totalheight"
12974 status collapsed
12975
12976 \begin_layout Standard
12977 \begin_inset Tabular
12978 <lyxtabular version="3" rows="3" columns="3">
12979 <features>
12980 <column alignment="center" valignment="top" leftline="true" width="0">
12981 <column alignment="center" valignment="top" leftline="true" width="0">
12982 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
12983 <row topline="true">
12984 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12985 \begin_inset Text
12986
12987 \begin_layout Standard
12988 a
12989 \end_layout
12990
12991 \end_inset
12992 </cell>
12993 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12994 \begin_inset Text
12995
12996 \begin_layout Standard
12997 d
12998 \end_layout
12999
13000 \end_inset
13001 </cell>
13002 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13003 \begin_inset Text
13004
13005 \begin_layout Standard
13006 g
13007 \end_layout
13008
13009 \end_inset
13010 </cell>
13011 </row>
13012 <row topline="true">
13013 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13014 \begin_inset Text
13015
13016 \begin_layout Standard
13017 b
13018 \end_layout
13019
13020 \end_inset
13021 </cell>
13022 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13023 \begin_inset Text
13024
13025 \begin_layout Standard
13026 e
13027 \end_layout
13028
13029 \end_inset
13030 </cell>
13031 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13032 \begin_inset Text
13033
13034 \begin_layout Standard
13035 h
13036 \end_layout
13037
13038 \end_inset
13039 </cell>
13040 </row>
13041 <row topline="true" bottomline="true">
13042 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13043 \begin_inset Text
13044
13045 \begin_layout Standard
13046 c
13047 \end_layout
13048
13049 \end_inset
13050 </cell>
13051 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13052 \begin_inset Text
13053
13054 \begin_layout Standard
13055 f
13056 \end_layout
13057
13058 \end_inset
13059 </cell>
13060 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13061 \begin_inset Text
13062
13063 \begin_layout Standard
13064 i
13065 \end_layout
13066
13067 \end_inset
13068 </cell>
13069 </row>
13070 </lyxtabular>
13071
13072 \end_inset
13073
13074
13075 \end_layout
13076
13077 \end_inset
13078
13079  test 
13080 \begin_inset ERT
13081 status collapsed
13082
13083 \begin_layout Standard
13084
13085
13086 \backslash
13087 raisebox{-0.32
13088 \backslash
13089 baselineskip}{
13090 \end_layout
13091
13092 \end_inset
13093
13094
13095 \begin_inset Box Frameless
13096 position "b"
13097 hor_pos "c"
13098 has_inner_box 1
13099 inner_pos "c"
13100 use_parbox 0
13101 width "15col%"
13102 special "none"
13103 height "1in"
13104 height_special "totalheight"
13105 status collapsed
13106
13107 \begin_layout Standard
13108 \begin_inset Tabular
13109 <lyxtabular version="3" rows="3" columns="3">
13110 <features>
13111 <column alignment="center" valignment="top" leftline="true" width="0">
13112 <column alignment="center" valignment="top" leftline="true" width="0">
13113 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
13114 <row topline="true">
13115 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13116 \begin_inset Text
13117
13118 \begin_layout Standard
13119 a
13120 \end_layout
13121
13122 \end_inset
13123 </cell>
13124 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13125 \begin_inset Text
13126
13127 \begin_layout Standard
13128 d
13129 \end_layout
13130
13131 \end_inset
13132 </cell>
13133 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13134 \begin_inset Text
13135
13136 \begin_layout Standard
13137 g
13138 \end_layout
13139
13140 \end_inset
13141 </cell>
13142 </row>
13143 <row topline="true">
13144 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13145 \begin_inset Text
13146
13147 \begin_layout Standard
13148 b
13149 \end_layout
13150
13151 \end_inset
13152 </cell>
13153 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13154 \begin_inset Text
13155
13156 \begin_layout Standard
13157 e
13158 \end_layout
13159
13160 \end_inset
13161 </cell>
13162 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13163 \begin_inset Text
13164
13165 \begin_layout Standard
13166 h
13167 \end_layout
13168
13169 \end_inset
13170 </cell>
13171 </row>
13172 <row topline="true" bottomline="true">
13173 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13174 \begin_inset Text
13175
13176 \begin_layout Standard
13177 c
13178 \end_layout
13179
13180 \end_inset
13181 </cell>
13182 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13183 \begin_inset Text
13184
13185 \begin_layout Standard
13186 f
13187 \end_layout
13188
13189 \end_inset
13190 </cell>
13191 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13192 \begin_inset Text
13193
13194 \begin_layout Standard
13195 i
13196 \end_layout
13197
13198 \end_inset
13199 </cell>
13200 </row>
13201 </lyxtabular>
13202
13203 \end_inset
13204
13205
13206 \end_layout
13207
13208 \end_inset
13209
13210
13211 \begin_inset ERT
13212 status collapsed
13213
13214 \begin_layout Standard
13215
13216 }
13217 \end_layout
13218
13219 \end_inset
13220
13221
13222 \end_layout
13223
13224 \begin_layout Standard
13225 As you can see, the content of the first and last table row is not correctly
13226  aligned with the text line where the table is in.
13227  To get this alignment, the minipage box must be set into a raisebox
13228 \begin_inset Foot
13229 status collapsed
13230
13231 \begin_layout Standard
13232 Raiseboxes are described in section\InsetSpace ~
13233
13234 \begin_inset LatexCommand ref
13235 reference "sub:Vertical-Alignment"
13236
13237 \end_inset
13238
13239 .
13240 \end_layout
13241
13242 \end_inset
13243
13244 .
13245  In the example above the second table in the first item is aligned using
13246  the ERT-command
13247 \end_layout
13248
13249 \begin_layout Standard
13250
13251 \series bold
13252
13253 \backslash
13254 raisebox{0.85
13255 \backslash
13256 baselineskip}{
13257 \end_layout
13258
13259 \begin_layout Standard
13260 before the box.
13261  Behind the box the closing brace 
13262 \series bold
13263 }
13264 \series default
13265  is inserted as ERT.
13266  For the second table in the last item the command
13267 \end_layout
13268
13269 \begin_layout Standard
13270
13271 \series bold
13272
13273 \backslash
13274 raisebox{-0.32
13275 \backslash
13276 baselineskip}{
13277 \end_layout
13278
13279 \begin_layout Standard
13280 is used.
13281 \end_layout
13282
13283 \begin_layout Standard
13284 \begin_inset Note Greyedout
13285 status open
13286
13287 \begin_layout Standard
13288
13289 \series bold
13290 Note:
13291 \series default
13292  The alignment of the table row content to the surrounding text line is
13293  not exact.
13294  The needed factor of the 
13295 \series bold
13296
13297 \backslash
13298 raisebox
13299 \series default
13300  command for this alignment depends on the document font, the font size,
13301  and the table line thickness.
13302 \end_layout
13303
13304 \end_inset
13305
13306
13307 \end_layout
13308
13309 \begin_layout Section
13310 Colored Tables
13311 \begin_inset LatexCommand label
13312 name "sec:Colored-Tables"
13313
13314 \end_inset
13315
13316
13317 \begin_inset LatexCommand index
13318 name "Table ! Color"
13319
13320 \end_inset
13321
13322
13323 \end_layout
13324
13325 \begin_layout Subsection
13326 Colored Cells
13327 \begin_inset LatexCommand index
13328 name "Table Color ! for Cells"
13329
13330 \end_inset
13331
13332
13333 \begin_inset LatexCommand index
13334 name "Color ! for Table Cells"
13335
13336 \end_inset
13337
13338
13339 \end_layout
13340
13341 \begin_layout Standard
13342 \begin_inset Float table
13343 placement h
13344 wide false
13345 sideways false
13346 status open
13347
13348 \begin_layout Standard
13349 \begin_inset Caption
13350
13351 \begin_layout Standard
13352 \begin_inset LatexCommand label
13353 name "tab:Table-colored-without"
13354
13355 \end_inset
13356
13357 Table colored without using the package 
13358 \series bold
13359 colortbl
13360 \series default
13361
13362 \begin_inset OptArg
13363 status collapsed
13364
13365 \begin_layout Standard
13366 Table without colortbl
13367 \end_layout
13368
13369 \end_inset
13370
13371
13372 \end_layout
13373
13374 \end_inset
13375
13376
13377 \end_layout
13378
13379 \begin_layout Standard
13380 \align center
13381 \begin_inset Tabular
13382 <lyxtabular version="3" rows="3" columns="3">
13383 <features>
13384 <column alignment="center" valignment="top" leftline="true" width="0">
13385 <column alignment="center" valignment="top" leftline="true" width="0">
13386 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
13387 <row topline="true">
13388 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13389 \begin_inset Text
13390
13391 \begin_layout Standard
13392
13393 \color green
13394 a
13395 \end_layout
13396
13397 \end_inset
13398 </cell>
13399 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13400 \begin_inset Text
13401
13402 \begin_layout Standard
13403
13404 \color red
13405 b
13406 \end_layout
13407
13408 \end_inset
13409 </cell>
13410 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13411 \begin_inset Text
13412
13413 \begin_layout Standard
13414
13415 \color red
13416 c
13417 \end_layout
13418
13419 \end_inset
13420 </cell>
13421 </row>
13422 <row topline="true">
13423 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13424 \begin_inset Text
13425
13426 \begin_layout Standard
13427
13428 \color green
13429 d
13430 \end_layout
13431
13432 \end_inset
13433 </cell>
13434 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13435 \begin_inset Text
13436
13437 \begin_layout Standard
13438
13439 \color blue
13440 e
13441 \end_layout
13442
13443 \end_inset
13444 </cell>
13445 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13446 \begin_inset Text
13447
13448 \begin_layout Standard
13449
13450 \color blue
13451 f
13452 \end_layout
13453
13454 \end_inset
13455 </cell>
13456 </row>
13457 <row topline="true" bottomline="true">
13458 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13459 \begin_inset Text
13460
13461 \begin_layout Standard
13462
13463 \color green
13464 g
13465 \end_layout
13466
13467 \end_inset
13468 </cell>
13469 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13470 \begin_inset Text
13471
13472 \begin_layout Standard
13473
13474 \color blue
13475 h
13476 \end_layout
13477
13478 \end_inset
13479 </cell>
13480 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13481 \begin_inset Text
13482
13483 \begin_layout Standard
13484
13485 \color blue
13486 i
13487 \end_layout
13488
13489 \end_inset
13490 </cell>
13491 </row>
13492 </lyxtabular>
13493
13494 \end_inset
13495
13496
13497 \end_layout
13498
13499 \end_inset
13500
13501
13502 \end_layout
13503
13504 \begin_layout Standard
13505 If you only need colored text, mark the cells and choose a color in the
13506  menu 
13507 \family sans
13508 Edit\SpecialChar \menuseparator
13509 Text\InsetSpace ~
13510 Style
13511 \family default
13512 .
13513  This was used to create Table\InsetSpace ~
13514
13515 \begin_inset LatexCommand ref
13516 reference "tab:Table-colored-without"
13517
13518 \end_inset
13519
13520 .
13521  In any other case you have to use the LaTeX-package 
13522 \series bold
13523 colortbl
13524 \series default
13525 .
13526 \begin_inset LatexCommand index
13527 name "LaTeX-packages ! colortbl"
13528
13529 \end_inset
13530
13531
13532 \end_layout
13533
13534 \begin_layout Standard
13535 To create colored tables, 
13536 \series bold
13537 colortbl
13538 \series default
13539  must be loaded in the preamble with the line
13540 \end_layout
13541
13542 \begin_layout Standard
13543
13544 \series bold
13545
13546 \backslash
13547 usepackage{colortbl}
13548 \end_layout
13549
13550 \begin_layout Standard
13551 The color of a column is adjusted with the command
13552 \end_layout
13553
13554 \begin_layout Standard
13555
13556 \series bold
13557
13558 \backslash
13559 columncolor{name of color}
13560 \end_layout
13561
13562 \begin_layout Standard
13563 inside the command 
13564 \series bold
13565 >{ }
13566 \series default
13567 .
13568  More about the command 
13569 \series bold
13570 >{}
13571 \series default
13572  is described in section\InsetSpace ~
13573
13574 \begin_inset LatexCommand ref
13575 reference "sub:Multicolumn-Calculations"
13576
13577 \end_inset
13578
13579 .
13580 \end_layout
13581
13582 \begin_layout Standard
13583 The following color names are predefined:
13584 \end_layout
13585
13586 \begin_layout Standard
13587
13588 \family sans
13589 red
13590 \family default
13591
13592 \family sans
13593 green
13594 \family default
13595
13596 \family sans
13597 yellow
13598 \family default
13599
13600 \family sans
13601 blue
13602 \family default
13603
13604 \family sans
13605 cyan
13606 \family default
13607
13608 \family sans
13609 magenta
13610 \family default
13611
13612 \family sans
13613 black
13614 \family default
13615  and 
13616 \family sans
13617 white
13618 \end_layout
13619
13620 \begin_layout Standard
13621 \begin_inset VSpace medskip
13622 \end_inset
13623
13624
13625 \end_layout
13626
13627 \begin_layout Standard
13628 You can also define your own color with the command
13629 \end_layout
13630
13631 \begin_layout Standard
13632
13633 \series bold
13634
13635 \backslash
13636 def\SpecialChar \textcompwordmark{}
13637 inecolor{color name}{color model}{color values}
13638 \end_layout
13639
13640 \begin_layout Standard
13641 The color model can be
13642 \end_layout
13643
13644 \begin_layout Labeling
13645 \labelwidthstring 00.00.0000
13646 cmyk: cyan, magenta, yellow, black
13647 \end_layout
13648
13649 \begin_layout Labeling
13650 \labelwidthstring 00.00.0000
13651 rgb: red, green blue
13652 \end_layout
13653
13654 \begin_layout Labeling
13655 \labelwidthstring 00.00.0000
13656 gray gray
13657 \end_layout
13658
13659 \begin_layout Standard
13660 and the color values are comma separated numbers between 0 and 1 describing
13661  the factor for the corresponding color of the color model.
13662 \end_layout
13663
13664 \begin_layout Standard
13665 You can e.\InsetSpace \thinspace{}
13666 g.\InsetSpace ~
13667 define the color "
13668 \emph on
13669 darkgreen
13670 \emph default
13671 " in the preamble with
13672 \end_layout
13673
13674 \begin_layout Standard
13675
13676 \series bold
13677
13678 \backslash
13679 def\SpecialChar \textcompwordmark{}
13680 inecolor{darkgreen}{cmyk}{0.5, 0, 1, 0.5}
13681 \end_layout
13682
13683 \begin_layout Standard
13684 and the color "
13685 \emph on
13686 lightgray
13687 \emph default
13688 " with
13689 \end_layout
13690
13691 \begin_layout Standard
13692
13693 \series bold
13694
13695 \backslash
13696 def\SpecialChar \textcompwordmark{}
13697 inecolor{lightgray}{gray}{0.8}
13698 \end_layout
13699
13700 \begin_layout Standard
13701 \begin_inset VSpace medskip
13702 \end_inset
13703
13704
13705 \end_layout
13706
13707 \begin_layout Standard
13708 Lines are colored with the command
13709 \end_layout
13710
13711 \begin_layout Standard
13712
13713 \series bold
13714
13715 \backslash
13716 rowcolor{name of color}
13717 \end_layout
13718
13719 \begin_layout Standard
13720 and cells are colored with the command
13721 \end_layout
13722
13723 \begin_layout Standard
13724
13725 \series bold
13726
13727 \backslash
13728 cellcolor{name of color}
13729 \end_layout
13730
13731 \begin_layout Standard
13732 Both commands are inserted at the beginning of a cell as ERT.
13733 \end_layout
13734
13735 \begin_layout Standard
13736 To color characters in the table, mark the cells and use the LyX menu 
13737 \family sans
13738 Edit\SpecialChar \menuseparator
13739 Text\InsetSpace ~
13740 Style
13741 \family default
13742 .
13743  If a cell contains ERT mark only the characters, otherwise the colored
13744  ERT will cause LaTeX-errors.
13745 \end_layout
13746
13747 \begin_layout Standard
13748 \begin_inset Note Greyedout
13749 status open
13750
13751 \begin_layout Standard
13752
13753 \series bold
13754 Note:
13755 \series default
13756  Not all DVI-viewers are able to display self-defined colors.
13757 \end_layout
13758
13759 \end_inset
13760
13761
13762 \end_layout
13763
13764 \begin_layout Standard
13765 \begin_inset VSpace bigskip
13766 \end_inset
13767
13768
13769 \end_layout
13770
13771 \begin_layout Standard
13772 To create Table\InsetSpace ~
13773
13774 \begin_inset LatexCommand ref
13775 reference "tab:Table-colored-using"
13776
13777 \end_inset
13778
13779  do the following: The color of the first column should be 
13780 \emph on
13781 darkgreen
13782 \emph default
13783 .
13784  So insert
13785 \end_layout
13786
13787 \begin_layout Standard
13788
13789 \series bold
13790 >{
13791 \backslash
13792 columncolor{darkgreen}
13793 \backslash
13794 centering}c
13795 \end_layout
13796
13797 \begin_layout Standard
13798 as LaTeX-argument for this column.
13799  The first row should be blue, therefore the ERT command
13800 \end_layout
13801
13802 \begin_layout Standard
13803
13804 \series bold
13805
13806 \backslash
13807 rowcolow{cyan}
13808 \end_layout
13809
13810 \begin_layout Standard
13811 is inserted to the first cell of this row.
13812  Note that this overwrites the column color for the first cell.
13813  The last cell of the last row is colored magenta by inserting the ERT command
13814 \end_layout
13815
13816 \begin_layout Standard
13817
13818 \series bold
13819
13820 \backslash
13821 cellcolor{magenta}
13822 \end_layout
13823
13824 \begin_layout Standard
13825 The characters could now be colored using the menu 
13826 \family sans
13827 Edit\SpecialChar \menuseparator
13828 Text\InsetSpace ~
13829 Style
13830 \family default
13831 .
13832 \end_layout
13833
13834 \begin_layout Standard
13835 \begin_inset Float table
13836 placement h
13837 wide false
13838 sideways false
13839 status open
13840
13841 \begin_layout Standard
13842 \begin_inset Caption
13843
13844 \begin_layout Standard
13845 \begin_inset LatexCommand label
13846 name "tab:Table-colored-using"
13847
13848 \end_inset
13849
13850 Table colored using the package 
13851 \series bold
13852 colortbl
13853 \series default
13854
13855 \begin_inset OptArg
13856 status collapsed
13857
13858 \begin_layout Standard
13859 Table with colortbl
13860 \end_layout
13861
13862 \end_inset
13863
13864
13865 \end_layout
13866
13867 \end_inset
13868
13869
13870 \end_layout
13871
13872 \begin_layout Standard
13873 \align center
13874 \begin_inset Tabular
13875 <lyxtabular version="3" rows="3" columns="3">
13876 <features>
13877 <column alignment="center" valignment="top" width="0" special=">{\columncolor{darkgreen}\centering}c">
13878 <column alignment="center" valignment="top" width="0">
13879 <column alignment="center" valignment="top" width="0">
13880 <row>
13881 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13882 \begin_inset Text
13883
13884 \begin_layout Standard
13885 \begin_inset ERT
13886 status collapsed
13887
13888 \begin_layout Standard
13889
13890
13891 \backslash
13892 rowcolor{cyan}
13893 \end_layout
13894
13895 \end_inset
13896
13897
13898 \color magenta
13899 a
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 red
13910 b
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 red
13921 c
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 d
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 e
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
13955 \color blue
13956 f
13957 \end_layout
13958
13959 \end_inset
13960 </cell>
13961 </row>
13962 <row>
13963 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13964 \begin_inset Text
13965
13966 \begin_layout Standard
13967
13968 \color yellow
13969 g
13970 \end_layout
13971
13972 \end_inset
13973 </cell>
13974 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13975 \begin_inset Text
13976
13977 \begin_layout Standard
13978
13979 \color blue
13980 h
13981 \end_layout
13982
13983 \end_inset
13984 </cell>
13985 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13986 \begin_inset Text
13987
13988 \begin_layout Standard
13989 \begin_inset ERT
13990 status collapsed
13991
13992 \begin_layout Standard
13993
13994
13995 \backslash
13996 cellcolor{magenta}
13997 \end_layout
13998
13999 \end_inset
14000
14001
14002 \color green
14003 i
14004 \end_layout
14005
14006 \end_inset
14007 </cell>
14008 </row>
14009 </lyxtabular>
14010
14011 \end_inset
14012
14013
14014 \end_layout
14015
14016 \end_inset
14017
14018
14019 \end_layout
14020
14021 \begin_layout Subsection
14022 Colored Lines
14023 \begin_inset LatexCommand index
14024 name "Table Color ! for Lines"
14025
14026 \end_inset
14027
14028
14029 \begin_inset LatexCommand index
14030 name "Color ! for Table Lines"
14031
14032 \end_inset
14033
14034
14035 \end_layout
14036
14037 \begin_layout Standard
14038 As described in section\InsetSpace ~
14039
14040 \begin_inset LatexCommand ref
14041 reference "sub:Line-Thickness"
14042
14043 \end_inset
14044
14045 , the line thickness for all lines in a table can be adjusted with the length
14046  
14047 \series bold
14048
14049 \backslash
14050 arrayrulewidth
14051 \series default
14052 .
14053  It is set to 1.5\InsetSpace \thinspace{}
14054 pt for all tables of this section.
14055 \begin_inset ERT
14056 status collapsed
14057
14058 \begin_layout Standard
14059
14060
14061 \backslash
14062 setlength{
14063 \backslash
14064 arrayrulewidth}{1.5pt}
14065 \end_layout
14066
14067 \end_inset
14068
14069
14070 \end_layout
14071
14072 \begin_layout Standard
14073 To color vertical lines for example with green, create the following column
14074  format in the document preamble, according to the description in section\InsetSpace ~
14075
14076 \begin_inset LatexCommand ref
14077 reference "sub:Customized-Format"
14078
14079 \end_inset
14080
14081 :
14082 \end_layout
14083
14084 \begin_layout Standard
14085
14086 \series bold
14087
14088 \backslash
14089 newcolumntype{W}{!{
14090 \backslash
14091 color{green}
14092 \backslash
14093 vline}}
14094 \end_layout
14095
14096 \begin_layout Standard
14097 For Table\InsetSpace ~
14098
14099 \begin_inset LatexCommand ref
14100 reference "tab:Table-with-vertical-colored"
14101
14102 \end_inset
14103
14104  the LaTeX-argument
14105 \end_layout
14106
14107 \begin_layout Standard
14108
14109 \series bold
14110 WcW
14111 \end_layout
14112
14113 \begin_layout Standard
14114 was used for the last column and
14115 \end_layout
14116
14117 \begin_layout Standard
14118
14119 \series bold
14120 Wc
14121 \end_layout
14122
14123 \begin_layout Standard
14124 for the other columns.
14125 \end_layout
14126
14127 \begin_layout Standard
14128 If you want to have several colors, define more column formats.
14129 \end_layout
14130
14131 \begin_layout Standard
14132 \begin_inset Float table
14133 wide false
14134 sideways false
14135 status open
14136
14137 \begin_layout Standard
14138 \begin_inset Caption
14139
14140 \begin_layout Standard
14141 \begin_inset LatexCommand label
14142 name "tab:Table-with-vertical-colored"
14143
14144 \end_inset
14145
14146 Table with colored vertical lines
14147 \end_layout
14148
14149 \end_inset
14150
14151
14152 \end_layout
14153
14154 \begin_layout Standard
14155 \align center
14156 \begin_inset Tabular
14157 <lyxtabular version="3" rows="3" columns="3">
14158 <features>
14159 <column alignment="center" valignment="top" width="0" special="Wc">
14160 <column alignment="center" valignment="top" width="0" special="Wc">
14161 <column alignment="center" valignment="top" width="0" special="WcW">
14162 <row topline="true">
14163 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14164 \begin_inset Text
14165
14166 \begin_layout Standard
14167 sd
14168 \end_layout
14169
14170 \end_inset
14171 </cell>
14172 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14173 \begin_inset Text
14174
14175 \begin_layout Standard
14176
14177 \end_layout
14178
14179 \end_inset
14180 </cell>
14181 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14182 \begin_inset Text
14183
14184 \begin_layout Standard
14185
14186 \end_layout
14187
14188 \end_inset
14189 </cell>
14190 </row>
14191 <row topline="true">
14192 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14193 \begin_inset Text
14194
14195 \begin_layout Standard
14196
14197 \end_layout
14198
14199 \end_inset
14200 </cell>
14201 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14202 \begin_inset Text
14203
14204 \begin_layout Standard
14205 sd
14206 \end_layout
14207
14208 \end_inset
14209 </cell>
14210 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14211 \begin_inset Text
14212
14213 \begin_layout Standard
14214
14215 \end_layout
14216
14217 \end_inset
14218 </cell>
14219 </row>
14220 <row topline="true" bottomline="true">
14221 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14222 \begin_inset Text
14223
14224 \begin_layout Standard
14225
14226 \end_layout
14227
14228 \end_inset
14229 </cell>
14230 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14231 \begin_inset Text
14232
14233 \begin_layout Standard
14234
14235 \end_layout
14236
14237 \end_inset
14238 </cell>
14239 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14240 \begin_inset Text
14241
14242 \begin_layout Standard
14243 sd
14244 \end_layout
14245
14246 \end_inset
14247 </cell>
14248 </row>
14249 </lyxtabular>
14250
14251 \end_inset
14252
14253
14254 \end_layout
14255
14256 \end_inset
14257
14258
14259 \end_layout
14260
14261 \begin_layout Standard
14262 \begin_inset VSpace bigskip
14263 \end_inset
14264
14265 To color horizontal lines for example with red, like in Table\InsetSpace ~
14266
14267 \begin_inset LatexCommand ref
14268 reference "tab:Table-with-horizontal-colored"
14269
14270 \end_inset
14271
14272 , insert these commands in ERT before the table or table float:
14273 \end_layout
14274
14275 \begin_layout Standard
14276
14277 \series bold
14278
14279 \backslash
14280 let
14281 \backslash
14282 myHlineC
14283 \backslash
14284 hline
14285 \newline
14286
14287 \backslash
14288 renewcommand{
14289 \backslash
14290 hline}{
14291 \backslash
14292 arrayrulecolor{red}
14293 \backslash
14294 myHlineC
14295 \backslash
14296 arrayrulecolor{black}}
14297 \end_layout
14298
14299 \begin_layout Standard
14300 \begin_inset ERT
14301 status collapsed
14302
14303 \begin_layout Standard
14304
14305
14306 \backslash
14307 let
14308 \backslash
14309 myHlineC
14310 \backslash
14311 hline
14312 \end_layout
14313
14314 \begin_layout Standard
14315
14316
14317 \backslash
14318 renewcommand{
14319 \backslash
14320 hline}{
14321 \backslash
14322 arrayrulecolor{red}
14323 \backslash
14324 myHlineC
14325 \backslash
14326 arrayrulecolor{black}}
14327 \end_layout
14328
14329 \end_inset
14330
14331
14332 \begin_inset Float table
14333 wide false
14334 sideways false
14335 status open
14336
14337 \begin_layout Standard
14338 \begin_inset Caption
14339
14340 \begin_layout Standard
14341 \begin_inset LatexCommand label
14342 name "tab:Table-with-horizontal-colored"
14343
14344 \end_inset
14345
14346 Table with colored horizontal lines
14347 \end_layout
14348
14349 \end_inset
14350
14351
14352 \end_layout
14353
14354 \begin_layout Standard
14355 \align center
14356 \begin_inset Tabular
14357 <lyxtabular version="3" rows="3" columns="3">
14358 <features>
14359 <column alignment="center" valignment="top" leftline="true" width="0">
14360 <column alignment="center" valignment="top" leftline="true" width="0">
14361 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
14362 <row topline="true">
14363 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14364 \begin_inset Text
14365
14366 \begin_layout Standard
14367 sd
14368 \end_layout
14369
14370 \end_inset
14371 </cell>
14372 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14373 \begin_inset Text
14374
14375 \begin_layout Standard
14376
14377 \end_layout
14378
14379 \end_inset
14380 </cell>
14381 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14382 \begin_inset Text
14383
14384 \begin_layout Standard
14385
14386 \end_layout
14387
14388 \end_inset
14389 </cell>
14390 </row>
14391 <row topline="true">
14392 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14393 \begin_inset Text
14394
14395 \begin_layout Standard
14396
14397 \end_layout
14398
14399 \end_inset
14400 </cell>
14401 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14402 \begin_inset Text
14403
14404 \begin_layout Standard
14405 sd
14406 \end_layout
14407
14408 \end_inset
14409 </cell>
14410 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14411 \begin_inset Text
14412
14413 \begin_layout Standard
14414
14415 \end_layout
14416
14417 \end_inset
14418 </cell>
14419 </row>
14420 <row topline="true" bottomline="true">
14421 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14422 \begin_inset Text
14423
14424 \begin_layout Standard
14425
14426 \end_layout
14427
14428 \end_inset
14429 </cell>
14430 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14431 \begin_inset Text
14432
14433 \begin_layout Standard
14434
14435 \end_layout
14436
14437 \end_inset
14438 </cell>
14439 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14440 \begin_inset Text
14441
14442 \begin_layout Standard
14443 sd
14444 \end_layout
14445
14446 \end_inset
14447 </cell>
14448 </row>
14449 </lyxtabular>
14450
14451 \end_inset
14452
14453
14454 \end_layout
14455
14456 \end_inset
14457
14458
14459 \end_layout
14460
14461 \begin_layout Standard
14462 \begin_inset ERT
14463 status collapsed
14464
14465 \begin_layout Standard
14466
14467
14468 \backslash
14469 pagebreak 
14470 \end_layout
14471
14472 \end_inset
14473
14474
14475 \end_layout
14476
14477 \begin_layout Standard
14478 To return to the default line color black, insert this command in ERT behind
14479  the table or table float:
14480 \end_layout
14481
14482 \begin_layout Standard
14483
14484 \series bold
14485
14486 \backslash
14487 renewcommand{
14488 \backslash
14489 hline}{
14490 \backslash
14491 myHlineC}
14492 \end_layout
14493
14494 \begin_layout Standard
14495 Table\InsetSpace ~
14496
14497 \begin_inset LatexCommand ref
14498 reference "tab:Table-with-colored"
14499
14500 \end_inset
14501
14502  is an example with colored vertical and horizontal lines.
14503 \end_layout
14504
14505 \begin_layout Standard
14506 \begin_inset Float table
14507 wide false
14508 sideways false
14509 status open
14510
14511 \begin_layout Standard
14512 \begin_inset Caption
14513
14514 \begin_layout Standard
14515 \begin_inset LatexCommand label
14516 name "tab:Table-with-colored"
14517
14518 \end_inset
14519
14520 Table with colored lines
14521 \end_layout
14522
14523 \end_inset
14524
14525
14526 \end_layout
14527
14528 \begin_layout Standard
14529 \align center
14530 \begin_inset Tabular
14531 <lyxtabular version="3" rows="3" columns="3">
14532 <features>
14533 <column alignment="center" valignment="top" width="0" special="Wc">
14534 <column alignment="center" valignment="top" width="0" special="Wc">
14535 <column alignment="center" valignment="top" width="0" special="WcW">
14536 <row topline="true">
14537 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14538 \begin_inset Text
14539
14540 \begin_layout Standard
14541 sd
14542 \end_layout
14543
14544 \end_inset
14545 </cell>
14546 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14547 \begin_inset Text
14548
14549 \begin_layout Standard
14550
14551 \end_layout
14552
14553 \end_inset
14554 </cell>
14555 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14556 \begin_inset Text
14557
14558 \begin_layout Standard
14559
14560 \end_layout
14561
14562 \end_inset
14563 </cell>
14564 </row>
14565 <row topline="true">
14566 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14567 \begin_inset Text
14568
14569 \begin_layout Standard
14570
14571 \end_layout
14572
14573 \end_inset
14574 </cell>
14575 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14576 \begin_inset Text
14577
14578 \begin_layout Standard
14579 sd
14580 \end_layout
14581
14582 \end_inset
14583 </cell>
14584 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14585 \begin_inset Text
14586
14587 \begin_layout Standard
14588
14589 \end_layout
14590
14591 \end_inset
14592 </cell>
14593 </row>
14594 <row topline="true" bottomline="true" topspace="default">
14595 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14596 \begin_inset Text
14597
14598 \begin_layout Standard
14599
14600 \end_layout
14601
14602 \end_inset
14603 </cell>
14604 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14605 \begin_inset Text
14606
14607 \begin_layout Standard
14608
14609 \end_layout
14610
14611 \end_inset
14612 </cell>
14613 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14614 \begin_inset Text
14615
14616 \begin_layout Standard
14617 sd
14618 \end_layout
14619
14620 \end_inset
14621 </cell>
14622 </row>
14623 </lyxtabular>
14624
14625 \end_inset
14626
14627
14628 \end_layout
14629
14630 \end_inset
14631
14632
14633 \end_layout
14634
14635 \begin_layout Standard
14636 \begin_inset ERT
14637 status collapsed
14638
14639 \begin_layout Standard
14640
14641
14642 \backslash
14643 renewcommand{
14644 \backslash
14645 hline}{
14646 \backslash
14647 myHlineC}
14648 \end_layout
14649
14650 \end_inset
14651
14652
14653 \end_layout
14654
14655 \begin_layout Standard
14656 \begin_inset ERT
14657 status collapsed
14658
14659 \begin_layout Standard
14660
14661
14662 \backslash
14663 setlength{
14664 \backslash
14665 arrayrulewidth}{0.4pt}
14666 \end_layout
14667
14668 \end_inset
14669
14670
14671 \end_layout
14672
14673 \begin_layout Section
14674 Table Customization
14675 \begin_inset LatexCommand index
14676 name "Table Customization"
14677
14678 \end_inset
14679
14680
14681 \begin_inset LatexCommand index
14682 name "Table ! Customization"
14683
14684 \end_inset
14685
14686
14687 \end_layout
14688
14689 \begin_layout Subsection
14690 Row Spacing
14691 \begin_inset LatexCommand label
14692 name "sub:Row-Spacing"
14693
14694 \end_inset
14695
14696
14697 \begin_inset LatexCommand index
14698 name "Table Customization ! Row Spacing"
14699
14700 \end_inset
14701
14702
14703 \end_layout
14704
14705 \begin_layout Standard
14706 You can add vertical space to table rows in the 
14707 \family sans
14708 Borders
14709 \family default
14710  tab of the table dialog.
14711  You find there three possibilities:
14712 \end_layout
14713
14714 \begin_layout Description
14715 Top\InsetSpace ~
14716 of\InsetSpace ~
14717 row will add space above the characters of the table row.
14718  If the table is a formal table
14719 \begin_inset Foot
14720 status collapsed
14721
14722 \begin_layout Standard
14723 Formal tables are explained in section\InsetSpace ~
14724
14725 \begin_inset LatexCommand ref
14726 reference "sec:Formal-Tables"
14727
14728 \end_inset
14729
14730 .
14731 \end_layout
14732
14733 \end_inset
14734
14735  LyX will insert as default 0.5\InsetSpace \thinspace{}
14736 em space.
14737  For normal tables the inserted space will unfortunately destroy the vertical
14738  table lines as in the following table:
14739 \begin_inset VSpace defskip
14740 \end_inset
14741
14742
14743 \newline
14744
14745 \begin_inset ERT
14746 status collapsed
14747
14748 \begin_layout Standard
14749
14750
14751 \backslash
14752 hspace*{0pt}
14753 \end_layout
14754
14755 \end_inset
14756
14757
14758 \hfill
14759
14760 \begin_inset Tabular
14761 <lyxtabular version="3" rows="3" columns="1">
14762 <features>
14763 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
14764 <row topline="true">
14765 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14766 \begin_inset Text
14767
14768 \begin_layout Standard
14769 A
14770 \end_layout
14771
14772 \end_inset
14773 </cell>
14774 </row>
14775 <row topline="true" topspace="3mm">
14776 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14777 \begin_inset Text
14778
14779 \begin_layout Standard
14780 3\InsetSpace \thinspace{}
14781 mm space top of row
14782 \end_layout
14783
14784 \end_inset
14785 </cell>
14786 </row>
14787 <row topline="true" bottomline="true">
14788 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14789 \begin_inset Text
14790
14791 \begin_layout Standard
14792 C
14793 \end_layout
14794
14795 \end_inset
14796 </cell>
14797 </row>
14798 </lyxtabular>
14799
14800 \end_inset
14801
14802
14803 \hfill
14804
14805 \begin_inset ERT
14806 status collapsed
14807
14808 \begin_layout Standard
14809
14810
14811 \backslash
14812 hspace*{0pt}
14813 \end_layout
14814
14815 \end_inset
14816
14817
14818 \begin_inset VSpace defskip
14819 \end_inset
14820
14821
14822 \newline
14823 So inserting space to the top of row for normal tables is only useful when
14824  you don't have vertical lines.
14825 \end_layout
14826
14827 \begin_layout Description
14828 Bottom\InsetSpace ~
14829 of\InsetSpace ~
14830 row will add space below the characters of the table row.
14831  If the table is a formal table LyX will insert as default 0.5\InsetSpace \thinspace{}
14832 em space, for
14833  normal tables the default size is 2\InsetSpace \thinspace{}
14834 pt.
14835 \end_layout
14836
14837 \begin_layout Description
14838 Between\InsetSpace ~
14839 rows adds space between the current and the following row.
14840  If the table is a formal table LyX will insert as default 0.5\InsetSpace \thinspace{}
14841 em space.
14842  For normal tables the inserted space will unfortunately destroy the vertical
14843  table lines as in the following table:
14844 \begin_inset VSpace defskip
14845 \end_inset
14846
14847
14848 \newline
14849
14850 \begin_inset ERT
14851 status collapsed
14852
14853 \begin_layout Standard
14854
14855
14856 \backslash
14857 hspace*{0pt}
14858 \end_layout
14859
14860 \end_inset
14861
14862
14863 \hfill
14864
14865 \begin_inset Tabular
14866 <lyxtabular version="3" rows="3" columns="1">
14867 <features>
14868 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
14869 <row topline="true">
14870 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14871 \begin_inset Text
14872
14873 \begin_layout Standard
14874 A
14875 \end_layout
14876
14877 \end_inset
14878 </cell>
14879 </row>
14880 <row topline="true" interlinespace="3mm">
14881 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14882 \begin_inset Text
14883
14884 \begin_layout Standard
14885 \begin_inset Formula $\downarrow$
14886 \end_inset
14887
14888  3\InsetSpace \thinspace{}
14889 mm space between row 
14890 \begin_inset Formula $\downarrow$
14891 \end_inset
14892
14893
14894 \end_layout
14895
14896 \end_inset
14897 </cell>
14898 </row>
14899 <row topline="true" bottomline="true">
14900 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14901 \begin_inset Text
14902
14903 \begin_layout Standard
14904 \begin_inset Formula $\uparrow$
14905 \end_inset
14906
14907  3\InsetSpace \thinspace{}
14908 mm space between row 
14909 \begin_inset Formula $\uparrow$
14910 \end_inset
14911
14912
14913 \end_layout
14914
14915 \end_inset
14916 </cell>
14917 </row>
14918 </lyxtabular>
14919
14920 \end_inset
14921
14922
14923 \hfill
14924
14925 \begin_inset ERT
14926 status collapsed
14927
14928 \begin_layout Standard
14929
14930
14931 \backslash
14932 hspace*{0pt}
14933 \end_layout
14934
14935 \end_inset
14936
14937
14938 \begin_inset VSpace defskip
14939 \end_inset
14940
14941
14942 \newline
14943 So inserting space between rows for normal tables is only useful when you
14944  don't have vertical lines.
14945 \end_layout
14946
14947 \begin_layout Standard
14948 When you want to add extra height to all cells of all tables, you can do
14949  this with the following preamble line:
14950 \end_layout
14951
14952 \begin_layout Standard
14953
14954 \series bold
14955
14956 \backslash
14957 setlength{
14958 \backslash
14959 extrarowheight}{height}
14960 \end_layout
14961
14962 \begin_layout Standard
14963 But this has the disadvantage that the cell texts are no longer exactly
14964  vertically centered.
14965 \end_layout
14966
14967 \begin_layout Subsection
14968 Special Cell Alignment
14969 \begin_inset LatexCommand index
14970 name "Table Customization ! Special Cell Alignment"
14971
14972 \end_inset
14973
14974
14975 \end_layout
14976
14977 \begin_layout Standard
14978 Sometimes it looks better when the cell entries of a column are aligned
14979  with a special character, e.\InsetSpace \thinspace{}
14980 g.\InsetSpace ~
14981 with the decimal separator as in Table\InsetSpace ~
14982
14983 \begin_inset LatexCommand ref
14984 reference "tab:Table-cells-of"
14985
14986 \end_inset
14987
14988 .
14989 \end_layout
14990
14991 \begin_layout Standard
14992 \begin_inset Float table
14993 placement h
14994 wide false
14995 sideways false
14996 status open
14997
14998 \begin_layout Standard
14999 \begin_inset Caption
15000
15001 \begin_layout Standard
15002 \begin_inset LatexCommand label
15003 name "tab:Table-cells-of"
15004
15005 \end_inset
15006
15007 Table cells of a column aligned with the decimal separator.
15008 \end_layout
15009
15010 \end_inset
15011
15012
15013 \end_layout
15014
15015 \begin_layout Standard
15016 \align center
15017 \begin_inset Tabular
15018 <lyxtabular version="3" rows="4" columns="2">
15019 <features>
15020 <column alignment="right" valignment="top" width="0">
15021 <column alignment="left" valignment="top" width="0" special="@{}l">
15022 <row bottomline="true">
15023 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" usebox="none">
15024 \begin_inset Text
15025
15026 \begin_layout Standard
15027 heading
15028 \end_layout
15029
15030 \end_inset
15031 </cell>
15032 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15033 \begin_inset Text
15034
15035 \begin_layout Standard
15036
15037 \end_layout
15038
15039 \end_inset
15040 </cell>
15041 </row>
15042 <row>
15043 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15044 \begin_inset Text
15045
15046 \begin_layout Standard
15047 12.
15048 \end_layout
15049
15050 \end_inset
15051 </cell>
15052 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15053 \begin_inset Text
15054
15055 \begin_layout Standard
15056 6
15057 \end_layout
15058
15059 \end_inset
15060 </cell>
15061 </row>
15062 <row>
15063 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15064 \begin_inset Text
15065
15066 \begin_layout Standard
15067 0.
15068 \end_layout
15069
15070 \end_inset
15071 </cell>
15072 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15073 \begin_inset Text
15074
15075 \begin_layout Standard
15076 68
15077 \end_layout
15078
15079 \end_inset
15080 </cell>
15081 </row>
15082 <row>
15083 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15084 \begin_inset Text
15085
15086 \begin_layout Standard
15087 -123.
15088 \end_layout
15089
15090 \end_inset
15091 </cell>
15092 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15093 \begin_inset Text
15094
15095 \begin_layout Standard
15096 0
15097 \end_layout
15098
15099 \end_inset
15100 </cell>
15101 </row>
15102 </lyxtabular>
15103
15104 \end_inset
15105
15106
15107 \end_layout
15108
15109 \end_inset
15110
15111
15112 \end_layout
15113
15114 \begin_layout Standard
15115 This table was created with a 4×2 table.
15116  The heading is a centered multicolumn.
15117  The first column is right-aligned and contains the digits before the decimal
15118  point and the decimal point.
15119  The second column is left aligned and contains the digits after the decimal
15120  point.
15121  To omit the space that is normally between two table columns, use the following
15122  LaTeX-argument for the second column:
15123 \end_layout
15124
15125 \begin_layout Standard
15126
15127 \series bold
15128 @{}l
15129 \end_layout
15130
15131 \begin_layout Standard
15132 Table\InsetSpace ~
15133
15134 \begin_inset LatexCommand ref
15135 reference "tab:Several-table-cell"
15136
15137 \end_inset
15138
15139  shows some example alignments.
15140  For the alignment with the relation sign, you must add the second smallest
15141  math-space at the beginning of the last column to get the correct space
15142  surrounding the relation sign.
15143 \end_layout
15144
15145 \begin_layout Standard
15146 \begin_inset Float table
15147 wide false
15148 sideways false
15149 status open
15150
15151 \begin_layout Standard
15152 \begin_inset Caption
15153
15154 \begin_layout Standard
15155 \begin_inset LatexCommand label
15156 name "tab:Several-table-cell"
15157
15158 \end_inset
15159
15160 Several table cell alignments.
15161 \end_layout
15162
15163 \end_inset
15164
15165
15166 \end_layout
15167
15168 \begin_layout Standard
15169 \align center
15170 \begin_inset Tabular
15171 <lyxtabular version="3" rows="4" columns="6">
15172 <features>
15173 <column alignment="right" valignment="top" width="0">
15174 <column alignment="left" valignment="top" rightline="true" width="0" special="@{}l">
15175 <column alignment="right" valignment="top" width="0">
15176 <column alignment="left" valignment="top" rightline="true" width="0" special="@{}l">
15177 <column alignment="right" valignment="top" width="0">
15178 <column alignment="left" valignment="top" width="0" special="@{}l">
15179 <row bottomline="true">
15180 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
15181 \begin_inset Text
15182
15183 \begin_layout Standard
15184 units
15185 \end_layout
15186
15187 \end_inset
15188 </cell>
15189 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15190 \begin_inset Text
15191
15192 \begin_layout Standard
15193
15194 \end_layout
15195
15196 \end_inset
15197 </cell>
15198 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
15199 \begin_inset Text
15200
15201 \begin_layout Standard
15202 exponents
15203 \end_layout
15204
15205 \end_inset
15206 </cell>
15207 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15208 \begin_inset Text
15209
15210 \begin_layout Standard
15211
15212 \end_layout
15213
15214 \end_inset
15215 </cell>
15216 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" usebox="none">
15217 \begin_inset Text
15218
15219 \begin_layout Standard
15220 relations
15221 \end_layout
15222
15223 \end_inset
15224 </cell>
15225 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15226 \begin_inset Text
15227
15228 \begin_layout Standard
15229
15230 \end_layout
15231
15232 \end_inset
15233 </cell>
15234 </row>
15235 <row>
15236 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15237 \begin_inset Text
15238
15239 \begin_layout Standard
15240 12×
15241 \end_layout
15242
15243 \end_inset
15244 </cell>
15245 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15246 \begin_inset Text
15247
15248 \begin_layout Standard
15249 24\InsetSpace \thinspace{}
15250 bottles
15251 \end_layout
15252
15253 \end_inset
15254 </cell>
15255 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15256 \begin_inset Text
15257
15258 \begin_layout Standard
15259 \begin_inset Formula $10\cdot$
15260 \end_inset
15261
15262
15263 \end_layout
15264
15265 \end_inset
15266 </cell>
15267 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15268 \begin_inset Text
15269
15270 \begin_layout Standard
15271 \begin_inset Formula $10^{\mbox{-}17}$
15272 \end_inset
15273
15274
15275 \end_layout
15276
15277 \end_inset
15278 </cell>
15279 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15280 \begin_inset Text
15281
15282 \begin_layout Standard
15283 \begin_inset Formula $\Gamma(t)\propto$
15284 \end_inset
15285
15286
15287 \end_layout
15288
15289 \end_inset
15290 </cell>
15291 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15292 \begin_inset Text
15293
15294 \begin_layout Standard
15295 \begin_inset Formula $\:\Upsilon(t)$
15296 \end_inset
15297
15298
15299 \end_layout
15300
15301 \end_inset
15302 </cell>
15303 </row>
15304 <row>
15305 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15306 \begin_inset Text
15307
15308 \begin_layout Standard
15309 1024×
15310 \end_layout
15311
15312 \end_inset
15313 </cell>
15314 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15315 \begin_inset Text
15316
15317 \begin_layout Standard
15318 768\InsetSpace \thinspace{}
15319 Pixels
15320 \end_layout
15321
15322 \end_inset
15323 </cell>
15324 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15325 \begin_inset Text
15326
15327 \begin_layout Standard
15328 \begin_inset Formula $5.78\cdot$
15329 \end_inset
15330
15331
15332 \end_layout
15333
15334 \end_inset
15335 </cell>
15336 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15337 \begin_inset Text
15338
15339 \begin_layout Standard
15340 \begin_inset Formula $10^{7}$
15341 \end_inset
15342
15343
15344 \end_layout
15345
15346 \end_inset
15347 </cell>
15348 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15349 \begin_inset Text
15350
15351 \begin_layout Standard
15352 \begin_inset Formula $A\ne$
15353 \end_inset
15354
15355
15356 \end_layout
15357
15358 \end_inset
15359 </cell>
15360 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15361 \begin_inset Text
15362
15363 \begin_layout Standard
15364 \begin_inset Formula $\: B_{\mathrm{red}}$
15365 \end_inset
15366
15367
15368 \end_layout
15369
15370 \end_inset
15371 </cell>
15372 </row>
15373 <row>
15374 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15375 \begin_inset Text
15376
15377 \begin_layout Standard
15378 32×
15379 \end_layout
15380
15381 \end_inset
15382 </cell>
15383 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15384 \begin_inset Text
15385
15386 \begin_layout Standard
15387 6\InsetSpace \thinspace{}
15388 cm
15389 \end_layout
15390
15391 \end_inset
15392 </cell>
15393 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15394 \begin_inset Text
15395
15396 \begin_layout Standard
15397 -
15398 \begin_inset Formula $33.5\cdot$
15399 \end_inset
15400
15401
15402 \end_layout
15403
15404 \end_inset
15405 </cell>
15406 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15407 \begin_inset Text
15408
15409 \begin_layout Standard
15410 \begin_inset Formula $10^{4}$
15411 \end_inset
15412
15413
15414 \end_layout
15415
15416 \end_inset
15417 </cell>
15418 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15419 \begin_inset Text
15420
15421 \begin_layout Standard
15422 \begin_inset Formula $\sin(\alpha)\ge$
15423 \end_inset
15424
15425
15426 \end_layout
15427
15428 \end_inset
15429 </cell>
15430 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15431 \begin_inset Text
15432
15433 \begin_layout Standard
15434 \begin_inset Formula $\:\sin(\beta)$
15435 \end_inset
15436
15437
15438 \end_layout
15439
15440 \end_inset
15441 </cell>
15442 </row>
15443 </lyxtabular>
15444
15445 \end_inset
15446
15447
15448 \end_layout
15449
15450 \end_inset
15451
15452
15453 \end_layout
15454
15455 \begin_layout Standard
15456 \begin_inset VSpace bigskip
15457 \end_inset
15458
15459 There is also the LaTeX-package 
15460 \series bold
15461 dcolumn
15462 \series default
15463
15464 \begin_inset LatexCommand index
15465 name "LaTeX-packages ! dcolumn"
15466
15467 \end_inset
15468
15469  that provides table cell alignments.
15470  But this unfortunately treats the cell entries as math and doesn't allow
15471  formulas in table cells: The first column of Table\InsetSpace ~
15472
15473 \begin_inset LatexCommand ref
15474 reference "tab:Several-table-cell"
15475
15476 \end_inset
15477
15478  will look with 
15479 \series bold
15480 dcolumn
15481 \series default
15482  like the first column in Table\InsetSpace ~
15483
15484 \begin_inset LatexCommand ref
15485 reference "tab:Alignments-when"
15486
15487 \end_inset
15488
15489  and only with some tricks like the expected.
15490  The alignment of the second and third column of Table\InsetSpace ~
15491
15492 \begin_inset LatexCommand ref
15493 reference "tab:Several-table-cell"
15494
15495 \end_inset
15496
15497  is not possible with 
15498 \series bold
15499 dcolumn
15500 \series default
15501 .
15502 \end_layout
15503
15504 \begin_layout Standard
15505 \begin_inset Float table
15506 placement h
15507 wide false
15508 sideways false
15509 status open
15510
15511 \begin_layout Standard
15512 \begin_inset Caption
15513
15514 \begin_layout Standard
15515 \begin_inset LatexCommand label
15516 name "tab:Alignments-when"
15517
15518 \end_inset
15519
15520 Alignments when LaTeX-package dcolumn is used.
15521  For all column alignments tricks have to be used to get the output.
15522 \end_layout
15523
15524 \end_inset
15525
15526
15527 \end_layout
15528
15529 \begin_layout Standard
15530 \align center
15531 \begin_inset Tabular
15532 <lyxtabular version="3" rows="4" columns="3">
15533 <features>
15534 <column alignment="center" valignment="top" rightline="true" width="0" special="D{x}{\times}{-1}">
15535 <column alignment="center" valignment="top" rightline="true" width="0" special="D{x}{\times}{4.9}">
15536 <column alignment="center" valignment="top" width="0" special="D{~}{\,}{9.7}">
15537 <row bottomline="true">
15538 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
15539 \begin_inset Text
15540
15541 \begin_layout Standard
15542 units
15543 \end_layout
15544
15545 \end_inset
15546 </cell>
15547 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
15548 \begin_inset Text
15549
15550 \begin_layout Standard
15551 units
15552 \end_layout
15553
15554 \end_inset
15555 </cell>
15556 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" usebox="none">
15557 \begin_inset Text
15558
15559 \begin_layout Standard
15560 units
15561 \end_layout
15562
15563 \end_inset
15564 </cell>
15565 </row>
15566 <row>
15567 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15568 \begin_inset Text
15569
15570 \begin_layout Standard
15571 12x24\InsetSpace \thinspace{}
15572 bottles
15573 \end_layout
15574
15575 \end_inset
15576 </cell>
15577 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15578 \begin_inset Text
15579
15580 \begin_layout Standard
15581 12x24\InsetSpace \thinspace{}
15582
15583 \begin_inset Formula $\mbox{bottles}$
15584 \end_inset
15585
15586
15587 \end_layout
15588
15589 \end_inset
15590 </cell>
15591 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15592 \begin_inset Text
15593
15594 \begin_layout Standard
15595 12
15596 \begin_inset ERT
15597 status collapsed
15598
15599 \begin_layout Standard
15600
15601
15602 \backslash
15603 times 
15604 \end_layout
15605
15606 \end_inset
15607
15608 24~
15609 \begin_inset Formula $\mbox{bottles}$
15610 \end_inset
15611
15612
15613 \end_layout
15614
15615 \end_inset
15616 </cell>
15617 </row>
15618 <row>
15619 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15620 \begin_inset Text
15621
15622 \begin_layout Standard
15623 1024x768\InsetSpace \thinspace{}
15624 Pixels
15625 \end_layout
15626
15627 \end_inset
15628 </cell>
15629 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15630 \begin_inset Text
15631
15632 \begin_layout Standard
15633 1024x768\InsetSpace \thinspace{}
15634
15635 \begin_inset Formula $\mbox{Pixels}$
15636 \end_inset
15637
15638
15639 \end_layout
15640
15641 \end_inset
15642 </cell>
15643 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15644 \begin_inset Text
15645
15646 \begin_layout Standard
15647 1024
15648 \begin_inset ERT
15649 status collapsed
15650
15651 \begin_layout Standard
15652
15653
15654 \backslash
15655 times 
15656 \end_layout
15657
15658 \end_inset
15659
15660 768~
15661 \begin_inset Formula $\mbox{Pixels}$
15662 \end_inset
15663
15664
15665 \end_layout
15666
15667 \end_inset
15668 </cell>
15669 </row>
15670 <row>
15671 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15672 \begin_inset Text
15673
15674 \begin_layout Standard
15675 32x6\InsetSpace \thinspace{}
15676 cm
15677 \end_layout
15678
15679 \end_inset
15680 </cell>
15681 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15682 \begin_inset Text
15683
15684 \begin_layout Standard
15685 32x6\InsetSpace \thinspace{}
15686
15687 \begin_inset Formula $\mbox{cm}$
15688 \end_inset
15689
15690
15691 \end_layout
15692
15693 \end_inset
15694 </cell>
15695 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15696 \begin_inset Text
15697
15698 \begin_layout Standard
15699 32
15700 \begin_inset ERT
15701 status collapsed
15702
15703 \begin_layout Standard
15704
15705
15706 \backslash
15707 times 
15708 \end_layout
15709
15710 \end_inset
15711
15712 6~
15713 \begin_inset Formula $\mbox{cm}$
15714 \end_inset
15715
15716
15717 \end_layout
15718
15719 \end_inset
15720 </cell>
15721 </row>
15722 </lyxtabular>
15723
15724 \end_inset
15725
15726
15727 \end_layout
15728
15729 \end_inset
15730
15731
15732 \end_layout
15733
15734 \begin_layout Subsection
15735 Customized Cell/Column Format
15736 \begin_inset LatexCommand label
15737 name "sub:Customized-Format"
15738
15739 \end_inset
15740
15741
15742 \begin_inset LatexCommand index
15743 name "Table Customization ! Cell/Column Format"
15744
15745 \end_inset
15746
15747
15748 \end_layout
15749
15750 \begin_layout Standard
15751 Calculating the needed width for spanned columns like in section\InsetSpace ~
15752
15753 \begin_inset LatexCommand ref
15754 reference "sub:Multicolumn-Calculations"
15755
15756 \end_inset
15757
15758  is very annoying if you have several tables with multicolumn cells.
15759  To make life easier, you can define a cell/column format in the preamble,
15760  so that it can be used in all tables of the document.
15761  The format is defined with the command
15762 \end_layout
15763
15764 \begin_layout Standard
15765
15766 \series bold
15767
15768 \backslash
15769 newcolumntype{name of format}[number of arguments]{commands}
15770 \end_layout
15771
15772 \begin_layout Standard
15773 The format name may only consist of one letter.
15774  The letters 
15775 \emph on
15776 b
15777 \emph default
15778
15779 \emph on
15780 c
15781 \emph default
15782
15783 \emph on
15784 l
15785 \emph default
15786
15787 \emph on
15788 m
15789 \emph default
15790
15791 \emph on
15792 p
15793 \emph default
15794  and 
15795 \emph on
15796 r
15797 \emph default
15798  are predefined and cannot be used.
15799  But all letters are allowed as capitals.
15800 \end_layout
15801
15802 \begin_layout Standard
15803 \begin_inset VSpace medskip
15804 \end_inset
15805
15806
15807 \end_layout
15808
15809 \begin_layout Standard
15810 For vertically and horizontally centered multicolumn cells with a fixed
15811  width you can define the cell format
15812 \end_layout
15813
15814 \begin_layout Standard
15815
15816 \series bold
15817
15818 \backslash
15819 newcolumntype{M}[1]{>{
15820 \backslash
15821 centering
15822 \backslash
15823 hspace{0pt}}m{#1}}
15824 \end_layout
15825
15826 \begin_layout Standard
15827 where 
15828 \series bold
15829
15830 \backslash
15831 hspace{0pt}
15832 \series default
15833  avoids the problem of hyphenating the first word, as described in section\InsetSpace ~
15834
15835 \begin_inset LatexCommand ref
15836 reference "sub:Multiple-Lines-in"
15837
15838 \end_inset
15839
15840 .
15841  Now you can simply enter
15842 \end_layout
15843
15844 \begin_layout Standard
15845
15846 \series bold
15847 M{width}
15848 \end_layout
15849
15850 \begin_layout Standard
15851 as LaTeX-argument in the table dialog to create a multicolumn.
15852 \end_layout
15853
15854 \begin_layout Standard
15855 \begin_inset VSpace bigskip
15856 \end_inset
15857
15858
15859 \end_layout
15860
15861 \begin_layout Standard
15862 For cells spanned by a multicolumn cell, you can define the format
15863 \end_layout
15864
15865 \begin_layout Standard
15866
15867 \series bold
15868
15869 \backslash
15870 newcolumntype{S}[2]{>{
15871 \backslash
15872 centering
15873 \backslash
15874 hspace{0pt}}
15875 \newline
15876
15877 \begin_inset ERT
15878 status collapsed
15879
15880 \begin_layout Standard
15881
15882
15883 \backslash
15884 phantom{
15885 \end_layout
15886
15887 \end_inset
15888
15889
15890 \backslash
15891 newcolumntype{S}[2]
15892 \begin_inset ERT
15893 status collapsed
15894
15895 \begin_layout Standard
15896
15897 }
15898 \end_layout
15899
15900 \end_inset
15901
15902 m{(#1+(2
15903 \backslash
15904 tabcolsep+
15905 \backslash
15906 arrayrulewidth)*(1-#2))/#2}}
15907 \end_layout
15908
15909 \begin_layout Standard
15910 This format uses equation 
15911 \begin_inset LatexCommand eqref
15912 reference "eq:Wgn"
15913
15914 \end_inset
15915
15916  to calculate the needed width so that each spanned cell has the same width.
15917 \end_layout
15918
15919 \begin_layout Standard
15920 You can now enter
15921 \end_layout
15922
15923 \begin_layout Standard
15924
15925 \series bold
15926 S{width of multicolumn cell}{number of spanned columns}
15927 \end_layout
15928
15929 \begin_layout Standard
15930 as LaTeX-argument of the column.
15931 \end_layout
15932
15933 \begin_layout Standard
15934 \begin_inset VSpace bigskip
15935 \end_inset
15936
15937
15938 \end_layout
15939
15940 \begin_layout Standard
15941 For colored columns, you can define
15942 \end_layout
15943
15944 \begin_layout Standard
15945
15946 \series bold
15947
15948 \backslash
15949 newcolumntype{K}[1]{>{
15950 \backslash
15951 columncolor{#1}
15952 \backslash
15953 hspace{0pt}}c}
15954 \end_layout
15955
15956 \begin_layout Standard
15957 The 
15958 \begin_inset Quotes eld
15959 \end_inset
15960
15961 c
15962 \begin_inset Quotes erd
15963 \end_inset
15964
15965  at the end creates a column with a flexible width whose text is horizontally
15966  centered.
15967  You can now enter
15968 \end_layout
15969
15970 \begin_layout Standard
15971
15972 \series bold
15973 K{color name}
15974 \end_layout
15975
15976 \begin_layout Standard
15977 as LaTeX-argument.
15978 \end_layout
15979
15980 \begin_layout Standard
15981 \begin_inset VSpace bigskip
15982 \end_inset
15983
15984
15985 \end_layout
15986
15987 \begin_layout Standard
15988 To create Table\InsetSpace ~
15989
15990 \begin_inset LatexCommand ref
15991 reference "tab:Table-using-user-defined"
15992
15993 \end_inset
15994
15995  use the LaTeX-arguments
15996 \end_layout
15997
15998 \begin_layout Standard
15999
16000 \series bold
16001 M{2.5cm}
16002 \end_layout
16003
16004 \begin_layout Standard
16005 for the first column and the multicolumn,
16006 \end_layout
16007
16008 \begin_layout Standard
16009
16010 \series bold
16011 K{red}
16012 \end_layout
16013
16014 \begin_layout Standard
16015 for the the last column, and
16016 \end_layout
16017
16018 \begin_layout Standard
16019
16020 \series bold
16021 S{2.5cm}{2}
16022 \end_layout
16023
16024 \begin_layout Standard
16025 for the cells in the second column.
16026 \end_layout
16027
16028 \begin_layout Standard
16029 \begin_inset Float table
16030 placement h
16031 wide false
16032 sideways false
16033 status open
16034
16035 \begin_layout Standard
16036 \begin_inset Caption
16037
16038 \begin_layout Standard
16039 \begin_inset LatexCommand label
16040 name "tab:Table-using-user-defined"
16041
16042 \end_inset
16043
16044 Table using user-defined table formats
16045 \end_layout
16046
16047 \end_inset
16048
16049
16050 \end_layout
16051
16052 \begin_layout Standard
16053 \align center
16054 \begin_inset Tabular
16055 <lyxtabular version="3" rows="3" columns="4">
16056 <features>
16057 <column alignment="center" valignment="middle" leftline="true" width="2.5cm" special="M{2.5cm}">
16058 <column alignment="center" valignment="middle" leftline="true" width="0" special="S{2.5cm}{2}">
16059 <column alignment="center" valignment="middle" leftline="true" width="0">
16060 <column alignment="center" valignment="middle" leftline="true" rightline="true" width="0" special="K{red}">
16061 <row topline="true">
16062 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16063 \begin_inset Text
16064
16065 \begin_layout Standard
16066 verylongtablecellword
16067 \end_layout
16068
16069 \end_inset
16070 </cell>
16071 <cell multicolumn="1" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none" special="M{2.5cm}">
16072 \begin_inset Text
16073
16074 \begin_layout Standard
16075 multiple lines multicolumn
16076 \end_layout
16077
16078 \end_inset
16079 </cell>
16080 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16081 \begin_inset Text
16082
16083 \begin_layout Standard
16084
16085 \end_layout
16086
16087 \end_inset
16088 </cell>
16089 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16090 \begin_inset Text
16091
16092 \begin_layout Standard
16093 c
16094 \end_layout
16095
16096 \end_inset
16097 </cell>
16098 </row>
16099 <row topline="true">
16100 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16101 \begin_inset Text
16102
16103 \begin_layout Standard
16104 d
16105 \end_layout
16106
16107 \end_inset
16108 </cell>
16109 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16110 \begin_inset Text
16111
16112 \begin_layout Standard
16113 e
16114 \end_layout
16115
16116 \end_inset
16117 </cell>
16118 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16119 \begin_inset Text
16120
16121 \begin_layout Standard
16122 f
16123 \end_layout
16124
16125 \end_inset
16126 </cell>
16127 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16128 \begin_inset Text
16129
16130 \begin_layout Standard
16131 g
16132 \end_layout
16133
16134 \end_inset
16135 </cell>
16136 </row>
16137 <row topline="true" bottomline="true">
16138 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16139 \begin_inset Text
16140
16141 \begin_layout Standard
16142 h
16143 \end_layout
16144
16145 \end_inset
16146 </cell>
16147 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16148 \begin_inset Text
16149
16150 \begin_layout Standard
16151 i
16152 \end_layout
16153
16154 \end_inset
16155 </cell>
16156 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16157 \begin_inset Text
16158
16159 \begin_layout Standard
16160 j
16161 \end_layout
16162
16163 \end_inset
16164 </cell>
16165 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16166 \begin_inset Text
16167
16168 \begin_layout Standard
16169 k
16170 \end_layout
16171
16172 \end_inset
16173 </cell>
16174 </row>
16175 </lyxtabular>
16176
16177 \end_inset
16178
16179
16180 \end_layout
16181
16182 \end_inset
16183
16184
16185 \end_layout
16186
16187 \begin_layout Subsection
16188 Line Thickness
16189 \begin_inset LatexCommand label
16190 name "sub:Line-Thickness"
16191
16192 \end_inset
16193
16194
16195 \begin_inset LatexCommand index
16196 name "Table Customization ! Line Thickness"
16197
16198 \end_inset
16199
16200
16201 \end_layout
16202
16203 \begin_layout Standard
16204 The line thickness for all lines in a table can be adjusted with the length
16205  
16206 \series bold
16207
16208 \backslash
16209 arrayrulewidth
16210 \series default
16211 .
16212  To set for example a line thickness of 1.5\InsetSpace \thinspace{}
16213 pt, like in Table\InsetSpace ~
16214
16215 \begin_inset LatexCommand ref
16216 reference "tab:Table-with-1.5"
16217
16218 \end_inset
16219
16220 , insert the command
16221 \end_layout
16222
16223 \begin_layout Standard
16224
16225 \series bold
16226
16227 \backslash
16228 setlength{
16229 \backslash
16230 arrayrulewidth}{1.5pt}
16231 \end_layout
16232
16233 \begin_layout Standard
16234 in ERT before the table or table float.
16235  The changed thickness is valid for all following tables.
16236  To use the default value again, set 
16237 \series bold
16238
16239 \backslash
16240 arrayrulewidth
16241 \series default
16242  to 0.4\InsetSpace \thinspace{}
16243 pt in ERT behind the table or table float.
16244 \end_layout
16245
16246 \begin_layout Standard
16247 \begin_inset ERT
16248 status collapsed
16249
16250 \begin_layout Standard
16251
16252
16253 \backslash
16254 setlength{
16255 \backslash
16256 arrayrulewidth}{1.5pt}
16257 \end_layout
16258
16259 \end_inset
16260
16261
16262 \begin_inset Float table
16263 wide false
16264 sideways false
16265 status open
16266
16267 \begin_layout Standard
16268 \begin_inset Caption
16269
16270 \begin_layout Standard
16271 \begin_inset LatexCommand label
16272 name "tab:Table-with-1.5"
16273
16274 \end_inset
16275
16276 Table with 1.5\InsetSpace \thinspace{}
16277 pt thick lines
16278 \end_layout
16279
16280 \end_inset
16281
16282
16283 \end_layout
16284
16285 \begin_layout Standard
16286 \align center
16287 \begin_inset Tabular
16288 <lyxtabular version="3" rows="3" columns="3">
16289 <features>
16290 <column alignment="center" valignment="top" leftline="true" width="0">
16291 <column alignment="center" valignment="top" leftline="true" width="0">
16292 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
16293 <row topline="true">
16294 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16295 \begin_inset Text
16296
16297 \begin_layout Standard
16298 sd
16299 \end_layout
16300
16301 \end_inset
16302 </cell>
16303 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16304 \begin_inset Text
16305
16306 \begin_layout Standard
16307
16308 \end_layout
16309
16310 \end_inset
16311 </cell>
16312 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16313 \begin_inset Text
16314
16315 \begin_layout Standard
16316
16317 \end_layout
16318
16319 \end_inset
16320 </cell>
16321 </row>
16322 <row topline="true">
16323 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16324 \begin_inset Text
16325
16326 \begin_layout Standard
16327
16328 \end_layout
16329
16330 \end_inset
16331 </cell>
16332 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16333 \begin_inset Text
16334
16335 \begin_layout Standard
16336 sd
16337 \end_layout
16338
16339 \end_inset
16340 </cell>
16341 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16342 \begin_inset Text
16343
16344 \begin_layout Standard
16345
16346 \end_layout
16347
16348 \end_inset
16349 </cell>
16350 </row>
16351 <row topline="true" bottomline="true">
16352 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16353 \begin_inset Text
16354
16355 \begin_layout Standard
16356
16357 \end_layout
16358
16359 \end_inset
16360 </cell>
16361 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16362 \begin_inset Text
16363
16364 \begin_layout Standard
16365
16366 \end_layout
16367
16368 \end_inset
16369 </cell>
16370 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16371 \begin_inset Text
16372
16373 \begin_layout Standard
16374 sd
16375 \end_layout
16376
16377 \end_inset
16378 </cell>
16379 </row>
16380 </lyxtabular>
16381
16382 \end_inset
16383
16384
16385 \end_layout
16386
16387 \end_inset
16388
16389
16390 \begin_inset ERT
16391 status collapsed
16392
16393 \begin_layout Standard
16394
16395
16396 \backslash
16397 setlength{
16398 \backslash
16399 arrayrulewidth}{0.4pt}
16400 \end_layout
16401
16402 \end_inset
16403
16404
16405 \end_layout
16406
16407 \begin_layout Standard
16408 \begin_inset VSpace bigskip
16409 \end_inset
16410
16411 To set the line thickness to 1.5\InsetSpace \thinspace{}
16412 pt only for horizontal lines, like in Table\InsetSpace ~
16413
16414 \begin_inset LatexCommand ref
16415 reference "tab:Table-with-horizontal"
16416
16417 \end_inset
16418
16419 , insert these commands in ERT before the table or table float:
16420 \end_layout
16421
16422 \begin_layout Standard
16423
16424 \series bold
16425
16426 \backslash
16427 let
16428 \backslash
16429 myHline
16430 \backslash
16431 hline
16432 \newline
16433
16434 \backslash
16435 renewcommand{
16436 \backslash
16437 hline}
16438 \newline
16439  {
16440 \backslash
16441 noalign{
16442 \backslash
16443 global
16444 \backslash
16445 arrayrulewidth 1.5pt}
16446 \newline
16447  
16448 \backslash
16449 myHline
16450 \backslash
16451 noalign{
16452 \backslash
16453 global
16454 \backslash
16455 arrayrulewidth 0.4pt}}
16456 \end_layout
16457
16458 \begin_layout Standard
16459 To return to the default line thickness, insert this command in ERT behind
16460  the table or table float:
16461 \end_layout
16462
16463 \begin_layout Standard
16464
16465 \series bold
16466
16467 \backslash
16468 renewcommand{
16469 \backslash
16470 hline}{
16471 \backslash
16472 myHline}
16473 \end_layout
16474
16475 \begin_layout Standard
16476 \begin_inset ERT
16477 status collapsed
16478
16479 \begin_layout Standard
16480
16481
16482 \backslash
16483 let
16484 \backslash
16485 myHline
16486 \backslash
16487 hline
16488 \end_layout
16489
16490 \begin_layout Standard
16491
16492
16493 \backslash
16494 renewcommand{
16495 \backslash
16496 hline}
16497 \end_layout
16498
16499 \begin_layout Standard
16500
16501  {
16502 \backslash
16503 noalign{
16504 \backslash
16505 global
16506 \backslash
16507 arrayrulewidth 1.5pt}
16508 \end_layout
16509
16510 \begin_layout Standard
16511
16512   
16513 \backslash
16514 myHline
16515 \backslash
16516 noalign{
16517 \backslash
16518 global
16519 \backslash
16520 arrayrulewidth 0.4pt}}
16521 \end_layout
16522
16523 \end_inset
16524
16525
16526 \begin_inset Float table
16527 wide false
16528 sideways false
16529 status open
16530
16531 \begin_layout Standard
16532 \begin_inset Caption
16533
16534 \begin_layout Standard
16535 \begin_inset LatexCommand label
16536 name "tab:Table-with-horizontal"
16537
16538 \end_inset
16539
16540 Table with 1.5\InsetSpace \thinspace{}
16541 pt thick horizontal lines
16542 \end_layout
16543
16544 \end_inset
16545
16546
16547 \end_layout
16548
16549 \begin_layout Standard
16550 \align center
16551 \begin_inset Tabular
16552 <lyxtabular version="3" rows="3" columns="3">
16553 <features>
16554 <column alignment="center" valignment="top" leftline="true" width="0">
16555 <column alignment="center" valignment="top" leftline="true" width="0">
16556 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
16557 <row topline="true">
16558 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16559 \begin_inset Text
16560
16561 \begin_layout Standard
16562 sd
16563 \end_layout
16564
16565 \end_inset
16566 </cell>
16567 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16568 \begin_inset Text
16569
16570 \begin_layout Standard
16571
16572 \end_layout
16573
16574 \end_inset
16575 </cell>
16576 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16577 \begin_inset Text
16578
16579 \begin_layout Standard
16580
16581 \end_layout
16582
16583 \end_inset
16584 </cell>
16585 </row>
16586 <row topline="true">
16587 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16588 \begin_inset Text
16589
16590 \begin_layout Standard
16591
16592 \end_layout
16593
16594 \end_inset
16595 </cell>
16596 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16597 \begin_inset Text
16598
16599 \begin_layout Standard
16600 sd
16601 \end_layout
16602
16603 \end_inset
16604 </cell>
16605 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16606 \begin_inset Text
16607
16608 \begin_layout Standard
16609
16610 \end_layout
16611
16612 \end_inset
16613 </cell>
16614 </row>
16615 <row topline="true" bottomline="true">
16616 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16617 \begin_inset Text
16618
16619 \begin_layout Standard
16620
16621 \end_layout
16622
16623 \end_inset
16624 </cell>
16625 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16626 \begin_inset Text
16627
16628 \begin_layout Standard
16629
16630 \end_layout
16631
16632 \end_inset
16633 </cell>
16634 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16635 \begin_inset Text
16636
16637 \begin_layout Standard
16638 sd
16639 \end_layout
16640
16641 \end_inset
16642 </cell>
16643 </row>
16644 </lyxtabular>
16645
16646 \end_inset
16647
16648
16649 \end_layout
16650
16651 \end_inset
16652
16653
16654 \begin_inset ERT
16655 status collapsed
16656
16657 \begin_layout Standard
16658
16659
16660 \backslash
16661 renewcommand{
16662 \backslash
16663 hline}{
16664 \backslash
16665 myHline}
16666 \end_layout
16667
16668 \end_inset
16669
16670
16671 \end_layout
16672
16673 \begin_layout Standard
16674 \begin_inset VSpace bigskip
16675 \end_inset
16676
16677 To set the line thickness to 1.5\InsetSpace \thinspace{}
16678 pt only for vertical lines, create the following
16679  column format in the document preamble, according to the description in
16680  section\InsetSpace ~
16681
16682 \begin_inset LatexCommand ref
16683 reference "sub:Customized-Format"
16684
16685 \end_inset
16686
16687 :
16688 \end_layout
16689
16690 \begin_layout Standard
16691
16692 \series bold
16693
16694 \backslash
16695 newcolumntype{V}{!{
16696 \backslash
16697 vrule width 1.5pt}}
16698 \end_layout
16699
16700 \begin_layout Standard
16701 For Table\InsetSpace ~
16702
16703 \begin_inset LatexCommand ref
16704 reference "tab:Table-with-vertical"
16705
16706 \end_inset
16707
16708  the LaTeX-argument
16709 \end_layout
16710
16711 \begin_layout Standard
16712
16713 \series bold
16714 VcV
16715 \end_layout
16716
16717 \begin_layout Standard
16718 was used for the last column and
16719 \end_layout
16720
16721 \begin_layout Standard
16722
16723 \series bold
16724 Vc
16725 \end_layout
16726
16727 \begin_layout Standard
16728 for the other columns.
16729 \end_layout
16730
16731 \begin_layout Standard
16732 \begin_inset Float table
16733 wide false
16734 sideways false
16735 status open
16736
16737 \begin_layout Standard
16738 \begin_inset Caption
16739
16740 \begin_layout Standard
16741 \begin_inset LatexCommand label
16742 name "tab:Table-with-vertical"
16743
16744 \end_inset
16745
16746 Table with 1.5\InsetSpace \thinspace{}
16747 pt thick vertical lines
16748 \end_layout
16749
16750 \end_inset
16751
16752
16753 \end_layout
16754
16755 \begin_layout Standard
16756 \align center
16757 \begin_inset Tabular
16758 <lyxtabular version="3" rows="3" columns="3">
16759 <features>
16760 <column alignment="center" valignment="top" width="0" special="Vc">
16761 <column alignment="center" valignment="top" width="0" special="Vc">
16762 <column alignment="center" valignment="top" width="0" special="VcV">
16763 <row topline="true">
16764 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16765 \begin_inset Text
16766
16767 \begin_layout Standard
16768 sd
16769 \end_layout
16770
16771 \end_inset
16772 </cell>
16773 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16774 \begin_inset Text
16775
16776 \begin_layout Standard
16777
16778 \end_layout
16779
16780 \end_inset
16781 </cell>
16782 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16783 \begin_inset Text
16784
16785 \begin_layout Standard
16786
16787 \end_layout
16788
16789 \end_inset
16790 </cell>
16791 </row>
16792 <row topline="true">
16793 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16794 \begin_inset Text
16795
16796 \begin_layout Standard
16797
16798 \end_layout
16799
16800 \end_inset
16801 </cell>
16802 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16803 \begin_inset Text
16804
16805 \begin_layout Standard
16806 sd
16807 \end_layout
16808
16809 \end_inset
16810 </cell>
16811 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16812 \begin_inset Text
16813
16814 \begin_layout Standard
16815
16816 \end_layout
16817
16818 \end_inset
16819 </cell>
16820 </row>
16821 <row topline="true" bottomline="true">
16822 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16823 \begin_inset Text
16824
16825 \begin_layout Standard
16826
16827 \end_layout
16828
16829 \end_inset
16830 </cell>
16831 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16832 \begin_inset Text
16833
16834 \begin_layout Standard
16835
16836 \end_layout
16837
16838 \end_inset
16839 </cell>
16840 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16841 \begin_inset Text
16842
16843 \begin_layout Standard
16844 sd
16845 \end_layout
16846
16847 \end_inset
16848 </cell>
16849 </row>
16850 </lyxtabular>
16851
16852 \end_inset
16853
16854
16855 \end_layout
16856
16857 \end_inset
16858
16859
16860 \end_layout
16861
16862 \begin_layout Subsection
16863 Dashed Lines
16864 \begin_inset LatexCommand index
16865 name "Table Customization ! Dashed Lines"
16866
16867 \end_inset
16868
16869
16870 \end_layout
16871
16872 \begin_layout Standard
16873 \begin_inset ERT
16874 status collapsed
16875
16876 \begin_layout Standard
16877
16878
16879 \backslash
16880 ifarydshln
16881 \end_layout
16882
16883 \end_inset
16884
16885
16886 \begin_inset Note Note
16887 status open
16888
16889 \begin_layout Standard
16890 The following section will only be displayed when you have the LaTeX-package
16891  
16892 \series bold
16893 arydshln
16894 \series default
16895  is installed.
16896 \end_layout
16897
16898 \end_inset
16899
16900
16901 \end_layout
16902
16903 \begin_layout Standard
16904 \begin_inset Float table
16905 placement H
16906 wide false
16907 sideways false
16908 status open
16909
16910 \begin_layout Standard
16911 \begin_inset Caption
16912
16913 \begin_layout Standard
16914 \begin_inset LatexCommand label
16915 name "tab:Table-with-dashed"
16916
16917 \end_inset
16918
16919 Table with dashed lines
16920 \end_layout
16921
16922 \end_inset
16923
16924
16925 \end_layout
16926
16927 \begin_layout Standard
16928 \align center
16929 \begin_inset Tabular
16930 <lyxtabular version="3" rows="5" columns="5">
16931 <features>
16932 <column alignment="center" valignment="top" leftline="true" width="0">
16933 <column alignment="center" valignment="top" leftline="true" width="0">
16934 <column alignment="center" valignment="top" width="0" special=":c">
16935 <column alignment="center" valignment="top" leftline="true" width="0">
16936 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
16937 <row topline="true" bottomline="true">
16938 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16939 \begin_inset Text
16940
16941 \begin_layout Standard
16942 a
16943 \end_layout
16944
16945 \end_inset
16946 </cell>
16947 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16948 \begin_inset Text
16949
16950 \begin_layout Standard
16951 b
16952 \end_layout
16953
16954 \end_inset
16955 </cell>
16956 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16957 \begin_inset Text
16958
16959 \begin_layout Standard
16960 c
16961 \end_layout
16962
16963 \end_inset
16964 </cell>
16965 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16966 \begin_inset Text
16967
16968 \begin_layout Standard
16969 d
16970 \end_layout
16971
16972 \end_inset
16973 </cell>
16974 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16975 \begin_inset Text
16976
16977 \begin_layout Standard
16978 e
16979 \end_layout
16980
16981 \end_inset
16982 </cell>
16983 </row>
16984 <row topline="true">
16985 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16986 \begin_inset Text
16987
16988 \begin_layout Standard
16989 f
16990 \end_layout
16991
16992 \end_inset
16993 </cell>
16994 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16995 \begin_inset Text
16996
16997 \begin_layout Standard
16998 g
16999 \end_layout
17000
17001 \end_inset
17002 </cell>
17003 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17004 \begin_inset Text
17005
17006 \begin_layout Standard
17007 h
17008 \end_layout
17009
17010 \end_inset
17011 </cell>
17012 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17013 \begin_inset Text
17014
17015 \begin_layout Standard
17016 i
17017 \end_layout
17018
17019 \end_inset
17020 </cell>
17021 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17022 \begin_inset Text
17023
17024 \begin_layout Standard
17025 j
17026 \end_layout
17027
17028 \end_inset
17029 </cell>
17030 </row>
17031 <row>
17032 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17033 \begin_inset Text
17034
17035 \begin_layout Standard
17036 \begin_inset ERT
17037 status collapsed
17038
17039 \begin_layout Standard
17040
17041
17042 \backslash
17043 hdashline 
17044 \end_layout
17045
17046 \end_inset
17047
17048 k
17049 \end_layout
17050
17051 \end_inset
17052 </cell>
17053 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17054 \begin_inset Text
17055
17056 \begin_layout Standard
17057 l
17058 \end_layout
17059
17060 \end_inset
17061 </cell>
17062 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17063 \begin_inset Text
17064
17065 \begin_layout Standard
17066 m
17067 \end_layout
17068
17069 \end_inset
17070 </cell>
17071 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17072 \begin_inset Text
17073
17074 \begin_layout Standard
17075 n
17076 \end_layout
17077
17078 \end_inset
17079 </cell>
17080 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17081 \begin_inset Text
17082
17083 \begin_layout Standard
17084 o
17085 \end_layout
17086
17087 \end_inset
17088 </cell>
17089 </row>
17090 <row topline="true">
17091 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17092 \begin_inset Text
17093
17094 \begin_layout Standard
17095 \begin_inset ERT
17096 status collapsed
17097
17098 \begin_layout Standard
17099
17100
17101 \backslash
17102 cdashline{4-5}
17103 \end_layout
17104
17105 \end_inset
17106
17107 p
17108 \end_layout
17109
17110 \end_inset
17111 </cell>
17112 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17113 \begin_inset Text
17114
17115 \begin_layout Standard
17116 q
17117 \end_layout
17118
17119 \end_inset
17120 </cell>
17121 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none" special="c:">
17122 \begin_inset Text
17123
17124 \begin_layout Standard
17125 r
17126 \end_layout
17127
17128 \end_inset
17129 </cell>
17130 <cell multicolumn="1" alignment="center" valignment="top" rightline="true" usebox="none" special="c:">
17131 \begin_inset Text
17132
17133 \begin_layout Standard
17134 s
17135 \end_layout
17136
17137 \end_inset
17138 </cell>
17139 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17140 \begin_inset Text
17141
17142 \begin_layout Standard
17143
17144 \end_layout
17145
17146 \end_inset
17147 </cell>
17148 </row>
17149 <row topline="true" bottomline="true">
17150 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17151 \begin_inset Text
17152
17153 \begin_layout Standard
17154 t
17155 \end_layout
17156
17157 \end_inset
17158 </cell>
17159 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17160 \begin_inset Text
17161
17162 \begin_layout Standard
17163 u
17164 \end_layout
17165
17166 \end_inset
17167 </cell>
17168 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17169 \begin_inset Text
17170
17171 \begin_layout Standard
17172 v
17173 \end_layout
17174
17175 \end_inset
17176 </cell>
17177 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17178 \begin_inset Text
17179
17180 \begin_layout Standard
17181 w
17182 \end_layout
17183
17184 \end_inset
17185 </cell>
17186 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17187 \begin_inset Text
17188
17189 \begin_layout Standard
17190 x
17191 \end_layout
17192
17193 \end_inset
17194 </cell>
17195 </row>
17196 </lyxtabular>
17197
17198 \end_inset
17199
17200
17201 \end_layout
17202
17203 \end_inset
17204
17205
17206 \end_layout
17207
17208 \begin_layout Standard
17209 LyX doesn't natively support dashed lines, so you have to use ERT.
17210  As prerequisite the LaTeX-package 
17211 \series bold
17212 arydshln
17213 \series default
17214
17215 \begin_inset LatexCommand index
17216 name "LaTeX-packages ! arydshln"
17217
17218 \end_inset
17219
17220  must be loaded in the document preamble with the command
17221 \end_layout
17222
17223 \begin_layout Standard
17224
17225 \series bold
17226
17227 \backslash
17228 usepackage{arydshln}
17229 \end_layout
17230
17231 \begin_layout Standard
17232 To make a vertical line dashed, enter the colon 
17233 \begin_inset Quotes eld
17234 \end_inset
17235
17236 :
17237 \begin_inset Quotes erd
17238 \end_inset
17239
17240  together with the character for the horizontal alignment as LaTeX-argument
17241  in the table cell dialog.
17242 \end_layout
17243
17244 \begin_layout Standard
17245 For a horizontal dashed line add the command
17246 \end_layout
17247
17248 \begin_layout Standard
17249
17250 \series bold
17251
17252 \backslash
17253 hdashline
17254 \end_layout
17255
17256 \begin_layout Standard
17257 in ERT as first element of the first cell in the table row.
17258 \end_layout
17259
17260 \begin_layout Standard
17261 For dashed multicolumn lines use the command
17262 \end_layout
17263
17264 \begin_layout Standard
17265
17266 \series bold
17267
17268 \backslash
17269 cdashline{line number
17270 \series default
17271 }
17272 \end_layout
17273
17274 \begin_layout Standard
17275 in ERT as first element of the first cell in the table row.
17276  If you have for example a multicolumn spanning over columns 2 to 4 and
17277  you want to have a dashed line above, add the command
17278 \end_layout
17279
17280 \begin_layout Standard
17281
17282 \series bold
17283
17284 \backslash
17285 cdashline{2-4}
17286 \end_layout
17287
17288 \begin_layout Standard
17289 as first element of the first cell in the row of the multicolumn.
17290 \end_layout
17291
17292 \begin_layout Standard
17293 \begin_inset VSpace bigskip
17294 \end_inset
17295
17296
17297 \end_layout
17298
17299 \begin_layout Standard
17300 Table\InsetSpace ~
17301
17302 \begin_inset LatexCommand ref
17303 reference "tab:Table-with-dashed"
17304
17305 \end_inset
17306
17307  was created using 
17308 \begin_inset Quotes eld
17309 \end_inset
17310
17311
17312 \series bold
17313 :c
17314 \series default
17315
17316 \begin_inset Quotes erd
17317 \end_inset
17318
17319  as LaTeX-argument of the third column.
17320  The ERT command 
17321 \series bold
17322
17323 \backslash
17324 hdashline
17325 \series default
17326  was inserted to the first cell of the third row and the the ERT command
17327 \newline
17328
17329  
17330 \series bold
17331
17332 \backslash
17333 cdashline{4-5}
17334 \series default
17335  was inserted to the first cell of the fourth row.
17336 \end_layout
17337
17338 \begin_layout Standard
17339 \begin_inset Note Greyedout
17340 status open
17341
17342 \begin_layout Standard
17343
17344 \series bold
17345 Note:
17346 \series default
17347  The used LaTeX-package 
17348 \series bold
17349 arydshln
17350 \series default
17351  is apparently not compatible with the LaTeX-package 
17352 \series bold
17353 colortbl
17354 \series default
17355
17356 \begin_inset LatexCommand index
17357 name "LaTeX-packages ! colortbl"
17358
17359 \end_inset
17360
17361  that is used for colored tables in section\InsetSpace ~
17362
17363 \begin_inset LatexCommand ref
17364 reference "sec:Colored-Tables"
17365
17366 \end_inset
17367
17368 .
17369  That means colored tables cannot have dashed lines.
17370 \end_layout
17371
17372 \end_inset
17373
17374
17375 \end_layout
17376
17377 \begin_layout Standard
17378 \begin_inset ERT
17379 status collapsed
17380
17381 \begin_layout Standard
17382
17383
17384 \backslash
17385 else
17386 \end_layout
17387
17388 \end_inset
17389
17390
17391 \begin_inset Note Note
17392 status open
17393
17394 \begin_layout Standard
17395 The following will be displayed when the LaTeX-package 
17396 \series bold
17397 arydshln
17398 \series default
17399  is not installed:
17400 \end_layout
17401
17402 \end_inset
17403
17404
17405 \end_layout
17406
17407 \begin_layout Standard
17408 You need to install the package 
17409 \series bold
17410 arydshln
17411 \series default
17412  to see the contents of this section in the output.
17413 \end_layout
17414
17415 \begin_layout Standard
17416 \begin_inset ERT
17417 status collapsed
17418
17419 \begin_layout Standard
17420
17421
17422 \backslash
17423 fi
17424 \end_layout
17425
17426 \end_inset
17427
17428
17429 \end_layout
17430
17431 \begin_layout Chapter
17432 Floats
17433 \begin_inset LatexCommand index
17434 name "Floats"
17435
17436 \end_inset
17437
17438
17439 \begin_inset LatexCommand label
17440 name "cha:Floats"
17441
17442 \end_inset
17443
17444
17445 \end_layout
17446
17447 \begin_layout Section
17448 Introduction
17449 \begin_inset LatexCommand label
17450 name "sec:FloatIntroduction"
17451
17452 \end_inset
17453
17454
17455 \begin_inset LatexCommand index
17456 name "Floats ! Introduction"
17457
17458 \end_inset
17459
17460
17461 \end_layout
17462
17463 \begin_layout Standard
17464 A float is a block of text associated with some sort of label, which doesn't
17465  have a fixed location.
17466  It can 
17467 \begin_inset Quotes eld
17468 \end_inset
17469
17470 float
17471 \begin_inset Quotes erd
17472 \end_inset
17473
17474  forward or backward a page or two, to wherever it fits best.
17475  
17476 \family sans
17477 Footnotes
17478 \family default
17479  and 
17480 \family sans
17481 Margin\InsetSpace ~
17482 Notes
17483 \family default
17484  are also floats, because they can float to the next page when there are
17485  too many notes at the page.
17486 \end_layout
17487
17488 \begin_layout Standard
17489 Floats allow a high quality layout.
17490  Images and tables can evenly be spread to the pages to avoid white space
17491  and pages without text.
17492  As the floating often destroys the context between the text and the image/table
17493 , every float can be referenced in the text.
17494  Floats are therefore numbered.
17495  Referencing is described in section\InsetSpace ~
17496
17497 \begin_inset LatexCommand ref
17498 reference "sec:Referencing-Floats"
17499
17500 \end_inset
17501
17502 .
17503 \end_layout
17504
17505 \begin_layout Standard
17506 To insert a float, use the menu 
17507 \family sans
17508 Insert\SpecialChar \menuseparator
17509 Float
17510 \family default
17511 .
17512  This inserts the 
17513 \family sans
17514 Caption
17515 \family default
17516  inset, a box with a label.
17517  The label will automatically be translated to the document language in
17518  the output.
17519  Behind the label you can insert the caption text.
17520  The image or table is inserted above or below the caption in a separate
17521  paragraph within the float.
17522  More about the caption placement is described in section\InsetSpace ~
17523
17524 \begin_inset LatexCommand ref
17525 reference "sec:Caption-Placement"
17526
17527 \end_inset
17528
17529 .
17530  To keep your LyX-document readable, you can open and close the float box
17531  by left-clicking on the box label.
17532  A closed float box looks like this: 
17533 \begin_inset Graphics
17534         filename clipart/floatQt4.png
17535         scale 70
17536
17537 \end_inset
17538
17539  -- a gray button with a red label.
17540 \end_layout
17541
17542 \begin_layout Standard
17543 It is recommended to insert floats as a separate paragraph to avoid possible
17544  LaTeX-errors that can occur when the surrounding text is specially formatted.
17545 \end_layout
17546
17547 \begin_layout Standard
17548 Existing figures or tables can be put into a float by marking them and then
17549  pressing the corresponding toolbar button for a new float.
17550 \end_layout
17551
17552 \begin_layout Section
17553 Float Types
17554 \end_layout
17555
17556 \begin_layout Standard
17557 Besides figure and table floats that are described in section\InsetSpace ~
17558
17559 \begin_inset LatexCommand ref
17560 reference "sec:Figure-Floats"
17561
17562 \end_inset
17563
17564  and 
17565 \begin_inset LatexCommand ref
17566 reference "sec:Table-Floats"
17567
17568 \end_inset
17569
17570 , respectively, LyX offers the float types 
17571 \series bold
17572 Algorithm
17573 \series default
17574  and 
17575 \series bold
17576 Text\InsetSpace ~
17577 Wrap\InsetSpace ~
17578 Float
17579 \series default
17580 .
17581 \end_layout
17582
17583 \begin_layout Subsection
17584 Algorithm Floats
17585 \begin_inset LatexCommand index
17586 name "Floats ! Algorithms"
17587
17588 \end_inset
17589
17590
17591 \end_layout
17592
17593 \begin_layout Standard
17594 \begin_inset Float algorithm
17595 placement h
17596 wide false
17597 sideways false
17598 status open
17599
17600 \begin_layout Standard
17601 \begin_inset Caption
17602
17603 \begin_layout Standard
17604 \begin_inset LatexCommand label
17605 name "alg:Example-Algorithm-float"
17606
17607 \end_inset
17608
17609 Example Algorithm float
17610 \end_layout
17611
17612 \end_inset
17613
17614
17615 \end_layout
17616
17617 \begin_layout LyX-Code
17618 for I in 1..N loop
17619 \newline
17620  Sum:= Sum + A(I); /*comment*/
17621 \newline
17622 end loop
17623 \begin_inset VSpace -4mm
17624 \end_inset
17625
17626
17627 \end_layout
17628
17629 \end_inset
17630
17631
17632 \end_layout
17633
17634 \begin_layout Standard
17635 This float type is inserted with the menu 
17636 \family sans
17637 Insert\SpecialChar \menuseparator
17638 Floats\SpecialChar \menuseparator
17639 Algorithm
17640 \family default
17641 .
17642  It is used for program codes and descriptions of algorithms.
17643  A possible environment for algorithms is the 
17644 \family sans
17645 LyX-Code
17646 \family default
17647 , described in LyX's 
17648 \emph on
17649 Userguide
17650 \emph default
17651 .
17652  Algorithm\InsetSpace ~
17653
17654 \begin_inset LatexCommand ref
17655 reference "alg:Example-Algorithm-float"
17656
17657 \end_inset
17658
17659  is an example of an algorithm float where -4\InsetSpace \thinspace{}
17660 mm vertical space was added
17661  at the end of the float to have the bottom rule exactly below the last
17662  text line.
17663 \end_layout
17664
17665 \begin_layout Standard
17666 The float label is not automatically translated into the document language.
17667  If your document is not in English, you have to do this manually by adding
17668  the following line to the document preamble
17669 \series bold
17670 :
17671 \end_layout
17672
17673 \begin_layout Standard
17674
17675 \series bold
17676
17677 \backslash
17678 floatname{algorithm}{your\InsetSpace ~
17679 name}
17680 \end_layout
17681
17682 \begin_layout Standard
17683
17684 \family sans
17685 your\InsetSpace ~
17686 name
17687 \family default
17688  is the word 
17689 \begin_inset Quotes eld
17690 \end_inset
17691
17692
17693 \emph on
17694 algorithm
17695 \emph default
17696
17697 \begin_inset Quotes erd
17698 \end_inset
17699
17700  in your language.
17701 \end_layout
17702
17703 \begin_layout Description
17704
17705 \series bold
17706 Note:
17707 \series default
17708  When the LaTeX-package 
17709 \series bold
17710 hyperref
17711 \series default
17712
17713 \begin_inset LatexCommand index
17714 name "LaTeX-packages ! hyperref"
17715
17716 \end_inset
17717
17718  is used to link cross-references to floats in the PDF-output, it must be
17719  loaded in the document preamble before the definition of floats to be able
17720  to reference floats.
17721  As LyX sets the float definition for algorithm floats automatically before
17722  the user editable part of the document preamble, you need to insert the
17723  following preamble lines 
17724 \emph on
17725 after
17726 \emph default
17727  the loading command of 
17728 \series bold
17729 hyperref
17730 \series default
17731 :
17732 \series bold
17733
17734 \begin_inset VSpace defskip
17735 \end_inset
17736
17737
17738 \newline
17739
17740 \backslash
17741 newfloat{Xalgorithm}{tbp}{loa}
17742 \newline
17743
17744 \backslash
17745 floatname{Xalgorithm}{your\InsetSpace ~
17746 name}
17747 \newline
17748
17749 \backslash
17750 newcommand{
17751 \backslash
17752 theHalgorithm}{
17753 \backslash
17754 theHXalgorithm}
17755 \newline
17756
17757 \backslash
17758 renewenvironment{algorithm}[1][tbp]
17759 \newline
17760
17761 \begin_inset ERT
17762 status collapsed
17763
17764 \begin_layout Standard
17765
17766
17767 \backslash
17768 hphantom{ }
17769 \end_layout
17770
17771 \end_inset
17772
17773 {
17774 \backslash
17775 begin{Xalgorithm}[#1]}{
17776 \backslash
17777 end{Xalgorithm}}
17778 \begin_inset VSpace defskip
17779 \end_inset
17780
17781
17782 \end_layout
17783
17784 \begin_layout Standard
17785 Algorithm floats are not by default numbered in the scheme 
17786 \begin_inset Quotes eld
17787 \end_inset
17788
17789 chapter.algorithm
17790 \begin_inset Quotes erd
17791 \end_inset
17792
17793  like it is the case for table and figure floats in many document-classes.
17794  To number algorithm floats in the same scheme, add this command to your
17795  document preamble:
17796 \end_layout
17797
17798 \begin_layout Standard
17799
17800 \series bold
17801
17802 \backslash
17803 numberwithin{algorithm}{chapter}
17804 \end_layout
17805
17806 \begin_layout Standard
17807 If you use the LaTeX-package 
17808 \series bold
17809 hyperref
17810 \series default
17811 , add this line instead 
17812 \emph on
17813 after
17814 \emph default
17815  the definition of 
17816 \family sans
17817 Xalgorithm
17818 \family default
17819  (the commands from above) to the preamble:
17820 \end_layout
17821
17822 \begin_layout Standard
17823
17824 \series bold
17825
17826 \backslash
17827 numberwithin{Xalgorithm}{chapter}
17828 \end_layout
17829
17830 \begin_layout Standard
17831 To be able to use the command 
17832 \series bold
17833
17834 \backslash
17835 numberwithin
17836 \series default
17837 , set in the tab 
17838 \family sans
17839 Math\InsetSpace ~
17840 Options
17841 \family default
17842  in the document settings the option 
17843 \family sans
17844 Use\InsetSpace ~
17845 AMS\InsetSpace ~
17846 math\InsetSpace ~
17847 package
17848 \family default
17849 .
17850 \end_layout
17851
17852 \begin_layout Subsection
17853 Text Wrap Floats
17854 \begin_inset LatexCommand index
17855 name "Floats ! Text Wrap Floats"
17856
17857 \end_inset
17858
17859
17860 \begin_inset LatexCommand label
17861 name "sub:floatflt-wrap-float"
17862
17863 \end_inset
17864
17865
17866 \end_layout
17867
17868 \begin_layout Standard
17869 This float type is used if you want to 
17870 \begin_inset Quotes eld
17871 \end_inset
17872
17873 wrap
17874 \begin_inset Quotes erd
17875 \end_inset
17876
17877  text around a figure so that it only occupies some fraction of the column
17878  width.
17879  It can be inserted using the menu 
17880 \begin_inset Wrap figure
17881 placement l
17882 width "40col%"
17883 status open
17884
17885 \begin_layout Standard
17886 \begin_inset Graphics
17887         filename clipart/mobius.eps
17888         display color
17889         width 40col%
17890         rotateOrigin center
17891
17892 \end_inset
17893
17894
17895 \end_layout
17896
17897 \begin_layout Standard
17898 \begin_inset Caption
17899
17900 \begin_layout Standard
17901 \begin_inset LatexCommand label
17902 name "fig:This-is-a"
17903
17904 \end_inset
17905
17906 This is a wrapped figure, and this is the brilliant caption that describes
17907  it.
17908 \begin_inset VSpace medskip
17909 \end_inset
17910
17911
17912 \end_layout
17913
17914 \end_inset
17915
17916
17917 \end_layout
17918
17919 \end_inset
17920
17921  
17922 \family sans
17923 Insert\SpecialChar \menuseparator
17924 Floats\SpecialChar \menuseparator
17925 Text\InsetSpace ~
17926 Wrap\InsetSpace ~
17927 Float
17928 \family default
17929  if the LaTeX-package 
17930 \series bold
17931 f\SpecialChar \textcompwordmark{}
17932 loatf\SpecialChar \textcompwordmark{}
17933 lt
17934 \series default
17935
17936 \begin_inset LatexCommand index
17937 name "LaTeX-packages ! floatflt"
17938
17939 \end_inset
17940
17941  is installed.
17942 \begin_inset Foot
17943 status collapsed
17944
17945 \begin_layout Standard
17946 Installing a LaTeX-package is explained it in the 
17947 \emph on
17948 LaTeX\InsetSpace ~
17949 Configuration
17950 \emph default
17951  manual.
17952 \end_layout
17953
17954 \end_inset
17955
17956  The width and placement of the float is adjusted by right-clicking on the
17957  float box.
17958  Figure\InsetSpace ~
17959
17960 \begin_inset LatexCommand ref
17961 reference "fig:This-is-a"
17962
17963 \end_inset
17964
17965  is an example text wrap float with a width of 40
17966 \begin_inset Formula $\,$
17967 \end_inset
17968
17969 col%.
17970 \begin_inset Foot
17971 status collapsed
17972
17973 \begin_layout Standard
17974 Available units are explained in 
17975 \begin_inset LatexCommand ref
17976 reference "cha:Units-available-in"
17977
17978 \end_inset
17979
17980 .
17981 \end_layout
17982
17983 \end_inset
17984
17985  Some space was added under the caption to separate it better from the surroundi
17986 ng text.
17987 \end_layout
17988
17989 \begin_layout Standard
17990 The LaTeX-package 
17991 \series bold
17992 f\SpecialChar \textcompwordmark{}
17993 loatf\SpecialChar \textcompwordmark{}
17994 lt
17995 \series default
17996  also supports table wrap floats, but they are not yet supported by LyX.
17997  If you need this, read the documentation of 
17998 \series bold
17999 f\SpecialChar \textcompwordmark{}
18000 loatf\SpecialChar \textcompwordmark{}
18001 lt
18002 \series default
18003  
18004 \begin_inset LatexCommand cite
18005 key "floatflt"
18006
18007 \end_inset
18008
18009 .
18010 \end_layout
18011
18012 \begin_layout Standard
18013 \begin_inset Note Greyedout
18014 status open
18015
18016 \begin_layout Standard
18017
18018 \series bold
18019 Note:
18020 \series default
18021  Text\InsetSpace ~
18022 wrap float floats are fragile! E.\InsetSpace \thinspace{}
18023 g.\InsetSpace ~
18024 having a figure too close to the bottom
18025  of the page can mess things up in the way that the float doesn't appear
18026  in the output or that it is placed over some other text.
18027 \begin_inset Foot
18028 status open
18029
18030 \begin_layout Standard
18031 The better solution is to use the LaTeX-package 
18032 \series bold
18033 wrapf\SpecialChar \textcompwordmark{}
18034 ig
18035 \series default
18036
18037 \begin_inset LatexCommand index
18038 name "LaTeX-packages ! wrapfig\\vspace{4mm}"
18039
18040 \end_inset
18041
18042  instead of 
18043 \series bold
18044 f\SpecialChar \textcompwordmark{}
18045 loatf\SpecialChar \textcompwordmark{}
18046 lt
18047 \series default
18048 , but it is currently not supported by LyX.
18049 \end_layout
18050
18051 \end_inset
18052
18053
18054 \end_layout
18055
18056 \end_inset
18057
18058
18059 \end_layout
18060
18061 \begin_layout Standard
18062 In general:
18063 \end_layout
18064
18065 \begin_layout Itemize
18066 Wrap floats should not be placed in paragraphs that run over a page break.
18067  That means that wrap floats should better be inserted to the exact place
18068  when the document is nearly finished and you are able to estimate where
18069  page breaks will appear.
18070 \end_layout
18071
18072 \begin_layout Itemize
18073 Wrap floats should either be placed in an own paragraph before the paragraph
18074  where they should wrap into or within a paragraph.
18075 \end_layout
18076
18077 \begin_layout Itemize
18078 Wrap floats in consecutive paragraphs may cause troubles, so assure that
18079  there is a text paragraph between them as separator.
18080 \end_layout
18081
18082 \begin_layout Itemize
18083 Wrap floats are not allowed in section headings or tables.
18084 \end_layout
18085
18086 \begin_layout Section
18087 Float Numbering
18088 \begin_inset LatexCommand label
18089 name "sec:Float-Numbering"
18090
18091 \end_inset
18092
18093
18094 \begin_inset LatexCommand index
18095 name "Floats ! Numbering"
18096
18097 \end_inset
18098
18099
18100 \end_layout
18101
18102 \begin_layout Standard
18103 Floats are usually numbered either independent from the sections the floats
18104  are in, or in the scheme 
18105 \begin_inset Quotes eld
18106 \end_inset
18107
18108 chapter.number
18109 \begin_inset Quotes erd
18110 \end_inset
18111
18112  or 
18113 \begin_inset Quotes eld
18114 \end_inset
18115
18116 section.number
18117 \begin_inset Quotes erd
18118 \end_inset
18119
18120 .
18121  This depends on the used document class.
18122 \end_layout
18123
18124 \begin_layout Standard
18125 To change the section independent numbering, you can use this command in
18126  the document preamble:
18127 \end_layout
18128
18129 \begin_layout Standard
18130
18131 \series bold
18132
18133 \backslash
18134 renewcommand{
18135 \backslash
18136 thetable}{
18137 \backslash
18138 roman{table}}
18139 \end_layout
18140
18141 \begin_layout Standard
18142
18143 \series bold
18144
18145 \backslash
18146 thetable
18147 \series default
18148  is the command that prints the table number, for figure floats, the command
18149  would be 
18150 \series bold
18151
18152 \backslash
18153 thefigure
18154 \series default
18155 .
18156  The command 
18157 \series bold
18158
18159 \backslash
18160 roman
18161 \series default
18162  prints in the command above the table number as small roman number.
18163 \end_layout
18164
18165 \begin_layout Standard
18166 To change the numbering scheme for example to 
18167 \begin_inset Quotes eld
18168 \end_inset
18169
18170 subsection.number
18171 \begin_inset Quotes erd
18172 \end_inset
18173
18174 , use this command in the preamble:
18175 \end_layout
18176
18177 \begin_layout Standard
18178
18179 \series bold
18180
18181 \backslash
18182 numberwithin{table}{subsection}
18183 \end_layout
18184
18185 \begin_layout Standard
18186 To be able to use the command 
18187 \series bold
18188
18189 \backslash
18190 numberwithin
18191 \series default
18192 , set in the tab 
18193 \family sans
18194 Math\InsetSpace ~
18195 Options
18196 \family default
18197  in the document settings the option 
18198 \family sans
18199 Use\InsetSpace ~
18200 AMS\InsetSpace ~
18201 math\InsetSpace ~
18202 package
18203 \family default
18204 .
18205 \end_layout
18206
18207 \begin_layout Standard
18208 Please also have a look at section\InsetSpace ~
18209
18210 \begin_inset LatexCommand ref
18211 reference "sub:Footnote-Numbering"
18212
18213 \end_inset
18214
18215  for the details and important notes about the numbering commands.
18216 \end_layout
18217
18218 \begin_layout Section
18219 Referencing Floats
18220 \begin_inset LatexCommand label
18221 name "sec:Referencing-Floats"
18222
18223 \end_inset
18224
18225
18226 \begin_inset LatexCommand index
18227 name "Floats ! References"
18228
18229 \end_inset
18230
18231
18232 \begin_inset LatexCommand index
18233 name "References"
18234
18235 \end_inset
18236
18237
18238 \end_layout
18239
18240 \begin_layout Standard
18241 To reference a float, insert a label into its caption using the menu 
18242 \family sans
18243 Insert\SpecialChar \menuseparator
18244 Label
18245 \family default
18246  or the toolbar button 
18247 \begin_inset Graphics
18248         filename ../images/label-insert.xpm
18249         scale 85
18250
18251 \end_inset
18252
18253 .
18254  A grey label box like this one: 
18255 \begin_inset Graphics
18256         filename clipart/labelQt4.png
18257         scale 85
18258
18259 \end_inset
18260
18261  will be inserted and the label window pops up asking for the label text.
18262  LyX offers as text the first words of the caption with a prefix.
18263  The prefix depends on the float type, e.\InsetSpace \thinspace{}
18264 g.\InsetSpace ~
18265 for figure floats the prefix will
18266  be "
18267 \family sans
18268 fig:
18269 \family default
18270 ".
18271 \end_layout
18272
18273 \begin_layout Standard
18274 The label is used as anchor and name for the reference.
18275  You can refer to the label using the menu 
18276 \family sans
18277 Insert\SpecialChar \menuseparator
18278 Cross-reference
18279 \family default
18280  or the toolbar button 
18281 \begin_inset Graphics
18282         filename ../images/dialog-show-new-inset_ref.xpm
18283         scale 85
18284
18285 \end_inset
18286
18287 .
18288  A grey cross-reference box like this one: 
18289 \begin_inset Graphics
18290         filename clipart/referenceQt4.png
18291         scale 85
18292
18293 \end_inset
18294
18295  will be inserted and the cross-reference window appear showing all labels
18296  of the document.
18297  If you have multiple LyX-documents opened, choose the one you are working
18298  on from the drop-list at the top of the dialog.
18299  You can now sort the labels alphabetically and then choose one.
18300  At the position of the cross-reference box the float number will appear
18301  in the output.
18302 \end_layout
18303
18304 \begin_layout Standard
18305 It is recommended to use a protected space between the cross-reference name
18306  and its number to avoid line breaks between them.
18307  If a cross-reference refers to a non-existing label, you will see two question
18308  marks in the output instead of the reference.
18309 \end_layout
18310
18311 \begin_layout Standard
18312 You can change labels at any time by clicking on the label box.
18313  References to the changed label will automatically change its link to the
18314  new label text, so that you don't need to take care about this.
18315 \end_layout
18316
18317 \begin_layout Standard
18318 The button 
18319 \family sans
18320 Go\InsetSpace ~
18321 to\InsetSpace ~
18322 Label
18323 \family default
18324  in the cross-reference window sets the cursor before the referred label.
18325  The button text changes then to Go\InsetSpace ~
18326 Back and you can use it to set the cursor
18327  back to the cross-reference.
18328  Right-clicking on a cross-reference box also sets the cursor before the
18329  referenced label but without a possibility to go back.
18330 \end_layout
18331
18332 \begin_layout Subsection
18333 Cross-Reference Formats
18334 \begin_inset LatexCommand label
18335 name "sub:Cross-Reference-Formats"
18336
18337 \end_inset
18338
18339
18340 \begin_inset LatexCommand index
18341 name "References ! Formats"
18342
18343 \end_inset
18344
18345
18346 \end_layout
18347
18348 \begin_layout Standard
18349 There are six varieties of cross-references:
18350 \end_layout
18351
18352 \begin_layout Description
18353 <reference>: prints the float number, this is the default: 
18354 \begin_inset LatexCommand ref
18355 reference "fig:Two-distorted-images"
18356
18357 \end_inset
18358
18359
18360 \end_layout
18361
18362 \begin_layout Description
18363 (<reference>): prints the float number within two parentheses, this is the
18364  style normally used to reference formulas, especially when the reference
18365  name 
18366 \begin_inset Quotes eld
18367 \end_inset
18368
18369 Equation
18370 \begin_inset Quotes erd
18371 \end_inset
18372
18373  is omitted: 
18374 \begin_inset LatexCommand eqref
18375 reference "eq:Wgn"
18376
18377 \end_inset
18378
18379
18380 \end_layout
18381
18382 \begin_layout Description
18383 <page>: prints the page number: Page\InsetSpace ~
18384
18385 \begin_inset LatexCommand pageref
18386 reference "fig:Two-distorted-images"
18387
18388 \end_inset
18389
18390
18391 \end_layout
18392
18393 \begin_layout Description
18394 on\InsetSpace ~
18395 page\InsetSpace ~
18396 <page>: prints the text "on page" and the page number: 
18397 \begin_inset LatexCommand vpageref
18398 reference "fig:Two-distorted-images"
18399
18400 \end_inset
18401
18402
18403 \end_layout
18404
18405 \begin_layout Description
18406 <reference>\InsetSpace ~
18407 on\InsetSpace ~
18408 page\InsetSpace ~
18409 <page>: prints the float number, the text "on page", and
18410  the page number: 
18411 \begin_inset LatexCommand vref
18412 reference "fig:Two-distorted-images"
18413
18414 \end_inset
18415
18416
18417 \end_layout
18418
18419 \begin_layout Description
18420 Formatted\InsetSpace ~
18421 reference: prints a self defined cross-reference format.
18422  
18423 \begin_inset Note Greyedout
18424 status open
18425
18426 \begin_layout Standard
18427
18428 \series bold
18429 Note:
18430 \series default
18431  This feature is only available when you have the LaTeX-package 
18432 \series bold
18433 prettyref
18434 \series default
18435  installed.
18436 \end_layout
18437
18438 \end_inset
18439
18440
18441 \end_layout
18442
18443 \begin_layout Standard
18444 Note that the style <page> won't print the page number if the label is on
18445  the previous, the same, or the next page.
18446  You will e.\InsetSpace \thinspace{}
18447 g.\InsetSpace ~
18448 see the text 
18449 \begin_inset Quotes eld
18450 \end_inset
18451
18452
18453 \family sans
18454 on this page
18455 \family default
18456
18457 \begin_inset Quotes erd
18458 \end_inset
18459
18460  instead.
18461 \end_layout
18462
18463 \begin_layout Standard
18464 The number and current page of the referred document part in the output,
18465  is automatically calculated by LaTeX.
18466  The varieties are adjusted in the field 
18467 \family sans
18468 Format
18469 \family default
18470  of the cross-reference window, that appear when you click on the cross-referenc
18471 e box.
18472 \end_layout
18473
18474 \begin_layout Subsection
18475 Referencing Subfigures
18476 \begin_inset LatexCommand label
18477 name "sub:Referencing-Subfigures"
18478
18479 \end_inset
18480
18481
18482 \begin_inset LatexCommand index
18483 name "References ! to Subfigures"
18484
18485 \end_inset
18486
18487
18488 \end_layout
18489
18490 \begin_layout Standard
18491 Currently referencing subfigures is not supported by LyX, so you have to
18492  use LaTeX-commands.
18493  The label is the created with the command
18494 \end_layout
18495
18496 \begin_layout Standard
18497
18498 \series bold
18499
18500 \backslash
18501 label{fig:YourLabelName}
18502 \end_layout
18503
18504 \begin_layout Standard
18505 that is directly inserted into the subfigure caption field.
18506  To reference the label add this command in ERT
18507 \end_layout
18508
18509 \begin_layout Standard
18510
18511 \series bold
18512
18513 \backslash
18514 ref{fig:YourLabelName}
18515 \end_layout
18516
18517 \begin_layout Standard
18518 to the position in your document where the reference should be placed.
18519  Here is a reference to a subfigure: Subfigure\InsetSpace ~
18520
18521 \begin_inset ERT
18522 status collapsed
18523
18524 \begin_layout Standard
18525
18526
18527 \backslash
18528 ref{fig:Platypus}
18529 \end_layout
18530
18531 \end_inset
18532
18533 .
18534 \end_layout
18535
18536 \begin_layout Subsection
18537 Automatic Reference Naming
18538 \begin_inset LatexCommand index
18539 name "References ! Automatic Reference Naming"
18540
18541 \end_inset
18542
18543
18544 \end_layout
18545
18546 \begin_layout Standard
18547 The LaTeX-package 
18548 \series bold
18549 hyperref
18550 \series default
18551  provides a very useful feature that cross-references automatically include
18552  the name of the referenced floats (or text parts like sections).
18553  You save to write e.\InsetSpace \thinspace{}
18554 g.\InsetSpace ~
18555 the name 
18556 \begin_inset Quotes eld
18557 \end_inset
18558
18559 Figure
18560 \begin_inset Quotes erd
18561 \end_inset
18562
18563  before every reference box.
18564  To get this automatic reference naming, you have to load the LaTeX-package
18565  
18566 \series bold
18567 hyperref
18568 \series default
18569
18570 \begin_inset LatexCommand index
18571 name "LaTeX-packages ! hyperref"
18572
18573 \end_inset
18574
18575  in the document preamble with
18576 \end_layout
18577
18578 \begin_layout Standard
18579
18580 \series bold
18581
18582 \backslash
18583 usepackage[pdfborder={0 0 0}]{hyperref}
18584 \newline
18585
18586 \backslash
18587 AtBeginDocument{
18588 \backslash
18589 renewcommand{
18590 \backslash
18591 ref}[1]{
18592 \backslash
18593 mbox{
18594 \backslash
18595 autoref{#1}}}}
18596 \end_layout
18597
18598 \begin_layout Standard
18599
18600 \series bold
18601 hyperref
18602 \series default
18603  is used to link cross-references in the DVI- and PDF-output, this means
18604  that the reader of your document will be able to click on a table of content
18605  (TOC) entry or on a reference and he will be shown the referenced document
18606  part.
18607  
18608 \series bold
18609 hyperref
18610 \series default
18611  also creates PDF-bookmarks for every section of your document to make it
18612  easier for readers to navigate through the document.
18613  This is also used in this document but when you have a look in the document
18614  preamble you will find various options in the load command of 
18615 \series bold
18616 hyperref
18617 \series default
18618 .
18619  To learn more about the 
18620 \series bold
18621 hyperref
18622 \series default
18623  package, we refer to its documentation 
18624 \begin_inset LatexCommand cite
18625 key "hyperref"
18626
18627 \end_inset
18628
18629 .
18630 \end_layout
18631
18632 \begin_layout Standard
18633 \begin_inset Note Greyedout
18634 status open
18635
18636 \begin_layout Standard
18637
18638 \series bold
18639 Note:
18640 \series default
18641  Automatic reference naming cannot be used when you use cross-references
18642  in the 
18643 \family sans
18644 Formatted\InsetSpace ~
18645 reference
18646 \family default
18647  style, described in section\InsetSpace ~
18648
18649 \begin_inset LatexCommand ref
18650 reference "sub:Cross-Reference-Formats"
18651
18652 \end_inset
18653
18654 .
18655 \end_layout
18656
18657 \end_inset
18658
18659
18660 \end_layout
18661
18662 \begin_layout Subsection
18663 Reference Position
18664 \begin_inset LatexCommand label
18665 name "sub:Reference-Position"
18666
18667 \end_inset
18668
18669
18670 \begin_inset LatexCommand index
18671 name "References ! Reference Position"
18672
18673 \end_inset
18674
18675
18676 \end_layout
18677
18678 \begin_layout Standard
18679 If you use 
18680 \series bold
18681 hyperref
18682 \series default
18683
18684 \begin_inset LatexCommand index
18685 name "LaTeX-packages ! hyperref"
18686
18687 \end_inset
18688
18689  to link cross-references in the output, you will see that clicking on an
18690  image float reference jumps to the image label.
18691  The caption will be the first text part on the screen, so that you cannot
18692  see the image without scrolling.
18693  This is because the reference link anchor is placed at the position of
18694  the label.
18695  With the use of the package 
18696 \series bold
18697 hypcap
18698 \series default
18699
18700 \begin_inset LatexCommand index
18701 name "LaTeX-packages ! hypcap"
18702
18703 \end_inset
18704
18705 , which is part of the LaTeX-package 
18706 \series bold
18707 oberdiek
18708 \series default
18709
18710 \begin_inset LatexCommand index
18711 name "LaTeX-packages ! oberdiek"
18712
18713 \end_inset
18714
18715 , the link anchor is placed at the beginning of a float.
18716  To use this feature for figure floats, load 
18717 \series bold
18718 hypcap
18719 \series default
18720  in the document preamble with the line
18721 \end_layout
18722
18723 \begin_layout Standard
18724
18725 \series bold
18726
18727 \backslash
18728 usepackage[f\SpecialChar \textcompwordmark{}
18729 igure]{hypcap}
18730 \end_layout
18731
18732 \begin_layout Standard
18733 You can also use 
18734 \series bold
18735 hypcap
18736 \series default
18737  for all floats but this isn't recommended for stability reasons.
18738  For more informations, have a look at 
18739 \series bold
18740 hypcap
18741 \series default
18742 's manual 
18743 \begin_inset LatexCommand cite
18744 key "hypcap"
18745
18746 \end_inset
18747
18748 .
18749 \end_layout
18750
18751 \begin_layout Standard
18752 \begin_inset Note Greyedout
18753 status open
18754
18755 \begin_layout Standard
18756
18757 \series bold
18758 Note:
18759 \series default
18760  
18761 \series bold
18762 hypcap
18763 \series default
18764  must be loaded after 
18765 \series bold
18766 hyperref
18767 \series default
18768  in the document preamble.
18769 \end_layout
18770
18771 \end_inset
18772
18773
18774 \end_layout
18775
18776 \begin_layout Standard
18777 \begin_inset Note Greyedout
18778 status open
18779
18780 \begin_layout Standard
18781
18782 \series bold
18783 Note:
18784 \series default
18785  
18786 \series bold
18787 hypcap
18788 \series default
18789  has no effect for references to subfigures.
18790 \end_layout
18791
18792 \end_inset
18793
18794
18795 \end_layout
18796
18797 \begin_layout Section
18798 Float Placement
18799 \begin_inset LatexCommand label
18800 name "sec:Float-Placement"
18801
18802 \end_inset
18803
18804
18805 \begin_inset LatexCommand index
18806 name "Floats ! Placement"
18807
18808 \end_inset
18809
18810
18811 \end_layout
18812
18813 \begin_layout Standard
18814 Right-clicking on a float-box opens a dialog where you can alter the placement
18815  options that LaTeX uses for positioning the float.
18816 \newline
18817 The option 
18818 \family sans
18819 Span\InsetSpace ~
18820 columns
18821 \family default
18822  is only useful for two-column documents: If you select it, the float will
18823  span across both columns on the page instead of being confined to just
18824  one.
18825 \newline
18826 The option 
18827 \family sans
18828 Rotate\InsetSpace ~
18829 sideways
18830 \family default
18831  is used to rotate floats, see section 
18832 \begin_inset LatexCommand ref
18833 reference "sec:Rotated-Floats"
18834
18835 \end_inset
18836
18837 .
18838 \end_layout
18839
18840 \begin_layout Standard
18841 You can use one ore more of the following options in the float dialog to
18842  set the placement for a particular float when you uncheck the option 
18843 \family sans
18844 Use\InsetSpace ~
18845 default\InsetSpace ~
18846 placement
18847 \family default
18848 :
18849 \end_layout
18850
18851 \begin_layout Description
18852 Here\InsetSpace ~
18853 if\InsetSpace ~
18854 possible try to place the float on the position where it is inserted
18855 \end_layout
18856
18857 \begin_layout Description
18858 Top\InsetSpace ~
18859 of\InsetSpace ~
18860 page try to place the float on the top of the current page
18861 \end_layout
18862
18863 \begin_layout Description
18864 Bottom\InsetSpace ~
18865 of\InsetSpace ~
18866 page try to place the float on the bottom of the current page
18867 \end_layout
18868
18869 \begin_layout Description
18870 Page\InsetSpace ~
18871 of\InsetSpace ~
18872 floats try to place the float on an own page 
18873 \end_layout
18874
18875 \begin_layout Standard
18876 The order of the above option is 
18877 \emph on
18878 always
18879 \emph default
18880  used by LaTeX.
18881  That means, if you use the default placement, LaTeX will first try out
18882  
18883 \family sans
18884 Here\InsetSpace ~
18885 if\InsetSpace ~
18886 possible
18887 \family default
18888 , then 
18889 \family sans
18890 Top\InsetSpace ~
18891 of\InsetSpace ~
18892 page
18893 \family default
18894 , and then the others.
18895  If you don't use the default, LaTeX will try only the checked options but
18896  in the same order.
18897  If none of the 4 placements are possible the procedure is internally repeated
18898  but it is tried to put the float on the following page.
18899 \end_layout
18900
18901 \begin_layout Standard
18902 By default, each option has its own rules:
18903 \end_layout
18904
18905 \begin_layout Labeling
18906 \labelwidthstring 00.00.0000
18907
18908 \family sans
18909 Top\InsetSpace ~
18910 of\InsetSpace ~
18911 page
18912 \family default
18913  only floats occupying less than 70\InsetSpace \thinspace{}
18914 % of the page can be placed at the top
18915  of a page (
18916 \series bold
18917
18918 \backslash
18919 topfraction
18920 \series default
18921 )
18922 \end_layout
18923
18924 \begin_layout Labeling
18925 \labelwidthstring 00.00.0000
18926
18927 \family sans
18928 Bottom\InsetSpace ~
18929 of\InsetSpace ~
18930 page
18931 \family default
18932 : only floats occupying less than 30\InsetSpace \thinspace{}
18933 % of the page can be placed at the bottom
18934  of a page.
18935  (
18936 \series bold
18937
18938 \backslash
18939 bottomfraction
18940 \series default
18941 )
18942 \end_layout
18943
18944 \begin_layout Labeling
18945 \labelwidthstring 00.00.0000
18946
18947 \family sans
18948 Page\InsetSpace ~
18949 of\InsetSpace ~
18950 floats
18951 \family default
18952 : only if more than 50\InsetSpace \thinspace{}
18953 % of the page are occupied by floats, several floats
18954  can be set together on a page.
18955  (
18956 \series bold
18957
18958 \backslash
18959 floatpagefraction
18960 \series default
18961 )
18962 \end_layout
18963
18964 \begin_layout Standard
18965 If you don't like these rules, you can ignore them by using the additional
18966  option 
18967 \family sans
18968 Ignore\InsetSpace ~
18969 LaTeX\InsetSpace ~
18970 rules
18971 \family default
18972 .
18973 \newline
18974 You can also redefine the rules with LaTeX-commands that are given in parenthese
18975 s behind the rules description above.
18976  To increase for example the often too small default of the bottom-rule
18977  to 50\InsetSpace \thinspace{}
18978 % of the page, add this line to your document preamble:
18979 \end_layout
18980
18981 \begin_layout Standard
18982
18983 \series bold
18984
18985 \backslash
18986 renewcommand{
18987 \backslash
18988 bottomfraction}{0.5}
18989 \end_layout
18990
18991 \begin_layout Standard
18992 Sometimes you might need, under all circumstances, a float to be placed
18993  exactly at the position where it is inserted.
18994  For this case you can use the option 
18995 \family sans
18996 Here\InsetSpace ~
18997 definitely
18998 \family default
18999 .
19000  Use this option very rarely and only if the document is nearly ready to
19001  be printed.
19002  Because the float is then no longer able to 
19003 \begin_inset Quotes eld
19004 \end_inset
19005
19006 float
19007 \begin_inset Quotes erd
19008 \end_inset
19009
19010  when you change your document and this will often destroy the page layout.
19011 \end_layout
19012
19013 \begin_layout Standard
19014 There are no placement options for text wrap floats, because they are always
19015  surrounded by the text of a certain paragraph.
19016 \begin_inset VSpace bigskip
19017 \end_inset
19018
19019
19020 \end_layout
19021
19022 \begin_layout Standard
19023 Sometimes you have the problem that a float is placed at the top of a page
19024  while its corresponding section starts at the middle of the page, so that
19025  the reader could think the float is part of the previous section.
19026  To avoid this the LaTeX-command 
19027 \series bold
19028
19029 \backslash
19030 suppressf\SpecialChar \textcompwordmark{}
19031 loats
19032 \series default
19033  can be used.
19034  It suppresses a given float placement for the page where it is inserted
19035  and can therefore be used to avoid that floats could be set before a section
19036  starts.
19037  To get this, add these commands to your document preamble:
19038 \end_layout
19039
19040 \begin_layout Standard
19041
19042 \series bold
19043
19044 \backslash
19045 let
19046 \backslash
19047 mySection
19048 \backslash
19049 section
19050 \newline
19051
19052 \backslash
19053 renewcommand{
19054 \backslash
19055 section}{
19056 \backslash
19057 suppressf\SpecialChar \textcompwordmark{}
19058 loats[t]
19059 \backslash
19060 mySection}
19061 \end_layout
19062
19063 \begin_layout Standard
19064 You can define the same for all section headings, like chapters and subsections.
19065  This definition is not recommended to be used for small text parts like
19066  subsubsections because LaTeX may then have problems to find a suitable
19067  placement.
19068 \end_layout
19069
19070 \begin_layout Standard
19071 \begin_inset VSpace bigskip
19072 \end_inset
19073
19074 In some cases it is required to have all figures/tables at the end of the
19075  document.
19076  For this purpose the LaTeX-package 
19077 \series bold
19078 endf\SpecialChar \textcompwordmark{}
19079 loat
19080 \series default
19081
19082 \begin_inset LatexCommand index
19083 name "LaTeX-packages ! endfloat"
19084
19085 \end_inset
19086
19087  was developed.
19088  It puts all figure and table floats at the end of the document into own
19089  sections.
19090  At the original float position a text hint like 
19091 \begin_inset Quotes eld
19092 \end_inset
19093
19094
19095 \family sans
19096 [Figure\InsetSpace ~
19097 3.2 about here.]
19098 \family default
19099
19100 \begin_inset Quotes erd
19101 \end_inset
19102
19103  is inserted.
19104  The endfloat-package is loaded in the preamble with the line
19105 \end_layout
19106
19107 \begin_layout Standard
19108
19109 \series bold
19110
19111 \backslash
19112 usepackage[options]{endf\SpecialChar \textcompwordmark{}
19113 loat}
19114 \end_layout
19115
19116 \begin_layout Standard
19117 There are various package options to format the created figure/table sections.
19118  For more information we refer to the 
19119 \series bold
19120 endf\SpecialChar \textcompwordmark{}
19121 loat
19122 \series default
19123  documentation 
19124 \begin_inset LatexCommand cite
19125 key "endfloat"
19126
19127 \end_inset
19128
19129 .
19130 \newline
19131
19132 \begin_inset Note Greyedout
19133 status open
19134
19135 \begin_layout Standard
19136
19137 \series bold
19138 Note: endf\SpecialChar \textcompwordmark{}
19139 loat
19140 \series default
19141  doesn't provide an automatic translation for the text hint, you have to
19142  do this manually, see section\InsetSpace ~
19143 4 in 
19144 \begin_inset LatexCommand cite
19145 key "endfloat"
19146
19147 \end_inset
19148
19149 .
19150 \end_layout
19151
19152 \end_inset
19153
19154
19155 \newline
19156
19157 \begin_inset Note Greyedout
19158 status open
19159
19160 \begin_layout Standard
19161
19162 \series bold
19163 Note:
19164 \series default
19165  There is currently a bug in 
19166 \series bold
19167 endf\SpecialChar \textcompwordmark{}
19168 loat
19169 \series default
19170  when the caption contains a German 
19171 \begin_inset Quotes eld
19172 \end_inset
19173
19174 ß
19175 \begin_inset Quotes erd
19176 \end_inset
19177
19178 .
19179  Use in this case the command 
19180 \begin_inset Quotes eld
19181 \end_inset
19182
19183
19184 \series bold
19185
19186 \backslash
19187 ss
19188 \series default
19189
19190 \begin_inset Quotes erd
19191 \end_inset
19192
19193  in ERT instead of 
19194 \begin_inset Quotes eld
19195 \end_inset
19196
19197 ß
19198 \begin_inset Quotes erd
19199 \end_inset
19200
19201 .
19202 \end_layout
19203
19204 \end_inset
19205
19206
19207 \end_layout
19208
19209 \begin_layout Standard
19210 \begin_inset VSpace bigskip
19211 \end_inset
19212
19213 For more details about float placements, have a look at LaTeX books, 
19214 \begin_inset LatexCommand cite
19215 key "latexcompanion,latexguide,latexbook"
19216
19217 \end_inset
19218
19219 .
19220 \end_layout
19221
19222 \begin_layout Section
19223 Rotated Floats
19224 \begin_inset LatexCommand label
19225 name "sec:Rotated-Floats"
19226
19227 \end_inset
19228
19229
19230 \begin_inset LatexCommand index
19231 name "Floats ! Rotating"
19232
19233 \end_inset
19234
19235
19236 \end_layout
19237
19238 \begin_layout Standard
19239 Especially for wide tables you might have floats rotated.
19240  To rotate a whole float including the caption, right-click on the float-box
19241  and use the option 
19242 \family sans
19243 Rotate\InsetSpace ~
19244 sideways
19245 \family default
19246 .
19247 \end_layout
19248
19249 \begin_layout Standard
19250 Rotated floats are always placed on its own page (or column, when you have
19251  a two-column document).
19252  They are normally rotated so that you can read them from the outside margin
19253  -- to the left on even pages, to the right on odd pages.
19254  To force a certain rotation direction for all pages, you can add either
19255  the option 
19256 \series bold
19257 figuresleft
19258 \series default
19259  or 
19260 \series bold
19261 figuresright
19262 \series default
19263  to the document class options.
19264 \end_layout
19265
19266 \begin_layout Standard
19267 Referencing rotated floats is the same like for normal floats, the caption
19268  format is also the same: Table\InsetSpace ~
19269
19270 \begin_inset LatexCommand ref
19271 reference "tab:Rotated-table"
19272
19273 \end_inset
19274
19275  is an example of a rotated table float.
19276 \end_layout
19277
19278 \begin_layout Standard
19279 \begin_inset Note Greyedout
19280 status open
19281
19282 \begin_layout Standard
19283
19284 \series bold
19285 Note:
19286 \series default
19287  Not all DVI-viewers are able to display rotated floats.
19288 \end_layout
19289
19290 \end_inset
19291
19292
19293 \end_layout
19294
19295 \begin_layout Standard
19296 \begin_inset Float table
19297 wide false
19298 sideways true
19299 status open
19300
19301 \begin_layout Standard
19302 \begin_inset Caption
19303
19304 \begin_layout Standard
19305 \begin_inset LatexCommand label
19306 name "tab:Rotated-table"
19307
19308 \end_inset
19309
19310  Rotated table
19311 \end_layout
19312
19313 \end_inset
19314
19315
19316 \end_layout
19317
19318 \begin_layout Standard
19319 \align center
19320 \begin_inset Tabular
19321 <lyxtabular version="3" rows="1" columns="5">
19322 <features>
19323 <column alignment="center" valignment="top" leftline="true" width="0">
19324 <column alignment="center" valignment="top" leftline="true" width="0">
19325 <column alignment="center" valignment="top" leftline="true" width="0">
19326 <column alignment="center" valignment="top" leftline="true" width="0">
19327 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
19328 <row topline="true" bottomline="true">
19329 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19330 \begin_inset Text
19331
19332 \begin_layout Standard
19333 test
19334 \end_layout
19335
19336 \end_inset
19337 </cell>
19338 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19339 \begin_inset Text
19340
19341 \begin_layout Standard
19342 b
19343 \end_layout
19344
19345 \end_inset
19346 </cell>
19347 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19348 \begin_inset Text
19349
19350 \begin_layout Standard
19351 c
19352 \end_layout
19353
19354 \end_inset
19355 </cell>
19356 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19357 \begin_inset Text
19358
19359 \begin_layout Standard
19360 d
19361 \end_layout
19362
19363 \end_inset
19364 </cell>
19365 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19366 \begin_inset Text
19367
19368 \begin_layout Standard
19369 e
19370 \end_layout
19371
19372 \end_inset
19373 </cell>
19374 </row>
19375 </lyxtabular>
19376
19377 \end_inset
19378
19379
19380 \end_layout
19381
19382 \end_inset
19383
19384
19385 \end_layout
19386
19387 \begin_layout Section
19388 Caption Formatting
19389 \begin_inset LatexCommand index
19390 name "Caption ! Formatting"
19391
19392 \end_inset
19393
19394
19395 \begin_inset LatexCommand index
19396 name "Floats ! Caption Formatting"
19397
19398 \end_inset
19399
19400
19401 \begin_inset LatexCommand index
19402 name "LaTeX-packages ! caption"
19403
19404 \end_inset
19405
19406
19407 \begin_inset LatexCommand label
19408 name "sec:Caption-Formatting"
19409
19410 \end_inset
19411
19412
19413 \end_layout
19414
19415 \begin_layout Standard
19416 The 
19417 \family sans
19418 Caption
19419 \family default
19420  environment is the default paragraph environment for 
19421 \family sans
19422 Floats
19423 \family default
19424 .
19425  On the LyX screen captions appear as label, e.\InsetSpace \thinspace{}
19426 g.\InsetSpace ~
19427
19428 \begin_inset Quotes eld
19429 \end_inset
19430
19431
19432 \family sans
19433 Figure #:
19434 \family default
19435
19436 \begin_inset Quotes erd
19437 \end_inset
19438
19439  followed by the caption text.
19440  
19441 \begin_inset Quotes eld
19442 \end_inset
19443
19444 #
19445 \begin_inset Quotes erd
19446 \end_inset
19447
19448  is the actual reference number.
19449  By default the label and the number are in the same font as the caption
19450  text and a colon follows the number to divide the label from the text.
19451  This caption format is not suitable for all document formats.
19452  
19453 \end_layout
19454
19455 \begin_layout Standard
19456 To change the default caption format, load the LaTeX-package 
19457 \series bold
19458 caption
19459 \series default
19460
19461 \begin_inset LatexCommand index
19462 name "LaTeX-packages ! caption"
19463
19464 \end_inset
19465
19466  in the document preamble with this line:
19467 \end_layout
19468
19469 \begin_layout Standard
19470
19471 \series bold
19472
19473 \backslash
19474 usepackage[format definition]{caption}
19475 \end_layout
19476
19477 \begin_layout Standard
19478 To have for example the label and the number in sans-serif bold font and
19479  the table captions always above the table like in this document, use the
19480  following command:
19481 \end_layout
19482
19483 \begin_layout Standard
19484
19485 \series bold
19486
19487 \backslash
19488 usepackage[labelfont={bf,sf}, tableposition=top]{caption}
19489 \end_layout
19490
19491 \begin_layout Standard
19492 You can also define different caption formats for the different float types.
19493  In this case load the 
19494 \series bold
19495 caption
19496 \series default
19497  package without format specific options and define the different formats
19498  with the help of the command
19499 \end_layout
19500
19501 \begin_layout Standard
19502
19503 \series bold
19504
19505 \backslash
19506 captionsetup[float type]{format definition}
19507 \end_layout
19508
19509 \begin_layout Standard
19510 in the document preamble.
19511  For example the caption formats of Figure\InsetSpace ~
19512
19513 \begin_inset LatexCommand ref
19514 reference "fig:This-is-an-fig"
19515
19516 \end_inset
19517
19518  and Table\InsetSpace ~
19519
19520 \begin_inset LatexCommand ref
19521 reference "tab:This-is-an-tab"
19522
19523 \end_inset
19524
19525  can be created using these commands in the document preamble:
19526 \end_layout
19527
19528 \begin_layout Standard
19529
19530 \series bold
19531
19532 \backslash
19533 usepackage[tableposition=top]{caption}
19534 \series default
19535
19536 \newline
19537
19538 \series bold
19539
19540 \backslash
19541 captionsetup[f\SpecialChar \textcompwordmark{}
19542 igure]{labelfont={tt}, textfont=it, indention=1cm,%
19543 \newline
19544
19545 \begin_inset ERT
19546 status collapsed
19547
19548 \begin_layout Standard
19549
19550
19551 \backslash
19552 hphantom{
19553 \backslash
19554
19555 \backslash
19556 captionsetup[figure]
19557 \backslash
19558 {}
19559 \end_layout
19560
19561 \end_inset
19562
19563  labelsep=period}
19564 \newline
19565
19566 \backslash
19567 captionsetup[table]{labelfont={bf,sf}}
19568 \end_layout
19569
19570 \begin_layout Standard
19571 \begin_inset Note Greyedout
19572 status open
19573
19574 \begin_layout Standard
19575
19576 \series bold
19577 Note:
19578 \series default
19579  The option 
19580 \series bold
19581 tableposition=top
19582 \series default
19583  has no effect when a 
19584 \series bold
19585 koma-script
19586 \series default
19587
19588 \begin_inset LatexCommand index
19589 name "LaTeX-packages ! koma-script"
19590
19591 \end_inset
19592
19593  document class is used.
19594  In this case the document class option 
19595 \series bold
19596 tablecaptionabove
19597 \series default
19598  must be used.
19599 \end_layout
19600
19601 \end_inset
19602
19603
19604 \end_layout
19605
19606 \begin_layout Standard
19607 For more information about the package 
19608 \series bold
19609 caption
19610 \series default
19611  we refer to its documentation 
19612 \begin_inset LatexCommand cite
19613 key "caption,caption-de"
19614
19615 \end_inset
19616
19617 .
19618 \end_layout
19619
19620 \begin_layout Standard
19621 To change the label name from e.g.
19622  
19623 \begin_inset Quotes eld
19624 \end_inset
19625
19626 Figure
19627 \begin_inset Quotes erd
19628 \end_inset
19629
19630  to 
19631 \begin_inset Quotes eld
19632 \end_inset
19633
19634 Image
19635 \begin_inset Quotes erd
19636 \end_inset
19637
19638  use this preamble command:
19639 \end_layout
19640
19641 \begin_layout Standard
19642
19643 \series bold
19644
19645 \backslash
19646 renewcommand{
19647 \backslash
19648 fnum@figure}{Image~
19649 \backslash
19650 thefigure}
19651 \end_layout
19652
19653 \begin_layout Standard
19654 where 
19655 \series bold
19656
19657 \backslash
19658 thefigure
19659 \series default
19660  inserts the figure number and
19661 \series bold
19662  
19663 \begin_inset Quotes eld
19664 \end_inset
19665
19666 ~
19667 \series default
19668
19669 \begin_inset Quotes erd
19670 \end_inset
19671
19672  creates a protected space.
19673 \end_layout
19674
19675 \begin_layout Standard
19676 \begin_inset VSpace bigskip
19677 \end_inset
19678
19679 If you are using a 
19680 \series bold
19681 koma-script
19682 \series default
19683
19684 \begin_inset LatexCommand index
19685 name "LaTeX-packages ! koma-script"
19686
19687 \end_inset
19688
19689  document class (
19690 \family sans
19691 article (koma-script)
19692 \family default
19693
19694 \family sans
19695 book (koma-script)
19696 \family default
19697
19698 \family sans
19699 letter (koma-script)
19700 \family default
19701 , or 
19702 \family sans
19703 report (koma-script)
19704 \family default
19705 \InsetSpace \thinspace{}
19706 ), you can alternatively to the 
19707 \series bold
19708 caption
19709 \series default
19710  package use 
19711 \series bold
19712 koma-script
19713 \series default
19714 's built-in command 
19715 \series bold
19716
19717 \backslash
19718 setkomafont
19719 \series default
19720 .
19721  For example, to have the caption label in bold, add this command to your
19722  document preamble:
19723 \end_layout
19724
19725 \begin_layout Standard
19726
19727 \series bold
19728
19729 \backslash
19730 setkomafont{captionlabel}{
19731 \backslash
19732 bfseries}
19733 \end_layout
19734
19735 \begin_layout Standard
19736 For more information about 
19737 \series bold
19738
19739 \backslash
19740 setkomafont
19741 \series default
19742  we refer to the 
19743 \series bold
19744 koma-script
19745 \series default
19746  documentation 
19747 \begin_inset LatexCommand cite
19748 key "koma-script,koma-script-de"
19749
19750 \end_inset
19751
19752 .
19753 \end_layout
19754
19755 \begin_layout Standard
19756 \begin_inset ERT
19757 status collapsed
19758
19759 \begin_layout Standard
19760
19761
19762 \backslash
19763 captionsetup[figure]{labelfont={tt}, textfont=it, indention=1cm, labelsep=period
19764 }
19765 \end_layout
19766
19767 \end_inset
19768
19769
19770 \begin_inset Note Note
19771 status open
19772
19773 \begin_layout Standard
19774 The caption format is changed only for this example.
19775 \end_layout
19776
19777 \end_inset
19778
19779
19780 \end_layout
19781
19782 \begin_layout Standard
19783 \begin_inset Float figure
19784 placement !p
19785 wide false
19786 sideways false
19787 status open
19788
19789 \begin_layout Standard
19790 \align center
19791 \begin_inset Graphics
19792         filename clipart/mobius.eps
19793         lyxscale 50
19794         scale 50
19795
19796 \end_inset
19797
19798
19799 \end_layout
19800
19801 \begin_layout Standard
19802 \begin_inset Caption
19803
19804 \begin_layout Standard
19805 \begin_inset LatexCommand label
19806 name "fig:This-is-an-fig"
19807
19808 \end_inset
19809
19810 This is an example figure caption that is longer than one line to show the
19811  different caption format.
19812  Here a self-defined caption format is used.
19813 \end_layout
19814
19815 \end_inset
19816
19817
19818 \end_layout
19819
19820 \end_inset
19821
19822
19823 \end_layout
19824
19825 \begin_layout Standard
19826 \begin_inset ERT
19827 status collapsed
19828
19829 \begin_layout Standard
19830
19831
19832 \backslash
19833 captionsetup[figure]{labelfont={bf,sf}, textfont=rm, indention=0cm, labelsep=col
19834 on}
19835 \end_layout
19836
19837 \end_inset
19838
19839
19840 \end_layout
19841
19842 \begin_layout Standard
19843 \begin_inset Float table
19844 placement !p
19845 wide false
19846 sideways false
19847 status open
19848
19849 \begin_layout Standard
19850 \begin_inset Caption
19851
19852 \begin_layout Standard
19853 \begin_inset LatexCommand label
19854 name "tab:This-is-an-tab"
19855
19856 \end_inset
19857
19858 This is an example table caption that is longer than one line to show the
19859  different caption format.
19860  Here the standard caption format for tables in this document is used.
19861 \end_layout
19862
19863 \end_inset
19864
19865
19866 \end_layout
19867
19868 \begin_layout Standard
19869 \align center
19870 \begin_inset Tabular
19871 <lyxtabular version="3" rows="1" columns="5">
19872 <features>
19873 <column alignment="center" valignment="top" leftline="true" width="0">
19874 <column alignment="center" valignment="top" leftline="true" width="0">
19875 <column alignment="center" valignment="top" leftline="true" width="0">
19876 <column alignment="center" valignment="top" leftline="true" width="0">
19877 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
19878 <row topline="true" bottomline="true">
19879 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19880 \begin_inset Text
19881
19882 \begin_layout Standard
19883 a
19884 \end_layout
19885
19886 \end_inset
19887 </cell>
19888 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19889 \begin_inset Text
19890
19891 \begin_layout Standard
19892 b
19893 \end_layout
19894
19895 \end_inset
19896 </cell>
19897 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19898 \begin_inset Text
19899
19900 \begin_layout Standard
19901 c
19902 \end_layout
19903
19904 \end_inset
19905 </cell>
19906 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19907 \begin_inset Text
19908
19909 \begin_layout Standard
19910 d
19911 \end_layout
19912
19913 \end_inset
19914 </cell>
19915 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19916 \begin_inset Text
19917
19918 \begin_layout Standard
19919 e
19920 \end_layout
19921
19922 \end_inset
19923 </cell>
19924 </row>
19925 </lyxtabular>
19926
19927 \end_inset
19928
19929
19930 \end_layout
19931
19932 \end_inset
19933
19934
19935 \end_layout
19936
19937 \begin_layout Section
19938 Caption Placement
19939 \begin_inset LatexCommand index
19940 name "Caption ! Placement"
19941
19942 \end_inset
19943
19944
19945 \begin_inset LatexCommand index
19946 name "Floats ! Caption Placement"
19947
19948 \end_inset
19949
19950
19951 \begin_inset LatexCommand label
19952 name "sec:Caption-Placement"
19953
19954 \end_inset
19955
19956
19957 \end_layout
19958
19959 \begin_layout Standard
19960 The common caption placement rule is:
19961 \end_layout
19962
19963 \begin_layout Description
19964 Figure: Caption is set below the figure
19965 \end_layout
19966
19967 \begin_layout Description
19968 Table: Caption is set above the table
19969 \end_layout
19970
19971 \begin_layout Standard
19972 Having the caption above the table is unfortunately not supported in LaTeX's
19973  standard classes.
19974  That means if you are using the document classes 
19975 \family sans
19976 article
19977 \family default
19978
19979 \family sans
19980 book
19981 \family default
19982
19983 \family sans
19984 letter
19985 \family default
19986 , or 
19987 \family sans
19988 report
19989 \family default
19990  there will be no space between the caption and the table.
19991  To insert the needed space, add the following option to the load command
19992  of the LaTeX-package 
19993 \series bold
19994 caption
19995 \series default
19996  in your document preamble
19997 \begin_inset Foot
19998 status collapsed
19999
20000 \begin_layout Standard
20001 See section\InsetSpace ~
20002
20003 \begin_inset LatexCommand ref
20004 reference "sec:Caption-Formatting"
20005
20006 \end_inset
20007
20008  for more information of the package 
20009 \series bold
20010 caption
20011 \series default
20012 .
20013 \end_layout
20014
20015 \end_inset
20016
20017 :
20018 \end_layout
20019
20020 \begin_layout Standard
20021
20022 \series bold
20023 tableposition=top
20024 \end_layout
20025
20026 \begin_layout Standard
20027 If you are using a 
20028 \series bold
20029 koma-script
20030 \series default
20031
20032 \begin_inset LatexCommand index
20033 name "LaTeX-packages ! koma-script"
20034
20035 \end_inset
20036
20037  document class (
20038 \family sans
20039 article (koma-script)
20040 \family default
20041
20042 \family sans
20043 book (koma-script)
20044 \family default
20045
20046 \family sans
20047 letter (koma-script)
20048 \family default
20049 , or 
20050 \family sans
20051 report (koma-script)
20052 \family default
20053 \InsetSpace \thinspace{}
20054 ), you can alternatively to the 
20055 \series bold
20056 caption
20057 \series default
20058  package set the document class option 
20059 \series bold
20060 tablecaptionabove
20061 \series default
20062 , or you can use the environment 
20063 \family sans
20064 caption\InsetSpace ~
20065 above
20066 \family default
20067  instead of the 
20068 \family sans
20069 caption
20070 \family default
20071  environment.
20072 \end_layout
20073
20074 \begin_layout Standard
20075 \begin_inset VSpace bigskip
20076 \end_inset
20077
20078 It is also possible to set the caption beside a figure or table.
20079  To get this the LaTeX-package 
20080 \series bold
20081 sidecap
20082 \series default
20083
20084 \begin_inset LatexCommand index
20085 name "LaTeX-packages ! sidecap"
20086
20087 \end_inset
20088
20089  has to be loaded in the document preamble with the line
20090 \end_layout
20091
20092 \begin_layout Standard
20093
20094 \series bold
20095
20096 \backslash
20097 usepackage[option]{sidecap}
20098 \end_layout
20099
20100 \begin_layout Standard
20101 If you set no option, the caption is placed on the side of the outer page
20102  margin -- to the right on odd pages, to the left on even pages.
20103  You can change the placement to inner margin with the option 
20104 \series bold
20105 innercaption
20106 \series default
20107 .
20108  To force the placement always to the right or left, use the option 
20109 \series bold
20110 rightcaption
20111 \series default
20112  or 
20113 \series bold
20114 leftcaption
20115 \series default
20116 , respectively.
20117 \end_layout
20118
20119 \begin_layout Standard
20120 To place in LyX the caption of a float on the side, it is necessary to add
20121  these commands to the document preamble:
20122 \end_layout
20123
20124 \begin_layout Standard
20125
20126 \lyxline
20127
20128 \end_layout
20129
20130 \begin_layout Standard
20131
20132 \series bold
20133
20134 \backslash
20135 newcommand{
20136 \backslash
20137 TabBesBeg}{%
20138 \newline
20139
20140 \begin_inset ERT
20141 status collapsed
20142
20143 \begin_layout Standard
20144
20145
20146 \backslash
20147 hphantom{ }
20148 \end_layout
20149
20150 \end_inset
20151
20152
20153 \backslash
20154 let
20155 \backslash
20156 MyTable
20157 \backslash
20158 table
20159 \newline
20160
20161 \begin_inset ERT
20162 status collapsed
20163
20164 \begin_layout Standard
20165
20166
20167 \backslash
20168 hphantom{ }
20169 \end_layout
20170
20171 \end_inset
20172
20173
20174 \backslash
20175 let
20176 \backslash
20177 MyEndtable
20178 \backslash
20179 endtable
20180 \newline
20181
20182 \begin_inset ERT
20183 status collapsed
20184
20185 \begin_layout Standard
20186
20187
20188 \backslash
20189 hphantom{ }
20190 \end_layout
20191
20192 \end_inset
20193
20194
20195 \backslash
20196 renewenvironment{table}{
20197 \backslash
20198 begin{SCtable}}{
20199 \backslash
20200 end{SCtable}}}
20201 \end_layout
20202
20203 \begin_layout Standard
20204
20205 \series bold
20206
20207 \backslash
20208 newcommand{
20209 \backslash
20210 TabBesEnd}{%
20211 \newline
20212
20213 \begin_inset ERT
20214 status collapsed
20215
20216 \begin_layout Standard
20217
20218
20219 \backslash
20220 hphantom{ }
20221 \end_layout
20222
20223 \end_inset
20224
20225
20226 \backslash
20227 let
20228 \backslash
20229 table
20230 \backslash
20231 MyTable
20232 \newline
20233
20234 \begin_inset ERT
20235 status collapsed
20236
20237 \begin_layout Standard
20238
20239
20240 \backslash
20241 hphantom{ }
20242 \end_layout
20243
20244 \end_inset
20245
20246
20247 \backslash
20248 let
20249 \backslash
20250 endtable
20251 \backslash
20252 MyEndtable
20253 \end_layout
20254
20255 \begin_layout Standard
20256
20257 \series bold
20258
20259 \backslash
20260 newcommand{
20261 \backslash
20262 FigBesBeg}{%
20263 \newline
20264
20265 \begin_inset ERT
20266 status collapsed
20267
20268 \begin_layout Standard
20269
20270
20271 \backslash
20272 hphantom{ }
20273 \end_layout
20274
20275 \end_inset
20276
20277
20278 \backslash
20279 let
20280 \backslash
20281 MyFigure
20282 \backslash
20283 f\SpecialChar \textcompwordmark{}
20284 igure
20285 \newline
20286
20287 \begin_inset ERT
20288 status collapsed
20289
20290 \begin_layout Standard
20291
20292
20293 \backslash
20294 hphantom{ }
20295 \end_layout
20296
20297 \end_inset
20298
20299
20300 \backslash
20301 let
20302 \backslash
20303 MyEndf\SpecialChar \textcompwordmark{}
20304 igure
20305 \backslash
20306 endf\SpecialChar \textcompwordmark{}
20307 igure
20308 \newline
20309
20310 \begin_inset ERT
20311 status collapsed
20312
20313 \begin_layout Standard
20314
20315
20316 \backslash
20317 hphantom{ }
20318 \end_layout
20319
20320 \end_inset
20321
20322
20323 \backslash
20324 renewenvironment{f\SpecialChar \textcompwordmark{}
20325 igure}{
20326 \backslash
20327 begin{SCf\SpecialChar \textcompwordmark{}
20328 igure}}{
20329 \backslash
20330 end{SCf\SpecialChar \textcompwordmark{}
20331 igure}}}
20332 \end_layout
20333
20334 \begin_layout Standard
20335
20336 \series bold
20337
20338 \backslash
20339 newcommand{
20340 \backslash
20341 FigBesEnd}{%
20342 \newline
20343
20344 \begin_inset ERT
20345 status collapsed
20346
20347 \begin_layout Standard
20348
20349
20350 \backslash
20351 hphantom{ }
20352 \end_layout
20353
20354 \end_inset
20355
20356
20357 \backslash
20358 let
20359 \backslash
20360 f\SpecialChar \textcompwordmark{}
20361 igure
20362 \backslash
20363 MyFigure
20364 \newline
20365
20366 \begin_inset ERT
20367 status collapsed
20368
20369 \begin_layout Standard
20370
20371
20372 \backslash
20373 hphantom{ }
20374 \end_layout
20375
20376 \end_inset
20377
20378
20379 \backslash
20380 let
20381 \backslash
20382 endf\SpecialChar \textcompwordmark{}
20383 igure
20384 \backslash
20385 MyEndf\SpecialChar \textcompwordmark{}
20386 igure}
20387 \end_layout
20388
20389 \begin_layout Standard
20390
20391 \lyxline
20392
20393 \end_layout
20394
20395 \begin_layout Standard
20396 The commands allow you to redefine the floats so that the caption is set
20397  on the side.
20398  For figure floats use the command
20399 \end_layout
20400
20401 \begin_layout Standard
20402
20403 \series bold
20404
20405 \backslash
20406 FigBesBeg
20407 \end_layout
20408
20409 \begin_layout Standard
20410 in ERT before the float.
20411  Behind the float insert the command
20412 \end_layout
20413
20414 \begin_layout Standard
20415
20416 \series bold
20417
20418 \backslash
20419 FigBesEnd
20420 \end_layout
20421
20422 \begin_layout Standard
20423 in ERT to get back to the original float definition.
20424 \end_layout
20425
20426 \begin_layout Standard
20427 For table floats use the corresponding commands
20428 \end_layout
20429
20430 \begin_layout Standard
20431
20432 \series bold
20433
20434 \backslash
20435 TabBesBeg
20436 \series default
20437  and 
20438 \series bold
20439
20440 \backslash
20441 TabBesEnd
20442 \end_layout
20443
20444 \begin_layout Standard
20445 Figure\InsetSpace ~
20446
20447 \begin_inset LatexCommand ref
20448 reference "fig:cap-beside-fig"
20449
20450 \end_inset
20451
20452  and Table\InsetSpace ~
20453
20454 \begin_inset LatexCommand ref
20455 reference "tab:cap-beside-tab"
20456
20457 \end_inset
20458
20459  are examples where the caption is set beside.
20460 \end_layout
20461
20462 \begin_layout Standard
20463 You can see in the examples that the caption text appears at the top of
20464  the floats for table floats and at the bottom for figure floats.
20465  To change this, you can use the command
20466 \end_layout
20467
20468 \begin_layout Standard
20469
20470 \series bold
20471
20472 \backslash
20473 sidecaptionvpos{float type}{placement}
20474 \end_layout
20475
20476 \begin_layout Standard
20477 in the document preamble or in ERT before the float.
20478  The float type is either 
20479 \family sans
20480 figure
20481 \family default
20482  or 
20483 \family sans
20484 table
20485 \family default
20486 , the placement can be 
20487 \begin_inset Quotes eld
20488 \end_inset
20489
20490
20491 \family sans
20492 t
20493 \family default
20494
20495 \begin_inset Quotes erd
20496 \end_inset
20497
20498  for top, 
20499 \begin_inset Quotes eld
20500 \end_inset
20501
20502
20503 \family sans
20504 c
20505 \family default
20506
20507 \begin_inset Quotes erd
20508 \end_inset
20509
20510  for center, or 
20511 \begin_inset Quotes eld
20512 \end_inset
20513
20514
20515 \family sans
20516 b
20517 \family default
20518
20519 \begin_inset Quotes erd
20520 \end_inset
20521
20522  for bottom.
20523  To have for example the caption of figure floats vertically centered, use
20524  the command
20525 \end_layout
20526
20527 \begin_layout Standard
20528
20529 \series bold
20530
20531 \backslash
20532 sidecaptionvpos{f\SpecialChar \textcompwordmark{}
20533 igure}{c}
20534 \end_layout
20535
20536 \begin_layout Standard
20537 This was used for Figure\InsetSpace ~
20538
20539 \begin_inset LatexCommand ref
20540 reference "fig:cap-beside-fig-2"
20541
20542 \end_inset
20543
20544 .
20545 \end_layout
20546
20547 \begin_layout Standard
20548 \begin_inset VSpace medskip
20549 \end_inset
20550
20551 For more information about the package 
20552 \series bold
20553 sidecap
20554 \series default
20555  we refer to its documentation 
20556 \begin_inset LatexCommand cite
20557 key "sidecap"
20558
20559 \end_inset
20560
20561 .
20562 \end_layout
20563
20564 \begin_layout Standard
20565 \begin_inset Note Greyedout
20566 status open
20567
20568 \begin_layout Standard
20569
20570 \series bold
20571 Note:
20572 \series default
20573  The LaTeX-package 
20574 \series bold
20575 hypcap
20576 \series default
20577
20578 \begin_inset LatexCommand index
20579 name "LaTeX-packages ! hypcap"
20580
20581 \end_inset
20582
20583 , described in section\InsetSpace ~
20584
20585 \begin_inset LatexCommand ref
20586 reference "sub:Reference-Position"
20587
20588 \end_inset
20589
20590 , has no effect on floats with the caption set beside.
20591 \end_layout
20592
20593 \end_inset
20594
20595
20596 \end_layout
20597
20598 \begin_layout Standard
20599 \begin_inset ERT
20600 status collapsed
20601
20602 \begin_layout Standard
20603
20604
20605 \backslash
20606 FigBesBeg 
20607 \end_layout
20608
20609 \end_inset
20610
20611
20612 \end_layout
20613
20614 \begin_layout Standard
20615 \begin_inset Float figure
20616 wide false
20617 sideways false
20618 status open
20619
20620 \begin_layout Standard
20621 \begin_inset Graphics
20622         filename clipart/escher-lsd.eps
20623         scale 75
20624
20625 \end_inset
20626
20627
20628 \end_layout
20629
20630 \begin_layout Standard
20631 \begin_inset Caption
20632
20633 \begin_layout Standard
20634 \begin_inset LatexCommand label
20635 name "fig:cap-beside-fig"
20636
20637 \end_inset
20638
20639 This is a caption beside a figure.
20640 \end_layout
20641
20642 \end_inset
20643
20644
20645 \end_layout
20646
20647 \end_inset
20648
20649
20650 \end_layout
20651
20652 \begin_layout Standard
20653 \begin_inset ERT
20654 status collapsed
20655
20656 \begin_layout Standard
20657
20658
20659 \backslash
20660 TabBesBeg 
20661 \end_layout
20662
20663 \end_inset
20664
20665
20666 \end_layout
20667
20668 \begin_layout Standard
20669 \begin_inset Float table
20670 wide false
20671 sideways false
20672 status open
20673
20674 \begin_layout Standard
20675 \begin_inset Caption
20676
20677 \begin_layout Standard
20678 \begin_inset LatexCommand label
20679 name "tab:cap-beside-tab"
20680
20681 \end_inset
20682
20683 This is a caption beside a table.
20684 \end_layout
20685
20686 \end_inset
20687
20688
20689 \end_layout
20690
20691 \begin_layout Standard
20692 \begin_inset Tabular
20693 <lyxtabular version="3" rows="4" columns="5">
20694 <features>
20695 <column alignment="center" valignment="top" leftline="true" width="0">
20696 <column alignment="center" valignment="top" leftline="true" width="0">
20697 <column alignment="center" valignment="top" leftline="true" width="0">
20698 <column alignment="center" valignment="top" leftline="true" width="0">
20699 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
20700 <row topline="true">
20701 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20702 \begin_inset Text
20703
20704 \begin_layout Standard
20705 a
20706 \end_layout
20707
20708 \end_inset
20709 </cell>
20710 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20711 \begin_inset Text
20712
20713 \begin_layout Standard
20714
20715 \end_layout
20716
20717 \end_inset
20718 </cell>
20719 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20720 \begin_inset Text
20721
20722 \begin_layout Standard
20723 b
20724 \end_layout
20725
20726 \end_inset
20727 </cell>
20728 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20729 \begin_inset Text
20730
20731 \begin_layout Standard
20732
20733 \end_layout
20734
20735 \end_inset
20736 </cell>
20737 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20738 \begin_inset Text
20739
20740 \begin_layout Standard
20741 c
20742 \end_layout
20743
20744 \end_inset
20745 </cell>
20746 </row>
20747 <row topline="true">
20748 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20749 \begin_inset Text
20750
20751 \begin_layout Standard
20752
20753 \end_layout
20754
20755 \end_inset
20756 </cell>
20757 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20758 \begin_inset Text
20759
20760 \begin_layout Standard
20761 d
20762 \end_layout
20763
20764 \end_inset
20765 </cell>
20766 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20767 \begin_inset Text
20768
20769 \begin_layout Standard
20770
20771 \end_layout
20772
20773 \end_inset
20774 </cell>
20775 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20776 \begin_inset Text
20777
20778 \begin_layout Standard
20779 e
20780 \end_layout
20781
20782 \end_inset
20783 </cell>
20784 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20785 \begin_inset Text
20786
20787 \begin_layout Standard
20788
20789 \end_layout
20790
20791 \end_inset
20792 </cell>
20793 </row>
20794 <row topline="true">
20795 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20796 \begin_inset Text
20797
20798 \begin_layout Standard
20799 f
20800 \end_layout
20801
20802 \end_inset
20803 </cell>
20804 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20805 \begin_inset Text
20806
20807 \begin_layout Standard
20808
20809 \end_layout
20810
20811 \end_inset
20812 </cell>
20813 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20814 \begin_inset Text
20815
20816 \begin_layout Standard
20817 g
20818 \end_layout
20819
20820 \end_inset
20821 </cell>
20822 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20823 \begin_inset Text
20824
20825 \begin_layout Standard
20826
20827 \end_layout
20828
20829 \end_inset
20830 </cell>
20831 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20832 \begin_inset Text
20833
20834 \begin_layout Standard
20835 h
20836 \end_layout
20837
20838 \end_inset
20839 </cell>
20840 </row>
20841 <row topline="true" bottomline="true">
20842 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20843 \begin_inset Text
20844
20845 \begin_layout Standard
20846
20847 \end_layout
20848
20849 \end_inset
20850 </cell>
20851 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20852 \begin_inset Text
20853
20854 \begin_layout Standard
20855 i
20856 \end_layout
20857
20858 \end_inset
20859 </cell>
20860 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20861 \begin_inset Text
20862
20863 \begin_layout Standard
20864
20865 \end_layout
20866
20867 \end_inset
20868 </cell>
20869 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20870 \begin_inset Text
20871
20872 \begin_layout Standard
20873 j
20874 \end_layout
20875
20876 \end_inset
20877 </cell>
20878 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20879 \begin_inset Text
20880
20881 \begin_layout Standard
20882
20883 \end_layout
20884
20885 \end_inset
20886 </cell>
20887 </row>
20888 </lyxtabular>
20889
20890 \end_inset
20891
20892
20893 \end_layout
20894
20895 \end_inset
20896
20897
20898 \end_layout
20899
20900 \begin_layout Standard
20901 \begin_inset ERT
20902 status collapsed
20903
20904 \begin_layout Standard
20905
20906
20907 \backslash
20908 TabBesEnd
20909 \end_layout
20910
20911 \end_inset
20912
20913
20914 \end_layout
20915
20916 \begin_layout Standard
20917 \begin_inset ERT
20918 status collapsed
20919
20920 \begin_layout Standard
20921
20922
20923 \backslash
20924 sidecaptionvpos{figure}{c}
20925 \end_layout
20926
20927 \end_inset
20928
20929
20930 \begin_inset Float figure
20931 wide false
20932 sideways false
20933 status open
20934
20935 \begin_layout Standard
20936 \begin_inset Graphics
20937         filename clipart/escher-lsd.eps
20938         scale 75
20939
20940 \end_inset
20941
20942
20943 \end_layout
20944
20945 \begin_layout Standard
20946 \begin_inset Caption
20947
20948 \begin_layout Standard
20949 \begin_inset LatexCommand label
20950 name "fig:cap-beside-fig-2"
20951
20952 \end_inset
20953
20954 This is a vertically centered caption beside a figure.
20955 \end_layout
20956
20957 \end_inset
20958
20959
20960 \end_layout
20961
20962 \end_inset
20963
20964
20965 \end_layout
20966
20967 \begin_layout Standard
20968 \begin_inset ERT
20969 status collapsed
20970
20971 \begin_layout Standard
20972
20973
20974 \backslash
20975 FigBesEnd
20976 \end_layout
20977
20978 \end_inset
20979
20980
20981 \end_layout
20982
20983 \begin_layout Section
20984 Listings of Floats
20985 \begin_inset LatexCommand label
20986 name "sec:Listings-of-Floats"
20987
20988 \end_inset
20989
20990
20991 \begin_inset LatexCommand index
20992 name "Floats ! Float Lists"
20993
20994 \end_inset
20995
20996
20997 \end_layout
20998
20999 \begin_layout Standard
21000 Similar to the the table of contents where the sections of the document
21001  are listed, there are listings for all float types, like the figures of
21002  the documents.
21003  You can insert them via the 
21004 \family sans
21005 Insert\SpecialChar \menuseparator
21006 List\InsetSpace ~
21007 /\InsetSpace ~
21008 TOC
21009 \family default
21010  sub menus.
21011 \end_layout
21012
21013 \begin_layout Standard
21014 The list entries are the float captions or its short title, the float number,
21015  and the page number where they appear in the document.
21016 \end_layout
21017
21018 \begin_layout Standard
21019 You can find the list of figures and tables at the end of this document.
21020 \end_layout
21021
21022 \begin_layout Chapter
21023 Notes
21024 \end_layout
21025
21026 \begin_layout Section
21027 \begin_inset ERT
21028 status collapsed
21029
21030 \begin_layout Standard
21031
21032
21033 \backslash
21034 texorpdfstring{
21035 \end_layout
21036
21037 \end_inset
21038
21039 LyX
21040 \begin_inset ERT
21041 status collapsed
21042
21043 \begin_layout Standard
21044
21045 }{LyX}
21046 \end_layout
21047
21048 \end_inset
21049
21050  Notes
21051 \begin_inset LatexCommand label
21052 name "sec:LyX-Notes"
21053
21054 \end_inset
21055
21056
21057 \begin_inset LatexCommand index
21058 name "Notes ! LyX Notes"
21059
21060 \end_inset
21061
21062
21063 \begin_inset Note Note
21064 status collapsed
21065
21066 \begin_layout Standard
21067 The command 
21068 \backslash
21069 texorpdfstring is provided by the LaTeX-package hyperref to avoid that ligatures
21070  are displayed wrongly in PDF-bookmarks.
21071  For more information about this, have a look at 
21072 \begin_inset LatexCommand cite
21073 key "hyperref"
21074
21075 \end_inset
21076
21077 .
21078 \end_layout
21079
21080 \end_inset
21081
21082
21083 \end_layout
21084
21085 \begin_layout Standard
21086 Notes are inserted with the toolbar button 
21087 \begin_inset Graphics
21088         filename ../images/note-insert.xpm
21089         scale 85
21090
21091 \end_inset
21092
21093  or the menu 
21094 \family sans
21095 Insert\SpecialChar \menuseparator
21096 Note
21097 \family default
21098 .
21099  There are five types of notes:
21100 \end_layout
21101
21102 \begin_layout Description
21103 LyX\InsetSpace ~
21104 Note This note type is for internal notes that won't appear in the output.
21105  Its note-box looks like this:
21106 \newline
21107
21108 \newline
21109
21110 \begin_inset Graphics
21111         filename clipart/LyXNoteImageQt4.png
21112         display none
21113         scale 85
21114
21115 \end_inset
21116
21117  
21118 \begin_inset Note Note
21119 status open
21120
21121 \begin_layout Standard
21122 This is text in a note box that doesn't appear in the output.
21123 \end_layout
21124
21125 \end_inset
21126
21127
21128 \end_layout
21129
21130 \begin_layout Description
21131 Comment This note also doesn't appear in the output but it appears as LaTeX-comm
21132 ent, when you export the document to LaTeX via the menu 
21133 \family sans
21134 File\SpecialChar \menuseparator
21135 Export\SpecialChar \menuseparator
21136 LaTeX (pdflatex) / LaTeX (plain)
21137 \family default
21138 .
21139  Its note-box looks like this:
21140 \newline
21141
21142 \newline
21143
21144 \begin_inset Graphics
21145         filename clipart/CommentNoteImageQt4.png
21146         display none
21147         scale 85
21148
21149 \end_inset
21150
21151  
21152 \begin_inset Note Comment
21153 status open
21154
21155 \begin_layout Standard
21156 This is text in a note box that only appears as comment in LaTeX-files.
21157 \end_layout
21158
21159 \end_inset
21160
21161
21162 \end_layout
21163
21164 \begin_layout Description
21165 Greyed\InsetSpace ~
21166 Out This note will appear in the output as grey text.
21167  Its note-box looks like this:
21168 \newline
21169
21170 \newline
21171
21172 \begin_inset Graphics
21173         filename clipart/GreyedOutNoteImageQt4.png
21174         display none
21175         scale 85
21176
21177 \end_inset
21178
21179
21180 \newline
21181
21182 \begin_inset ERT
21183 status collapsed
21184
21185 \begin_layout Standard
21186
21187
21188 \backslash
21189 renewenvironment{lyxgreyedout}
21190 \end_layout
21191
21192 \begin_layout Standard
21193
21194 {
21195 \backslash
21196 textcolor[gray]{0.8}
21197 \backslash
21198 bgroup}{
21199 \backslash
21200 egroup}
21201 \end_layout
21202
21203 \end_inset
21204
21205
21206 \begin_inset Note Greyedout
21207 status open
21208
21209 \begin_layout Standard
21210 This is text
21211 \begin_inset Foot
21212 status open
21213
21214 \begin_layout Standard
21215 This is an example footnote within a greyed out note.
21216 \end_layout
21217
21218 \end_inset
21219
21220  of a comment that appears in the output as grey text.
21221 \end_layout
21222
21223 \end_inset
21224
21225
21226 \begin_inset ERT
21227 status collapsed
21228
21229 \begin_layout Standard
21230
21231
21232 \backslash
21233 renewenvironment{lyxgreyedout}
21234 \end_layout
21235
21236 \begin_layout Standard
21237
21238 {
21239 \backslash
21240 textcolor{blue}
21241 \backslash
21242 bgroup}{
21243 \backslash
21244 egroup}
21245 \end_layout
21246
21247 \end_inset
21248
21249
21250 \begin_inset Note Note
21251 status collapsed
21252
21253 \begin_layout Standard
21254 The greyed out note is here redefined to show it with the original LyX definitio
21255 n because greyed out notes are redefined in the preamble of this document,
21256  as described below, to have blue text.
21257 \end_layout
21258
21259 \end_inset
21260
21261
21262 \newline
21263
21264 \newline
21265 As you can see in the example, the first line of greyed out notes is a bit
21266  indented and greyed out notes can have footnotes.
21267 \end_layout
21268
21269 \begin_layout Description
21270 Framed This note will appear in the output as framed text.
21271  Its note-box looks like this:
21272 \newline
21273
21274 \newline
21275
21276 \begin_inset Graphics
21277         filename clipart/FramedNoteImageQt4.png
21278         display none
21279         scale 85
21280
21281 \end_inset
21282
21283  
21284 \begin_inset Note Framed
21285 status open
21286
21287 \begin_layout Standard
21288 This is text in a note box that appears framed in the output.
21289 \end_layout
21290
21291 \end_inset
21292
21293  In contrary to framed boxes
21294 \begin_inset Foot
21295 status collapsed
21296
21297 \begin_layout Standard
21298 Framed boxes are described in section\InsetSpace ~
21299
21300 \begin_inset LatexCommand ref
21301 reference "sec:Framed-Boxes"
21302
21303 \end_inset
21304
21305 .
21306 \end_layout
21307
21308 \end_inset
21309
21310  the frame uses always the whole text width and the note is set into its
21311  own paragraph.
21312 \end_layout
21313
21314 \begin_layout Description
21315 Shaded This note will appear in the output with red background color.
21316  Its note box looks like this:
21317 \newline
21318
21319 \newline
21320
21321 \begin_inset Graphics
21322         filename clipart/ShadedNoteImageQt4.png
21323         display none
21324         scale 85
21325
21326 \end_inset
21327
21328
21329 \begin_inset Note Shaded
21330 status open
21331
21332 \begin_layout Standard
21333 This text in a note box appears in the output with red background.
21334 \end_layout
21335
21336 \end_inset
21337
21338 In contrary to colored boxes
21339 \begin_inset Foot
21340 status collapsed
21341
21342 \begin_layout Standard
21343 Colored boxes are described in section\InsetSpace ~
21344
21345 \begin_inset LatexCommand ref
21346 reference "sec:Colored-Boxes"
21347
21348 \end_inset
21349
21350 .
21351 \end_layout
21352
21353 \end_inset
21354
21355  the note uses always the whole text width and the note is set into its
21356  own paragraph.
21357 \end_layout
21358
21359 \begin_layout Standard
21360 \begin_inset VSpace bigskip
21361 \end_inset
21362
21363 When you use the toolbar button 
21364 \begin_inset Graphics
21365         filename ../images/note-insert.xpm
21366         scale 85
21367
21368 \end_inset
21369
21370  to insert notes, a 
21371 \family sans
21372 LyX\InsetSpace ~
21373 Note
21374 \family default
21375  is inserted.
21376  You can switch between the five note types by right-clicking on the note-box.
21377  
21378 \family roman
21379 \series medium
21380 \bar no
21381 If you want to turn existing text into a note, mark it and click on the
21382  note
21383 \family default
21384 \series default
21385 \bar default
21386  toolbar 
21387 \family roman
21388 \series medium
21389 \bar no
21390 button
21391 \family default
21392 \series default
21393 \bar default
21394 .
21395 \end_layout
21396
21397 \begin_layout Standard
21398 \begin_inset VSpace bigskip
21399 \end_inset
21400
21401 You can change the text color of the greyed out notes in the preamble with
21402  the following command:
21403 \end_layout
21404
21405 \begin_layout Standard
21406
21407 \series bold
21408
21409 \backslash
21410 renewenvironment{lyxgreyedout}
21411 \newline
21412
21413 \begin_inset ERT
21414 status collapsed
21415
21416 \begin_layout Standard
21417
21418
21419 \backslash
21420 hphantom{ }
21421 \end_layout
21422
21423 \end_inset
21424
21425 {
21426 \backslash
21427 textcolor{color}
21428 \backslash
21429 bgroup}{
21430 \backslash
21431 egroup}
21432 \end_layout
21433
21434 \begin_layout Standard
21435 The available colors and the method to define own colors is explained in
21436  section\InsetSpace ~
21437
21438 \begin_inset LatexCommand ref
21439 reference "sec:Colored-Tables"
21440
21441 \end_inset
21442
21443 .
21444 \end_layout
21445
21446 \begin_layout Standard
21447 Notes that appear in blue in this document are set using greyed out notes
21448  with blue text.
21449 \end_layout
21450
21451 \begin_layout Standard
21452 \begin_inset VSpace bigskip
21453 \end_inset
21454
21455
21456 \end_layout
21457
21458 \begin_layout Standard
21459 The text style of 
21460 \family sans
21461 Framed
21462 \family default
21463  and 
21464 \family sans
21465 Shaded
21466 \family default
21467  notes can be set in the 
21468 \family sans
21469 Text Style
21470 \family default
21471  dialog.
21472 \end_layout
21473
21474 \begin_layout Standard
21475 The default frame width for 
21476 \family sans
21477 Framed
21478 \family default
21479  notes is 0.4\InsetSpace \thinspace{}
21480 pt; it can be changed by changing the size 
21481 \series bold
21482
21483 \backslash
21484 FrameRule
21485 \series default
21486 .
21487  The default space between the note content and the frame is 9\InsetSpace \thinspace{}
21488 pt; it can
21489  be changed by changing the size 
21490 \series bold
21491
21492 \backslash
21493 FrameSep
21494 \series default
21495 .
21496  For example the frame appearance of the following 
21497 \family sans
21498 Framed
21499 \family default
21500  note is set with the ERT commands
21501 \end_layout
21502
21503 \begin_layout Standard
21504
21505 \series bold
21506
21507 \backslash
21508 FrameRule 5pt 
21509 \backslash
21510 FrameSep 0.5cm
21511 \end_layout
21512
21513 \begin_layout Standard
21514 \begin_inset ERT
21515 status collapsed
21516
21517 \begin_layout Standard
21518
21519
21520 \backslash
21521 FrameRule 5pt 
21522 \backslash
21523 FrameSep 0.5cm
21524 \end_layout
21525
21526 \end_inset
21527
21528
21529 \begin_inset Note Framed
21530 status open
21531
21532 \begin_layout Standard
21533 This is text in a 
21534 \family sans
21535 Framed
21536 \family default
21537  note.
21538 \end_layout
21539
21540 \end_inset
21541
21542
21543 \begin_inset ERT
21544 status collapsed
21545
21546 \begin_layout Standard
21547
21548
21549 \backslash
21550 FrameRule 0.4pt 
21551 \backslash
21552 FrameSep 9pt
21553 \end_layout
21554
21555 \end_inset
21556
21557
21558 \end_layout
21559
21560 \begin_layout Standard
21561 \begin_inset VSpace bigskip
21562 \end_inset
21563
21564
21565 \end_layout
21566
21567 \begin_layout Standard
21568 For 
21569 \family sans
21570 Shaded
21571 \family default
21572  notes the default space between the note content and the note border is
21573  3\InsetSpace \thinspace{}
21574 pt; it can be changed by changing the size 
21575 \series bold
21576
21577 \backslash
21578 fboxsep
21579 \series default
21580 .
21581 \newline
21582 The default background color red can be changed with the command 
21583 \series bold
21584
21585 \backslash
21586 def\SpecialChar \textcompwordmark{}
21587 inecolor{shadebox}
21588 \series default
21589 .
21590  The scheme of the 
21591 \series bold
21592
21593 \backslash
21594 def\SpecialChar \textcompwordmark{}
21595 inecolor
21596 \series default
21597  command is explained in section\InsetSpace ~
21598
21599 \begin_inset LatexCommand ref
21600 reference "sec:Colored-Tables"
21601
21602 \end_inset
21603
21604
21605 \begin_inset Foot
21606 status collapsed
21607
21608 \begin_layout Standard
21609 Note that 
21610 \series bold
21611
21612 \backslash
21613 def
21614 \series default
21615 \SpecialChar \textcompwordmark{}
21616
21617 \series bold
21618 inecolor
21619 \series default
21620  requires the LaTeX-package 
21621 \series bold
21622 color
21623 \series default
21624  in the preamble, see section\InsetSpace ~
21625
21626 \begin_inset LatexCommand ref
21627 reference "sec:Colored-Boxes"
21628
21629 \end_inset
21630
21631 .
21632 \end_layout
21633
21634 \end_inset
21635
21636 .
21637 \end_layout
21638
21639 \begin_layout Standard
21640 For example the appearance of the following 
21641 \family sans
21642 Shaded
21643 \family default
21644  note is set with the ERT commands
21645 \end_layout
21646
21647 \begin_layout Standard
21648
21649 \series bold
21650
21651 \backslash
21652 fboxsep 0.5cm
21653 \series default
21654
21655 \newline
21656
21657 \series bold
21658
21659 \backslash
21660 def\SpecialChar \textcompwordmark{}
21661 inecolor{shadecolor}{cmyk}{0.5,0,1,0.5}
21662 \end_layout
21663
21664 \begin_layout Standard
21665 \begin_inset ERT
21666 status collapsed
21667
21668 \begin_layout Standard
21669
21670
21671 \backslash
21672 fboxsep 0.5cm
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 definecolor{shadecolor}{cmyk}{0.5,0,1,0.5}
21686 \end_layout
21687
21688 \end_inset
21689
21690
21691 \begin_inset Note Shaded
21692 status open
21693
21694 \begin_layout Standard
21695
21696 \color yellow
21697 This is yellow text in a
21698 \color none
21699  
21700 \family sans
21701 \color yellow
21702 Shaded
21703 \family default
21704 \color none
21705  
21706 \color yellow
21707 note with darkgreen background.
21708 \end_layout
21709
21710 \end_inset
21711
21712
21713 \begin_inset ERT
21714 status collapsed
21715
21716 \begin_layout Standard
21717
21718
21719 \backslash
21720 fboxsep 3pt
21721 \end_layout
21722
21723 \end_inset
21724
21725
21726 \begin_inset ERT
21727 status collapsed
21728
21729 \begin_layout Standard
21730
21731
21732 \backslash
21733 definecolor{shadecolor}{rgb}{1,0,0}
21734 \end_layout
21735
21736 \end_inset
21737
21738
21739 \end_layout
21740
21741 \begin_layout Section
21742 Footnotes
21743 \begin_inset LatexCommand label
21744 name "sec:Footnotes"
21745
21746 \end_inset
21747
21748
21749 \begin_inset LatexCommand index
21750 name "Notes ! Footnotes"
21751
21752 \end_inset
21753
21754
21755 \begin_inset LatexCommand index
21756 name "Footnotes"
21757
21758 \end_inset
21759
21760
21761 \end_layout
21762
21763 \begin_layout Standard
21764 Footnotes can be inserted using the toolbar button 
21765 \begin_inset Graphics
21766         filename ../images/footnote-insert.xpm
21767         scale 85
21768
21769 \end_inset
21770
21771  or the menu 
21772 \family sans
21773 Insert\SpecialChar \menuseparator
21774 Footnote
21775 \family default
21776 .
21777  
21778 \family roman
21779 \series medium
21780 \bar no
21781 You'll see
21782 \family default
21783 \series default
21784 \bar default
21785  then the following footnote-box: 
21786 \begin_inset Graphics
21787         filename clipart/footnoteQt4.png
21788         scale 80
21789
21790 \end_inset
21791
21792  
21793 \family roman
21794 \series medium
21795 \bar no
21796 where you can enter the footnote text.
21797  If you want to turn existing text into a footnote, mark it and click on
21798  the footnote
21799 \family default
21800 \series default
21801 \bar default
21802  toolbar 
21803 \family roman
21804 \series medium
21805 \bar no
21806 button
21807 \family default
21808 \series default
21809 \bar default
21810 .
21811 \end_layout
21812
21813 \begin_layout Standard
21814 Here is an example footnote:
21815 \family roman
21816 \series medium
21817 \bar no
21818
21819 \begin_inset Foot
21820 status open
21821
21822 \begin_layout Standard
21823 \begin_inset LatexCommand label
21824 name "foot:This-is-an"
21825
21826 \end_inset
21827
21828 This is an example footnote.
21829 \end_layout
21830
21831 \end_inset
21832
21833
21834 \family default
21835 \series default
21836 \bar default
21837
21838 \begin_inset ERT
21839 status collapsed
21840
21841 \begin_layout Standard
21842
21843
21844 \backslash
21845 newcounter{MyRepeatFoot}
21846 \end_layout
21847
21848 \begin_layout Standard
21849
21850
21851 \backslash
21852 setcounter{MyRepeatFoot}{
21853 \backslash
21854 thefootnote}
21855 \end_layout
21856
21857 \end_inset
21858
21859
21860 \end_layout
21861
21862 \begin_layout Standard
21863 The footnote will appear in the output as a superscript number at the text
21864  position where the footnote box is placed.
21865  The footnote text is placed at the bottom of the current page.
21866  The footnote number is calculated by LaTeX, the numbers are consecutive.
21867  It depends on your document-class, if the footnote number is reset for
21868  every chapter.
21869 \end_layout
21870
21871 \begin_layout Standard
21872 Footnotes can be referenced like floats: Insert a label into the footnote
21873  and cross-reference this label in the text as described in section\InsetSpace ~
21874
21875 \begin_inset LatexCommand ref
21876 reference "sec:Referencing-Floats"
21877
21878 \end_inset
21879
21880 .
21881 \newline
21882 This is a cross-reference of Footnote\InsetSpace ~
21883
21884 \begin_inset LatexCommand ref
21885 reference "foot:This-is-an"
21886
21887 \end_inset
21888
21889 .
21890 \end_layout
21891
21892 \begin_layout Standard
21893 \begin_inset VSpace defskip
21894 \end_inset
21895
21896 To use footnotes within tables, you have to use minipages, see section\InsetSpace ~
21897
21898 \begin_inset LatexCommand ref
21899 reference "sec:Minipages"
21900
21901 \end_inset
21902
21903 .
21904  Footnotes within longtables are described in section\InsetSpace ~
21905
21906 \begin_inset LatexCommand ref
21907 reference "sub:Footnotes-in-Longtables"
21908
21909 \end_inset
21910
21911 .
21912 \end_layout
21913
21914 \begin_layout Standard
21915 \begin_inset VSpace defskip
21916 \end_inset
21917
21918 To create only a mark for a footnote, use the command 
21919 \series bold
21920
21921 \backslash
21922 footnotemark[number]
21923 \series default
21924  in ERT.
21925  This is used when you have the same annotation several times in a text
21926  but doesn't want to print the footnote text every time.
21927 \newline
21928 As you don't know
21929  the number of the repeating footnote while you are writing the text, you
21930  have to store its number.
21931  For the following footnote mark example, these commands were inserted in
21932  ERT behind Footnote\InsetSpace ~
21933
21934 \begin_inset LatexCommand ref
21935 reference "foot:This-is-an"
21936
21937 \end_inset
21938
21939  to store the footnote number:
21940 \end_layout
21941
21942 \begin_layout Standard
21943
21944 \series bold
21945
21946 \backslash
21947 newcounter{MyRepeatFoot}
21948 \newline
21949
21950 \backslash
21951 setcounter{MyRepeatFoot}{
21952 \backslash
21953 thefootnote}
21954 \end_layout
21955
21956 \begin_layout Standard
21957 The footnote mark was then created with this command:
21958 \end_layout
21959
21960 \begin_layout Standard
21961
21962 \series bold
21963
21964 \backslash
21965 footnotemark[
21966 \backslash
21967 theMyRepeatFoot]
21968 \end_layout
21969
21970 \begin_layout Standard
21971 Here is an example footnote mark:
21972 \family roman
21973 \series medium
21974 \bar no
21975
21976 \begin_inset ERT
21977 status collapsed
21978
21979 \begin_layout Standard
21980
21981
21982 \backslash
21983 footnotemark[
21984 \backslash
21985 theMyRepeatFoot]
21986 \end_layout
21987
21988 \end_inset
21989
21990
21991 \end_layout
21992
21993 \begin_layout Subsection
21994 Footnote Numbering
21995 \begin_inset LatexCommand label
21996 name "sub:Footnote-Numbering"
21997
21998 \end_inset
21999
22000
22001 \begin_inset LatexCommand index
22002 name "Footnotes ! Numbering"
22003
22004 \end_inset
22005
22006
22007 \end_layout
22008
22009 \begin_layout Standard
22010 To reset the footnote number back to 1 after each section
22011 \family roman
22012 , add this command to your document preamble:
22013 \end_layout
22014
22015 \begin_layout Standard
22016
22017 \series bold
22018
22019 \backslash
22020 @addtoreset{footnote}{section}
22021 \end_layout
22022
22023 \begin_layout Standard
22024 \begin_inset VSpace bigskip
22025 \end_inset
22026
22027 The following preamble command changes the footnote numbering style to small
22028  roman numerals:
22029 \end_layout
22030
22031 \begin_layout Standard
22032
22033 \series bold
22034
22035 \backslash
22036 renewcommand{
22037 \backslash
22038 thefootnote}{
22039 \backslash
22040 roman{footnote}}
22041 \end_layout
22042
22043 \begin_layout Standard
22044 \begin_inset ERT
22045 status collapsed
22046
22047 \begin_layout Standard
22048
22049
22050 \backslash
22051 renewcommand{
22052 \backslash
22053 thefootnote}{
22054 \backslash
22055 roman{footnote}}
22056 \end_layout
22057
22058 \end_inset
22059
22060  This is a footnote with roman numbering:
22061 \begin_inset Foot
22062 status open
22063
22064 \begin_layout Standard
22065 This is an example footnote with roman numbering.
22066 \end_layout
22067
22068 \end_inset
22069
22070
22071 \begin_inset ERT
22072 status collapsed
22073
22074 \begin_layout Standard
22075
22076
22077 \backslash
22078 renewcommand{
22079 \backslash
22080 thefootnote}{
22081 \backslash
22082 arabic{footnote}}
22083 \end_layout
22084
22085 \end_inset
22086
22087
22088 \end_layout
22089
22090 \begin_layout Standard
22091 To change the numbering style to capital roman numerals replace in the command
22092  above 
22093 \series bold
22094
22095 \backslash
22096 roman
22097 \series default
22098  by 
22099 \series bold
22100
22101 \backslash
22102 Roman
22103 \series default
22104 .
22105  To 
22106 \begin_inset Quotes eld
22107 \end_inset
22108
22109 number
22110 \begin_inset Quotes erd
22111 \end_inset
22112
22113  footnotes with capital or small Latin letters use 
22114 \series bold
22115
22116 \backslash
22117 Alph
22118 \series default
22119  or 
22120 \series bold
22121
22122 \backslash
22123 alph
22124 \series default
22125 , respectively.
22126  To 
22127 \begin_inset Quotes eld
22128 \end_inset
22129
22130 number
22131 \begin_inset Quotes erd
22132 \end_inset
22133
22134  footnotes with symbols use 
22135 \series bold
22136
22137 \backslash
22138 fnsymbol
22139 \series default
22140 .
22141 \end_layout
22142
22143 \begin_layout Standard
22144 \begin_inset Note Greyedout
22145 status open
22146
22147 \begin_layout Standard
22148
22149 \series bold
22150 Note:
22151 \series default
22152  You can only number 26 footnotes with Latin letters, because this numbering
22153  is limited to single letters.
22154 \end_layout
22155
22156 \end_inset
22157
22158
22159 \newline
22160
22161 \begin_inset Note Greyedout
22162 status open
22163
22164 \begin_layout Standard
22165
22166 \series bold
22167 Note:
22168 \series default
22169  You can only number 9 footnotes with symbols.
22170 \end_layout
22171
22172 \end_inset
22173
22174
22175 \end_layout
22176
22177 \begin_layout Standard
22178 To return to the default numbering style when you changed to another one,
22179  use 
22180 \series bold
22181
22182 \backslash
22183 arabic
22184 \series default
22185  instead of 
22186 \series bold
22187
22188 \backslash
22189 roman
22190 \series default
22191  in the command above.
22192 \end_layout
22193
22194 \begin_layout Standard
22195 \begin_inset VSpace bigskip
22196 \end_inset
22197
22198
22199 \end_layout
22200
22201 \begin_layout Standard
22202 If you want to have footnotes numbered in the scheme 
22203 \begin_inset Quotes eld
22204 \end_inset
22205
22206 chapter.footnote
22207 \begin_inset Quotes erd
22208 \end_inset
22209
22210 , add the following command to your document preamble:
22211 \end_layout
22212
22213 \begin_layout Standard
22214
22215 \series bold
22216
22217 \backslash
22218 numberwithin{footnote}{chapter}
22219 \end_layout
22220
22221 \begin_layout Standard
22222 To be able to use the command 
22223 \series bold
22224
22225 \backslash
22226 numberwithin
22227 \series default
22228 , set in the tab 
22229 \family sans
22230 Math\InsetSpace ~
22231 Options
22232 \family default
22233  in the document settings the option 
22234 \family sans
22235 Use\InsetSpace ~
22236 AMS\InsetSpace ~
22237 math\InsetSpace ~
22238 package
22239 \family default
22240 .
22241 \end_layout
22242
22243 \begin_layout Standard
22244 \begin_inset ERT
22245 status collapsed
22246
22247 \begin_layout Standard
22248
22249
22250 \backslash
22251 numberwithin{footnote}{chapter}
22252 \end_layout
22253
22254 \end_inset
22255
22256 This is another example footnote:
22257 \series bold
22258
22259 \begin_inset Foot
22260 status open
22261
22262 \begin_layout Standard
22263 This is a footnote numbered in the scheme 
22264 \begin_inset Quotes eld
22265 \end_inset
22266
22267 chapter.footnote
22268 \begin_inset Quotes erd
22269 \end_inset
22270
22271 .
22272 \end_layout
22273
22274 \end_inset
22275
22276
22277 \series default
22278
22279 \begin_inset ERT
22280 status collapsed
22281
22282 \begin_layout Standard
22283
22284
22285 \backslash
22286 renewcommand{
22287 \backslash
22288 thefootnote}{
22289 \backslash
22290 arabic{footnote}}
22291 \end_layout
22292
22293 \end_inset
22294
22295
22296 \end_layout
22297
22298 \begin_layout Standard
22299 \begin_inset Note Greyedout
22300 status open
22301
22302 \begin_layout Standard
22303
22304 \series bold
22305 Note:
22306 \series default
22307  
22308 \series bold
22309
22310 \backslash
22311 numberwithin
22312 \series default
22313  always prints out the footnote number as arabic number; previous redefinitions
22314  to get non-arabic numbers are overwritten.
22315 \end_layout
22316
22317 \end_inset
22318
22319
22320 \end_layout
22321
22322 \begin_layout Standard
22323 So to get for example the scheme 
22324 \begin_inset Quotes eld
22325 \end_inset
22326
22327 chapter.
22328 \backslash
22329 Roman{footnote}
22330 \begin_inset Quotes erd
22331 \end_inset
22332
22333 , use this command instead of 
22334 \series bold
22335
22336 \backslash
22337 numberwithin
22338 \series default
22339 :
22340 \end_layout
22341
22342 \begin_layout Standard
22343
22344 \series bold
22345
22346 \backslash
22347 renewcommand{
22348 \backslash
22349 thefootnote}{
22350 \backslash
22351 thechapter.
22352 \backslash
22353 Roman{footnote}}
22354 \end_layout
22355
22356 \begin_layout Subsection
22357 Footnote Placement
22358 \begin_inset LatexCommand index
22359 name "Footnotes ! Placement"
22360
22361 \end_inset
22362
22363
22364 \end_layout
22365
22366 \begin_layout Standard
22367 If you have several footnotes in one page, they appear without vertical
22368  space between them at the bottom of the page.
22369  To make them better readable you can e.\InsetSpace \thinspace{}
22370 g.\InsetSpace ~
22371 add 1.5\InsetSpace \thinspace{}
22372 mm space with the following
22373  preamble command:
22374 \end_layout
22375
22376 \begin_layout Standard
22377
22378 \series bold
22379
22380 \backslash
22381 let
22382 \backslash
22383 myFoot
22384 \backslash
22385 footnote
22386 \newline
22387
22388 \backslash
22389 renewcommand{
22390 \backslash
22391 footnote}[1]{
22392 \backslash
22393 myFoot{#1
22394 \backslash
22395 vspace{1.5mm}}}
22396 \end_layout
22397
22398 \begin_layout Standard
22399 \begin_inset VSpace bigskip
22400 \end_inset
22401
22402 In a two-column document the footnotes appear at the bottom of every column,
22403  see Figure\InsetSpace ~
22404
22405 \begin_inset LatexCommand ref
22406 reference "fig:Standard-footnote-placement"
22407
22408 \end_inset
22409
22410 .
22411  If the footnotes should only appear at the bottom of the right column,
22412  as in Figure\InsetSpace ~
22413
22414 \begin_inset LatexCommand ref
22415 reference "fig:Footnote-placement-in"
22416
22417 \end_inset
22418
22419 , use the LaTeX-package 
22420 \series bold
22421 ftnright
22422 \series default
22423
22424 \begin_inset LatexCommand index
22425 name "LaTeX-packages ! ftnright"
22426
22427 \end_inset
22428
22429  with this command in the document preamble:
22430 \end_layout
22431
22432 \begin_layout Standard
22433
22434 \series bold
22435
22436 \backslash
22437 usepackage{ftnright}
22438 \end_layout
22439
22440 \begin_layout Standard
22441 \begin_inset Float figure
22442 placement !h
22443 wide false
22444 sideways false
22445 status open
22446
22447 \begin_layout Standard
22448 \begin_inset ERT
22449 status collapsed
22450
22451 \begin_layout Standard
22452
22453
22454 \backslash
22455 framebox{
22456 \end_layout
22457
22458 \end_inset
22459
22460
22461 \begin_inset Graphics
22462         filename clipart/without_fntright.pdf
22463         width 100col%
22464
22465 \end_inset
22466
22467
22468 \begin_inset ERT
22469 status collapsed
22470
22471 \begin_layout Standard
22472
22473 }
22474 \end_layout
22475
22476 \end_inset
22477
22478
22479 \end_layout
22480
22481 \begin_layout Standard
22482 \begin_inset Caption
22483
22484 \begin_layout Standard
22485 \begin_inset LatexCommand label
22486 name "fig:Standard-footnote-placement"
22487
22488 \end_inset
22489
22490 Standard footnote placement in two-column documents.
22491 \end_layout
22492
22493 \end_inset
22494
22495
22496 \end_layout
22497
22498 \end_inset
22499
22500
22501 \end_layout
22502
22503 \begin_layout Standard
22504 \begin_inset Float figure
22505 placement !h
22506 wide false
22507 sideways false
22508 status open
22509
22510 \begin_layout Standard
22511 \begin_inset ERT
22512 status collapsed
22513
22514 \begin_layout Standard
22515
22516
22517 \backslash
22518 framebox{
22519 \end_layout
22520
22521 \end_inset
22522
22523
22524 \begin_inset Graphics
22525         filename clipart/with_fntright.pdf
22526         width 100col%
22527
22528 \end_inset
22529
22530
22531 \begin_inset ERT
22532 status collapsed
22533
22534 \begin_layout Standard
22535
22536 }
22537 \end_layout
22538
22539 \end_inset
22540
22541
22542 \end_layout
22543
22544 \begin_layout Standard
22545 \begin_inset Caption
22546
22547 \begin_layout Standard
22548 \begin_inset LatexCommand label
22549 name "fig:Footnote-placement-in"
22550
22551 \end_inset
22552
22553 Footnote placement in two-column documents when the LaTeX-package 
22554 \series bold
22555 ftnright
22556 \series default
22557  is used.
22558 \end_layout
22559
22560 \end_inset
22561
22562
22563 \end_layout
22564
22565 \end_inset
22566
22567
22568 \end_layout
22569
22570 \begin_layout Standard
22571 \begin_inset VSpace bigskip
22572 \end_inset
22573
22574 In some scientific literature it is usual to collect the footnotes and print
22575  them in a separate paragraph at the the end of a section, like in Figure\InsetSpace ~
22576
22577 \begin_inset LatexCommand ref
22578 reference "fig:Endnotes----footnotes"
22579
22580 \end_inset
22581
22582 .
22583  They are then so called 
22584 \begin_inset Quotes eld
22585 \end_inset
22586
22587 endnotes
22588 \begin_inset Quotes erd
22589 \end_inset
22590
22591 .
22592  To use endnotes instead of footnotes in your document, load the LaTeX-package
22593  
22594 \series bold
22595 endnotes
22596 \series default
22597
22598 \begin_inset LatexCommand index
22599 name "LaTeX-packages ! endnotes"
22600
22601 \end_inset
22602
22603  with the document preamble lines
22604 \end_layout
22605
22606 \begin_layout Standard
22607
22608 \series bold
22609
22610 \backslash
22611 usepackage{endnotes}
22612 \newline
22613
22614 \backslash
22615 let
22616 \backslash
22617 footnote
22618 \backslash
22619 endnote
22620 \end_layout
22621
22622 \begin_layout Standard
22623 To insert the collected footnotes, insert the command
22624 \end_layout
22625
22626 \begin_layout Standard
22627
22628 \series bold
22629
22630 \backslash
22631 theendnotes
22632 \end_layout
22633
22634 \begin_layout Standard
22635 in ERT at the the end of a section or chapter.
22636 \end_layout
22637
22638 \begin_layout Standard
22639 \begin_inset Float figure
22640 wide false
22641 sideways false
22642 status open
22643
22644 \begin_layout Standard
22645 \align center
22646 \begin_inset ERT
22647 status collapsed
22648
22649 \begin_layout Standard
22650
22651
22652 \backslash
22653 framebox{
22654 \end_layout
22655
22656 \end_inset
22657
22658
22659 \begin_inset Graphics
22660         filename clipart/endnotes.pdf
22661
22662 \end_inset
22663
22664
22665 \begin_inset ERT
22666 status collapsed
22667
22668 \begin_layout Standard
22669
22670 }
22671 \end_layout
22672
22673 \end_inset
22674
22675
22676 \end_layout
22677
22678 \begin_layout Standard
22679 \begin_inset Caption
22680
22681 \begin_layout Standard
22682 \begin_inset LatexCommand label
22683 name "fig:Endnotes----footnotes"
22684
22685 \end_inset
22686
22687 Endnotes -- footnotes are printed in a separate paragraph at the end of
22688  sections or chapters.
22689 \end_layout
22690
22691 \end_inset
22692
22693
22694 \end_layout
22695
22696 \end_inset
22697
22698
22699 \end_layout
22700
22701 \begin_layout Standard
22702 \begin_inset VSpace defskip
22703 \end_inset
22704
22705 The paragraph heading for the endnotes isn't automatically translated into
22706  the document language, this must be done manually.
22707  The following preamble command translate the default English name 
22708 \begin_inset Quotes eld
22709 \end_inset
22710
22711 Notes
22712 \begin_inset Quotes erd
22713 \end_inset
22714
22715  to the German translation 
22716 \begin_inset Quotes eld
22717 \end_inset
22718
22719 Anmerkungen
22720 \begin_inset Quotes erd
22721 \end_inset
22722
22723 :
22724 \end_layout
22725
22726 \begin_layout Standard
22727
22728 \series bold
22729
22730 \backslash
22731 renewcommand{
22732 \backslash
22733 notesname}{Anmerkungen}
22734 \end_layout
22735
22736 \begin_layout Standard
22737 \begin_inset VSpace defskip
22738 \end_inset
22739
22740 The numbering of endnotes can be changed like the footnote numbering as
22741  described in section\InsetSpace ~
22742
22743 \begin_inset LatexCommand ref
22744 reference "sub:Footnote-Numbering"
22745
22746 \end_inset
22747
22748 ; just replace the command 
22749 \series bold
22750
22751 \backslash
22752 thefootnote
22753 \series default
22754  by 
22755 \series bold
22756
22757 \backslash
22758 theendnote
22759 \series default
22760 .
22761  To reset the endnote number use the command 
22762 \series bold
22763
22764 \backslash
22765 @addtoreset
22766 \series default
22767  as described in section\InsetSpace ~
22768
22769 \begin_inset LatexCommand ref
22770 reference "sub:Footnote-Numbering"
22771
22772 \end_inset
22773
22774  and replace the command parameter 
22775 \series bold
22776 footnote
22777 \series default
22778  by 
22779 \series bold
22780 endnote
22781 \series default
22782 .
22783 \end_layout
22784
22785 \begin_layout Standard
22786 To create only a mark for an endnote, use the command 
22787 \series bold
22788
22789 \backslash
22790 endnotemark[number]
22791 \series default
22792  similar to the command 
22793 \series bold
22794
22795 \backslash
22796 footnotemark
22797 \series default
22798 , described in section\InsetSpace ~
22799
22800 \begin_inset LatexCommand ref
22801 reference "sec:Footnotes"
22802
22803 \end_inset
22804
22805 .
22806 \end_layout
22807
22808 \begin_layout Standard
22809 \begin_inset VSpace bigskip
22810 \end_inset
22811
22812 Footnotes can also be placed in the page margin and the footnote text alignment
22813  can be changed, see the LaTeX-package 
22814 \series bold
22815 footmisc
22816 \series default
22817
22818 \begin_inset LatexCommand index
22819 name "LaTeX-packages ! footmisc"
22820
22821 \end_inset
22822
22823
22824 \begin_inset LatexCommand cite
22825 key "footmisc"
22826
22827 \end_inset
22828
22829  for more information about this.
22830 \end_layout
22831
22832 \begin_layout Standard
22833 For various further footnote formatting issues have a look at LaTeX-books,
22834  
22835 \begin_inset LatexCommand cite
22836 key "latexcompanion,latexguide,latexbook"
22837
22838 \end_inset
22839
22840 .
22841 \end_layout
22842
22843 \begin_layout Section
22844 Margin Notes
22845 \begin_inset LatexCommand index
22846 name "Notes ! Margin Notes"
22847
22848 \end_inset
22849
22850
22851 \end_layout
22852
22853 \begin_layout Standard
22854 Margin notes look and behave in LyX like footnotes.
22855  They are inserted via the menu 
22856 \family sans
22857 Insert\SpecialChar \menuseparator
22858 Marginal\InsetSpace ~
22859 Note
22860 \family default
22861  or the toolbar button 
22862 \begin_inset Graphics
22863         filename ../images/marginalnote-insert.xpm
22864         scale 85
22865
22866 \end_inset
22867
22868 .
22869  A grey 
22870 \family roman
22871 \series medium
22872 box with the
22873 \family default
22874 \series default
22875  red 
22876 \family roman
22877 \series medium
22878 label 
22879 \begin_inset Quotes eld
22880 \end_inset
22881
22882 margin
22883 \begin_inset Quotes erd
22884 \end_inset
22885
22886  appears where you can enter the text of the margin note.
22887 \end_layout
22888
22889 \begin_layout Standard
22890 At the side is an example margin note.
22891 \family roman
22892 \series medium
22893
22894 \begin_inset Marginal
22895 status open
22896
22897 \begin_layout Standard
22898 This is a margin note.
22899 \end_layout
22900
22901 \end_inset
22902
22903
22904 \end_layout
22905
22906 \begin_layout Standard
22907 Margin notes appear at the right side in single-sided documents.
22908  In double-sided documents they appear in the outer margin -- left on even
22909  pages, right on odd pages.
22910  The text of margin notes is aligned opposite to the outer margin -- right-align
22911 ed when the note appears in the left margin.
22912  The first line of the margin note is placed at the position of the text
22913  line where it is inserted in the document.
22914 \end_layout
22915
22916 \begin_layout Standard
22917 \begin_inset VSpace bigskip
22918 \end_inset
22919
22920 To place the margin note in the inner margin, add the command
22921 \end_layout
22922
22923 \begin_layout Standard
22924
22925 \series bold
22926
22927 \backslash
22928 reversemarginpar
22929 \end_layout
22930
22931 \begin_layout Standard
22932 in ERT before a margin note.
22933  The new placement is valid for all following margin notes.
22934 \begin_inset ERT
22935 status collapsed
22936
22937 \begin_layout Standard
22938
22939
22940 \backslash
22941 reversemarginpar 
22942 \end_layout
22943
22944 \end_inset
22945
22946
22947 \begin_inset Marginal
22948 status open
22949
22950 \begin_layout Standard
22951 This is a margin note in the inner margin.
22952 \end_layout
22953
22954 \end_inset
22955
22956
22957 \series bold
22958
22959 \newline
22960
22961 \series default
22962
22963 \begin_inset Note Greyedout
22964 status open
22965
22966 \begin_layout Standard
22967
22968 \series bold
22969 Note:
22970 \series default
22971  There is often not enough space in the inner margin so that the notes are
22972  not correctly displayed in the output.
22973 \end_layout
22974
22975 \end_inset
22976
22977
22978 \end_layout
22979
22980 \begin_layout Standard
22981 \begin_inset ERT
22982 status collapsed
22983
22984 \begin_layout Standard
22985
22986
22987 \backslash
22988 normalmarginpar 
22989 \end_layout
22990
22991 \end_inset
22992
22993 To return to the default placement insert the command
22994 \end_layout
22995
22996 \begin_layout Standard
22997
22998 \series bold
22999
23000 \backslash
23001 normalmarginpar
23002 \end_layout
23003
23004 \begin_layout Standard
23005 in ERT.
23006  
23007 \begin_inset Note Greyedout
23008 status open
23009
23010 \begin_layout Standard
23011
23012 \series bold
23013 Note:
23014 \series default
23015  The command is ignored when it is within a paragraph where also the command
23016  
23017 \series bold
23018
23019 \backslash
23020 reversemarginpar
23021 \series default
23022  is inserted.
23023 \end_layout
23024
23025 \end_inset
23026
23027
23028 \end_layout
23029
23030 \begin_layout Standard
23031 \begin_inset VSpace bigskip
23032 \end_inset
23033
23034
23035 \family roman
23036 \series medium
23037
23038 \begin_inset Marginal
23039 status open
23040
23041 \begin_layout Standard
23042 AVeryLongMarginParWord that isn't hyphenated.
23043 \end_layout
23044
23045 \end_inset
23046
23047
23048 \family default
23049 \series default
23050 Similar to the case described in section\InsetSpace ~
23051
23052 \begin_inset LatexCommand ref
23053 reference "sub:Multiple-Lines-in"
23054
23055 \end_inset
23056
23057 , long words cannot be hyphenated when they are the first word in a margin
23058  note.
23059  To avoid this, insert the command
23060 \end_layout
23061
23062 \begin_layout Standard
23063
23064 \series bold
23065
23066 \backslash
23067 hspace{0pt}
23068 \end_layout
23069
23070 \begin_layout Standard
23071 in ERT before the word
23072 \family roman
23073 \series medium
23074 .
23075 \begin_inset Marginal
23076 status open
23077
23078 \begin_layout Standard
23079 \begin_inset ERT
23080 status collapsed
23081
23082 \begin_layout Standard
23083
23084
23085 \backslash
23086 hspace{0pt}
23087 \end_layout
23088
23089 \end_inset
23090
23091 AVeryLongMarginParWord that is hyphenated.
23092 \end_layout
23093
23094 \end_inset
23095
23096
23097 \end_layout
23098
23099 \begin_layout Standard
23100 \begin_inset VSpace bigskip
23101 \end_inset
23102
23103
23104 \end_layout
23105
23106 \begin_layout Standard
23107 \begin_inset Note Greyedout
23108 status open
23109
23110 \begin_layout Standard
23111
23112 \series bold
23113 Note:
23114 \series default
23115  Margin notes can normally not be used inside tables, floats, and footnotes.
23116 \end_layout
23117
23118 \end_inset
23119
23120
23121 \end_layout
23122
23123 \begin_layout Standard
23124 \begin_inset VSpace bigskip
23125 \end_inset
23126
23127
23128 \end_layout
23129
23130 \begin_layout Standard
23131 \begin_inset ERT
23132 status collapsed
23133
23134 \begin_layout Standard
23135
23136
23137 \backslash
23138 ifmarginnote
23139 \end_layout
23140
23141 \end_inset
23142
23143
23144 \begin_inset Note Note
23145 status open
23146
23147 \begin_layout Standard
23148 The following section will only be displayed when you have the LaTeX-package
23149  
23150 \series bold
23151 marginnote
23152 \series default
23153  is installed.
23154 \end_layout
23155
23156 \end_inset
23157
23158
23159 \end_layout
23160
23161 \begin_layout Standard
23162 This restriction can be evaded by using the LaTeX-package 
23163 \series bold
23164 marginnote
23165 \series default
23166
23167 \begin_inset LatexCommand index
23168 name "LaTeX-packages ! marginnote"
23169
23170 \end_inset
23171
23172 .
23173  By adding these two lines to your document preamble, the command used by
23174  LyX for margin notes is redefined to use the command provided by the 
23175 \series bold
23176 marginnote
23177 \series default
23178 -package:
23179 \end_layout
23180
23181 \begin_layout Standard
23182
23183 \series bold
23184
23185 \backslash
23186 usepackage{marginnote}
23187 \newline
23188
23189 \backslash
23190 let
23191 \backslash
23192 marginpar
23193 \backslash
23194 marginnote
23195 \end_layout
23196
23197 \begin_layout Standard
23198 This is also used in this document because 
23199 \series bold
23200 marginnote
23201 \series default
23202  has another useful feature: You can set a vertical offset for the note.
23203  This is often needed when too many margin notes are too close together
23204  or for a better page layout.
23205  The offset is set in LyX as ERT directly behind the margin note in the
23206  scheme
23207 \end_layout
23208
23209 \begin_layout Standard
23210
23211 \series bold
23212 [offset]
23213 \end_layout
23214
23215 \begin_layout Standard
23216 where the offset is a length with one of the units listed in Table\InsetSpace ~
23217
23218 \begin_inset LatexCommand ref
23219 reference "tab:Units"
23220
23221 \end_inset
23222
23223 .
23224  A negative value shifts the note up, a positive value shifts it down.
23225  
23226 \family roman
23227 \series medium
23228 For example the margin note beside this text line is shifted up 1.5\InsetSpace \thinspace{}
23229 cm with
23230  the ERT-command 
23231 \begin_inset Quotes eld
23232 \end_inset
23233
23234
23235 \family default
23236 \series bold
23237 [-1.5cm]
23238 \family roman
23239 \series medium
23240
23241 \begin_inset Quotes erd
23242 \end_inset
23243
23244
23245 \begin_inset Marginal
23246 status open
23247
23248 \begin_layout Standard
23249 This margin note is shifted up 1.5\InsetSpace \thinspace{}
23250 cm from its original position.
23251 \end_layout
23252
23253 \end_inset
23254
23255
23256 \family default
23257 \series default
23258
23259 \begin_inset ERT
23260 status collapsed
23261
23262 \begin_layout Standard
23263
23264 [-1.5cm]
23265 \end_layout
23266
23267 \end_inset
23268
23269
23270 \end_layout
23271
23272 \begin_layout Standard
23273 \begin_inset VSpace defskip
23274 \end_inset
23275
23276 With 
23277 \series bold
23278 marginnote
23279 \series default
23280  you can also change the alignment of the text in the margin note.
23281  For example the commands
23282 \end_layout
23283
23284 \begin_layout Standard
23285
23286 \series bold
23287
23288 \backslash
23289 renewcommand*{
23290 \backslash
23291 raggedleftmarginnote}{
23292 \backslash
23293 centering}
23294 \newline
23295
23296 \backslash
23297 renewcommand*{
23298 \backslash
23299 raggedrightmarginnote}{
23300 \backslash
23301 centering}
23302 \end_layout
23303
23304 \begin_layout Standard
23305 set the alignment to centered.
23306  
23307 \series bold
23308
23309 \backslash
23310 raggedleftmarginnote
23311 \series default
23312  denotes margin notes that appear at the left side.
23313 \family roman
23314 \series medium
23315
23316 \begin_inset ERT
23317 status collapsed
23318
23319 \begin_layout Standard
23320
23321
23322 \backslash
23323 renewcommand*{
23324 \backslash
23325 raggedleftmarginnote}{
23326 \backslash
23327 centering}
23328 \end_layout
23329
23330 \begin_layout Standard
23331
23332
23333 \backslash
23334 renewcommand*{
23335 \backslash
23336 raggedrightmarginnote}{
23337 \backslash
23338 centering}
23339 \end_layout
23340
23341 \end_inset
23342
23343
23344 \begin_inset Marginal
23345 status open
23346
23347 \begin_layout Standard
23348 The text of this margin note is centered.
23349 \end_layout
23350
23351 \end_inset
23352
23353
23354 \family default
23355 \series default
23356  The default is
23357 \end_layout
23358
23359 \begin_layout Standard
23360
23361 \series bold
23362
23363 \backslash
23364 renewcommand*{
23365 \backslash
23366 raggedleftmarginnote}{
23367 \backslash
23368 raggedleft}
23369 \newline
23370
23371 \backslash
23372 renewcommand*{
23373 \backslash
23374 raggedrightmarginnote}{
23375 \backslash
23376 raggedright}
23377 \family roman
23378 \series medium
23379
23380 \begin_inset ERT
23381 status collapsed
23382
23383 \begin_layout Standard
23384
23385
23386 \backslash
23387 renewcommand*{
23388 \backslash
23389 raggedleftmarginnote}{
23390 \backslash
23391 raggedleft}
23392 \end_layout
23393
23394 \begin_layout Standard
23395
23396
23397 \backslash
23398 renewcommand*{
23399 \backslash
23400 raggedrightmarginnote}{
23401 \backslash
23402 raggedright}
23403 \end_layout
23404
23405 \end_inset
23406
23407
23408 \end_layout
23409
23410 \begin_layout Standard
23411 \begin_inset VSpace defskip
23412 \end_inset
23413
23414 For the other features of 
23415 \series bold
23416 marginnote
23417 \series default
23418  we refer to its documentation 
23419 \begin_inset LatexCommand cite
23420 key "marginnote"
23421
23422 \end_inset
23423
23424 .
23425 \end_layout
23426
23427 \begin_layout Standard
23428 \begin_inset VSpace bigskip
23429 \end_inset
23430
23431 You can change the layout of margin notes by redefining its definition.
23432  To create for example a header for all margin notes with the underlined,
23433  sans-serif, and bold header text 
23434 \begin_inset Quotes eld
23435 \end_inset
23436
23437
23438 \family sans
23439 \series bold
23440 \bar under
23441 Attention!
23442 \family default
23443 \series default
23444 \bar default
23445
23446 \begin_inset Quotes erd
23447 \end_inset
23448
23449 , add this to your document preamble:
23450 \end_layout
23451
23452 \begin_layout Standard
23453
23454 \series bold
23455
23456 \backslash
23457 let
23458 \backslash
23459 myMarginpar
23460 \backslash
23461 marginpar
23462 \newline
23463
23464 \backslash
23465 renewcommand{
23466 \backslash
23467 marginpar}[1]{
23468 \backslash
23469 myMarginpar{%
23470 \newline
23471
23472 \begin_inset ERT
23473 status collapsed
23474
23475 \begin_layout Standard
23476
23477
23478 \backslash
23479 hphantom{ }
23480 \end_layout
23481
23482 \end_inset
23483
23484
23485 \backslash
23486 hspace{0pt}
23487 \backslash
23488 textsf{
23489 \backslash
23490 textbf{
23491 \backslash
23492 underbar{Attention!}}}%
23493 \newline
23494
23495 \begin_inset ERT
23496 status collapsed
23497
23498 \begin_layout Standard
23499
23500
23501 \backslash
23502 hphantom{ }
23503 \end_layout
23504
23505 \end_inset
23506
23507
23508 \backslash
23509 vspace{1.5mm}
23510 \backslash
23511
23512 \backslash
23513 #1}}
23514 \end_layout
23515
23516 \begin_layout Standard
23517
23518 \family roman
23519 \series medium
23520 \begin_inset ERT
23521 status collapsed
23522
23523 \begin_layout Standard
23524
23525
23526 \backslash
23527 let
23528 \backslash
23529 myMarginpar
23530 \backslash
23531 marginpar
23532 \end_layout
23533
23534 \begin_layout Standard
23535
23536
23537 \backslash
23538 renewcommand{
23539 \backslash
23540 marginpar}[1]{
23541 \backslash
23542 myMarginpar{%
23543 \end_layout
23544
23545 \begin_layout Standard
23546
23547    
23548 \backslash
23549 textsf{
23550 \backslash
23551 textbf{
23552 \backslash
23553 underbar{Attention!}}}%
23554 \end_layout
23555
23556 \begin_layout Standard
23557
23558    
23559 \backslash
23560 vspace{1.5mm}
23561 \backslash
23562
23563 \backslash
23564 #1}}
23565 \end_layout
23566
23567 \end_inset
23568
23569
23570 \begin_inset Marginal
23571 status open
23572
23573 \begin_layout Standard
23574 This is a margin note with a defined heading.
23575 \end_layout
23576
23577 \end_inset
23578
23579
23580 \family default
23581 \series default
23582
23583 \begin_inset ERT
23584 status collapsed
23585
23586 \begin_layout Standard
23587
23588 [-1.5cm]
23589 \end_layout
23590
23591 \end_inset
23592
23593
23594 \family roman
23595 \series medium
23596
23597 \begin_inset ERT
23598 status collapsed
23599
23600 \begin_layout Standard
23601
23602
23603 \backslash
23604 renewcommand{
23605 \backslash
23606 marginpar}[1]{
23607 \backslash
23608 myMarginpar{#1}}
23609 \end_layout
23610
23611 \end_inset
23612
23613
23614 \family default
23615 \series default
23616
23617 \begin_inset Note Note
23618 status collapsed
23619
23620 \begin_layout Standard
23621 The margin note format is changed only for this example.
23622 \end_layout
23623
23624 \end_inset
23625
23626
23627 \end_layout
23628
23629 \begin_layout Standard
23630 \begin_inset ERT
23631 status collapsed
23632
23633 \begin_layout Standard
23634
23635
23636 \backslash
23637 else
23638 \end_layout
23639
23640 \end_inset
23641
23642
23643 \begin_inset Note Note
23644 status open
23645
23646 \begin_layout Standard
23647 The following will be displayed when the LaTeX-package 
23648 \series bold
23649 marginnote
23650 \series default
23651  is not installed:
23652 \end_layout
23653
23654 \end_inset
23655
23656
23657 \end_layout
23658
23659 \begin_layout Standard
23660 You need to install the LaTeX-package 
23661 \series bold
23662 marginnote
23663 \series default
23664  to see the following part of this section in the output.
23665 \end_layout
23666
23667 \begin_layout Standard
23668 \begin_inset ERT
23669 status collapsed
23670
23671 \begin_layout Standard
23672
23673
23674 \backslash
23675 fi
23676 \end_layout
23677
23678 \end_inset
23679
23680
23681 \end_layout
23682
23683 \begin_layout Standard
23684
23685 \end_layout
23686
23687 \begin_layout Chapter
23688 Boxes
23689 \end_layout
23690
23691 \begin_layout Section
23692 Introduction
23693 \begin_inset LatexCommand index
23694 name "Boxes ! Introduction"
23695
23696 \end_inset
23697
23698
23699 \end_layout
23700
23701 \begin_layout Standard
23702 Boxes are used to format a block of text.
23703  Boxes can be used to write documents with multiple languages, see section\InsetSpace ~
23704
23705 \begin_inset LatexCommand ref
23706 reference "sec:Minipages"
23707
23708 \end_inset
23709
23710 , to frame texts, see section\InsetSpace ~
23711
23712 \begin_inset LatexCommand ref
23713 reference "sec:Framed-Boxes"
23714
23715 \end_inset
23716
23717 , to prevent words to be hyphenated, see section\InsetSpace ~
23718
23719 \begin_inset LatexCommand ref
23720 reference "sec:Prevent-Hyphenation"
23721
23722 \end_inset
23723
23724 , to align text, see section\InsetSpace ~
23725
23726 \begin_inset LatexCommand ref
23727 reference "sub:Vertical-Alignment"
23728
23729 \end_inset
23730
23731 , or to set the background color of texts, see section\InsetSpace ~
23732
23733 \begin_inset LatexCommand ref
23734 reference "sec:Colored-Boxes"
23735
23736 \end_inset
23737
23738 .
23739 \end_layout
23740
23741 \begin_layout Standard
23742 Boxes can be inserted with the menu 
23743 \family sans
23744 Insert\SpecialChar \menuseparator
23745 Box
23746 \family default
23747 .
23748  A grey box with the label 
23749 \family sans
23750 Box (Minipage)
23751 \family default
23752
23753 \begin_inset Graphics
23754         filename clipart/BoxInsetDefaultQt4.png
23755         scale 85
23756
23757 \end_inset
23758
23759 , will be inserted.
23760  The box type can be specified by right-clicking on the box.
23761  The appearing box dialog offers the 
23762 \family sans
23763 Inner\InsetSpace ~
23764 Box
23765 \family default
23766  types 
23767 \family sans
23768 Parbox
23769 \family default
23770  and 
23771 \family sans
23772 Minipage
23773 \family default
23774 .
23775  The type 
23776 \family sans
23777 Minipage
23778 \family default
23779  is the default for new boxes and is explained in section\InsetSpace ~
23780
23781 \begin_inset LatexCommand ref
23782 reference "sec:Minipages"
23783
23784 \end_inset
23785
23786 ; the type 
23787 \family sans
23788 Parbox
23789 \family default
23790  is described in section\InsetSpace ~
23791
23792 \begin_inset LatexCommand ref
23793 reference "sec:Parboxes"
23794
23795 \end_inset
23796
23797 .
23798 \end_layout
23799
23800 \begin_layout Standard
23801 Boxes aren't numbered and can therefore not be referenced like floats or
23802  footnotes.
23803 \end_layout
23804
23805 \begin_layout Standard
23806 \begin_inset Note Greyedout
23807 status open
23808
23809 \begin_layout Standard
23810
23811 \series bold
23812 Note:
23813 \series default
23814  Due to a bug in LyX you have to insert a protected space behind a box when
23815  you want to separate in a line the box from the following text with a space.
23816 \end_layout
23817
23818 \end_inset
23819
23820
23821 \end_layout
23822
23823 \begin_layout Standard
23824 \begin_inset Note Greyedout
23825 status open
23826
23827 \begin_layout Standard
23828
23829 \series bold
23830 Note:
23831 \series default
23832  Boxes must not be the item in an 
23833 \family sans
23834 Itemize
23835 \family default
23836  or 
23837 \family sans
23838 Description
23839 \family default
23840  environment.
23841 \end_layout
23842
23843 \end_inset
23844
23845
23846 \end_layout
23847
23848 \begin_layout Standard
23849 \begin_inset Note Greyedout
23850 status open
23851
23852 \begin_layout Standard
23853
23854 \series bold
23855 Note:
23856 \series default
23857  For an unknown reason you can only set the 
23858 \family sans
23859 Inner\InsetSpace ~
23860 Box
23861 \family default
23862  type to 
23863 \family sans
23864 None
23865 \family default
23866  when you use a framed box.
23867  Boxes without an 
23868 \family sans
23869 Inner\InsetSpace ~
23870 Box
23871 \family default
23872  type and without frames are explained in section\InsetSpace ~
23873
23874 \begin_inset LatexCommand ref
23875 reference "sec:Prevent-Hyphenation"
23876
23877 \end_inset
23878
23879 .
23880 \end_layout
23881
23882 \end_inset
23883
23884
23885 \end_layout
23886
23887 \begin_layout Section
23888 Box Dialog
23889 \begin_inset LatexCommand label
23890 name "sec:Box-Dialog"
23891
23892 \end_inset
23893
23894
23895 \begin_inset LatexCommand index
23896 name "Boxes ! Box Dialog"
23897
23898 \end_inset
23899
23900
23901 \begin_inset LatexCommand index
23902 name "Boxes ! Alignment"
23903
23904 \end_inset
23905
23906
23907 \end_layout
23908
23909 \begin_layout Standard
23910 In the box dialog you can adjust the box geometry in the fields 
23911 \family sans
23912 Width
23913 \family default
23914  and 
23915 \family sans
23916 Height
23917 \family default
23918 .
23919  The available units for the geometry are explained in Table\InsetSpace ~
23920
23921 \begin_inset LatexCommand ref
23922 reference "tab:Units"
23923
23924 \end_inset
23925
23926 .
23927  The field 
23928 \family sans
23929 Heigth
23930 \family default
23931  offers the following additional sizes:
23932 \end_layout
23933
23934 \begin_layout Description
23935 Depth This is the plain text 
23936 \begin_inset Quotes eld
23937 \end_inset
23938
23939 height
23940 \begin_inset Quotes erd
23941 \end_inset
23942
23943 .
23944  It ignores the total depth when there are multiple text lines in the box:
23945 \newline
23946
23947 \newline
23948
23949 \newline
23950
23951 \begin_inset Box Boxed
23952 position "c"
23953 hor_pos "c"
23954 has_inner_box 1
23955 inner_pos "c"
23956 use_parbox 0
23957 width "12col%"
23958 special "none"
23959 height "1in"
23960 height_special "depth"
23961 status collapsed
23962
23963 \begin_layout Standard
23964 \align center
23965 Box height set to 1\InsetSpace \thinspace{}
23966 Depth
23967 \end_layout
23968
23969 \end_inset
23970
23971
23972 \newline
23973
23974 \newline
23975
23976 \end_layout
23977
23978 \begin_layout Description
23979 Height This is the heigth of the text that is inside the box.
23980  A value of e.\InsetSpace \thinspace{}
23981 g.\InsetSpace ~
23982 2 for this size will set the box heigth to 2 times the text
23983  height: 
23984 \begin_inset Box Boxed
23985 position "c"
23986 hor_pos "c"
23987 has_inner_box 1
23988 inner_pos "c"
23989 use_parbox 0
23990 width "20col%"
23991 special "none"
23992 height "2in"
23993 height_special "height"
23994 status collapsed
23995
23996 \begin_layout Standard
23997 \align center
23998 Box height set to 2\InsetSpace \thinspace{}
23999 Height
24000 \end_layout
24001
24002 \end_inset
24003
24004
24005 \end_layout
24006
24007 \begin_layout Description
24008 Total\InsetSpace ~
24009 Height This is the Height\InsetSpace \thinspace{}
24010 +\InsetSpace \thinspace{}
24011 Depth: 
24012 \begin_inset Box Boxed
24013 position "c"
24014 hor_pos "c"
24015 has_inner_box 1
24016 inner_pos "c"
24017 use_parbox 0
24018 width "20col%"
24019 special "none"
24020 height "1in"
24021 height_special "totalheight"
24022 status collapsed
24023
24024 \begin_layout Standard
24025 \align center
24026 Box height set to 1\InsetSpace \thinspace{}
24027 Total\InsetSpace ~
24028 Height
24029 \end_layout
24030
24031 \end_inset
24032
24033
24034 \end_layout
24035
24036 \begin_layout Description
24037 Width This set the width of the box as heigth: 
24038 \begin_inset Box Boxed
24039 position "c"
24040 hor_pos "c"
24041 has_inner_box 1
24042 inner_pos "c"
24043 use_parbox 0
24044 width "12col%"
24045 special "none"
24046 height "1in"
24047 height_special "width"
24048 status collapsed
24049
24050 \begin_layout Standard
24051 \align center
24052 Box height set to 1\InsetSpace \thinspace{}
24053 Width
24054 \end_layout
24055
24056 \end_inset
24057
24058
24059 \end_layout
24060
24061 \begin_layout Standard
24062 \begin_inset VSpace bigskip
24063 \end_inset
24064
24065 When you have chosen an 
24066 \family sans
24067 Inner\InsetSpace ~
24068 Box
24069 \family default
24070 , the vertical box alignment can be:
24071 \end_layout
24072
24073 \begin_layout Description
24074 Top This is an example text line.
24075  
24076 \begin_inset Box Boxed
24077 position "t"
24078 hor_pos "c"
24079 has_inner_box 1
24080 inner_pos "c"
24081 use_parbox 0
24082 width "12col%"
24083 special "none"
24084 height "1in"
24085 height_special "totalheight"
24086 status collapsed
24087
24088 \begin_layout Standard
24089 \align center
24090 This box is top-aligned.
24091 \end_layout
24092
24093 \end_inset
24094
24095 \InsetSpace ~
24096 This is an example text line.
24097 \end_layout
24098
24099 \begin_layout Description
24100 Middle This is an example text line.
24101  
24102 \begin_inset Box Boxed
24103 position "c"
24104 hor_pos "c"
24105 has_inner_box 1
24106 inner_pos "c"
24107 use_parbox 0
24108 width "12col%"
24109 special "none"
24110 height "1in"
24111 height_special "totalheight"
24112 status collapsed
24113
24114 \begin_layout Standard
24115 \align center
24116 This box is middle-aligned.
24117 \end_layout
24118
24119 \end_inset
24120
24121 \InsetSpace ~
24122 This is an example text line.
24123 \end_layout
24124
24125 \begin_layout Description
24126 Bottom This is an example text line.
24127  
24128 \begin_inset Box Boxed
24129 position "b"
24130 hor_pos "c"
24131 has_inner_box 1
24132 inner_pos "c"
24133 use_parbox 0
24134 width "12col%"
24135 special "none"
24136 height "1in"
24137 height_special "totalheight"
24138 status collapsed
24139
24140 \begin_layout Standard
24141 \align center
24142 This box is bottom-aligned.
24143 \end_layout
24144
24145 \end_inset
24146
24147 \InsetSpace ~
24148 This is an example text line.
24149 \end_layout
24150
24151 \begin_layout Standard
24152 The horizontal box alignment can be set via LyX's paragraph dialog when
24153  you set the box into its own paragraph.
24154 \end_layout
24155
24156 \begin_layout Standard
24157 \begin_inset VSpace bigskip
24158 \end_inset
24159
24160 When you have chosen an 
24161 \family sans
24162 Inner\InsetSpace ~
24163 Box
24164 \family default
24165 , the box content can be vertical aligned to:
24166 \end_layout
24167
24168 \begin_layout Description
24169 top This is an example text line.
24170  
24171 \begin_inset Box Boxed
24172 position "c"
24173 hor_pos "c"
24174 has_inner_box 1
24175 inner_pos "t"
24176 use_parbox 0
24177 width "12col%"
24178 special "none"
24179 height "1.5in"
24180 height_special "totalheight"
24181 status collapsed
24182
24183 \begin_layout Standard
24184 \align center
24185 This box text is top-aligned.
24186 \end_layout
24187
24188 \end_inset
24189
24190 \InsetSpace ~
24191 This is an example text line.
24192 \end_layout
24193
24194 \begin_layout Description
24195 middle This is an example text line.
24196  
24197 \begin_inset Box Boxed
24198 position "c"
24199 hor_pos "c"
24200 has_inner_box 1
24201 inner_pos "c"
24202 use_parbox 0
24203 width "12col%"
24204 special "none"
24205 height "1.5in"
24206 height_special "totalheight"
24207 status collapsed
24208
24209 \begin_layout Standard
24210 \align center
24211 This box text is middle-aligned.
24212 \end_layout
24213
24214 \end_inset
24215
24216 \InsetSpace ~
24217 This is an example text line.
24218 \end_layout
24219
24220 \begin_layout Description
24221 bottom This is an example text line.
24222  
24223 \begin_inset Box Boxed
24224 position "c"
24225 hor_pos "c"
24226 has_inner_box 1
24227 inner_pos "b"
24228 use_parbox 0
24229 width "12col%"
24230 special "none"
24231 height "1.5in"
24232 height_special "totalheight"
24233 status collapsed
24234
24235 \begin_layout Standard
24236 \align center
24237 This box text is bottom-aligned.
24238 \end_layout
24239
24240 \end_inset
24241
24242 \InsetSpace ~
24243 This is an example text line.
24244 \end_layout
24245
24246 \begin_layout Description
24247 stretch This is an example text line.
24248  
24249 \begin_inset Box Boxed
24250 position "c"
24251 hor_pos "c"
24252 has_inner_box 1
24253 inner_pos "s"
24254 use_parbox 0
24255 width "12col%"
24256 special "none"
24257 height "1.5in"
24258 height_special "totalheight"
24259 status collapsed
24260
24261 \begin_layout Standard
24262 \align center
24263 This box
24264 \end_layout
24265
24266 \begin_layout Standard
24267 \align center
24268 text is
24269 \end_layout
24270
24271 \begin_layout Standard
24272 \align center
24273 stretched.
24274 \end_layout
24275
24276 \end_inset
24277
24278 \InsetSpace ~
24279 This is an example text line.
24280 \end_layout
24281
24282 \begin_layout Standard
24283 To stretch the box content, it must consist of more than one paragraph.
24284  In the example above every text line is in an own paragraph.
24285 \end_layout
24286
24287 \begin_layout Standard
24288 \begin_inset VSpace bigskip
24289 \end_inset
24290
24291 To align the box content horizontally you can use LyX's paragraph dialog
24292  when you have chosen an 
24293 \family sans
24294 Inner\InsetSpace ~
24295 Box
24296 \family default
24297 .
24298 \end_layout
24299
24300 \begin_layout Standard
24301 \align center
24302 \begin_inset Box Boxed
24303 position "c"
24304 hor_pos "c"
24305 has_inner_box 1
24306 inner_pos "s"
24307 use_parbox 0
24308 width "15col%"
24309 special "none"
24310 height "1.25in"
24311 height_special "totalheight"
24312 status collapsed
24313
24314 \begin_layout Standard
24315 \align left
24316 This box
24317 \end_layout
24318
24319 \begin_layout Standard
24320 \align center
24321 text is
24322 \end_layout
24323
24324 \begin_layout Standard
24325 \align right
24326 stretched.
24327 \end_layout
24328
24329 \end_inset
24330
24331
24332 \end_layout
24333
24334 \begin_layout Standard
24335 If you haven't set an 
24336 \family sans
24337 Inner\InsetSpace ~
24338 Box
24339 \family default
24340 , you can align the box content horizontally in the box dialog.
24341 \end_layout
24342
24343 \begin_layout Standard
24344 \align center
24345 \begin_inset Box Boxed
24346 position "c"
24347 hor_pos "s"
24348 has_inner_box 0
24349 inner_pos "s"
24350 use_parbox 0
24351 width "90col%"
24352 special "none"
24353 height "1.25in"
24354 height_special "totalheight"
24355 status collapsed
24356
24357 \begin_layout Standard
24358 \align left
24359 This box text is horizontally stretched.
24360 \end_layout
24361
24362 \end_inset
24363
24364
24365 \end_layout
24366
24367 \begin_layout Section
24368 Framed Boxes
24369 \begin_inset LatexCommand label
24370 name "sec:Framed-Boxes"
24371
24372 \end_inset
24373
24374
24375 \begin_inset LatexCommand index
24376 name "Boxes ! Frames"
24377
24378 \end_inset
24379
24380
24381 \end_layout
24382
24383 \begin_layout Standard
24384 The frame style of the box can be specified in the box-dialog in the drop-down
24385  list 
24386 \family sans
24387 Type
24388 \family default
24389 .
24390  The following frame types are possible:
24391 \end_layout
24392
24393 \begin_layout Description
24394 Rectangular\InsetSpace ~
24395 box This draws a rectangle frame around the box.
24396  The frame line thickness has the size of 
24397 \series bold
24398
24399 \backslash
24400 fboxrule
24401 \series default
24402 .
24403  
24404 \begin_inset Box Boxed
24405 position "c"
24406 hor_pos "c"
24407 has_inner_box 1
24408 inner_pos "c"
24409 use_parbox 0
24410 width "20col%"
24411 special "none"
24412 height "1in"
24413 height_special "totalheight"
24414 status collapsed
24415
24416 \begin_layout Standard
24417 \align center
24418 Rectangular box
24419 \end_layout
24420
24421 \end_inset
24422
24423
24424 \end_layout
24425
24426 \begin_layout Description
24427 Oval\InsetSpace ~
24428 box,\InsetSpace ~
24429 thin This draws an oval frame around the box.
24430  The frame line thickness has the size 0.4\InsetSpace \thinspace{}
24431 pt.
24432  
24433 \begin_inset Box ovalbox
24434 position "c"
24435 hor_pos "c"
24436 has_inner_box 1
24437 inner_pos "c"
24438 use_parbox 0
24439 width "20col%"
24440 special "none"
24441 height "1in"
24442 height_special "totalheight"
24443 status collapsed
24444
24445 \begin_layout Standard
24446 \align center
24447 Oval box, thin
24448 \end_layout
24449
24450 \end_inset
24451
24452
24453 \end_layout
24454
24455 \begin_layout Description
24456 Oval\InsetSpace ~
24457 box,\InsetSpace ~
24458 thick This draws an oval frame around the box.
24459  The frame line thickness has the size 0.8\InsetSpace \thinspace{}
24460 pt.
24461  
24462 \begin_inset Box Ovalbox
24463 position "c"
24464 hor_pos "c"
24465 has_inner_box 1
24466 inner_pos "c"
24467 use_parbox 0
24468 width "20col%"
24469 special "none"
24470 height "1in"
24471 height_special "totalheight"
24472 status collapsed
24473
24474 \begin_layout Standard
24475 \align center
24476 Oval box, thick
24477 \end_layout
24478
24479 \end_inset
24480
24481
24482 \end_layout
24483
24484 \begin_layout Description
24485 Shadow\InsetSpace ~
24486 box This draws a rectangle frame with a shadow around the box.
24487  The frame line thickness has the size of 
24488 \series bold
24489
24490 \backslash
24491 fboxrule
24492 \series default
24493 , the shadow has a width of 4\InsetSpace \thinspace{}
24494 pt.
24495  
24496 \begin_inset Box Shadowbox
24497 position "c"
24498 hor_pos "c"
24499 has_inner_box 1
24500 inner_pos "c"
24501 use_parbox 0
24502 width "20col%"
24503 special "none"
24504 height "1in"
24505 height_special "totalheight"
24506 status collapsed
24507
24508 \begin_layout Standard
24509 \align center
24510 Shadow box
24511 \end_layout
24512
24513 \end_inset
24514
24515
24516 \end_layout
24517
24518 \begin_layout Description
24519 Double\InsetSpace ~
24520 box This draws a double-line rectangle frame around the box.
24521  The line thickness of the inner frame is 0.75\InsetSpace \thinspace{}
24522
24523 \series bold
24524
24525 \backslash
24526 fboxrule
24527 \series default
24528 , the thickness of the outer frame is 1.5\InsetSpace \thinspace{}
24529
24530 \series bold
24531
24532 \backslash
24533 fboxrule
24534 \series default
24535 .
24536  The distance between the lines is 1.5\InsetSpace \thinspace{}
24537
24538 \series bold
24539
24540 \backslash
24541 fboxrule
24542 \series default
24543 \InsetSpace \thinspace{}
24544 +\InsetSpace \thinspace{}
24545 0.5\InsetSpace \thinspace{}
24546 pt.
24547  
24548 \begin_inset Box Doublebox
24549 position "c"
24550 hor_pos "c"
24551 has_inner_box 1
24552 inner_pos "c"
24553 use_parbox 0
24554 width "20col%"
24555 special "none"
24556 height "1in"
24557 height_special "totalheight"
24558 status collapsed
24559
24560 \begin_layout Standard
24561 \align center
24562 Double box
24563 \end_layout
24564
24565 \end_inset
24566
24567
24568 \end_layout
24569
24570 \begin_layout Standard
24571 \begin_inset VSpace bigskip
24572 \end_inset
24573
24574 LyX's box label will change to the used frame style when you set a frame.
24575  To be able to use the different frame styles, the LaTeX-package 
24576 \series bold
24577 fancybox
24578 \series default
24579
24580 \begin_inset LatexCommand index
24581 name "LaTeX-packages ! fancybox"
24582
24583 \end_inset
24584
24585  must be installed.
24586 \end_layout
24587
24588 \begin_layout Standard
24589 \begin_inset VSpace bigskip
24590 \end_inset
24591
24592 The default value for the size 
24593 \series bold
24594
24595 \backslash
24596 fboxrule
24597 \series default
24598  is 0.4\InsetSpace \thinspace{}
24599 pt.
24600  It can be changed with the following command in ERT to e.\InsetSpace \thinspace{}
24601 g.\InsetSpace ~
24602 2\InsetSpace \thinspace{}
24603 pt:
24604 \end_layout
24605
24606 \begin_layout Standard
24607
24608 \series bold
24609
24610 \backslash
24611 setlength{
24612 \backslash
24613 fboxrule}{2pt}
24614 \end_layout
24615
24616 \begin_layout Standard
24617 \begin_inset ERT
24618 status collapsed
24619
24620 \begin_layout Standard
24621
24622
24623 \backslash
24624 setlength{
24625 \backslash
24626 fboxrule}{2pt}
24627 \end_layout
24628
24629 \end_inset
24630
24631
24632 \begin_inset Box Boxed
24633 position "c"
24634 hor_pos "c"
24635 has_inner_box 1
24636 inner_pos "c"
24637 use_parbox 0
24638 width "25col%"
24639 special "none"
24640 height "1in"
24641 height_special "totalheight"
24642 status collapsed
24643
24644 \begin_layout Standard
24645 \align center
24646 Rectangular box with 
24647 \series bold
24648
24649 \backslash
24650 fboxrule
24651 \series default
24652 \InsetSpace \thinspace{}
24653 =\InsetSpace \thinspace{}
24654 2\InsetSpace \thinspace{}
24655 pt
24656 \end_layout
24657
24658 \end_inset
24659
24660
24661 \begin_inset ERT
24662 status collapsed
24663
24664 \begin_layout Standard
24665
24666
24667 \backslash
24668 setlength{
24669 \backslash
24670 fboxrule}{0.4pt}
24671 \end_layout
24672
24673 \end_inset
24674
24675
24676 \end_layout
24677
24678 \begin_layout Standard
24679 \begin_inset VSpace bigskip
24680 \end_inset
24681
24682 The space between the frame and the box content is for all frame styles
24683  by default 3\InsetSpace \thinspace{}
24684 pt.
24685  You can change it by setting the length 
24686 \series bold
24687
24688 \backslash
24689 fboxsep
24690 \series default
24691  to another value.
24692  For example the command
24693 \end_layout
24694
24695 \begin_layout Standard
24696
24697 \series bold
24698
24699 \backslash
24700 setlength{
24701 \backslash
24702 fboxsep}{10pt}
24703 \end_layout
24704
24705 \begin_layout Standard
24706 sets the value to 10\InsetSpace \thinspace{}
24707 pt, like for the following box:
24708 \end_layout
24709
24710 \begin_layout Standard
24711 \begin_inset ERT
24712 status collapsed
24713
24714 \begin_layout Standard
24715
24716
24717 \backslash
24718 setlength{
24719 \backslash
24720 fboxsep}{10pt}
24721 \end_layout
24722
24723 \end_inset
24724
24725
24726 \begin_inset Box Boxed
24727 position "c"
24728 hor_pos "c"
24729 has_inner_box 1
24730 inner_pos "c"
24731 use_parbox 0
24732 width "25col%"
24733 special "none"
24734 height "1in"
24735 height_special "totalheight"
24736 status collapsed
24737
24738 \begin_layout Standard
24739 \align center
24740 Rectangular box with 
24741 \series bold
24742
24743 \backslash
24744 fboxsep
24745 \series default
24746 \InsetSpace \thinspace{}
24747 =\InsetSpace \thinspace{}
24748 10\InsetSpace \thinspace{}
24749 pt
24750 \end_layout
24751
24752 \end_inset
24753
24754
24755 \begin_inset ERT
24756 status collapsed
24757
24758 \begin_layout Standard
24759
24760
24761 \backslash
24762 setlength{
24763 \backslash
24764 fboxsep}{3pt}
24765 \end_layout
24766
24767 \end_inset
24768
24769
24770 \end_layout
24771
24772 \begin_layout Standard
24773 \begin_inset VSpace bigskip
24774 \end_inset
24775
24776 The diameter of the round corners of the oval boxes can be set with the
24777  command 
24778 \series bold
24779
24780 \backslash
24781 cornersize
24782 \series default
24783 .
24784  The command
24785 \end_layout
24786
24787 \begin_layout Standard
24788
24789 \series bold
24790
24791 \backslash
24792 cornersize*{1cm}
24793 \end_layout
24794
24795 \begin_layout Standard
24796 sets the diameter to 1\InsetSpace \thinspace{}
24797 cm.
24798  The command
24799 \end_layout
24800
24801 \begin_layout Standard
24802
24803 \series bold
24804
24805 \backslash
24806 cornersize{num}
24807 \end_layout
24808
24809 \begin_layout Standard
24810 sets the diameter to 
24811 \family sans
24812 num\InsetSpace \thinspace{}
24813 ×\InsetSpace \thinspace{}
24814 minimum(width and heigth of box)
24815 \family default
24816 .
24817  The default is 
24818 \series bold
24819
24820 \backslash
24821 cornersize{0.5}
24822 \series default
24823 .
24824 \end_layout
24825
24826 \begin_layout Standard
24827 \begin_inset ERT
24828 status collapsed
24829
24830 \begin_layout Standard
24831
24832
24833 \backslash
24834 cornersize*{1.5cm}
24835 \end_layout
24836
24837 \end_inset
24838
24839
24840 \begin_inset Box Ovalbox
24841 position "c"
24842 hor_pos "c"
24843 has_inner_box 1
24844 inner_pos "c"
24845 use_parbox 0
24846 width "25col%"
24847 special "none"
24848 height "1in"
24849 height_special "totalheight"
24850 status collapsed
24851
24852 \begin_layout Standard
24853 \align center
24854 Oval box with 
24855 \series bold
24856
24857 \backslash
24858 cornersize
24859 \series default
24860 \InsetSpace \thinspace{}
24861 =\InsetSpace \thinspace{}
24862 1.5\InsetSpace \thinspace{}
24863 cm
24864 \end_layout
24865
24866 \end_inset
24867
24868
24869 \begin_inset ERT
24870 status collapsed
24871
24872 \begin_layout Standard
24873
24874
24875 \backslash
24876 cornersize{0.5}
24877 \end_layout
24878
24879 \end_inset
24880
24881
24882 \end_layout
24883
24884 \begin_layout Standard
24885 \begin_inset VSpace bigskip
24886 \end_inset
24887
24888 The size of the shadow can be adjusted by changing the length 
24889 \series bold
24890
24891 \backslash
24892 shadowsize
24893 \series default
24894 .
24895  It it set to 2\InsetSpace \thinspace{}
24896 pt for the following box by this command:
24897 \end_layout
24898
24899 \begin_layout Standard
24900
24901 \series bold
24902
24903 \backslash
24904 setlength{
24905 \backslash
24906 shadowsize}{2pt}
24907 \end_layout
24908
24909 \begin_layout Standard
24910 \begin_inset ERT
24911 status collapsed
24912
24913 \begin_layout Standard
24914
24915
24916 \backslash
24917 setlength{
24918 \backslash
24919 shadowsize}{2pt}
24920 \end_layout
24921
24922 \end_inset
24923
24924
24925 \begin_inset Box Shadowbox
24926 position "c"
24927 hor_pos "c"
24928 has_inner_box 1
24929 inner_pos "c"
24930 use_parbox 0
24931 width "25col%"
24932 special "none"
24933 height "1in"
24934 height_special "totalheight"
24935 status collapsed
24936
24937 \begin_layout Standard
24938 \align center
24939 Shadow box with 
24940 \series bold
24941
24942 \backslash
24943 shadowsize
24944 \series default
24945 \InsetSpace \thinspace{}
24946 =\InsetSpace \thinspace{}
24947 2\InsetSpace \thinspace{}
24948 pt
24949 \end_layout
24950
24951 \end_inset
24952
24953
24954 \begin_inset ERT
24955 status collapsed
24956
24957 \begin_layout Standard
24958
24959
24960 \backslash
24961 setlength{
24962 \backslash
24963 shadowsize}{4pt}
24964 \end_layout
24965
24966 \end_inset
24967
24968
24969 \end_layout
24970
24971 \begin_layout Standard
24972 \begin_inset VSpace bigskip
24973 \end_inset
24974
24975 Changed lengths and widths are valid for all boxes following the commands
24976  that change them.
24977 \end_layout
24978
24979 \begin_layout Section
24980 Minipages
24981 \begin_inset LatexCommand label
24982 name "sec:Minipages"
24983
24984 \end_inset
24985
24986
24987 \begin_inset LatexCommand index
24988 name "Boxes ! Minipages"
24989
24990 \end_inset
24991
24992
24993 \end_layout
24994
24995 \begin_layout Standard
24996 Minipages are treated by LaTeX as pages within pages and can therefore for
24997  example have their own footnotes.
24998 \end_layout
24999
25000 \begin_layout Standard
25001 Minipages are useful when you write documents with different languages.
25002 \end_layout
25003
25004 \begin_layout Standard
25005 Below are two example minipages side by side.
25006  Their width is set to 45\InsetSpace \thinspace{}
25007 col% and they are separated by a horizontal fill,
25008  that was inserted via the menu 
25009 \family sans
25010 Insert\SpecialChar \menuseparator
25011 Special\InsetSpace ~
25012 Formatting\SpecialChar \menuseparator
25013 Horizontal\InsetSpace ~
25014 Fill
25015 \family default
25016 .
25017 \end_layout
25018
25019 \begin_layout Standard
25020 \begin_inset Box Frameless
25021 position "t"
25022 hor_pos "c"
25023 has_inner_box 1
25024 inner_pos "c"
25025 use_parbox 0
25026 width "45col%"
25027 special "none"
25028 height "1in"
25029 height_special "totalheight"
25030 status open
25031
25032 \begin_layout Standard
25033
25034 \lang german
25035 Dies ist ein deutscher Text.
25036  Dies ist ein deutscher Text.
25037  Dies ist ein deutscher Text.
25038  Dies ist ein deutscher Text.
25039  Dies ist ein deutscher Text.
25040  Dies ist ein deutscher Text.
25041  Dies ist ein deutscher Text.
25042  Dies ist ein deutscher Text.
25043  Dies ist ein deutscher Text.
25044  Dies ist ein deutscher Text.
25045  Dies ist ein deutscher Text.
25046  Dies ist ein deutscher Text.
25047  Dies ist ein deutscher Text
25048 \begin_inset Foot
25049 status collapsed
25050
25051 \begin_layout Standard
25052
25053 \lang german
25054 Dies ist eine deutsche Fußnote.
25055 \end_layout
25056
25057 \end_inset
25058
25059 .
25060  Dies ist ein deutscher Text.
25061  Dies ist ein deutscher Text.
25062 \end_layout
25063
25064 \end_inset
25065
25066
25067 \hfill
25068
25069 \begin_inset Box Frameless
25070 position "t"
25071 hor_pos "c"
25072 has_inner_box 1
25073 inner_pos "c"
25074 use_parbox 0
25075 width "45col%"
25076 special "none"
25077 height "1in"
25078 height_special "totalheight"
25079 status open
25080
25081 \begin_layout Standard
25082 This is an English Text.
25083  This is an English Text.
25084  This is an English Text.
25085  This is an English Text.
25086  This is an English Text.
25087  This is an English Text.
25088  This is an English Text.
25089  This is an English Text.
25090  This is an English Text.
25091  This is an English Text.
25092  This is an English Text.
25093  This is an English Text.
25094  This is an English Text.
25095  This is an English Text.
25096  This is an English Text.
25097  This is an English Text.
25098 \begin_inset Foot
25099 status collapsed
25100
25101 \begin_layout Standard
25102 This is an English footnote.
25103 \end_layout
25104
25105 \end_inset
25106
25107  This is an English Text.
25108  
25109 \end_layout
25110
25111 \end_inset
25112
25113
25114 \end_layout
25115
25116 \begin_layout Standard
25117 \begin_inset VSpace bigskip
25118 \end_inset
25119
25120 Another application for minipages are footnotes within tables.
25121  Due to a LaTeX restriction footnotes within tables doesn't appear at the
25122  bottom of the current page.
25123  But when you put the table with the footnote to a minipage, the footnote
25124  will appear at its bottom, numbered with Latin letters.
25125  The footnote number is reset to 1 in every minipage but not outside the
25126  minipages.
25127 \end_layout
25128
25129 \begin_layout Standard
25130 The footnote of this table doesn't appear: 
25131 \begin_inset Tabular
25132 <lyxtabular version="3" rows="3" columns="4">
25133 <features>
25134 <column alignment="center" valignment="top" leftline="true" width="0pt">
25135 <column alignment="center" valignment="top" leftline="true" width="0pt">
25136 <column alignment="center" valignment="top" leftline="true" width="0pt">
25137 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0pt">
25138 <row topline="true">
25139 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25140 \begin_inset Text
25141
25142 \begin_layout Standard
25143 1
25144 \end_layout
25145
25146 \end_inset
25147 </cell>
25148 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25149 \begin_inset Text
25150
25151 \begin_layout Standard
25152 2
25153 \end_layout
25154
25155 \end_inset
25156 </cell>
25157 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25158 \begin_inset Text
25159
25160 \begin_layout Standard
25161 3
25162 \begin_inset Foot
25163 status collapsed
25164
25165 \begin_layout Standard
25166 This is a footnote within a table.
25167 \end_layout
25168
25169 \end_inset
25170
25171
25172 \end_layout
25173
25174 \end_inset
25175 </cell>
25176 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25177 \begin_inset Text
25178
25179 \begin_layout Standard
25180 4
25181 \end_layout
25182
25183 \end_inset
25184 </cell>
25185 </row>
25186 <row topline="true">
25187 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25188 \begin_inset Text
25189
25190 \begin_layout Standard
25191 a
25192 \end_layout
25193
25194 \end_inset
25195 </cell>
25196 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25197 \begin_inset Text
25198
25199 \begin_layout Standard
25200 b
25201 \end_layout
25202
25203 \end_inset
25204 </cell>
25205 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25206 \begin_inset Text
25207
25208 \begin_layout Standard
25209 c
25210 \end_layout
25211
25212 \end_inset
25213 </cell>
25214 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25215 \begin_inset Text
25216
25217 \begin_layout Standard
25218 d
25219 \end_layout
25220
25221 \end_inset
25222 </cell>
25223 </row>
25224 <row topline="true" bottomline="true">
25225 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25226 \begin_inset Text
25227
25228 \begin_layout Standard
25229 e
25230 \end_layout
25231
25232 \end_inset
25233 </cell>
25234 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25235 \begin_inset Text
25236
25237 \begin_layout Standard
25238 f
25239 \end_layout
25240
25241 \end_inset
25242 </cell>
25243 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25244 \begin_inset Text
25245
25246 \begin_layout Standard
25247 g
25248 \end_layout
25249
25250 \end_inset
25251 </cell>
25252 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25253 \begin_inset Text
25254
25255 \begin_layout Standard
25256 h
25257 \end_layout
25258
25259 \end_inset
25260 </cell>
25261 </row>
25262 </lyxtabular>
25263
25264 \end_inset
25265
25266
25267 \end_layout
25268
25269 \begin_layout Standard
25270 \align center
25271 \begin_inset Box Frameless
25272 position "t"
25273 hor_pos "c"
25274 has_inner_box 1
25275 inner_pos "c"
25276 use_parbox 0
25277 width "30col%"
25278 special "none"
25279 height "1in"
25280 height_special "totalheight"
25281 status open
25282
25283 \begin_layout Standard
25284 \align center
25285 \begin_inset Tabular
25286 <lyxtabular version="3" rows="3" columns="4">
25287 <features>
25288 <column alignment="center" valignment="top" leftline="true" width="0pt">
25289 <column alignment="center" valignment="top" leftline="true" width="0pt">
25290 <column alignment="center" valignment="top" leftline="true" width="0pt">
25291 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0pt">
25292 <row topline="true">
25293 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25294 \begin_inset Text
25295
25296 \begin_layout Standard
25297 1
25298 \end_layout
25299
25300 \end_inset
25301 </cell>
25302 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25303 \begin_inset Text
25304
25305 \begin_layout Standard
25306 2
25307 \end_layout
25308
25309 \end_inset
25310 </cell>
25311 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25312 \begin_inset Text
25313
25314 \begin_layout Standard
25315 3
25316 \begin_inset Foot
25317 status collapsed
25318
25319 \begin_layout Standard
25320 This is a footnote within a table.
25321 \end_layout
25322
25323 \end_inset
25324
25325
25326 \end_layout
25327
25328 \end_inset
25329 </cell>
25330 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25331 \begin_inset Text
25332
25333 \begin_layout Standard
25334 4
25335 \end_layout
25336
25337 \end_inset
25338 </cell>
25339 </row>
25340 <row topline="true">
25341 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25342 \begin_inset Text
25343
25344 \begin_layout Standard
25345 a
25346 \end_layout
25347
25348 \end_inset
25349 </cell>
25350 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25351 \begin_inset Text
25352
25353 \begin_layout Standard
25354 b
25355 \end_layout
25356
25357 \end_inset
25358 </cell>
25359 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25360 \begin_inset Text
25361
25362 \begin_layout Standard
25363 c
25364 \end_layout
25365
25366 \end_inset
25367 </cell>
25368 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25369 \begin_inset Text
25370
25371 \begin_layout Standard
25372 d
25373 \end_layout
25374
25375 \end_inset
25376 </cell>
25377 </row>
25378 <row topline="true" bottomline="true">
25379 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25380 \begin_inset Text
25381
25382 \begin_layout Standard
25383 e
25384 \end_layout
25385
25386 \end_inset
25387 </cell>
25388 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25389 \begin_inset Text
25390
25391 \begin_layout Standard
25392 f
25393 \end_layout
25394
25395 \end_inset
25396 </cell>
25397 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25398 \begin_inset Text
25399
25400 \begin_layout Standard
25401 g
25402 \end_layout
25403
25404 \end_inset
25405 </cell>
25406 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25407 \begin_inset Text
25408
25409 \begin_layout Standard
25410 h
25411 \end_layout
25412
25413 \end_inset
25414 </cell>
25415 </row>
25416 </lyxtabular>
25417
25418 \end_inset
25419
25420
25421 \end_layout
25422
25423 \end_inset
25424
25425
25426 \end_layout
25427
25428 \begin_layout Standard
25429 \begin_inset VSpace bigskip
25430 \end_inset
25431
25432 The document-wide paragraph settings are ignored within minipages.
25433  That means that there will be no space between paragraphs in minipages
25434  although you set it to e.\InsetSpace \thinspace{}
25435 g.\InsetSpace ~
25436
25437 \family sans
25438 MedSkip
25439 \family default
25440  in the document settings.
25441 \end_layout
25442
25443 \begin_layout Standard
25444 Minipages can also be used to set a background color for text parts, see
25445  section\InsetSpace ~
25446
25447 \begin_inset LatexCommand ref
25448 reference "sub:Color-for-Paragraphs"
25449
25450 \end_inset
25451
25452 .
25453 \end_layout
25454
25455 \begin_layout Standard
25456 \begin_inset Note Greyedout
25457 status open
25458
25459 \begin_layout Standard
25460
25461 \series bold
25462 Note:
25463 \series default
25464  You cannot have floats or margin notes inside minipages but minipages can
25465  be used inside tables, floats, and other boxes.
25466 \end_layout
25467
25468 \end_inset
25469
25470
25471 \end_layout
25472
25473 \begin_layout Section
25474 Parboxes
25475 \begin_inset LatexCommand label
25476 name "sec:Parboxes"
25477
25478 \end_inset
25479
25480
25481 \begin_inset LatexCommand index
25482 name "Boxes ! Parboxes"
25483
25484 \end_inset
25485
25486
25487 \end_layout
25488
25489 \begin_layout Standard
25490 Parboxes are very similar to minipages with the difference that they cannot
25491  have footnotes.
25492  The main difference to minipages is that minipages are in contrary to parboxes
25493  no real boxes but LaTeX-environments.
25494 \end_layout
25495
25496 \begin_layout Standard
25497 \align center
25498 \begin_inset Box Frameless
25499 position "t"
25500 hor_pos "c"
25501 has_inner_box 1
25502 inner_pos "t"
25503 use_parbox 1
25504 width "33col%"
25505 special "none"
25506 height "1in"
25507 height_special "totalheight"
25508 status collapsed
25509
25510 \begin_layout Standard
25511 This a text within a parbox.
25512  This a text within a parbox.
25513 \end_layout
25514
25515 \begin_layout Standard
25516 This footnote won't appear:
25517 \begin_inset Foot
25518 status collapsed
25519
25520 \begin_layout Standard
25521 This footnote is inside a parbox and will therefore not appear.
25522 \end_layout
25523
25524 \end_inset
25525
25526
25527 \end_layout
25528
25529 \end_inset
25530
25531
25532 \end_layout
25533
25534 \begin_layout Section
25535 Boxes for Words and Characters
25536 \begin_inset LatexCommand index
25537 name "Boxes ! for Characters"
25538
25539 \end_inset
25540
25541
25542 \end_layout
25543
25544 \begin_layout Subsection
25545 Prevent Hyphenation
25546 \begin_inset LatexCommand label
25547 name "sec:Prevent-Hyphenation"
25548
25549 \end_inset
25550
25551
25552 \begin_inset LatexCommand index
25553 name "Boxes ! to Prevent Hyphenation"
25554
25555 \end_inset
25556
25557
25558 \end_layout
25559
25560 \begin_layout Standard
25561 You can use a special kind of boxes to prevent words or text to be hyphenated.
25562 \newline
25563 Her
25564 e is an example text:
25565 \end_layout
25566
25567 \begin_layout Standard
25568 This line is an example to show how you can prevent the hyphenation of e.\InsetSpace \thinspace{}
25569 g.\InsetSpace ~
25570 veryver
25571 ylongwords.
25572 \end_layout
25573
25574 \begin_layout Standard
25575 To prevent the hyphenation of the word 
25576 \begin_inset Quotes eld
25577 \end_inset
25578
25579 veryverylongwords
25580 \begin_inset Quotes erd
25581 \end_inset
25582
25583 , add the command
25584 \end_layout
25585
25586 \begin_layout Standard
25587
25588 \series bold
25589
25590 \backslash
25591 mbox{
25592 \end_layout
25593
25594 \begin_layout Standard
25595 in ERT before the word.
25596  Behind the word insert a closing brace 
25597 \begin_inset Quotes eld
25598 \end_inset
25599
25600
25601 \series bold
25602 }
25603 \series default
25604
25605 \begin_inset Quotes erd
25606 \end_inset
25607
25608  in ERT.
25609 \begin_inset ERT
25610 status collapsed
25611
25612 \begin_layout Standard
25613
25614
25615 \backslash
25616 pagebreak 
25617 \end_layout
25618
25619 \end_inset
25620
25621
25622 \end_layout
25623
25624 \begin_layout Standard
25625 This is the result:
25626 \end_layout
25627
25628 \begin_layout Standard
25629 This line is an example to show how you can prevent the hyphenation of e.\InsetSpace \thinspace{}
25630 g.\InsetSpace ~
25631
25632 \begin_inset ERT
25633 status collapsed
25634
25635 \begin_layout Standard
25636
25637
25638 \backslash
25639 mbox{
25640 \end_layout
25641
25642 \end_inset
25643
25644 veryverylongwords.
25645 \begin_inset ERT
25646 status collapsed
25647
25648 \begin_layout Standard
25649
25650 }
25651 \end_layout
25652
25653 \end_inset
25654
25655
25656 \end_layout
25657
25658 \begin_layout Standard
25659 Of course the word now protrudes over the side margin.
25660  To avoid this, add via the menu 
25661 \family sans
25662 Insert\SpecialChar \menuseparator
25663 Special\InsetSpace ~
25664 Formatting\SpecialChar \menuseparator
25665 Line\InsetSpace ~
25666 Break
25667 \family default
25668  (shortcut 
25669 \series bold
25670 Ctrl-Return
25671 \series default
25672 ) a line break before the word:
25673 \end_layout
25674
25675 \begin_layout Standard
25676 This line is an example to show how you can prevent the hyphenation of e.\InsetSpace \thinspace{}
25677 g.\InsetSpace ~
25678
25679 \newline
25680
25681 \begin_inset ERT
25682 status collapsed
25683
25684 \begin_layout Standard
25685
25686
25687 \backslash
25688 mbox{
25689 \end_layout
25690
25691 \end_inset
25692
25693 veryverylongwords.
25694 \begin_inset ERT
25695 status collapsed
25696
25697 \begin_layout Standard
25698
25699 }
25700 \end_layout
25701
25702 \end_inset
25703
25704
25705 \end_layout
25706
25707 \begin_layout Subsection
25708 Vertical Alignment
25709 \begin_inset LatexCommand label
25710 name "sub:Vertical-Alignment"
25711
25712 \end_inset
25713
25714
25715 \begin_inset LatexCommand index
25716 name "Boxes ! for Vertical Alignment"
25717
25718 \end_inset
25719
25720
25721 \begin_inset LatexCommand index
25722 name "Boxes ! Raiseboxes"
25723
25724 \end_inset
25725
25726
25727 \end_layout
25728
25729 \begin_layout Standard
25730 With the help of the command 
25731 \series bold
25732
25733 \backslash
25734 raisebox
25735 \series default
25736  you can align words, characters or other boxes vertically to the surrounding
25737  text.
25738  
25739 \series bold
25740
25741 \backslash
25742 raisebox
25743 \series default
25744  is used with the following scheme:
25745 \end_layout
25746
25747 \begin_layout Standard
25748
25749 \series bold
25750
25751 \backslash
25752 raisebox{lift}[height][depth]{box content}
25753 \end_layout
25754
25755 \begin_layout Standard
25756 The lift can be a positive value to raise the box or a negative value to
25757  lower the box.
25758 \end_layout
25759
25760 \begin_layout Standard
25761 To align for example the word 
25762 \begin_inset Quotes eld
25763 \end_inset
25764
25765 preventing
25766 \begin_inset Quotes erd
25767 \end_inset
25768
25769  so that the bottom of the 
25770 \begin_inset Quotes eld
25771 \end_inset
25772
25773 deepest
25774 \begin_inset Quotes erd
25775 \end_inset
25776
25777  character 
25778 \begin_inset Quotes eld
25779 \end_inset
25780
25781 p
25782 \begin_inset Quotes erd
25783 \end_inset
25784
25785  is at the baseline, insert the command
25786 \end_layout
25787
25788 \begin_layout Standard
25789
25790 \series bold
25791
25792 \backslash
25793 raisebox{
25794 \backslash
25795 depth}{
25796 \end_layout
25797
25798 \begin_layout Standard
25799 in ERT before the word.
25800  Behind the word insert a closing brace 
25801 \begin_inset Quotes eld
25802 \end_inset
25803
25804
25805 \series bold
25806 }
25807 \series default
25808
25809 \begin_inset Quotes erd
25810 \end_inset
25811
25812  in ERT.
25813 \newline
25814 This is the result:
25815 \end_layout
25816
25817 \begin_layout Standard
25818 This is a text line with the word 
25819 \begin_inset ERT
25820 status collapsed
25821
25822 \begin_layout Standard
25823
25824
25825 \backslash
25826 raisebox{
25827 \backslash
25828 depth}{
25829 \end_layout
25830
25831 \end_inset
25832
25833
25834 \begin_inset Quotes eld
25835 \end_inset
25836
25837 preventing
25838 \begin_inset Quotes erd
25839 \end_inset
25840
25841
25842 \begin_inset ERT
25843 status collapsed
25844
25845 \begin_layout Standard
25846
25847 }
25848 \end_layout
25849
25850 \end_inset
25851
25852  as raised word.
25853 \end_layout
25854
25855 \begin_layout Standard
25856 \begin_inset VSpace bigskip
25857 \end_inset
25858
25859 When you raise or lower characters in a line, the line distance will be
25860  spread:
25861 \end_layout
25862
25863 \begin_layout Standard
25864 This is a text line with the word 
25865 \begin_inset ERT
25866 status collapsed
25867
25868 \begin_layout Standard
25869
25870
25871 \backslash
25872 raisebox{-
25873 \backslash
25874 depth}{
25875 \end_layout
25876
25877 \end_inset
25878
25879
25880 \begin_inset Quotes eld
25881 \end_inset
25882
25883 preventing
25884 \begin_inset Quotes erd
25885 \end_inset
25886
25887
25888 \begin_inset ERT
25889 status collapsed
25890
25891 \begin_layout Standard
25892
25893 }
25894 \end_layout
25895
25896 \end_inset
25897
25898  as lowered word.
25899 \newline
25900 This is a text line with the word 
25901 \begin_inset ERT
25902 status collapsed
25903
25904 \begin_layout Standard
25905
25906
25907 \backslash
25908 raisebox{0.5cm}{
25909 \end_layout
25910
25911 \end_inset
25912
25913
25914 \begin_inset Quotes eld
25915 \end_inset
25916
25917 testing
25918 \begin_inset Quotes erd
25919 \end_inset
25920
25921
25922 \begin_inset ERT
25923 status collapsed
25924
25925 \begin_layout Standard
25926
25927 }
25928 \end_layout
25929
25930 \end_inset
25931
25932  as raised word.
25933 \end_layout
25934
25935 \begin_layout Standard
25936 If you want to prevent this for a certain reason, set the box height to
25937  a zero value.
25938  For example use
25939 \end_layout
25940
25941 \begin_layout Standard
25942
25943 \series bold
25944
25945 \backslash
25946 raisebox{-
25947 \backslash
25948 depth}[0pt]{
25949 \end_layout
25950
25951 \begin_layout Standard
25952 This is a text line with the word 
25953 \begin_inset ERT
25954 status collapsed
25955
25956 \begin_layout Standard
25957
25958
25959 \backslash
25960 raisebox{-
25961 \backslash
25962 depth}[0pt]{
25963 \end_layout
25964
25965 \end_inset
25966
25967
25968 \begin_inset Quotes eld
25969 \end_inset
25970
25971 preventing
25972 \begin_inset Quotes erd
25973 \end_inset
25974
25975
25976 \begin_inset ERT
25977 status collapsed
25978
25979 \begin_layout Standard
25980
25981 }
25982 \end_layout
25983
25984 \end_inset
25985
25986  as lowered word.
25987 \newline
25988 This is a text line with the word 
25989 \begin_inset ERT
25990 status collapsed
25991
25992 \begin_layout Standard
25993
25994
25995 \backslash
25996 raisebox{0.5cm}[0pt]{
25997 \end_layout
25998
25999 \end_inset
26000
26001
26002 \begin_inset Quotes eld
26003 \end_inset
26004
26005 testing
26006 \begin_inset Quotes erd
26007 \end_inset
26008
26009
26010 \begin_inset ERT
26011 status collapsed
26012
26013 \begin_layout Standard
26014
26015 }
26016 \end_layout
26017
26018 \end_inset
26019
26020  as raised word.
26021 \end_layout
26022
26023 \begin_layout Section
26024 Colored Boxes
26025 \begin_inset LatexCommand label
26026 name "sec:Colored-Boxes"
26027
26028 \end_inset
26029
26030
26031 \begin_inset LatexCommand index
26032 name "Boxes ! Color"
26033
26034 \end_inset
26035
26036
26037 \end_layout
26038
26039 \begin_layout Subsection
26040 Color for Text
26041 \begin_inset LatexCommand index
26042 name "Color ! for Text"
26043
26044 \end_inset
26045
26046
26047 \end_layout
26048
26049 \begin_layout Standard
26050 To color the background of text the text must be put into a so called colorbox.
26051  This requires that the LaTeX-package 
26052 \series bold
26053 color
26054 \series default
26055
26056 \begin_inset LatexCommand index
26057 name "LaTeX-packages ! color"
26058
26059 \end_inset
26060
26061  is loaded in the document preamble with the command
26062 \end_layout
26063
26064 \begin_layout Standard
26065
26066 \series bold
26067
26068 \backslash
26069 @ifundef\SpecialChar \textcompwordmark{}
26070 ined{textcolor}
26071 \newline
26072
26073 \begin_inset ERT
26074 status collapsed
26075
26076 \begin_layout Standard
26077
26078
26079 \backslash
26080 hphantom{ }
26081 \end_layout
26082
26083 \end_inset
26084
26085 {
26086 \backslash
26087 usepackage{color}}{}
26088 \end_layout
26089
26090 \begin_layout Standard
26091 The package 
26092 \series bold
26093 color
26094 \series default
26095  will be loaded automatically by LyX when you color text
26096 \begin_inset Foot
26097 status collapsed
26098
26099 \begin_layout Standard
26100 To avoid that it is loaded twice the command 
26101 \series bold
26102
26103 \backslash
26104 @ifundef\SpecialChar \textcompwordmark{}
26105 ined
26106 \series default
26107  is used.
26108 \end_layout
26109
26110 \end_inset
26111
26112 .
26113 \end_layout
26114
26115 \begin_layout Standard
26116 \begin_inset VSpace medskip
26117 \end_inset
26118
26119 Colorboxes are created with the command 
26120 \series bold
26121
26122 \backslash
26123 colorbox
26124 \series default
26125 .
26126  This will be used with the following scheme:
26127 \end_layout
26128
26129 \begin_layout Standard
26130
26131 \series bold
26132
26133 \backslash
26134 colorbox{color}{box content}
26135 \end_layout
26136
26137 \begin_layout Standard
26138 The box content can also be a box and colorboxes can also be within other
26139  boxes.
26140 \end_layout
26141
26142 \begin_layout Standard
26143 The following colors are predefined:
26144 \newline
26145
26146 \family sans
26147 black
26148 \family default
26149
26150 \family sans
26151 blue
26152 \family default
26153
26154 \family sans
26155 cyan
26156 \family default
26157 \series bold
26158 ,
26159 \series default
26160  
26161 \family sans
26162 green
26163 \family default
26164
26165 \family sans
26166 magenta
26167 \family default
26168
26169 \family sans
26170 red
26171 \family default
26172
26173 \family sans
26174 white
26175 \family default
26176 , and 
26177 \family sans
26178 yellow
26179 \family default
26180 .
26181 \newline
26182 You can also define your own color as described in section\InsetSpace ~
26183
26184 \begin_inset LatexCommand ref
26185 reference "sec:Colored-Tables"
26186
26187 \end_inset
26188
26189 .
26190 \end_layout
26191
26192 \begin_layout Standard
26193 To have e.\InsetSpace \thinspace{}
26194 g.\InsetSpace ~
26195 a red background for a word, insert the command
26196 \end_layout
26197
26198 \begin_layout Standard
26199
26200 \series bold
26201
26202 \backslash
26203 colorbox{red}{
26204 \end_layout
26205
26206 \begin_layout Standard
26207 before the word in ERT.
26208  Behind the word insert a closing brace 
26209 \begin_inset Quotes eld
26210 \end_inset
26211
26212
26213 \series bold
26214 }
26215 \series default
26216
26217 \begin_inset Quotes erd
26218 \end_inset
26219
26220  in ERT.
26221 \newline
26222 This is the result:
26223 \end_layout
26224
26225 \begin_layout Standard
26226 This is a line where the word 
26227 \begin_inset ERT
26228 status collapsed
26229
26230 \begin_layout Standard
26231
26232
26233 \backslash
26234 colorbox{red}{
26235 \end_layout
26236
26237 \end_inset
26238
26239
26240 \begin_inset Quotes eld
26241 \end_inset
26242
26243 Attention!
26244 \begin_inset Quotes erd
26245 \end_inset
26246
26247
26248 \begin_inset ERT
26249 status collapsed
26250
26251 \begin_layout Standard
26252
26253 }
26254 \end_layout
26255
26256 \end_inset
26257
26258  has a red background.
26259 \end_layout
26260
26261 \begin_layout Standard
26262 \begin_inset VSpace bigskip
26263 \end_inset
26264
26265 If you would have the box frame in a different color, you can use the command
26266  
26267 \series bold
26268
26269 \backslash
26270 fcolorbox
26271 \series default
26272  with the following scheme:
26273 \end_layout
26274
26275 \begin_layout Standard
26276
26277 \series bold
26278
26279 \backslash
26280 fcolorbox{frame color}{box color}{box content}
26281 \end_layout
26282
26283 \begin_layout Standard
26284
26285 \series bold
26286
26287 \backslash
26288 fcolorbox
26289 \series default
26290  is an extension to 
26291 \series bold
26292
26293 \backslash
26294 colorbox
26295 \series default
26296 .
26297  The frame thickness and the space between the frame and the box content
26298  can be adjusted with the lengths 
26299 \series bold
26300
26301 \backslash
26302 fboxrule
26303 \series default
26304  and 
26305 \series bold
26306
26307 \backslash
26308 fboxsep
26309 \series default
26310 , respectively, as described in section\InsetSpace ~
26311
26312 \begin_inset LatexCommand ref
26313 reference "sec:Framed-Boxes"
26314
26315 \end_inset
26316
26317 .
26318 \end_layout
26319
26320 \begin_layout Standard
26321 For the following example the command
26322 \end_layout
26323
26324 \begin_layout Standard
26325
26326 \series bold
26327
26328 \backslash
26329 fcolorbox{cyan}{magenta}{
26330 \end_layout
26331
26332 \begin_layout Standard
26333 was used.
26334 \end_layout
26335
26336 \begin_layout Standard
26337 Here is an example where the frame line thickness was set to 1\InsetSpace \thinspace{}
26338 mm:
26339 \newline
26340
26341 \begin_inset ERT
26342 status collapsed
26343
26344 \begin_layout Standard
26345
26346
26347 \backslash
26348 fboxrule 1mm 
26349 \backslash
26350 fboxsep 1mm
26351 \end_layout
26352
26353 \end_inset
26354
26355
26356 \begin_inset ERT
26357 status collapsed
26358
26359 \begin_layout Standard
26360
26361
26362 \backslash
26363 fcolorbox{cyan}{magenta}{
26364 \end_layout
26365
26366 \end_inset
26367
26368 This is text within a colored, framed box.
26369 \begin_inset ERT
26370 status collapsed
26371
26372 \begin_layout Standard
26373
26374 }
26375 \end_layout
26376
26377 \end_inset
26378
26379
26380 \end_layout
26381
26382 \begin_layout Standard
26383 \begin_inset VSpace bigskip
26384 \end_inset
26385
26386 Of course you can also have colored text inside a colorbox:
26387 \newline
26388
26389 \begin_inset ERT
26390 status collapsed
26391
26392 \begin_layout Standard
26393
26394
26395 \backslash
26396 fcolorbox{cyan}{magenta}{
26397 \end_layout
26398
26399 \end_inset
26400
26401
26402 \color yellow
26403 This is colored text within a colored, framed box.
26404 \color none
26405
26406 \begin_inset ERT
26407 status collapsed
26408
26409 \begin_layout Standard
26410
26411 }
26412 \end_layout
26413
26414 \end_inset
26415
26416
26417 \begin_inset ERT
26418 status collapsed
26419
26420 \begin_layout Standard
26421
26422
26423 \backslash
26424 fboxrule 0.4pt 
26425 \backslash
26426 fboxsep 3pt
26427 \end_layout
26428
26429 \end_inset
26430
26431
26432 \end_layout
26433
26434 \begin_layout Standard
26435
26436 \series bold
26437 \begin_inset VSpace medskip
26438 \end_inset
26439
26440
26441 \end_layout
26442
26443 \begin_layout Standard
26444 \begin_inset Note Greyedout
26445 status open
26446
26447 \begin_layout Standard
26448
26449 \series bold
26450 Note:
26451 \series default
26452  Text in colorboxes cannot have line breaks.
26453  To color multiple text lines or paragraphs, use a box inside a colorbox
26454  as described in the following.
26455 \end_layout
26456
26457 \end_inset
26458
26459
26460 \end_layout
26461
26462 \begin_layout Subsection
26463 Color for Paragraphs
26464 \begin_inset LatexCommand label
26465 name "sub:Color-for-Paragraphs"
26466
26467 \end_inset
26468
26469
26470 \begin_inset LatexCommand index
26471 name "Color ! for Paragraphs"
26472
26473 \end_inset
26474
26475
26476 \end_layout
26477
26478 \begin_layout Standard
26479 To set the background color for more than one text line, put the text into
26480  a minipage.
26481  Before the minipage insert the 
26482 \series bold
26483
26484 \backslash
26485 colorbox
26486 \series default
26487  command
26488 \end_layout
26489
26490 \begin_layout Standard
26491
26492 \series bold
26493
26494 \backslash
26495 colorbox{color}{
26496 \end_layout
26497
26498 \begin_layout Standard
26499 in ERT.
26500  Behind the minipage insert a closing brace 
26501 \begin_inset Quotes eld
26502 \end_inset
26503
26504
26505 \series bold
26506 }
26507 \series default
26508
26509 \begin_inset Quotes erd
26510 \end_inset
26511
26512  in ERT.
26513 \end_layout
26514
26515 \begin_layout Standard
26516 \begin_inset ERT
26517 status collapsed
26518
26519 \begin_layout Standard
26520
26521
26522 \backslash
26523 colorbox{lightgrey}{
26524 \end_layout
26525
26526 \end_inset
26527
26528
26529 \begin_inset Box Frameless
26530 position "t"
26531 hor_pos "c"
26532 has_inner_box 1
26533 inner_pos "t"
26534 use_parbox 0
26535 width "100col%"
26536 special "none"
26537 height "1in"
26538 height_special "totalheight"
26539 status collapsed
26540
26541 \begin_layout Standard
26542 This is text with background color.
26543  This is text with background color.
26544 \end_layout
26545
26546 \begin_layout Standard
26547 \begin_inset VSpace defskip
26548 \end_inset
26549
26550 The text can have footnotes
26551 \begin_inset Foot
26552 status collapsed
26553
26554 \begin_layout Standard
26555 Another example footnote
26556 \end_layout
26557
26558 \end_inset
26559
26560  and can include tables and figures.
26561 \end_layout
26562
26563 \begin_layout Standard
26564 \align center
26565 \begin_inset Tabular
26566 <lyxtabular version="3" rows="3" columns="3">
26567 <features>
26568 <column alignment="center" valignment="top" leftline="true" width="0">
26569 <column alignment="center" valignment="top" leftline="true" width="0">
26570 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
26571 <row topline="true">
26572 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26573 \begin_inset Text
26574
26575 \begin_layout Standard
26576 a
26577 \end_layout
26578
26579 \end_inset
26580 </cell>
26581 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26582 \begin_inset Text
26583
26584 \begin_layout Standard
26585 !
26586 \end_layout
26587
26588 \end_inset
26589 </cell>
26590 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26591 \begin_inset Text
26592
26593 \begin_layout Standard
26594 3
26595 \end_layout
26596
26597 \end_inset
26598 </cell>
26599 </row>
26600 <row topline="true">
26601 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26602 \begin_inset Text
26603
26604 \begin_layout Standard
26605 <
26606 \end_layout
26607
26608 \end_inset
26609 </cell>
26610 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26611 \begin_inset Text
26612
26613 \begin_layout Standard
26614 b2
26615 \begin_inset Quotes erd
26616 \end_inset
26617
26618 |
26619 \end_layout
26620
26621 \end_inset
26622 </cell>
26623 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26624 \begin_inset Text
26625
26626 \begin_layout Standard
26627 >
26628 \end_layout
26629
26630 \end_inset
26631 </cell>
26632 </row>
26633 <row topline="true" bottomline="true">
26634 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26635 \begin_inset Text
26636
26637 \begin_layout Standard
26638 1
26639 \end_layout
26640
26641 \end_inset
26642 </cell>
26643 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26644 \begin_inset Text
26645
26646 \begin_layout Standard
26647 §
26648 \end_layout
26649
26650 \end_inset
26651 </cell>
26652 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26653 \begin_inset Text
26654
26655 \begin_layout Standard
26656 c
26657 \end_layout
26658
26659 \end_inset
26660 </cell>
26661 </row>
26662 </lyxtabular>
26663
26664 \end_inset
26665
26666
26667 \end_layout
26668
26669 \end_inset
26670
26671
26672 \begin_inset ERT
26673 status collapsed
26674
26675 \begin_layout Standard
26676
26677 }
26678 \end_layout
26679
26680 \end_inset
26681
26682
26683 \end_layout
26684
26685 \begin_layout Section
26686 URLs (Uniform Resource Locators)
26687 \begin_inset LatexCommand index
26688 name "URLs"
26689
26690 \end_inset
26691
26692
26693 \end_layout
26694
26695 \begin_layout Standard
26696 Links to web pages or email addresses can be inserted via the menu 
26697 \family sans
26698 Insert\SpecialChar \menuseparator
26699 URL
26700 \family default
26701 .
26702  The appearing URL dialog has two fields; the 
26703 \family sans
26704 URL
26705 \family default
26706  field and the 
26707 \family sans
26708 Name
26709 \family default
26710  field for the URL description, which will be typeset as plain text immediately
26711  before the URL.
26712 \end_layout
26713
26714 \begin_layout Standard
26715 Here is an example URL: 
26716 \begin_inset LatexCommand url
26717 name "LyX's homepage"
26718 target "http://www.lyx.org"
26719
26720 \end_inset
26721
26722
26723 \end_layout
26724
26725 \begin_layout Standard
26726 The option 
26727 \family sans
26728 Generate\InsetSpace ~
26729 hyperlink
26730 \family default
26731  in the URL dialog has only an affect when you export your document to the
26732  format 
26733 \begin_inset Quotes eld
26734 \end_inset
26735
26736
26737 \family sans
26738 LinuxDoc
26739 \family default
26740
26741 \begin_inset Quotes erd
26742 \end_inset
26743
26744 .
26745 \end_layout
26746
26747 \begin_layout Standard
26748 You cannot change the style of the link text.
26749  The text of the 
26750 \family sans
26751 Name
26752 \family default
26753  field will have the default text style of the document while the text of
26754  the 
26755 \family sans
26756 URL
26757 \family default
26758  field will have the style 
26759 \begin_inset Quotes eld
26760 \end_inset
26761
26762
26763 \family sans
26764 Typewriter
26765 \family default
26766
26767 \begin_inset Quotes erd
26768 \end_inset
26769
26770 .
26771 \end_layout
26772
26773 \begin_layout Standard
26774 When you use the LaTeX-package 
26775 \series bold
26776 hyperref
26777 \series default
26778
26779 \begin_inset LatexCommand index
26780 name "LaTeX-packages ! hyperref"
26781
26782 \end_inset
26783
26784  to link cross-references in the output, URLs will automatically become
26785  clickable hyperlinks in DVI and PDF-output.
26786 \end_layout
26787
26788 \begin_layout Standard
26789 \begin_inset Note Greyedout
26790 status open
26791
26792 \begin_layout Standard
26793
26794 \series bold
26795 Note:
26796 \series default
26797  When you use the following characters: "%", "#", "^", you have to write
26798  them with a preceding backslash, e.\InsetSpace \thinspace{}
26799 g.\InsetSpace ~
26800
26801 \begin_inset Quotes eld
26802 \end_inset
26803
26804
26805 \backslash
26806 #
26807 \begin_inset Quotes erd
26808 \end_inset
26809
26810 .
26811  URLs must not end with a backslash.
26812 \end_layout
26813
26814 \end_inset
26815
26816
26817 \end_layout
26818
26819 \begin_layout Standard
26820 \begin_inset VSpace bigskip
26821 \end_inset
26822
26823 To create real hyperlinks without the force to write the link location to
26824  the text, you can use the command
26825 \end_layout
26826
26827 \begin_layout Standard
26828
26829 \series bold
26830
26831 \backslash
26832 href{link location}{link text}
26833 \end_layout
26834
26835 \begin_layout Standard
26836 in ERT.
26837  To get for example a link to LyX's web page, write the command
26838 \end_layout
26839
26840 \begin_layout Standard
26841
26842 \series bold
26843
26844 \backslash
26845 href{http://www.lyx.org}{
26846 \end_layout
26847
26848 \begin_layout Standard
26849 in ERT.
26850  Insert after the command the link text 
26851 \begin_inset Quotes eld
26852 \end_inset
26853
26854 LyX's homepage
26855 \begin_inset Quotes erd
26856 \end_inset
26857
26858  as normal text followed by a closing brace 
26859 \begin_inset Quotes eld
26860 \end_inset
26861
26862
26863 \series bold
26864 }
26865 \series default
26866
26867 \begin_inset Quotes erd
26868 \end_inset
26869
26870  in ERT.
26871  This is the result: 
26872 \begin_inset ERT
26873 status collapsed
26874
26875 \begin_layout Standard
26876
26877
26878 \backslash
26879 href{http://www.lyx.org}{
26880 \end_layout
26881
26882 \end_inset
26883
26884 LyX's homepage
26885 \begin_inset ERT
26886 status collapsed
26887
26888 \begin_layout Standard
26889
26890 }
26891 \end_layout
26892
26893 \end_inset
26894
26895
26896 \end_layout
26897
26898 \begin_layout Standard
26899 To link to email addresses, add the prefix 
26900 \begin_inset Quotes eld
26901 \end_inset
26902
26903
26904 \family sans
26905 mailto:
26906 \family default
26907
26908 \begin_inset Quotes erd
26909 \end_inset
26910
26911  to the link location:
26912 \newline
26913 Email to 
26914 \begin_inset ERT
26915 status collapsed
26916
26917 \begin_layout Standard
26918
26919
26920 \backslash
26921 href{mailto:lyx-docs@lists.lyx.org?subject=LyX's documentation}{
26922 \end_layout
26923
26924 \end_inset
26925
26926 lyx-docs mailing list
26927 \begin_inset ERT
26928 status collapsed
26929
26930 \begin_layout Standard
26931
26932 }
26933 \end_layout
26934
26935 \end_inset
26936
26937 .
26938 \end_layout
26939
26940 \begin_layout Standard
26941 Using 
26942 \series bold
26943
26944 \backslash
26945 href
26946 \series default
26947  instead of LyX's URL box has the advantage that you can specify the text
26948  style of the link text like for all other text parts.
26949  You can therefore set hyphenation points and forced linebreaks to have
26950  long link text broken at the page margin.
26951  You are furthermore able to change the text style for all URLs in your
26952  document with an option in 
26953 \series bold
26954 hyperref
26955 \series default
26956 's load command and the restrictions mentioned above doesn't apply for 
26957 \series bold
26958
26959 \backslash
26960 href
26961 \series default
26962 .
26963 \end_layout
26964
26965 \begin_layout Chapter
26966 External Stuff
26967 \begin_inset LatexCommand index
26968 name "External Stuff"
26969
26970 \end_inset
26971
26972
26973 \end_layout
26974
26975 \begin_layout Standard
26976 With the menu 
26977 \family sans
26978 Insert\SpecialChar \menuseparator
26979 File
26980 \family default
26981  you can insert external material to your document.
26982  This can be:
26983 \end_layout
26984
26985 \begin_layout Description
26986 LyX\InsetSpace ~
26987 Document Another LyX document; its content is directly inserted to your
26988  document.
26989 \end_layout
26990
26991 \begin_layout Description
26992 Plain\InsetSpace ~
26993 Text A text document; every of its text lines is inserted to your document
26994  as own paragraph.
26995 \end_layout
26996
26997 \begin_layout Description
26998 Plain\InsetSpace ~
26999 Text,\InsetSpace ~
27000 Join\InsetSpace ~
27001 Lines A text document; its text lines are inserted as they
27002  are.
27003  Empty text lines creates a new paragraph in your document.
27004 \end_layout
27005
27006 \begin_layout Description
27007 External\InsetSpace ~
27008 Material Files in various formats.
27009 \end_layout
27010
27011 \begin_layout Description
27012 Child\InsetSpace ~
27013 Document LyX or LaTeX-documents.
27014 \end_layout
27015
27016 \begin_layout Section
27017 External Material
27018 \begin_inset LatexCommand index
27019 name "External Stuff ! External Material"
27020
27021 \end_inset
27022
27023
27024 \end_layout
27025
27026 \begin_layout Standard
27027 The external material feature allows you to insert files to your document
27028  without converting them previously to a format that can be read by the
27029  document output format because LyX takes care of needed conversions.
27030  This is similar to images that can be inserted in various image formats
27031  to LyX documents.
27032 \end_layout
27033
27034 \begin_layout Standard
27035 External material can be inserted via the 
27036 \family sans
27037 External Material
27038 \family default
27039  dialog that is accessible with the menu 
27040 \family sans
27041 Insert\SpecialChar \menuseparator
27042 File\SpecialChar \menuseparator
27043 External\InsetSpace ~
27044 Material
27045 \family default
27046 .
27047  Currently the following file types (
27048 \family sans
27049 Templates
27050 \family default
27051 ) are allowed:
27052 \end_layout
27053
27054 \begin_layout Description
27055 ChessDiagram This template supports chess position diagrams made with the
27056  program 
27057 \begin_inset ERT
27058 status collapsed
27059
27060 \begin_layout Standard
27061
27062
27063 \backslash
27064 href{http://en.wikipedia.org/wiki/XBoard}{
27065 \end_layout
27066
27067 \end_inset
27068
27069
27070 \series bold
27071 XBoard
27072 \series default
27073
27074 \begin_inset ERT
27075 status collapsed
27076
27077 \begin_layout Standard
27078
27079 }
27080 \end_layout
27081
27082 \end_inset
27083
27084 .
27085 \end_layout
27086
27087 \begin_layout Description
27088 Date This inserts the date in the form 
27089 \emph on
27090 Day-Month-Year
27091 \emph default
27092 .
27093  This is a date inserted as external material: 
27094 \begin_inset External
27095         template Date
27096         filename .
27097
27098 \end_inset
27099
27100
27101 \newline
27102 The date is not shown within LyX, only in the output.
27103  There are two other methods of inserting a date, via menu 
27104 \family sans
27105 Insert\SpecialChar \menuseparator
27106 Date
27107 \family default
27108  and with the LaTeX command 
27109 \series bold
27110
27111 \backslash
27112 today
27113 \series default
27114  as ERT.
27115  The different methods are compared in Table\InsetSpace ~
27116
27117 \begin_inset LatexCommand ref
27118 reference "tab:Comparison-of-the"
27119
27120 \end_inset
27121
27122 .
27123 \end_layout
27124
27125 \begin_layout Description
27126 LilyPond This template is used for music notation typeset with the program
27127 \begin_inset ERT
27128 status collapsed
27129
27130 \begin_layout Standard
27131
27132
27133 \backslash
27134 linebreak 
27135 \end_layout
27136
27137 \end_inset
27138
27139
27140 \begin_inset ERT
27141 status collapsed
27142
27143 \begin_layout Standard
27144
27145
27146 \backslash
27147 href{http://en.wikipedia.org/wiki/LilyPond}{
27148 \end_layout
27149
27150 \end_inset
27151
27152
27153 \series bold
27154 LilyPond
27155 \series default
27156
27157 \begin_inset ERT
27158 status collapsed
27159
27160 \begin_layout Standard
27161
27162 }
27163 \end_layout
27164
27165 \end_inset
27166
27167 .
27168 \begin_inset Note Note
27169 status collapsed
27170
27171 \begin_layout Standard
27172 The command 
27173 \series bold
27174
27175 \backslash
27176 linebreak
27177 \series default
27178  breaks the line while the remaining text in the line is stretched to the
27179  page margin.
27180 \end_layout
27181
27182 \end_inset
27183
27184
27185 \end_layout
27186
27187 \begin_layout Description
27188 RasterImage This can be used for bitmap images.
27189  Nearly all popular image formats are supported.
27190  The image can be treated in the 
27191 \family sans
27192 External material
27193 \family default
27194  dialog like the images that are usually included via the 
27195 \family sans
27196 Graphics
27197 \family default
27198  dialog as described in section\InsetSpace ~
27199
27200 \begin_inset LatexCommand ref
27201 reference "sec:Graphics-Dialog"
27202
27203 \end_inset
27204
27205 .
27206  The difference is that only raster images are allowed, that means that
27207  PDF and EPS-images are not supported.
27208 \end_layout
27209
27210 \begin_layout Description
27211 XFig This template supports images created with the program 
27212 \begin_inset ERT
27213 status collapsed
27214
27215 \begin_layout Standard
27216
27217
27218 \backslash
27219 href{http://en.wikipedia.org/wiki/Xfig}{
27220 \end_layout
27221
27222 \end_inset
27223
27224
27225 \series bold
27226 Xfig
27227 \series default
27228
27229 \begin_inset ERT
27230 status collapsed
27231
27232 \begin_layout Standard
27233
27234 }
27235 \end_layout
27236
27237 \end_inset
27238
27239 .
27240 \end_layout
27241
27242 \begin_layout Standard
27243 \begin_inset Float table
27244 placement h
27245 wide false
27246 sideways false
27247 status open
27248
27249 \begin_layout Standard
27250 \begin_inset Caption
27251
27252 \begin_layout Standard
27253 \begin_inset LatexCommand label
27254 name "tab:Comparison-of-the"
27255
27256 \end_inset
27257
27258 Comparison of the date input methods.
27259 \end_layout
27260
27261 \end_inset
27262
27263
27264 \end_layout
27265
27266 \begin_layout Standard
27267 \align center
27268 \begin_inset Tabular
27269 <lyxtabular version="3" rows="4" columns="4">
27270 <features>
27271 <column alignment="center" valignment="top" leftline="true" width="0">
27272 <column alignment="center" valignment="top" leftline="true" width="0">
27273 <column alignment="center" valignment="top" leftline="true" width="0">
27274 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
27275 <row topline="true">
27276 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27277 \begin_inset Text
27278
27279 \begin_layout Standard
27280 Document format
27281 \end_layout
27282
27283 \end_inset
27284 </cell>
27285 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27286 \begin_inset Text
27287
27288 \begin_layout Standard
27289
27290 \family sans
27291 External Material\SpecialChar \menuseparator
27292 Date
27293 \end_layout
27294
27295 \end_inset
27296 </cell>
27297 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27298 \begin_inset Text
27299
27300 \begin_layout Standard
27301
27302 \family sans
27303 Insert\SpecialChar \menuseparator
27304 Date
27305 \end_layout
27306
27307 \end_inset
27308 </cell>
27309 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27310 \begin_inset Text
27311
27312 \begin_layout Standard
27313 command 
27314 \series bold
27315
27316 \backslash
27317 today
27318 \end_layout
27319
27320 \end_inset
27321 </cell>
27322 </row>
27323 <row topline="true">
27324 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27325 \begin_inset Text
27326
27327 \begin_layout Standard
27328 LyX
27329 \end_layout
27330
27331 \end_inset
27332 </cell>
27333 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27334 \begin_inset Text
27335
27336 \begin_layout Standard
27337 as inset box
27338 \end_layout
27339
27340 \end_inset
27341 </cell>
27342 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27343 \begin_inset Text
27344
27345 \begin_layout Standard
27346 as date
27347 \end_layout
27348
27349 \end_inset
27350 </cell>
27351 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27352 \begin_inset Text
27353
27354 \begin_layout Standard
27355 as ERT inset box
27356 \end_layout
27357
27358 \end_inset
27359 </cell>
27360 </row>
27361 <row topline="true">
27362 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27363 \begin_inset Text
27364
27365 \begin_layout Standard
27366 LaTeX
27367 \end_layout
27368
27369 \end_inset
27370 </cell>
27371 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27372 \begin_inset Text
27373
27374 \begin_layout Standard
27375 as date
27376 \end_layout
27377
27378 \end_inset
27379 </cell>
27380 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27381 \begin_inset Text
27382
27383 \begin_layout Standard
27384 as date
27385 \end_layout
27386
27387 \end_inset
27388 </cell>
27389 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27390 \begin_inset Text
27391
27392 \begin_layout Standard
27393 as command
27394 \end_layout
27395
27396 \end_inset
27397 </cell>
27398 </row>
27399 <row topline="true" bottomline="true">
27400 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27401 \begin_inset Text
27402
27403 \begin_layout Standard
27404 DVI, PDF, PS
27405 \end_layout
27406
27407 \end_inset
27408 </cell>
27409 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27410 \begin_inset Text
27411
27412 \begin_layout Standard
27413 as date
27414 \end_layout
27415
27416 \end_inset
27417 </cell>
27418 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27419 \begin_inset Text
27420
27421 \begin_layout Standard
27422 as date
27423 \end_layout
27424
27425 \end_inset
27426 </cell>
27427 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27428 \begin_inset Text
27429
27430 \begin_layout Standard
27431 as date
27432 \end_layout
27433
27434 \end_inset
27435 </cell>
27436 </row>
27437 </lyxtabular>
27438
27439 \end_inset
27440
27441
27442 \end_layout
27443
27444 \end_inset
27445
27446
27447 \end_layout
27448
27449 \begin_layout Standard
27450 When you use the option 
27451 \family sans
27452 Draft
27453 \family default
27454  in the 
27455 \family sans
27456 File
27457 \family default
27458  tab of the 
27459 \family sans
27460 External Material
27461 \family default
27462  dialog, only the path to the inserted file is shown in the output.
27463 \newline
27464 External
27465  material is displayed in LyX either as box like this: 
27466 \begin_inset Graphics
27467         filename clipart/ExternalMaterialQt4.png
27468         scale 85
27469
27470 \end_inset
27471
27472  or as image, depending on the setting in the 
27473 \family sans
27474 LyX\InsetSpace ~
27475 View
27476 \family default
27477  tab of the 
27478 \family sans
27479 External Material
27480 \family default
27481  dialog.
27482 \end_layout
27483
27484 \begin_layout Standard
27485 The 
27486 \family sans
27487 \emph on
27488 Customization
27489 \family default
27490 \emph default
27491  manual explains how you can define your own templates.
27492 \end_layout
27493
27494 \begin_layout Section
27495 Child Documents
27496 \begin_inset LatexCommand label
27497 name "sec:Child-Documents"
27498
27499 \end_inset
27500
27501
27502 \begin_inset LatexCommand index
27503 name "External Stuff ! Child Documents"
27504
27505 \end_inset
27506
27507
27508 \begin_inset LatexCommand index
27509 name "Files ! Include"
27510
27511 \end_inset
27512
27513
27514 \end_layout
27515
27516 \begin_layout Standard
27517 Child documents are used when you have a long document consisting of several
27518  larger parts or sections.
27519  For maintenance it is often useful and sometimes even required to split
27520  the document in several files that can be revised separately.
27521  The different documents are then the so called child documents and a master
27522  document connects them to print the full document or parts of it.
27523 \end_layout
27524
27525 \begin_layout Standard
27526 Included documents are displayed in LyX as a box like this: 
27527 \begin_inset Graphics
27528         filename clipart/ChildDocumentQt4.png
27529         scale 85
27530
27531 \end_inset
27532
27533  To include child documents to a master document use the menu 
27534 \family sans
27535 Insert\SpecialChar \menuseparator
27536 File\SpecialChar \menuseparator
27537 Child\InsetSpace ~
27538 Documents
27539 \family default
27540 .
27541  A dialog pops up where you can choose between four include methods:
27542 \end_layout
27543
27544 \begin_layout Description
27545 Include You can include LyX and LaTeX-documents.
27546  When you press the 
27547 \family sans
27548 Load
27549 \family default
27550  button in the 
27551 \family sans
27552 Child Document
27553 \family default
27554  dialog, the included documents will be opened in LyX in a new file tab
27555  so that you can modify it.
27556 \newline
27557
27558 \end_layout
27559
27560 \begin_layout Standard
27561 Here is a child document inserted using 
27562 \family sans
27563 Include
27564 \family default
27565
27566 \begin_inset Include \include{DummyDocument1.lyx}
27567 preview false
27568
27569 \end_inset
27570
27571
27572 \end_layout
27573
27574 \begin_layout Standard
27575 The section numbering includes the sections of the included files in the
27576  order they are inserted in the master document.
27577  The included example document has for example a subsection that is numbered
27578  as subsection of this section.
27579  Labels of included documents can be referenced: Subsection\InsetSpace ~
27580
27581 \begin_inset LatexCommand ref
27582 reference "sub:External-Subsection-1"
27583
27584 \end_inset
27585
27586
27587 \end_layout
27588
27589 \begin_layout Standard
27590 The preamble of the child document is ignored, only the preamble of the
27591  master document is used.
27592  Included documents are inserted starting on a new page and end with a pagebreak.
27593 \end_layout
27594
27595 \begin_layout Standard
27596 With the LaTeX-command 
27597 \series bold
27598
27599 \backslash
27600 includeonly 
27601 \series default
27602 you can specify which included child documents are processed when the output
27603  is generated.
27604  This is useful when you are perhaps only working on a certain chapter of
27605  your large document as this saves compiling time.
27606  
27607 \series bold
27608
27609 \backslash
27610 includeonly
27611 \series default
27612  is inserted to the master document preamble.
27613  It takes a comma-separated list of the filenames as argument, e.g.
27614 \end_layout
27615
27616 \begin_layout Standard
27617
27618 \series bold
27619
27620 \backslash
27621 includeonly{chapter1,chapter5}
27622 \end_layout
27623
27624 \begin_layout Standard
27625 will only process the included files named 
27626 \begin_inset Quotes eld
27627 \end_inset
27628
27629 chapter1.lyx
27630 \begin_inset Quotes erd
27631 \end_inset
27632
27633  (or 
27634 \begin_inset Quotes eld
27635 \end_inset
27636
27637 chapter1.tex
27638 \begin_inset Quotes erd
27639 \end_inset
27640
27641 ) and 
27642 \begin_inset Quotes eld
27643 \end_inset
27644
27645 chapter5.lyx
27646 \begin_inset Quotes erd
27647 \end_inset
27648
27649  .
27650 \end_layout
27651
27652 \begin_layout Standard
27653 \begin_inset Note Greyedout
27654 status open
27655
27656 \begin_layout Standard
27657
27658 \series bold
27659 Note:
27660 \series default
27661  When you have included a LyX- or LaTeX-file, you are warned when you export/vie
27662 w the document in case that the child document uses another document class
27663  than the master document as this will lead to unexpected outputs.
27664 \end_layout
27665
27666 \end_inset
27667
27668
27669 \end_layout
27670
27671 \begin_layout Description
27672 Input This method is very similar to the Include method.
27673  The differences are:
27674 \end_layout
27675
27676 \begin_deeper
27677 \begin_layout Itemize
27678 Input files don't start with a new page and don't end with a pagebreak.
27679 \end_layout
27680
27681 \begin_layout Itemize
27682 Input files can be previewed in LyX when 
27683 \family sans
27684 Instant\InsetSpace ~
27685 Preview
27686 \family default
27687  is enabled in LyX's preferences under 
27688 \family sans
27689 Look\InsetSpace ~
27690 and\InsetSpace ~
27691 feel\SpecialChar \menuseparator
27692 Graphics
27693 \family default
27694 .
27695 \end_layout
27696
27697 \begin_layout Itemize
27698 The LaTeX-command 
27699 \series bold
27700
27701 \backslash
27702 includeonly
27703 \series default
27704  cannot be used.
27705 \end_layout
27706
27707 \end_deeper
27708 \begin_layout Standard
27709 Here is a child document inserted using 
27710 \family sans
27711 Input
27712 \family default
27713
27714 \begin_inset Include \input{DummyDocument2.lyx}
27715 preview false
27716
27717 \end_inset
27718
27719
27720 \end_layout
27721
27722 \begin_layout Description
27723 Verbatim With this method every text file can be included.
27724  The file is shown in the output with its source code, no command used in
27725  the text is invoked.
27726  You can use the option 
27727 \family sans
27728 Mark spaces in output
27729 \family default
27730  that displays the character 
27731 \begin_inset Quotes eld
27732 \end_inset
27733
27734
27735 \begin_inset ERT
27736 status collapsed
27737
27738 \begin_layout Standard
27739
27740
27741 \backslash
27742 textvisiblespace 
27743 \end_layout
27744
27745 \end_inset
27746
27747
27748 \begin_inset Quotes erd
27749 \end_inset
27750
27751  for every space character in the source code.
27752  The difference to the method via the menu 
27753 \family sans
27754 Insert\SpecialChar \menuseparator
27755 File\SpecialChar \menuseparator
27756 Plain\InsetSpace ~
27757 Text
27758 \family default
27759  is that the document content is not shown in LyX.
27760 \end_layout
27761
27762 \begin_layout Standard
27763 Here is a child document inserted as Verbatim: 
27764 \begin_inset Include \verbatiminput{DummyTextDocument.txt}
27765 preview false
27766
27767 \end_inset
27768
27769
27770 \begin_inset VSpace bigskip
27771 \end_inset
27772
27773 Here is a child document inserted as Verbatim using the 
27774 \family sans
27775 Mark spaces in output
27776 \family default
27777  option: 
27778 \begin_inset Include \verbatiminput*{DummyTextDocument.txt}
27779 preview false
27780
27781 \end_inset
27782
27783
27784 \end_layout
27785
27786 \begin_layout Standard
27787 \begin_inset VSpace bigskip
27788 \end_inset
27789
27790
27791 \end_layout
27792
27793 \begin_layout Standard
27794 \begin_inset Note Greyedout
27795 status open
27796
27797 \begin_layout Standard
27798
27799 \series bold
27800 Note:
27801 \series default
27802  As you can see in the examples above, the text of the documents included
27803  as verbatim is not broken at the end of the document lines.
27804 \end_layout
27805
27806 \end_inset
27807
27808
27809 \end_layout
27810
27811 \begin_layout Description
27812 Listings This type is described in chapter\InsetSpace ~
27813
27814 \begin_inset LatexCommand ref
27815 reference "cha:Program-Code-Listings"
27816
27817 \end_inset
27818
27819 .
27820 \end_layout
27821
27822 \begin_layout Standard
27823 \begin_inset Note Greyedout
27824 status open
27825
27826 \begin_layout Standard
27827
27828 \series bold
27829 Note:
27830 \series default
27831  Including the same document twice in a document using different methods
27832  could cause LaTeX-problems.
27833 \end_layout
27834
27835 \end_inset
27836
27837
27838 \end_layout
27839
27840 \begin_layout Chapter
27841 Program Code Listings
27842 \begin_inset LatexCommand label
27843 name "cha:Program-Code-Listings"
27844
27845 \end_inset
27846
27847
27848 \begin_inset LatexCommand index
27849 name "Listings"
27850
27851 \end_inset
27852
27853
27854 \begin_inset LatexCommand index
27855 name "Program Code"
27856
27857 \end_inset
27858
27859
27860 \begin_inset LatexCommand index
27861 name "Floats ! Listings"
27862
27863 \end_inset
27864
27865
27866 \end_layout
27867
27868 \begin_layout Standard
27869 To include and typeset program code you can use the 
27870 \family sans
27871 Listings
27872 \family default
27873  inset that can be inserted via the menu 
27874 \family sans
27875 Insert\SpecialChar \menuseparator
27876 Program Listing
27877 \family default
27878 .
27879  The LaTeX-package 
27880 \series bold
27881 listings
27882 \series default
27883
27884 \begin_inset LatexCommand index
27885 name "LaTeX-packages ! listings"
27886
27887 \end_inset
27888
27889  provides a powerful and flexible way to insert program source code to your
27890  document.
27891 \end_layout
27892
27893 \begin_layout Standard
27894 When right-clicking on a listings inset a dialog pops up where you can set
27895  the listings format.
27896 \end_layout
27897
27898 \begin_layout Standard
27899 By default, a listing starts a new paragraph in the output.
27900  The placement option 
27901 \family sans
27902 Inline\InsetSpace ~
27903 listing
27904 \family default
27905  prints the listing inline like this: 
27906 \begin_inset listings
27907 lstparams "language={C++}"
27908 inline true
27909 status open
27910
27911 \begin_layout Standard
27912
27913 int a=5;
27914 \end_layout
27915
27916 \end_inset
27917
27918
27919 \newline
27920 The option 
27921 \family sans
27922 Float
27923 \family default
27924  creates a listings float where you can specify the placement options 
27925 \begin_inset Quotes eld
27926 \end_inset
27927
27928
27929 \family sans
27930 h
27931 \family default
27932
27933 \begin_inset Quotes erd
27934 \end_inset
27935
27936
27937 \begin_inset Quotes eld
27938 \end_inset
27939
27940
27941 \family sans
27942 t
27943 \family default
27944
27945 \begin_inset Quotes erd
27946 \end_inset
27947
27948
27949 \begin_inset Quotes eld
27950 \end_inset
27951
27952
27953 \family sans
27954 b
27955 \family default
27956
27957 \begin_inset Quotes erd
27958 \end_inset
27959
27960 , and 
27961 \begin_inset Quotes eld
27962 \end_inset
27963
27964
27965 \family sans
27966 p
27967 \family default
27968
27969 \begin_inset Quotes erd
27970 \end_inset
27971
27972  corresponding to the float placement options described in section\InsetSpace ~
27973
27974 \begin_inset LatexCommand ref
27975 reference "sec:Float-Placement"
27976
27977 \end_inset
27978
27979 .
27980  The placement options can be mixed and are inserted without any separation,
27981  e.\InsetSpace \thinspace{}
27982 g.\InsetSpace ~
27983
27984 \begin_inset Quotes eld
27985 \end_inset
27986
27987
27988 \family sans
27989 htbp
27990 \family default
27991
27992 \begin_inset Quotes erd
27993 \end_inset
27994
27995 .
27996  The option 
27997 \begin_inset Quotes eld
27998 \end_inset
27999
28000 h
28001 \begin_inset Quotes erd
28002 \end_inset
28003
28004  has sometimes no effect, but you don't need to use the 
28005 \family sans
28006 Float
28007 \family default
28008  option in this case as also non-float listings can have captions and be
28009  referenced.
28010 \end_layout
28011
28012 \begin_layout Standard
28013 You can add captions to listings with the menu 
28014 \family sans
28015 Insert\SpecialChar \menuseparator
28016 Caption
28017 \family default
28018 .
28019  Listings can be referenced like floats: Listing\InsetSpace ~
28020
28021 \begin_inset LatexCommand ref
28022 reference "lst:Example-Listing"
28023
28024 \end_inset
28025
28026
28027 \end_layout
28028
28029 \begin_layout Standard
28030 \begin_inset listings
28031 lstparams "language=Python"
28032 inline false
28033 status open
28034
28035 \begin_layout Standard
28036
28037 \begin_inset Caption
28038
28039 \begin_layout Standard
28040 \begin_inset LatexCommand label
28041 name "lst:Example-Listing"
28042
28043 \end_inset
28044
28045 Example Listing float
28046 \end_layout
28047
28048 \end_inset
28049
28050 # Example listing float
28051 \end_layout
28052
28053 \begin_layout Standard
28054
28055 def func(param):
28056 \end_layout
28057
28058 \begin_layout Standard
28059
28060     'this is a python function'
28061 \end_layout
28062
28063 \begin_layout Standard
28064
28065     pass
28066 \end_layout
28067
28068 \end_inset
28069
28070
28071 \end_layout
28072
28073 \begin_layout Standard
28074 When you have set a programming language in the listings dialog, the keywords
28075  of this language will be recognized and specially typeset in the output.
28076  In the example listings the Python keyword 
28077 \begin_inset Quotes eld
28078 \end_inset
28079
28080 def
28081 \begin_inset Quotes erd
28082 \end_inset
28083
28084  is recognized and printed bold in the output.
28085 \end_layout
28086
28087 \begin_layout Standard
28088 In section 
28089 \family sans
28090 Line\InsetSpace ~
28091 numbering
28092 \family default
28093  of the listings dialog you can specify the line numbering style.
28094  You can insert a number to specify which lines are numbered to the field
28095  
28096 \family sans
28097 Step
28098 \family default
28099 .
28100  When you insert e.g.
28101  
28102 \begin_inset Quotes eld
28103 \end_inset
28104
28105 3
28106 \begin_inset Quotes erd
28107 \end_inset
28108
28109 , only every 3rd line will be numbered.
28110 \end_layout
28111
28112 \begin_layout Standard
28113 You can furthermore specify a range of lines, only these will then appear
28114  in the output.
28115  The option 
28116 \family sans
28117 Extended\InsetSpace ~
28118 chars
28119 \family default
28120  should be used when you use national characters like the German umlauts
28121  in the listing.
28122 \newline
28123 Here is an example listing with left line numbering, step
28124  
28125 \begin_inset Quotes eld
28126 \end_inset
28127
28128 3
28129 \begin_inset Quotes erd
28130 \end_inset
28131
28132 , language 
28133 \begin_inset Quotes eld
28134 \end_inset
28135
28136 Python
28137 \begin_inset Quotes erd
28138 \end_inset
28139
28140 , options 
28141 \begin_inset Quotes eld
28142 \end_inset
28143
28144 Extended\InsetSpace ~
28145 chars
28146 \begin_inset Quotes erd
28147 \end_inset
28148
28149  and 
28150 \begin_inset Quotes eld
28151 \end_inset
28152
28153 Space\InsetSpace ~
28154 as\InsetSpace ~
28155 Symbol
28156 \begin_inset Quotes erd
28157 \end_inset
28158
28159 , range lines 3\InsetSpace \thinspace{}
28160 -\InsetSpace \thinspace{}
28161 8:
28162 \end_layout
28163
28164 \begin_layout Standard
28165 \begin_inset listings
28166 lstparams "extendedchars=true,firstline=3,language=Python,lastline=8,numbers=left,showspaces=true,stepnumber=3"
28167 inline false
28168 status open
28169
28170 \begin_layout Standard
28171
28172 def func(param):
28173 \end_layout
28174
28175 \begin_layout Standard
28176
28177     'this is a python function'
28178 \end_layout
28179
28180 \begin_layout Standard
28181
28182     pass
28183 \end_layout
28184
28185 \begin_layout Standard
28186
28187 def func(param):
28188 \end_layout
28189
28190 \begin_layout Standard
28191
28192 'This is a German word: Tschüß'
28193 \end_layout
28194
28195 \begin_layout Standard
28196
28197 pass
28198 \end_layout
28199
28200 \begin_layout Standard
28201
28202 def func(param):
28203 \end_layout
28204
28205 \begin_layout Standard
28206
28207 'this is a python function'
28208 \end_layout
28209
28210 \begin_layout Standard
28211
28212 pass
28213 \end_layout
28214
28215 \end_inset
28216
28217
28218 \end_layout
28219
28220 \begin_layout Standard
28221 \begin_inset Note Greyedout
28222 status open
28223
28224 \begin_layout Standard
28225
28226 \series bold
28227 Note:
28228 \series default
28229  The line numbering is shifted by a line by every previous listing.
28230  That's the reason why the lines 2 and 5 are numbered in the above listing
28231  and not the lines 3 and 6.
28232 \end_layout
28233
28234 \end_inset
28235
28236
28237 \end_layout
28238
28239 \begin_layout Standard
28240 \begin_inset VSpace bigskip
28241 \end_inset
28242
28243
28244 \end_layout
28245
28246 \begin_layout Standard
28247 It is also possible to print lines from a file as listing.
28248  To do this, use the menu 
28249 \family sans
28250 Insert\SpecialChar \menuseparator
28251 File\SpecialChar \menuseparator
28252 Child Document
28253 \family default
28254  and choose the type 
28255 \family sans
28256 Listings
28257 \family default
28258 .
28259 \begin_inset Foot
28260 status collapsed
28261
28262 \begin_layout Standard
28263 The other child document types are described in section\InsetSpace ~
28264
28265 \begin_inset LatexCommand ref
28266 reference "sec:Child-Documents"
28267
28268 \end_inset
28269
28270 .
28271 \end_layout
28272
28273 \end_inset
28274
28275  In the child document dialog you can specify the listing parameters in
28276  a text box.
28277  To show a list of all available parameters, type in a question mark 
28278 \begin_inset Quotes eld
28279 \end_inset
28280
28281 ?
28282 \begin_inset Quotes erd
28283 \end_inset
28284
28285  in the text box.
28286 \end_layout
28287
28288 \begin_layout Standard
28289 To reference child document listings, write a label text into the corresponding
28290  field of the child document dialog.
28291  The label can then be referenced using the menu 
28292 \family sans
28293 Insert\SpecialChar \menuseparator
28294 Cross-Reference
28295 \family default
28296 .
28297 \end_layout
28298
28299 \begin_layout Standard
28300 Listing\InsetSpace ~
28301
28302 \begin_inset LatexCommand ref
28303 reference "lst:file-listing"
28304
28305 \end_inset
28306
28307  is an example for a listing of a file; there the lines 10\InsetSpace \thinspace{}
28308 -\InsetSpace \thinspace{}
28309 15 of this LyX
28310  file are listed.
28311 \end_layout
28312
28313 \begin_layout Standard
28314 \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]
28315 preview false
28316
28317 \end_inset
28318
28319
28320 \end_layout
28321
28322 \begin_layout Standard
28323 \begin_inset VSpace bigskip
28324 \end_inset
28325
28326
28327 \end_layout
28328
28329 \begin_layout Standard
28330 Global listings settings can be set in the 
28331 \family sans
28332 Document\SpecialChar \menuseparator
28333 Settings\SpecialChar \menuseparator
28334 Text Layout
28335 \family default
28336  dialog.
28337  To get there a list of available options, type in a question mark 
28338 \begin_inset Quotes eld
28339 \end_inset
28340
28341 ?
28342 \begin_inset Quotes erd
28343 \end_inset
28344
28345  in the 
28346 \family sans
28347 Listings\InsetSpace ~
28348 settings
28349 \family default
28350  field.
28351 \end_layout
28352
28353 \begin_layout Standard
28354 For more information about the 
28355 \series bold
28356 listings
28357 \series default
28358  package, we refer to its documentation 
28359 \begin_inset LatexCommand cite
28360 key "listings"
28361
28362 \end_inset
28363
28364 .
28365 \end_layout
28366
28367 \begin_layout Standard
28368
28369 \newpage
28370
28371 \end_layout
28372
28373 \begin_layout Chapter
28374 \start_of_appendix
28375 Units available in 
28376 \begin_inset ERT
28377 status collapsed
28378
28379 \begin_layout Standard
28380
28381
28382 \backslash
28383 texorpdfstring{
28384 \end_layout
28385
28386 \end_inset
28387
28388 LyX
28389 \begin_inset ERT
28390 status collapsed
28391
28392 \begin_layout Standard
28393
28394 }{LyX}
28395 \end_layout
28396
28397 \end_inset
28398
28399
28400 \begin_inset LatexCommand index
28401 name "Units"
28402
28403 \end_inset
28404
28405
28406 \begin_inset LatexCommand label
28407 name "cha:Units-available-in"
28408
28409 \end_inset
28410
28411
28412 \begin_inset Note Note
28413 status collapsed
28414
28415 \begin_layout Standard
28416 The command 
28417 \backslash
28418 texorpdfstring is provided by the LaTeX-package hyperref to avoid that ligatures
28419  are displayed wrongly in PDF-bookmarks.
28420  For more information about this, have a look at 
28421 \begin_inset LatexCommand cite
28422 key "hyperref"
28423
28424 \end_inset
28425
28426 .
28427 \end_layout
28428
28429 \end_inset
28430
28431
28432 \end_layout
28433
28434 \begin_layout Standard
28435 To understand the units described in this documentation, Table\InsetSpace ~
28436
28437 \begin_inset LatexCommand ref
28438 reference "tab:Units"
28439
28440 \end_inset
28441
28442  explains all units available in LyX.
28443 \end_layout
28444
28445 \begin_layout Standard
28446 \begin_inset Float table
28447 placement h
28448 wide false
28449 sideways false
28450 status open
28451
28452 \begin_layout Standard
28453 \begin_inset Caption
28454
28455 \begin_layout Standard
28456 \begin_inset LatexCommand label
28457 name "tab:Units"
28458
28459 \end_inset
28460
28461 Units
28462 \end_layout
28463
28464 \end_inset
28465
28466
28467 \end_layout
28468
28469 \begin_layout Standard
28470 \begin_inset VSpace medskip
28471 \end_inset
28472
28473
28474 \end_layout
28475
28476 \begin_layout Standard
28477 \align center
28478 \begin_inset Tabular
28479 <lyxtabular version="3" rows="20" columns="2">
28480 <features>
28481 <column alignment="center" valignment="top" leftline="true" width="0">
28482 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
28483 <row topline="true" bottomline="true">
28484 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28485 \begin_inset Text
28486
28487 \begin_layout Standard
28488 unit
28489 \end_layout
28490
28491 \end_inset
28492 </cell>
28493 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28494 \begin_inset Text
28495
28496 \begin_layout Standard
28497 name/description
28498 \end_layout
28499
28500 \end_inset
28501 </cell>
28502 </row>
28503 <row topline="true">
28504 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28505 \begin_inset Text
28506
28507 \begin_layout Standard
28508 mm
28509 \end_layout
28510
28511 \end_inset
28512 </cell>
28513 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28514 \begin_inset Text
28515
28516 \begin_layout Standard
28517 millimeter
28518 \end_layout
28519
28520 \end_inset
28521 </cell>
28522 </row>
28523 <row topline="true">
28524 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28525 \begin_inset Text
28526
28527 \begin_layout Standard
28528 cm
28529 \end_layout
28530
28531 \end_inset
28532 </cell>
28533 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28534 \begin_inset Text
28535
28536 \begin_layout Standard
28537 centimeter
28538 \end_layout
28539
28540 \end_inset
28541 </cell>
28542 </row>
28543 <row topline="true">
28544 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28545 \begin_inset Text
28546
28547 \begin_layout Standard
28548 in
28549 \end_layout
28550
28551 \end_inset
28552 </cell>
28553 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28554 \begin_inset Text
28555
28556 \begin_layout Standard
28557 inch
28558 \end_layout
28559
28560 \end_inset
28561 </cell>
28562 </row>
28563 <row topline="true">
28564 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28565 \begin_inset Text
28566
28567 \begin_layout Standard
28568 pt
28569 \end_layout
28570
28571 \end_inset
28572 </cell>
28573 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28574 \begin_inset Text
28575
28576 \begin_layout Standard
28577 point (72.27\InsetSpace \thinspace{}
28578 pt = 1\InsetSpace \thinspace{}
28579 in)
28580 \end_layout
28581
28582 \end_inset
28583 </cell>
28584 </row>
28585 <row topline="true">
28586 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28587 \begin_inset Text
28588
28589 \begin_layout Standard
28590 pc
28591 \end_layout
28592
28593 \end_inset
28594 </cell>
28595 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28596 \begin_inset Text
28597
28598 \begin_layout Standard
28599 pica (1\InsetSpace \thinspace{}
28600 pc = 12\InsetSpace \thinspace{}
28601 pt)
28602 \end_layout
28603
28604 \end_inset
28605 </cell>
28606 </row>
28607 <row topline="true">
28608 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28609 \begin_inset Text
28610
28611 \begin_layout Standard
28612 sp
28613 \end_layout
28614
28615 \end_inset
28616 </cell>
28617 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28618 \begin_inset Text
28619
28620 \begin_layout Standard
28621 scaled point (65536\InsetSpace \thinspace{}
28622 sp = 1\InsetSpace \thinspace{}
28623 pt)
28624 \end_layout
28625
28626 \end_inset
28627 </cell>
28628 </row>
28629 <row topline="true">
28630 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28631 \begin_inset Text
28632
28633 \begin_layout Standard
28634 bp
28635 \end_layout
28636
28637 \end_inset
28638 </cell>
28639 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28640 \begin_inset Text
28641
28642 \begin_layout Standard
28643 big point (72\InsetSpace \thinspace{}
28644 bp = 1\InsetSpace \thinspace{}
28645 in)
28646 \end_layout
28647
28648 \end_inset
28649 </cell>
28650 </row>
28651 <row topline="true">
28652 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28653 \begin_inset Text
28654
28655 \begin_layout Standard
28656 dd
28657 \end_layout
28658
28659 \end_inset
28660 </cell>
28661 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28662 \begin_inset Text
28663
28664 \begin_layout Standard
28665 didot (1\InsetSpace \thinspace{}
28666 dd 
28667 \begin_inset Formula $\approx$
28668 \end_inset
28669
28670  0.376\InsetSpace \thinspace{}
28671 mm)
28672 \end_layout
28673
28674 \end_inset
28675 </cell>
28676 </row>
28677 <row topline="true">
28678 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28679 \begin_inset Text
28680
28681 \begin_layout Standard
28682 cc
28683 \end_layout
28684
28685 \end_inset
28686 </cell>
28687 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28688 \begin_inset Text
28689
28690 \begin_layout Standard
28691 cicero (1\InsetSpace \thinspace{}
28692 cc = 12\InsetSpace \thinspace{}
28693 dd)
28694 \end_layout
28695
28696 \end_inset
28697 </cell>
28698 </row>
28699 <row topline="true">
28700 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28701 \begin_inset Text
28702
28703 \begin_layout Standard
28704 Scale%
28705 \end_layout
28706
28707 \end_inset
28708 </cell>
28709 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28710 \begin_inset Text
28711
28712 \begin_layout Standard
28713 % of original image width
28714 \end_layout
28715
28716 \end_inset
28717 </cell>
28718 </row>
28719 <row topline="true">
28720 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28721 \begin_inset Text
28722
28723 \begin_layout Standard
28724 text%
28725 \end_layout
28726
28727 \end_inset
28728 </cell>
28729 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28730 \begin_inset Text
28731
28732 \begin_layout Standard
28733 % of text width
28734 \end_layout
28735
28736 \end_inset
28737 </cell>
28738 </row>
28739 <row topline="true">
28740 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28741 \begin_inset Text
28742
28743 \begin_layout Standard
28744 col%
28745 \end_layout
28746
28747 \end_inset
28748 </cell>
28749 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28750 \begin_inset Text
28751
28752 \begin_layout Standard
28753 % of column width
28754 \end_layout
28755
28756 \end_inset
28757 </cell>
28758 </row>
28759 <row topline="true">
28760 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28761 \begin_inset Text
28762
28763 \begin_layout Standard
28764 page%
28765 \end_layout
28766
28767 \end_inset
28768 </cell>
28769 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28770 \begin_inset Text
28771
28772 \begin_layout Standard
28773 % of paper width
28774 \end_layout
28775
28776 \end_inset
28777 </cell>
28778 </row>
28779 <row topline="true">
28780 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28781 \begin_inset Text
28782
28783 \begin_layout Standard
28784 line%
28785 \end_layout
28786
28787 \end_inset
28788 </cell>
28789 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28790 \begin_inset Text
28791
28792 \begin_layout Standard
28793 % of line width
28794 \end_layout
28795
28796 \end_inset
28797 </cell>
28798 </row>
28799 <row topline="true">
28800 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28801 \begin_inset Text
28802
28803 \begin_layout Standard
28804 theight%
28805 \end_layout
28806
28807 \end_inset
28808 </cell>
28809 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28810 \begin_inset Text
28811
28812 \begin_layout Standard
28813 % of text height
28814 \end_layout
28815
28816 \end_inset
28817 </cell>
28818 </row>
28819 <row topline="true">
28820 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28821 \begin_inset Text
28822
28823 \begin_layout Standard
28824 pheight%
28825 \end_layout
28826
28827 \end_inset
28828 </cell>
28829 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28830 \begin_inset Text
28831
28832 \begin_layout Standard
28833 % of paper height
28834 \end_layout
28835
28836 \end_inset
28837 </cell>
28838 </row>
28839 <row topline="true">
28840 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28841 \begin_inset Text
28842
28843 \begin_layout Standard
28844 ex
28845 \end_layout
28846
28847 \end_inset
28848 </cell>
28849 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28850 \begin_inset Text
28851
28852 \begin_layout Standard
28853 height of letter 
28854 \emph on
28855 x
28856 \emph default
28857  in current font
28858 \end_layout
28859
28860 \end_inset
28861 </cell>
28862 </row>
28863 <row topline="true">
28864 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28865 \begin_inset Text
28866
28867 \begin_layout Standard
28868 em
28869 \end_layout
28870
28871 \end_inset
28872 </cell>
28873 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28874 \begin_inset Text
28875
28876 \begin_layout Standard
28877 width of letter 
28878 \emph on
28879 M
28880 \emph default
28881  in current font
28882 \end_layout
28883
28884 \end_inset
28885 </cell>
28886 </row>
28887 <row topline="true" bottomline="true">
28888 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28889 \begin_inset Text
28890
28891 \begin_layout Standard
28892 mu
28893 \end_layout
28894
28895 \end_inset
28896 </cell>
28897 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28898 \begin_inset Text
28899
28900 \begin_layout Standard
28901 math unit (1\InsetSpace \thinspace{}
28902 mu = 1/18\InsetSpace \thinspace{}
28903 em)
28904 \end_layout
28905
28906 \end_inset
28907 </cell>
28908 </row>
28909 </lyxtabular>
28910
28911 \end_inset
28912
28913
28914 \end_layout
28915
28916 \end_inset
28917
28918
28919 \end_layout
28920
28921 \begin_layout Chapter
28922 Output File Formats with Graphics
28923 \begin_inset LatexCommand label
28924 name "cha:Output-File-Formats"
28925
28926 \end_inset
28927
28928
28929 \end_layout
28930
28931 \begin_layout Section
28932 DVI
28933 \begin_inset LatexCommand index
28934 name "File Formats ! DVI"
28935
28936 \end_inset
28937
28938
28939 \begin_inset LatexCommand index
28940 name "DVI|see{File Formats}"
28941
28942 \end_inset
28943
28944
28945 \end_layout
28946
28947 \begin_layout Standard
28948 This file type has the extension 
28949 \begin_inset Quotes eld
28950 \end_inset
28951
28952
28953 \family typewriter
28954 .dvi
28955 \family default
28956
28957 \begin_inset Quotes erd
28958 \end_inset
28959
28960 .
28961  It is called 
28962 \begin_inset Quotes eld
28963 \end_inset
28964
28965 device-independent
28966 \begin_inset Quotes erd
28967 \end_inset
28968
28969  (DVI), because it is completely portable; you can move them from one machine
28970  to another without needing to do any sort of conversion.
28971  At the time when this file-format was developed, this was no matter of
28972  course.
28973  DVIs are used for quick previews and as pre-stage for other output formats,
28974  like PostScript.
28975 \end_layout
28976
28977 \begin_layout Standard
28978 \begin_inset Note Greyedout
28979 status open
28980
28981 \begin_layout Standard
28982
28983 \series bold
28984 Note:
28985 \series default
28986  DVI-files doesn't contain images, they will only be a linked.
28987 \end_layout
28988
28989 \end_inset
28990
28991  So don't forget this, if you move your 
28992 \family typewriter
28993 .dvi
28994 \family default
28995  file to another computer.
28996  This property can also slow down your computer when you view the DVI.
28997  Because the DVI-viewer has to convert the image in the background to make
28998  it visible when you scroll in the DVI.
28999  So we recommend to use PDF for files with many images.
29000 \end_layout
29001
29002 \begin_layout Standard
29003 You can export your document to DVI by using the menu 
29004 \family sans
29005 File\SpecialChar \menuseparator
29006 Export\SpecialChar \menuseparator
29007 DVI
29008 \family default
29009 .
29010  You can view your document as DVI via the 
29011 \family sans
29012 View
29013 \family default
29014  menu or by using the toolbar button 
29015 \begin_inset Graphics
29016         filename ../images/buffer-view_dvi.xpm
29017         scale 85
29018
29019 \end_inset
29020
29021 .
29022 \end_layout
29023
29024 \begin_layout Section
29025 PostScript
29026 \begin_inset LatexCommand label
29027 name "sec:PostScript"
29028
29029 \end_inset
29030
29031
29032 \begin_inset LatexCommand index
29033 name "File Formats ! PostScript"
29034
29035 \end_inset
29036
29037
29038 \begin_inset LatexCommand index
29039 name "PostScript|see{File Formats}"
29040
29041 \end_inset
29042
29043
29044 \end_layout
29045
29046 \begin_layout Standard
29047 This file type has the extension 
29048 \begin_inset Quotes eld
29049 \end_inset
29050
29051
29052 \family typewriter
29053 .ps
29054 \family default
29055
29056 \begin_inset Quotes erd
29057 \end_inset
29058
29059 .
29060  PostScript was developed by the company 
29061 \family typewriter
29062 Adobe
29063 \family default
29064  as printer language.
29065  The file contains therefore commands that the printer uses to print the
29066  file.
29067  PostScript can be seen as 
29068 \begin_inset Quotes eld
29069 \end_inset
29070
29071 programming language
29072 \begin_inset Quotes erd
29073 \end_inset
29074
29075 ; you can calculate with it and draw diagrams and images
29076 \begin_inset Foot
29077 status collapsed
29078
29079 \begin_layout Standard
29080 If you are interested to learn more about this, have a look at the LaTeX-package
29081  
29082 \series bold
29083 PSTricks
29084 \series default
29085  
29086 \begin_inset LatexCommand cite
29087 key "pstricks"
29088
29089 \end_inset
29090
29091 .
29092 \end_layout
29093
29094 \end_inset
29095
29096 .
29097  Due to this ability, the files are often bigger than PDFs.
29098 \end_layout
29099
29100 \begin_layout Standard
29101 PostScript can only contain images in the format 
29102 \begin_inset Quotes eld
29103 \end_inset
29104
29105 Encapsulated PostScript
29106 \begin_inset Quotes erd
29107 \end_inset
29108
29109  (EPS, file extension 
29110 \begin_inset Quotes eld
29111 \end_inset
29112
29113
29114 \family typewriter
29115 .eps
29116 \family default
29117
29118 \begin_inset Quotes erd
29119 \end_inset
29120
29121 ).
29122  As LyX allows you to use any known image format in your document, it has
29123  to convert images in the background to EPS.
29124  If you have e.g 50 images in your document, LyX has to do 50 conversions
29125  whenever you view or export your document.
29126  This will slow down your work flow with LyX drastically.
29127  So if you plan to use PostScript, you can insert your images directly as
29128  EPS to avoid this problem.
29129 \end_layout
29130
29131 \begin_layout Standard
29132 You can export your document to PostScript using the menu 
29133 \family sans
29134 File\SpecialChar \menuseparator
29135 Export\SpecialChar \menuseparator
29136 Postscript
29137 \family default
29138 .
29139  You can view your document as PostScript via the 
29140 \family sans
29141 View
29142 \family default
29143  menu or by using the toolbar button 
29144 \begin_inset Graphics
29145         filename ../images/buffer-view_ps.xpm
29146         scale 85
29147
29148 \end_inset
29149
29150 .
29151 \end_layout
29152
29153 \begin_layout Section
29154 PDF
29155 \begin_inset LatexCommand label
29156 name "sec:PDF"
29157
29158 \end_inset
29159
29160
29161 \begin_inset LatexCommand index
29162 name "File Formats ! PDF"
29163
29164 \end_inset
29165
29166
29167 \begin_inset LatexCommand index
29168 name "PDF"
29169
29170 \end_inset
29171
29172
29173 \end_layout
29174
29175 \begin_layout Standard
29176 This file type has the extension 
29177 \begin_inset Quotes eld
29178 \end_inset
29179
29180
29181 \family typewriter
29182 .pdf
29183 \family default
29184
29185 \begin_inset Quotes erd
29186 \end_inset
29187
29188 .
29189  The 
29190 \begin_inset Quotes eld
29191 \end_inset
29192
29193 Portable Document Format
29194 \begin_inset Quotes erd
29195 \end_inset
29196
29197  (PDF) is developed by 
29198 \family typewriter
29199 Adobe
29200 \family default
29201  as derivative from PostScript.
29202  It is more compressed and it uses much less commands than PostScript.
29203  As the name 
29204 \begin_inset Quotes eld
29205 \end_inset
29206
29207 portable
29208 \begin_inset Quotes erd
29209 \end_inset
29210
29211  implies, it can be processed at any computer system and the printed output
29212  looks exactly the same.
29213 \end_layout
29214
29215 \begin_layout Standard
29216 PDF can contain images in its own PDF format, in the format 
29217 \begin_inset Quotes eld
29218 \end_inset
29219
29220 Joint Photographic Experts Group
29221 \begin_inset Quotes erd
29222 \end_inset
29223
29224  (JPG, file extension 
29225 \begin_inset Quotes eld
29226 \end_inset
29227
29228
29229 \family typewriter
29230 .jpg
29231 \family default
29232
29233 \begin_inset Quotes erd
29234 \end_inset
29235
29236  or 
29237 \begin_inset Quotes eld
29238 \end_inset
29239
29240
29241 \family typewriter
29242 .jpeg
29243 \family default
29244
29245 \begin_inset Quotes erd
29246 \end_inset
29247
29248 ), and in the format 
29249 \begin_inset Quotes eld
29250 \end_inset
29251
29252 Portable Network Graphics
29253 \begin_inset Quotes erd
29254 \end_inset
29255
29256  (PNG, file extension 
29257 \begin_inset Quotes eld
29258 \end_inset
29259
29260
29261 \family typewriter
29262 .png
29263 \family default
29264
29265 \begin_inset Quotes erd
29266 \end_inset
29267
29268 ).
29269  Nevertheless you can use any other image format, because LyX converts them
29270  in the background to one of these formats.
29271  But as described in the section about PostScript, the image conversion
29272  will slow down your work flow.
29273  So it is recommended to use images in one of the three mentioned formats.
29274 \end_layout
29275
29276 \begin_layout Standard
29277 You can export your document to PDF via the menu 
29278 \family sans
29279 File\SpecialChar \menuseparator
29280 Export
29281 \family default
29282  in three different ways:
29283 \end_layout
29284
29285 \begin_layout Description
29286 PDF\InsetSpace ~
29287 (ps2pdf) This uses the program 
29288 \family typewriter
29289 ps2pdf
29290 \family default
29291  that creates a PDF from a PostScript-version of your file.
29292  The PostScript-version is produced by the program 
29293 \family typewriter
29294 dvips
29295 \family default
29296  which uses a DVI-version as intermediate step.
29297  So this export variant consist of three conversions.
29298 \end_layout
29299
29300 \begin_layout Description
29301 PDF\InsetSpace ~
29302 (dvipdfm) This uses the program 
29303 \family typewriter
29304 dvipdfm
29305 \family default
29306  that converts your file in the background to DVI and in a second step to
29307  PDF.
29308 \end_layout
29309
29310 \begin_layout Description
29311 PDF\InsetSpace ~
29312 (pdflatex) This uses the program 
29313 \family typewriter
29314 pdftex
29315 \family default
29316  that converts your file directly to PDF.
29317 \end_layout
29318
29319 \begin_layout Standard
29320 It is recommended to use 
29321 \family sans
29322 PDF\InsetSpace ~
29323 (pdflatex)
29324 \family default
29325  because 
29326 \family typewriter
29327 pdftex
29328 \family default
29329  supports all features of actual PDF-versions, is quick and works stable
29330  without problems.
29331  The program 
29332 \family typewriter
29333 dvipdfm
29334 \family default
29335  is not under development and therefore a bit outdated.
29336 \end_layout
29337
29338 \begin_layout Standard
29339 You can view your document as PDF via the 
29340 \family sans
29341 View
29342 \family default
29343  menu or by using the toolbar button 
29344 \begin_inset Graphics
29345         filename ../images/buffer-view_pdf2.xpm
29346         scale 85
29347
29348 \end_inset
29349
29350  
29351 \family sans
29352 (
29353 \family default
29354 that uses 
29355 \family sans
29356 PDF\InsetSpace ~
29357 (pdflatex)
29358 \family default
29359 ).
29360 \end_layout
29361
29362 \begin_layout Chapter
29363 Explanation of Equation\InsetSpace ~
29364
29365 \begin_inset LatexCommand eqref
29366 reference "eq:Wgn"
29367
29368 \end_inset
29369
29370
29371 \begin_inset LatexCommand label
29372 name "cha:Explanation-of-Equation"
29373
29374 \end_inset
29375
29376
29377 \end_layout
29378
29379 \begin_layout Standard
29380 The total width of 
29381 \emph on
29382 n
29383 \emph default
29384  table cells 
29385 \begin_inset Formula $W_{\mathrm{tot\, n}}$
29386 \end_inset
29387
29388  can be calculated to
29389 \end_layout
29390
29391 \begin_layout Standard
29392 \begin_inset Formula \begin{equation}
29393 W_{\mathrm{tot}\, n}=n·(W_{g\, n}+2·\backslash\mbox{tabcolsep})+(n+1)·\backslash\mbox{arrayrulewidth}\label{eq:Wtot_n}\end{equation}
29394
29395 \end_inset
29396
29397
29398 \end_layout
29399
29400 \begin_layout Standard
29401 Where 
29402 \begin_inset Formula $W_{g\, n}$
29403 \end_inset
29404
29405  is the given width of all cells.
29406  
29407 \series bold
29408
29409 \backslash
29410 tabcolsep
29411 \series default
29412  is the LaTeX-length between the cell text and the cell border, its default
29413  value is 6\InsetSpace \thinspace{}
29414 pt.
29415  
29416 \series bold
29417
29418 \backslash
29419 arrayrulewidth
29420 \series default
29421  is the thickness of the cell border line, the default is 0.4\InsetSpace \thinspace{}
29422 pt.
29423 \end_layout
29424
29425 \begin_layout Standard
29426 Following equation\InsetSpace ~
29427
29428 \begin_inset LatexCommand eqref
29429 reference "eq:Wtot_n"
29430
29431 \end_inset
29432
29433 , the total width of a multicolumn 
29434 \begin_inset Formula $W_{\mathrm{tot\, mult}}$
29435 \end_inset
29436
29437  is
29438 \end_layout
29439
29440 \begin_layout Standard
29441 \begin_inset Formula \begin{equation}
29442 W_{\mathrm{tot\, mult}}=W_{g\,\mathrm{mult}}+2·\backslash\mbox{tabcolsep}+2·\backslash\mbox{arrayrulewidth}\label{eq:Wtot_mult}\end{equation}
29443
29444 \end_inset
29445
29446
29447 \end_layout
29448
29449 \begin_layout Standard
29450 By setting equation\InsetSpace ~
29451
29452 \begin_inset LatexCommand eqref
29453 reference "eq:Wtot_n"
29454
29455 \end_inset
29456
29457  and 
29458 \begin_inset LatexCommand eqref
29459 reference "eq:Wtot_mult"
29460
29461 \end_inset
29462
29463  equal we can calculate the needed given width 
29464 \begin_inset Formula $W_{g\, n}$
29465 \end_inset
29466
29467  when 
29468 \emph on
29469 n
29470 \emph default
29471  columns are spanned, so that each column has a total width of 
29472 \begin_inset Formula $W_{\mathrm{tot\, mult}}/n$
29473 \end_inset
29474
29475 :
29476 \end_layout
29477
29478 \begin_layout Standard
29479 \begin_inset Formula \begin{equation}
29480 W_{g\, n}=(W_{g\,\mathrm{mult}}+(1-n)·(2·\backslash\mbox{tabcolsep}+\backslash\mbox{arrayrulewidth}))/n\end{equation}
29481
29482 \end_inset
29483
29484
29485 \end_layout
29486
29487 \begin_layout Bibliography
29488 \begin_inset LatexCommand bibitem
29489 key "latexcompanion"
29490
29491 \end_inset
29492
29493 Frank Mittelbach and Michel Goossens: 
29494 \emph on
29495 The LaTeX Companion Second Edition.
29496
29497 \emph default
29498  Addison-Wesley, 2004
29499 \end_layout
29500
29501 \begin_layout Bibliography
29502 \begin_inset LatexCommand bibitem
29503 key "latexguide"
29504
29505 \end_inset
29506
29507 Helmut Kopka and Patrick W.
29508  Daly: 
29509 \emph on
29510 A Guide to LaTeX Fourth Edition.
29511
29512 \emph default
29513  Addison-Wesley, 2003
29514 \end_layout
29515
29516 \begin_layout Bibliography
29517 \begin_inset LatexCommand bibitem
29518 key "latexbook"
29519
29520 \end_inset
29521
29522 Leslie Lamport: 
29523 \emph on
29524 LaTeX: A Document Preparation System.
29525
29526 \emph default
29527  Addison-Wesley, second edition, 1994
29528 \end_layout
29529
29530 \begin_layout Bibliography
29531 \begin_inset LatexCommand bibitem
29532 key "booktabs"
29533
29534 \end_inset
29535
29536
29537 \begin_inset ERT
29538 status collapsed
29539
29540 \begin_layout Standard
29541
29542
29543 \backslash
29544 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/booktabs/booktabs.pdf}
29545 {
29546 \end_layout
29547
29548 \end_inset
29549
29550 Documentation
29551 \begin_inset ERT
29552 status collapsed
29553
29554 \begin_layout Standard
29555
29556 }
29557 \end_layout
29558
29559 \end_inset
29560
29561  of the LaTeX-package 
29562 \series bold
29563 booktabs
29564 \series default
29565
29566 \begin_inset LatexCommand index
29567 name "LaTeX-packages ! booktabs"
29568
29569 \end_inset
29570
29571
29572 \end_layout
29573
29574 \begin_layout Bibliography
29575 \begin_inset LatexCommand bibitem
29576 key "caption"
29577
29578 \end_inset
29579
29580
29581 \begin_inset ERT
29582 status collapsed
29583
29584 \begin_layout Standard
29585
29586
29587 \backslash
29588 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/caption/caption.pdf}{
29589 \end_layout
29590
29591 \end_inset
29592
29593 Documentation
29594 \begin_inset ERT
29595 status collapsed
29596
29597 \begin_layout Standard
29598
29599 }
29600 \end_layout
29601
29602 \end_inset
29603
29604  of the LaTeX-package 
29605 \series bold
29606 caption
29607 \series default
29608
29609 \begin_inset LatexCommand index
29610 name "LaTeX-packages ! caption"
29611
29612 \end_inset
29613
29614
29615 \end_layout
29616
29617 \begin_layout Bibliography
29618 \begin_inset LatexCommand bibitem
29619 key "caption-de"
29620
29621 \end_inset
29622
29623 German 
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/caption/anleitung.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 caption
29651 \end_layout
29652
29653 \begin_layout Bibliography
29654 \begin_inset LatexCommand bibitem
29655 key "endfloat"
29656
29657 \end_inset
29658
29659
29660 \begin_inset ERT
29661 status collapsed
29662
29663 \begin_layout Standard
29664
29665
29666 \backslash
29667 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/endfloat/endfloat.pdf}
29668 {
29669 \end_layout
29670
29671 \end_inset
29672
29673 Documentation
29674 \begin_inset ERT
29675 status collapsed
29676
29677 \begin_layout Standard
29678
29679 }
29680 \end_layout
29681
29682 \end_inset
29683
29684  of the LaTeX-package 
29685 \series bold
29686 endf\SpecialChar \textcompwordmark{}
29687 loat
29688 \series default
29689
29690 \begin_inset LatexCommand index
29691 name "LaTeX-packages ! endfloat"
29692
29693 \end_inset
29694
29695
29696 \end_layout
29697
29698 \begin_layout Bibliography
29699 \begin_inset LatexCommand bibitem
29700 key "floatflt"
29701
29702 \end_inset
29703
29704
29705 \begin_inset ERT
29706 status collapsed
29707
29708 \begin_layout Standard
29709
29710
29711 \backslash
29712 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/floatflt/floatflt.pdf}
29713 {
29714 \end_layout
29715
29716 \end_inset
29717
29718 Documentation
29719 \begin_inset ERT
29720 status collapsed
29721
29722 \begin_layout Standard
29723
29724 }
29725 \end_layout
29726
29727 \end_inset
29728
29729  of the LaTeX-package 
29730 \series bold
29731 f\SpecialChar \textcompwordmark{}
29732 loatf\SpecialChar \textcompwordmark{}
29733 lt
29734 \series default
29735
29736 \begin_inset LatexCommand index
29737 name "LaTeX-packages ! floatflt"
29738
29739 \end_inset
29740
29741
29742 \end_layout
29743
29744 \begin_layout Bibliography
29745 \begin_inset LatexCommand bibitem
29746 key "footmisc"
29747
29748 \end_inset
29749
29750
29751 \begin_inset ERT
29752 status collapsed
29753
29754 \begin_layout Standard
29755
29756
29757 \backslash
29758 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/footmisc/footmisc.pdf}
29759 {
29760 \end_layout
29761
29762 \end_inset
29763
29764 Documentation
29765 \begin_inset ERT
29766 status collapsed
29767
29768 \begin_layout Standard
29769
29770 }
29771 \end_layout
29772
29773 \end_inset
29774
29775  of the LaTeX-package 
29776 \series bold
29777 footmisc
29778 \series default
29779
29780 \begin_inset LatexCommand index
29781 name "LaTeX-packages ! footmisc"
29782
29783 \end_inset
29784
29785
29786 \end_layout
29787
29788 \begin_layout Bibliography
29789 \begin_inset LatexCommand bibitem
29790 key "hypcap"
29791
29792 \end_inset
29793
29794
29795 \begin_inset ERT
29796 status collapsed
29797
29798 \begin_layout Standard
29799
29800
29801 \backslash
29802 href{http://www.ctan.org/tex-archive/macros/latex/contrib/oberdiek/hypcap.pdf}{
29803 \end_layout
29804
29805 \end_inset
29806
29807 Documentation
29808 \begin_inset ERT
29809 status collapsed
29810
29811 \begin_layout Standard
29812
29813 }
29814 \end_layout
29815
29816 \end_inset
29817
29818  of the LaTeX-package 
29819 \series bold
29820 hypcap
29821 \series default
29822
29823 \begin_inset LatexCommand index
29824 name "LaTeX-packages ! hyperref"
29825
29826 \end_inset
29827
29828
29829 \end_layout
29830
29831 \begin_layout Bibliography
29832 \begin_inset LatexCommand bibitem
29833 key "hyperref"
29834
29835 \end_inset
29836
29837
29838 \begin_inset ERT
29839 status collapsed
29840
29841 \begin_layout Standard
29842
29843
29844 \backslash
29845 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/hyperref/hyperref.pdf}
29846 {
29847 \end_layout
29848
29849 \end_inset
29850
29851 Documentation
29852 \begin_inset ERT
29853 status collapsed
29854
29855 \begin_layout Standard
29856
29857 }
29858 \end_layout
29859
29860 \end_inset
29861
29862  of the LaTeX-package 
29863 \series bold
29864 hyperref
29865 \series default
29866
29867 \begin_inset LatexCommand index
29868 name "LaTeX-packages ! hyperref"
29869
29870 \end_inset
29871
29872
29873 \end_layout
29874
29875 \begin_layout Bibliography
29876 \begin_inset LatexCommand bibitem
29877 key "koma-script"
29878
29879 \end_inset
29880
29881
29882 \begin_inset ERT
29883 status collapsed
29884
29885 \begin_layout Standard
29886
29887
29888 \backslash
29889 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/koma-script/scrguien.p
29890 df}{
29891 \end_layout
29892
29893 \end_inset
29894
29895 Documentation
29896 \begin_inset ERT
29897 status collapsed
29898
29899 \begin_layout Standard
29900
29901 }
29902 \end_layout
29903
29904 \end_inset
29905
29906  of the LaTeX-package 
29907 \series bold
29908 koma-script
29909 \series default
29910
29911 \begin_inset LatexCommand index
29912 name "LaTeX-packages ! koma-script"
29913
29914 \end_inset
29915
29916
29917 \end_layout
29918
29919 \begin_layout Bibliography
29920 \begin_inset LatexCommand bibitem
29921 key "koma-script-de"
29922
29923 \end_inset
29924
29925 German 
29926 \begin_inset ERT
29927 status collapsed
29928
29929 \begin_layout Standard
29930
29931
29932 \backslash
29933 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/koma-script/scrguide.p
29934 df}{
29935 \end_layout
29936
29937 \end_inset
29938
29939 documentation
29940 \begin_inset ERT
29941 status collapsed
29942
29943 \begin_layout Standard
29944
29945 }
29946 \end_layout
29947
29948 \end_inset
29949
29950  of the LaTeX-package 
29951 \series bold
29952 koma-script
29953 \series default
29954
29955 \begin_inset LatexCommand index
29956 name "LaTeX-packages ! koma-script"
29957
29958 \end_inset
29959
29960
29961 \end_layout
29962
29963 \begin_layout Bibliography
29964 \begin_inset LatexCommand bibitem
29965 key "listings"
29966
29967 \end_inset
29968
29969
29970 \begin_inset ERT
29971 status collapsed
29972
29973 \begin_layout Standard
29974
29975
29976 \backslash
29977 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/listings/listings.pdf}
29978 {
29979 \end_layout
29980
29981 \end_inset
29982
29983 Documentation
29984 \begin_inset ERT
29985 status collapsed
29986
29987 \begin_layout Standard
29988
29989 }
29990 \end_layout
29991
29992 \end_inset
29993
29994  of the LaTeX-package 
29995 \series bold
29996 listings
29997 \series default
29998
29999 \begin_inset LatexCommand index
30000 name "LaTeX-packages ! listings"
30001
30002 \end_inset
30003
30004
30005 \end_layout
30006
30007 \begin_layout Bibliography
30008 \begin_inset LatexCommand bibitem
30009 key "marginnote"
30010
30011 \end_inset
30012
30013
30014 \begin_inset ERT
30015 status collapsed
30016
30017 \begin_layout Standard
30018
30019
30020 \backslash
30021 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/marginnote/marginnote.
30022 pdf}{
30023 \end_layout
30024
30025 \end_inset
30026
30027 Documentation
30028 \begin_inset ERT
30029 status collapsed
30030
30031 \begin_layout Standard
30032
30033 }
30034 \end_layout
30035
30036 \end_inset
30037
30038  of the LaTeX-package 
30039 \series bold
30040 marginnote
30041 \series default
30042
30043 \begin_inset LatexCommand index
30044 name "LaTeX-packages ! marginnote"
30045
30046 \end_inset
30047
30048
30049 \end_layout
30050
30051 \begin_layout Bibliography
30052 \begin_inset LatexCommand bibitem
30053 key "pstricks"
30054
30055 \end_inset
30056
30057
30058 \begin_inset ERT
30059 status collapsed
30060
30061 \begin_layout Standard
30062
30063
30064 \backslash
30065 href{http://tug.org/PSTricks/main.cgi/}{
30066 \end_layout
30067
30068 \end_inset
30069
30070 Web page
30071 \begin_inset ERT
30072 status collapsed
30073
30074 \begin_layout Standard
30075
30076 }
30077 \end_layout
30078
30079 \end_inset
30080
30081  of the LaTeX-package 
30082 \series bold
30083 PSTricks
30084 \series default
30085
30086 \begin_inset LatexCommand index
30087 name "LaTeX-packages ! PSTricks"
30088
30089 \end_inset
30090
30091
30092 \end_layout
30093
30094 \begin_layout Bibliography
30095 \begin_inset LatexCommand bibitem
30096 key "sidecap"
30097
30098 \end_inset
30099
30100
30101 \begin_inset ERT
30102 status collapsed
30103
30104 \begin_layout Standard
30105
30106
30107 \backslash
30108 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/sidecap/sidecap.pdf}{
30109 \end_layout
30110
30111 \end_inset
30112
30113 Documentation
30114 \begin_inset ERT
30115 status collapsed
30116
30117 \begin_layout Standard
30118
30119 }
30120 \end_layout
30121
30122 \end_inset
30123
30124  of the LaTeX-package 
30125 \series bold
30126 sidecap
30127 \series default
30128
30129 \begin_inset LatexCommand index
30130 name "LaTeX-packages ! sidecap"
30131
30132 \end_inset
30133
30134
30135 \end_layout
30136
30137 \begin_layout Bibliography
30138 \begin_inset LatexCommand bibitem
30139 key "NewInLyX15"
30140
30141 \end_inset
30142
30143
30144 \begin_inset ERT
30145 status collapsed
30146
30147 \begin_layout Standard
30148
30149
30150 \backslash
30151 href{http://wiki.lyx.org/LyX/NewInLyX15}{
30152 \end_layout
30153
30154 \end_inset
30155
30156 Wiki page
30157 \begin_inset ERT
30158 status collapsed
30159
30160 \begin_layout Standard
30161
30162 }
30163 \end_layout
30164
30165 \end_inset
30166
30167  about new LyX-features planned for the release 
30168 \family sans
30169 LyX 1.5
30170 \family default
30171 .0.
30172 \end_layout
30173
30174 \begin_layout Standard
30175 \begin_inset LatexCommand printindex
30176
30177 \end_inset
30178
30179
30180 \end_layout
30181
30182 \begin_layout Standard
30183 \begin_inset FloatList figure
30184
30185 \end_inset
30186
30187
30188 \end_layout
30189
30190 \begin_layout Standard
30191 \begin_inset FloatList table
30192
30193 \end_inset
30194
30195
30196 \end_layout
30197
30198 \end_body
30199 \end_document