]> git.lyx.org Git - lyx.git/blob - lib/doc/EmbeddedObjects.lyx
dd8067d4619f72c0ab4a985490bd8807b61fa222
[lyx.git] / lib / doc / EmbeddedObjects.lyx
1 #LyX 1.5.0svn created this file. For more info see http://www.lyx.org/
2 \lyxformat 256
3 \begin_document
4 \begin_header
5 \textclass scrbook
6 \begin_preamble
7 % provides missing characters,
8 \usepackage{textcomp}
9
10 % provides caption formatting
11 \usepackage[labelfont={bf,sf}, tableposition=top]{caption}
12
13 % provides commands to set caption
14 % beside tables/images
15 \usepackage{sidecap}
16
17 \newcommand{\TabBesBeg}{%
18  \let\MyTable\table
19  \let\MyEndtable\endtable
20  \renewenvironment{table}{\begin{SCtable}}{\end{SCtable}}}
21
22 \newcommand{\TabBesEnd}{%
23  \let\table\MyTable
24  \let\endtable\MyEndtable}
25
26 \newcommand{\FigBesBeg}{%
27  \let\MyFigure\figure
28  \let\MyEndfigure\endfigure
29  \renewenvironment{figure}{\begin{SCfigure}}{\end{SCfigure}}}
30
31 \newcommand{\FigBesEnd}{%
32  \let\figure\MyFigure
33  \let\endfigure\MyEndfigure}
34
35 % use the marginnote package for margin notes
36 \usepackage{marginnote}
37 \let\marginpar\marginnote
38
39 % enables calculation of values,
40 \usepackage{calc}
41
42 % provides special table cell alignments
43 \usepackage{dcolumn}
44
45 % increase the bottom float placement fraction
46 \renewcommand{\bottomfraction}{0.5}
47
48 % avoids that floats are placed before their
49 % corresponding section starts
50 \let\mySection\section\renewcommand{\section}{\suppressfloats[t]\mySection}
51
52 % speed up the longtable calculation
53 \setcounter{LTchunksize}{100}
54
55 % define a new reference format
56 \newrefformat{fig}
57  {Figure~float~\ref{#1} printed on page~\pageref{#1}}
58
59 % if pdflatex is used
60 \usepackage{ifpdf}
61 \ifpdf
62
63 % set fonts for nicer pdf view
64 \IfFileExists{lmodern.sty}
65  {\usepackage{lmodern}} % if it exists
66  {% if it exists not
67   \usepackage[scaled=0.92]{helvet}
68   \usepackage{mathptmx}
69   \usepackage{courier}
70  } % end if it exists not
71
72 % link all cross references and URLs
73 % in pdf output
74  \usepackage[colorlinks=true, bookmarks, bookmarksnumbered, bookmarksopen, bookmarksopenlevel=1,
75   linkcolor=black, citecolor=black, urlcolor=blue, filecolor=blue,
76   pdfpagelayout=OneColumn, pdfnewwindow=true,
77   pdfstartview=XYZ, plainpages=false, pdfpagelabels,
78   pdfauthor={LyX Team}, pdftex,
79   pdftitle={LyX's Figure, Table, Floats, Notes, and Boxes manual},
80   pdfsubject={LyX-documentation about figures, tables, floats, notes, and boxes},
81   pdfkeywords={LyX, Tables, Figures, Floats, Boxes, Notes}]{hyperref}
82  
83 \else % if dvi or ps is produced
84
85  % link all cross references and URLs in DVI output
86  \usepackage[ps2pdf, colorlinks=true,
87   linkcolor=black, citecolor=black, urlcolor=blue, filecolor=blue]{hyperref}
88
89 \fi % end if pdflatex is used
90
91 % that links to image floats jumps
92 % to the beginning of the float and 
93 % not to its caption
94 \usepackage[figure]{hypcap}
95
96 % used for colored tables
97 \@ifundefined{textcolor}
98  {\usepackage{color}}{}
99 \usepackage{colortbl}
100 \definecolor{darkgreen}{cmyk}{0.5, 0, 1, 0.5}
101 \definecolor{lightgrey}{gray}{0.8}
102
103 % used for tables with dashed lines
104 \usepackage{arydshln}
105
106 % used for multirows
107 \usepackage{multirow}
108 %\renewcommand{\multirowsetup}{\centering}
109
110 % used for book-style tables
111 \usepackage{booktabs}
112
113 % used to have extra space in table cells,
114 \setlength{\extrarowheight}{2pt}
115
116 % used for customized tables
117 % ---
118 \newcolumntype{M}[1]
119  {>{\centering\hspace{0pt}}m{#1}}
120
121 \newcolumntype{S}[2]
122  {>{\centering\hspace{0pt}}m{(#1+(2\tabcolsep+\arrayrulewidth)*(1-#2))/#2}}
123
124 \newcolumntype{K}[1]
125  {>{\columncolor{#1}\hspace{0pt}}c}
126
127 \newcolumntype{V}{!{\vrule width 1.5pt}}
128
129 \newcolumntype{W}{!{\color{green}\vline}}
130 % ---
131
132 % To be able to enter the characters ±, ° , · and × directly in LyX
133 \DeclareInputText{177}{\ifmmode\pm\else\textpm\fi}
134 \DeclareInputText{176}{\ifmmode^\circ\else\textdegree\fi}
135 \DeclareInputText{183}{\ifmmode\cdot\else\textperiodcentered\fi}
136 \DeclareInputText{215}{\ifmmode\times\else\texttimes\fi}
137
138 % the pages of the TOC are numbered roman
139 % and a PDF-bookmark for the TOC is added
140 \pagenumbering{roman}
141 \let\myTOC\tableofcontents
142 \renewcommand{\tableofcontents}{%
143  \pdfbookmark[1]{Contents}{}
144  \myTOC}
145  \clearpage
146  \pagenumbering{arabic}
147
148 % increase link area for cross-references
149 % and autoname them
150 %\AtBeginDocument{\renewcommand{\ref}[1]
151 % {\mbox{\autoref{#1}}}}
152 %\newlength{\abc}
153 %\settowidth{\abc}{\space}
154 %\renewcommand{\equationautorefname}
155 % {\hspace{-\abc}}
156
157 % insert additional vertical space of
158 % 1.5 mm between footnotes
159 \let\myFoot\footnote
160 \renewcommand{\footnote}[1]{\myFoot{#1\vspace{1.5mm}}}
161
162 % enable algorithm floats to be referenced
163 \newfloat{Xalgorithm}{tbp}{loa}
164 \floatname{Xalgorithm}{Algorithm}
165 \newcommand{\theHalgorithm}{\theHXalgorithm}
166 \renewenvironment{algorithm}[1][tbp]
167  {\begin{Xalgorithm}[#1]}{\end{Xalgorithm}}
168
169 % number algorithm floats within chapters
170 \numberwithin{Xalgorithm}{chapter}
171
172 % redefine the greyed out note
173 \renewenvironment{lyxgreyedout}
174  {\textcolor{blue}\bgroup}{\egroup}
175 \end_preamble
176 \options fleqn,liststotoc,bibtotoc,idxtotoc,BCOR7.5mm,titlepage
177 \language english
178 \inputencoding auto
179 \font_roman default
180 \font_sans default
181 \font_typewriter default
182 \font_default_family default
183 \font_sc false
184 \font_osf false
185 \font_sf_scale 100
186 \font_tt_scale 100
187 \graphics default
188 \paperfontsize 12
189 \spacing single
190 \papersize default
191 \use_geometry false
192 \use_amsmath 2
193 \use_esint 0
194 \cite_engine basic
195 \use_bibtopic false
196 \paperorientation portrait
197 \secnumdepth 3
198 \tocdepth 3
199 \paragraph_separation skip
200 \defskip medskip
201 \quotes_language english
202 \papercolumns 1
203 \papersides 2
204 \paperpagestyle default
205 \bullet 1 1 34 -1
206 \bullet 2 2 35 -1
207 \bullet 3 2 7 -1
208 \tracking_changes false
209 \output_changes true
210 \author "usti" 
211 \end_header
212
213 \begin_body
214
215 \begin_layout Title
216 LyX's detailed Figure, Table, Floats, Notes, and Boxes 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 <uwestoehr@web.de>
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 Chapter
288 Figures
289 \begin_inset LatexCommand label
290 name "cha:Figures"
291
292 \end_inset
293
294
295 \begin_inset LatexCommand index
296 name "Figure"
297
298 \end_inset
299
300
301 \end_layout
302
303 \begin_layout Section
304 Graphics Dialog
305 \begin_inset LatexCommand index
306 name "Figure ! Graphics Dialog"
307
308 \end_inset
309
310
311 \end_layout
312
313 \begin_layout Standard
314 To insert an image into your document, place the cursor at the text position
315  you want and click on the toolbar icon 
316 \begin_inset Graphics
317         filename ../images/dialog-show-new-inset_graphics.xpm
318         scale 85
319
320 \end_inset
321
322  or use the menu 
323 \family sans
324 Insert\SpecialChar \menuseparator
325 Graphics
326 \family default
327 .
328  Then a dialog will appear to choose the file to load.
329  The image will appear in the output exactly at the position where it is
330  in the text.
331 \end_layout
332
333 \begin_layout Standard
334 The graphics dialog can be called at any time by right-clicking on an image.
335  This dialog has three tabs:
336 \end_layout
337
338 \begin_layout Description
339
340 \family sans
341 Graphics
342 \family default
343  Here you can choose an image file and adjust its appearance in the output.
344  The available units for the image size are explained in appendix\InsetSpace ~
345
346 \begin_inset LatexCommand ref
347 reference "cha:Units-available-in"
348
349 \end_inset
350
351 .
352 \newline
353 You can rotate images counter-clockwise by setting a rotation angle and
354  a rotation origin.
355  The image will also be rotated inside LyX.
356 \end_layout
357
358 \begin_layout Description
359
360 \family sans
361 Clipping
362 \family default
363  Alternatively to the usage of scaling units it is possible to set image
364  coordinates to adjust the height and width of the image in the output.
365  The coordinates can also be calculated automatically by pressing the button
366  
367 \family sans
368 Get\InsetSpace ~
369 from\InsetSpace ~
370 File
371 \family default
372 .
373  The option 
374 \family sans
375 Clip\InsetSpace ~
376 to\InsetSpace ~
377 bounding\InsetSpace ~
378 box
379 \family default
380  will only print the image region within the given coordinates.
381  Normally you don't need to take care about image coordinates and can ignore
382  this tab.
383 \end_layout
384
385 \begin_layout Description
386
387 \family sans
388 Extra\InsetSpace ~
389 options
390 \family default
391  In this tab you can modify the appearance of the image within LyX and set
392  the image to be a subfigure of a figure float with an own caption.
393  Subfigures are explained in section\InsetSpace ~
394
395 \begin_inset LatexCommand ref
396 reference "sec:Figure-Floats"
397
398 \end_inset
399
400 .
401 \newline
402  LaTeX experts can also specify on this tab additional LaTeX options.
403 \newline
404  The
405  option 
406 \family sans
407 Draft\InsetSpace ~
408 mode
409 \family default
410  makes the image appear in the output only as a frame with the size of the
411  image.
412 \newline
413 The 
414 \family sans
415 Don't\InsetSpace ~
416 unzip\InsetSpace ~
417 on\InsetSpace ~
418 export
419 \family default
420  option only affects zipped EPS-graphics, e.\InsetSpace \thinspace{}
421 g.\InsetSpace ~
422
423 \emph on
424 x.eps.gz
425 \emph default
426 .
427  When the option is used the images will not be unzipped on export, since
428  LaTeX can handle them as they are.
429 \newline
430 Zipped EPS-graphics are useful to save
431  disk space when you choose PostScript as output format, see appendix\InsetSpace ~
432
433 \begin_inset LatexCommand ref
434 reference "sec:PostScript"
435
436 \end_inset
437
438 .
439  To zip EPS-graphics, use the following commands in a UNIX-shell or a Windows
440  console:
441 \newline
442
443 \series bold
444 gzip x.eps
445 \series default
446
447 \newline
448
449 \series bold
450 zgrep %%Bounding x.eps.gz > x.eps.bb
451 \series default
452
453 \newline
454 The second command creates the bounding box file 
455 \begin_inset Quotes eld
456 \end_inset
457
458 x.eps.bb
459 \begin_inset Quotes erd
460 \end_inset
461
462  that is needed by LaTeX for zipped graphics.
463 \end_layout
464
465 \begin_layout Standard
466
467 \newpage
468 This is an example image in PDF format
469 \begin_inset Foot
470 status collapsed
471
472 \begin_layout Standard
473 The PDF format is explained in appendix\InsetSpace ~
474
475 \begin_inset LatexCommand ref
476 reference "sec:PDF"
477
478 \end_inset
479
480 .
481 \end_layout
482
483 \end_inset
484
485  within a separate, horizontally centered paragraph:
486 \end_layout
487
488 \begin_layout Standard
489 \align center
490 \begin_inset Graphics
491         filename mobius.eps
492         display color
493         scale 70
494         rotateOrigin center
495
496 \end_inset
497
498
499 \end_layout
500
501 \begin_layout Standard
502 This is the same image like the one above but in draft mode:
503 \end_layout
504
505 \begin_layout Standard
506 \align center
507 \begin_inset Graphics
508         filename mobius.eps
509         display color
510         scale 70
511         draft
512         rotateOrigin center
513
514 \end_inset
515
516
517 \end_layout
518
519 \begin_layout Section
520 Figure Floats
521 \begin_inset LatexCommand label
522 name "sec:Figure-Floats"
523
524 \end_inset
525
526
527 \begin_inset LatexCommand index
528 name "Floats ! Figure Floats"
529
530 \end_inset
531
532
533 \begin_inset LatexCommand index
534 name "Figure ! Floats"
535
536 \end_inset
537
538
539 \end_layout
540
541 \begin_layout Standard
542 For general explanations about floats, have a look at section\InsetSpace ~
543
544 \begin_inset LatexCommand ref
545 reference "sec:FloatIntroduction"
546
547 \end_inset
548
549 .
550 \end_layout
551
552 \begin_layout Standard
553 The toolbar button 
554 \begin_inset Graphics
555         filename ../images/float-insert_figure.xpm
556         scale 85
557
558 \end_inset
559
560  and the menu 
561 \family sans
562 Insert\SpecialChar \menuseparator
563 Float\SpecialChar \menuseparator
564 Figure 
565 \family default
566 inserts a float with the label 
567 \begin_inset Quotes eld
568 \end_inset
569
570
571 \series bold
572 Figure\InsetSpace ~
573 #:
574 \series default
575
576 \begin_inset Quotes erd
577 \end_inset
578
579 .
580  Set the cursor behind this label, press Enter and insert the image as described
581  above to get the caption printed below the image.
582  This was done for Figure\InsetSpace ~
583
584 \begin_inset LatexCommand ref
585 reference "fig:kill-plat"
586
587 \end_inset
588
589 .
590  If you want the caption to be above the image, set the cursor at the end
591  of the caption, press enter and insert the image.
592  This was done in Figure\InsetSpace ~
593
594 \begin_inset LatexCommand ref
595 reference "fig:escher"
596
597 \end_inset
598
599 .
600  More about the caption placement is described in section\InsetSpace ~
601
602 \begin_inset LatexCommand ref
603 reference "sec:Caption-Placement"
604
605 \end_inset
606
607 .
608 \end_layout
609
610 \begin_layout Standard
611 \begin_inset Float figure
612 wide false
613 sideways false
614 status open
615
616 \begin_layout Standard
617 \align center
618 \begin_inset Graphics
619         filename platypus.eps
620         display color
621         width 50col%
622         rotateOrigin center
623
624 \end_inset
625
626
627 \end_layout
628
629 \begin_layout Caption
630 \begin_inset LatexCommand label
631 name "fig:kill-plat"
632
633 \end_inset
634
635 A severely distorted platypus in a float.
636 \end_layout
637
638 \end_inset
639
640
641 \end_layout
642
643 \begin_layout Standard
644 \begin_inset Float figure
645 wide false
646 sideways false
647 status open
648
649 \begin_layout Caption
650 \begin_inset LatexCommand label
651 name "fig:escher"
652
653 \end_inset
654
655 M.C.
656  Escher on acid.
657 \end_layout
658
659 \begin_layout Standard
660 \align center
661 \begin_inset Graphics
662         filename escher-lsd.eps
663         display color
664         scale 80
665         rotateOrigin center
666
667 \end_inset
668
669
670 \end_layout
671
672 \end_inset
673
674
675 \end_layout
676
677 \begin_layout Standard
678 \begin_inset LatexCommand index
679 name "References ! to Figures"
680
681 \end_inset
682
683 Figure\InsetSpace ~
684
685 \begin_inset LatexCommand ref
686 reference "fig:kill-plat"
687
688 \end_inset
689
690  and 
691 \begin_inset LatexCommand ref
692 reference "fig:escher"
693
694 \end_inset
695
696  are an example of cross-referenced figures.
697  Figures can be cross-referenced in the text by referencing their label.
698  To do this insert a label in the caption using the menu 
699 \family sans
700 Insert\SpecialChar \menuseparator
701 Label
702 \family default
703  or the toolbar button 
704 \begin_inset Graphics
705         filename ../images/label-insert.xpm
706         scale 85
707
708 \end_inset
709
710 .
711  You can now refer to the label using the menu 
712 \family sans
713 Insert\SpecialChar \menuseparator
714 Cross\InsetSpace ~
715 reference
716 \family default
717  or the toolbar button 
718 \begin_inset Graphics
719         filename ../images/dialog-show-new-inset_ref.xpm
720         scale 85
721
722 \end_inset
723
724 .
725  It is important to use references to floats, rather than using vague references
726  like 
727 \begin_inset Quotes eld
728 \end_inset
729
730 the figure above
731 \begin_inset Quotes erd
732 \end_inset
733
734 , because as LaTeX will reposition the floats in the final document, it
735  might not be 
736 \begin_inset Quotes eld
737 \end_inset
738
739 above
740 \begin_inset Quotes erd
741 \end_inset
742
743  at all.
744 \end_layout
745
746 \begin_layout Standard
747 Normally only one image is inserted to a figure float, but sometimes you
748  might want to use two images with separate subcaptions.
749  This can be set in the tab
750 \family sans
751  Extra\InsetSpace ~
752 options
753 \family default
754  of the graphics dialog.
755  Choose there the option 
756 \family sans
757 Subfigure
758 \family default
759  and enter the subcaption for the image in the caption field.
760  Note that only the main caption of the float is added to the List of Figures.
761 \end_layout
762
763 \begin_layout Standard
764 Figure\InsetSpace ~
765
766 \begin_inset LatexCommand ref
767 reference "fig:Two-distorted-images"
768
769 \end_inset
770
771  is an example of a figure float with two images set side by side.
772  You can also set the images one below the other.
773 \end_layout
774
775 \begin_layout Standard
776 \begin_inset Float figure
777 wide false
778 sideways false
779 status open
780
781 \begin_layout Standard
782
783 \hfill
784
785 \begin_inset Graphics
786         filename escher-lsd.eps
787         width 45col%
788         subcaption
789         subcaptionText "Undefinable structure"
790
791 \end_inset
792
793
794 \hfill
795
796 \begin_inset Graphics
797         filename platypus.eps
798         lyxscale 60
799         width 45col%
800         subcaption
801         subcaptionText "Platypus"
802
803 \end_inset
804
805
806 \hfill
807
808 \end_layout
809
810 \begin_layout Caption
811 \begin_inset LatexCommand label
812 name "fig:Two-distorted-images"
813
814 \end_inset
815
816 Two distorted images.
817 \end_layout
818
819 \end_inset
820
821
822 \end_layout
823
824 \begin_layout Section
825 Image Formats
826 \begin_inset LatexCommand label
827 name "sec:Image-Formats"
828
829 \end_inset
830
831
832 \begin_inset LatexCommand index
833 name "Image Formats"
834
835 \end_inset
836
837
838 \begin_inset LatexCommand index
839 name "Figure ! Image Formats"
840
841 \end_inset
842
843
844 \end_layout
845
846 \begin_layout Standard
847 You can insert images in any known file format.
848  But as explained in appendix\InsetSpace ~
849
850 \begin_inset LatexCommand ref
851 reference "cha:Output-File-Formats"
852
853 \end_inset
854
855 , every output document format allows only a few image formats.
856  LyX uses therefore the program 
857 \family typewriter
858 Imagemagick
859 \family default
860  in the background to convert the images to the right format.
861  To increase your work flow by avoiding these conversions in the background,
862  you can use only the image formats that can directly be embedded in the
863  output file format.
864  The output file formats are explained in appendix\InsetSpace ~
865
866 \begin_inset LatexCommand ref
867 reference "cha:Output-File-Formats"
868
869 \end_inset
870
871 .
872 \end_layout
873
874 \begin_layout Standard
875 Similar to fonts there are two types of image formats:
876 \end_layout
877
878 \begin_layout Description
879 Bitmap\InsetSpace ~
880 images consist of pixel values, often in a compressed form.
881  They are therefore not fully scalable and look pixeled in large zooms.
882  Well-known bitmap image formats are 
883 \begin_inset Quotes eld
884 \end_inset
885
886 Graphics Interchange Format
887 \begin_inset Quotes erd
888 \end_inset
889
890  (GIF, file extension 
891 \begin_inset Quotes eld
892 \end_inset
893
894
895 \family typewriter
896 .gif
897 \family default
898
899 \begin_inset Quotes erd
900 \end_inset
901
902 )
903 \begin_inset LatexCommand index
904 name "GIF|see{Image formats}"
905
906 \end_inset
907
908
909 \begin_inset Quotes eld
910 \end_inset
911
912 Portable Network Graphics
913 \begin_inset Quotes erd
914 \end_inset
915
916  (PNG, file extension 
917 \begin_inset Quotes eld
918 \end_inset
919
920
921 \family typewriter
922 .png
923 \family default
924
925 \begin_inset Quotes erd
926 \end_inset
927
928 )
929 \begin_inset LatexCommand index
930 name "PNG|see{Image formats}"
931
932 \end_inset
933
934 , and 
935 \begin_inset Quotes eld
936 \end_inset
937
938 Joint Photographic Experts Group
939 \begin_inset Quotes erd
940 \end_inset
941
942  (JPG, file extension 
943 \begin_inset Quotes eld
944 \end_inset
945
946
947 \family typewriter
948 .jpg
949 \family default
950
951 \begin_inset Quotes erd
952 \end_inset
953
954  or 
955 \begin_inset Quotes eld
956 \end_inset
957
958
959 \family typewriter
960 .jpeg
961 \family default
962
963 \begin_inset Quotes erd
964 \end_inset
965
966 )
967 \begin_inset LatexCommand index
968 name "JPG|see{Image formats}"
969
970 \end_inset
971
972 .
973 \end_layout
974
975 \begin_layout Description
976 Vector\InsetSpace ~
977 images consist of vectors and can therefore be scaled to any size
978  without data loss.
979  The scaling ability is necessary if you want to create presentations, because
980  presentations are always scaled by the video projector.
981  Scaling is also useful for online documents to let the user zoom into diagrams.
982 \newline
983 S
984 calable image formats can be 
985 \begin_inset Quotes eld
986 \end_inset
987
988 Scalable Vector Graphics
989 \begin_inset Quotes erd
990 \end_inset
991
992  (SVG, file extension 
993 \begin_inset Quotes eld
994 \end_inset
995
996
997 \family typewriter
998 .svg
999 \family default
1000
1001 \begin_inset Quotes erd
1002 \end_inset
1003
1004 )
1005 \begin_inset LatexCommand index
1006 name "SVG|see{Image formats}"
1007
1008 \end_inset
1009
1010
1011 \begin_inset Quotes eld
1012 \end_inset
1013
1014 Encapsulated PostScript
1015 \begin_inset Quotes erd
1016 \end_inset
1017
1018  (EPS, file extension 
1019 \begin_inset Quotes eld
1020 \end_inset
1021
1022
1023 \family typewriter
1024 .eps
1025 \family default
1026
1027 \begin_inset Quotes erd
1028 \end_inset
1029
1030 )
1031 \begin_inset LatexCommand index
1032 name "EPS|see{Image formats}"
1033
1034 \end_inset
1035
1036
1037 \begin_inset Quotes eld
1038 \end_inset
1039
1040 Portable Document Format
1041 \begin_inset Quotes erd
1042 \end_inset
1043
1044  (PDF, file extension 
1045 \begin_inset Quotes eld
1046 \end_inset
1047
1048
1049 \family typewriter
1050 .pdf
1051 \family default
1052
1053 \begin_inset Quotes erd
1054 \end_inset
1055
1056 )
1057 \begin_inset LatexCommand index
1058 name "PDF"
1059
1060 \end_inset
1061
1062 , and 
1063 \begin_inset Quotes eld
1064 \end_inset
1065
1066 Windows Metafile
1067 \begin_inset Quotes erd
1068 \end_inset
1069
1070  (WMF, file extension 
1071 \begin_inset Quotes eld
1072 \end_inset
1073
1074
1075 \family typewriter
1076 .wmf
1077 \family default
1078
1079 \begin_inset Quotes erd
1080 \end_inset
1081
1082 )
1083 \begin_inset LatexCommand index
1084 name "SVG|see{Image formats}"
1085
1086 \end_inset
1087
1088 .
1089  We wrote 
1090 \begin_inset Quotes eld
1091 \end_inset
1092
1093 can be
1094 \begin_inset Quotes erd
1095 \end_inset
1096
1097 , because you can convert any bitmap image to a PDF or EPS-image and the
1098  result will still be a bitmap image.
1099  In this cases only a header with the image properties is added to the original
1100  image
1101 \begin_inset Foot
1102 status open
1103
1104 \begin_layout Standard
1105 In the case of PDF, the original image is additionally compressed.
1106 \end_layout
1107
1108 \end_inset
1109
1110 .
1111  The PDF-files generated by 
1112 \family typewriter
1113 Adobe Photoshop
1114 \family default
1115  are for example bitmap images.
1116 \end_layout
1117
1118 \begin_layout Standard
1119 Normally it is not possible to convert a bitmap image into a scalable one,
1120  only vice versa.
1121  Only the image formats PDF and EPS can directly be embedded to PDF and
1122  PostScript output files, respectively.
1123  SVG and WMF-images are currently recalculated to bitmaps when the output
1124  file is generated because there is currently no adequate WMF/SVG
1125 \begin_inset Formula $\to$
1126 \end_inset
1127
1128 PDF/EPS converter available.
1129 \end_layout
1130
1131 \begin_layout Chapter
1132 Tables
1133 \begin_inset LatexCommand label
1134 name "cha:Tables"
1135
1136 \end_inset
1137
1138
1139 \begin_inset LatexCommand index
1140 name "Table"
1141
1142 \end_inset
1143
1144
1145 \end_layout
1146
1147 \begin_layout Section
1148 Introduction
1149 \begin_inset LatexCommand index
1150 name "Table ! Introduction"
1151
1152 \end_inset
1153
1154
1155 \end_layout
1156
1157 \begin_layout Standard
1158 You can insert a table using either the toolbar button 
1159 \begin_inset Graphics
1160         filename ../images/tabular-insert.xpm
1161         scale 85
1162
1163 \end_inset
1164
1165  or the menu 
1166 \family sans
1167 Insert\SpecialChar \menuseparator
1168 Table
1169 \family default
1170 .
1171  The toolbar button offers you a graphical selection: Move the mouse to
1172  set the column/row number of the table that should be created and then
1173  press a mouse button.
1174  When you use the menu to create a table, a dialog will appear, asking you
1175  for the number of rows and columns.
1176 \newline
1177  The default table has lines around any
1178  cell and the first row appears separated from the rest of the table.
1179  This separation occurs due to a double line: The cells of the first row
1180  have a line below them and the cells of the second row have a line above
1181  them.
1182  Here is an example table:
1183 \end_layout
1184
1185 \begin_layout Standard
1186 \align center
1187 \begin_inset Tabular
1188 <lyxtabular version="3" rows="4" columns="4">
1189 <features>
1190 <column alignment="center" valignment="top" leftline="true" width="0">
1191 <column alignment="center" valignment="top" leftline="true" width="0">
1192 <column alignment="center" valignment="top" leftline="true" width="0">
1193 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
1194 <row topline="true" bottomline="true">
1195 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1196 \begin_inset Text
1197
1198 \begin_layout Standard
1199
1200 \end_layout
1201
1202 \end_inset
1203 </cell>
1204 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1205 \begin_inset Text
1206
1207 \begin_layout Standard
1208
1209 \family roman
1210 \series medium
1211 \shape up
1212 \size normal
1213 \emph off
1214 \bar no
1215 \noun off
1216 \color none
1217 1
1218 \end_layout
1219
1220 \end_inset
1221 </cell>
1222 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1223 \begin_inset Text
1224
1225 \begin_layout Standard
1226 2
1227 \end_layout
1228
1229 \end_inset
1230 </cell>
1231 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1232 \begin_inset Text
1233
1234 \begin_layout Standard
1235 3
1236 \end_layout
1237
1238 \end_inset
1239 </cell>
1240 </row>
1241 <row topline="true">
1242 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1243 \begin_inset Text
1244
1245 \begin_layout Standard
1246
1247 \family roman
1248 \series medium
1249 \shape up
1250 \size normal
1251 \emph off
1252 \bar no
1253 \noun off
1254 \color none
1255 A
1256 \end_layout
1257
1258 \end_inset
1259 </cell>
1260 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1261 \begin_inset Text
1262
1263 \begin_layout Standard
1264
1265 \end_layout
1266
1267 \end_inset
1268 </cell>
1269 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1270 \begin_inset Text
1271
1272 \begin_layout Standard
1273
1274 \end_layout
1275
1276 \end_inset
1277 </cell>
1278 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1279 \begin_inset Text
1280
1281 \begin_layout Standard
1282
1283 \end_layout
1284
1285 \end_inset
1286 </cell>
1287 </row>
1288 <row topline="true">
1289 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1290 \begin_inset Text
1291
1292 \begin_layout Standard
1293
1294 \family roman
1295 \series medium
1296 \shape up
1297 \size normal
1298 \emph off
1299 \bar no
1300 \noun off
1301 \color none
1302 B
1303 \end_layout
1304
1305 \end_inset
1306 </cell>
1307 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1308 \begin_inset Text
1309
1310 \begin_layout Standard
1311
1312 \end_layout
1313
1314 \end_inset
1315 </cell>
1316 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1317 \begin_inset Text
1318
1319 \begin_layout Standard
1320
1321 \end_layout
1322
1323 \end_inset
1324 </cell>
1325 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1326 \begin_inset Text
1327
1328 \begin_layout Standard
1329
1330 \end_layout
1331
1332 \end_inset
1333 </cell>
1334 </row>
1335 <row topline="true" bottomline="true">
1336 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1337 \begin_inset Text
1338
1339 \begin_layout Standard
1340
1341 \family roman
1342 \series medium
1343 \shape up
1344 \size normal
1345 \emph off
1346 \bar no
1347 \noun off
1348 \color none
1349 C
1350 \end_layout
1351
1352 \end_inset
1353 </cell>
1354 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1355 \begin_inset Text
1356
1357 \begin_layout Standard
1358
1359 \end_layout
1360
1361 \end_inset
1362 </cell>
1363 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1364 \begin_inset Text
1365
1366 \begin_layout Standard
1367
1368 \end_layout
1369
1370 \end_inset
1371 </cell>
1372 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1373 \begin_inset Text
1374
1375 \begin_layout Standard
1376
1377 \end_layout
1378
1379 \end_inset
1380 </cell>
1381 </row>
1382 </lyxtabular>
1383
1384 \end_inset
1385
1386
1387 \end_layout
1388
1389 \begin_layout Section
1390 Table Dialog
1391 \begin_inset LatexCommand index
1392 name "Table ! Dialog"
1393
1394 \end_inset
1395
1396
1397 \end_layout
1398
1399 \begin_layout Standard
1400 You can alter a table by clicking on it with the right mouse button, which
1401  brings up the table dialog.
1402  Here you can adjust the settings of that cell and row/column respectively
1403  where the cursor is currently placed.
1404  Most of the dialog options also work on selections.
1405  This means if you select more cells, columns or rows, the action is done
1406  for the whole selection.
1407  Note that there is a difference between selecting the 
1408 \emph on
1409 contents
1410 \emph default
1411  of the cell, and the cell itself.
1412  You can alter tables with the following tabs of the table dialog:
1413 \end_layout
1414
1415 \begin_layout Description
1416
1417 \family sans
1418 Table\InsetSpace ~
1419 Settings
1420 \family default
1421  Here you can set the horizontal alignment for the current row and the width
1422  of the current column.
1423  When you have set a width you can also adjust the vertical alignment of
1424  the current column.
1425  A given width will allow the cell to have line breaks and multiple paragraphs
1426  of text, see section\InsetSpace ~
1427
1428 \begin_inset LatexCommand ref
1429 reference "sub:Multiple-Lines-in"
1430
1431 \end_inset
1432
1433 .
1434  If you set no width, the column is as wide as their widest cell content
1435  is.
1436 \newline
1437 Furthermore, you can mark one or multiple cells of one row as a multicolumn
1438  cell, see section\InsetSpace ~
1439
1440 \begin_inset LatexCommand ref
1441 reference "sub:Multicolumns"
1442
1443 \end_inset
1444
1445 .
1446 \newline
1447 The rotate check boxes rotates the current cell, a selection, or the whole
1448  table counter-clockwise by 90°.
1449  The rotation is not shown within LyX, only in the output.
1450 \newline
1451
1452 \begin_inset Note Greyedout
1453 status open
1454
1455 \begin_layout Standard
1456
1457 \series bold
1458 Note:
1459 \series default
1460  Not all DVI-viewers are able to display rotations.
1461 \end_layout
1462
1463 \end_inset
1464
1465
1466 \newline
1467 It is also possible to enter a LaTeX-argument which is needed for special
1468  table formattings, see section\InsetSpace ~
1469
1470 \begin_inset LatexCommand ref
1471 reference "sub:Multicolumn-Calculations"
1472
1473 \end_inset
1474
1475  and 
1476 \begin_inset LatexCommand ref
1477 reference "sec:Colored-Tables"
1478
1479 \end_inset
1480
1481 .
1482 \end_layout
1483
1484 \begin_layout Description
1485
1486 \family sans
1487 Borders
1488 \family default
1489  In this tab you can add and delete border lines for the current row/column.
1490 \newline
1491 Using
1492  the style option 
1493 \family sans
1494 Formal
1495 \family default
1496  will convert the table to a formal table as described in section\InsetSpace ~
1497
1498 \begin_inset LatexCommand ref
1499 reference "sec:Formal-Tables"
1500
1501 \end_inset
1502
1503 .
1504 \newline
1505 You can also add here space to table rows as decribed in section\InsetSpace ~
1506
1507 \begin_inset LatexCommand ref
1508 reference "sub:Row-Spacing"
1509
1510 \end_inset
1511
1512 .
1513 \end_layout
1514
1515 \begin_layout Description
1516
1517 \family sans
1518 Longtable
1519 \family default
1520  This tab is to make a table a so called 
1521 \begin_inset Quotes eld
1522 \end_inset
1523
1524
1525 \emph on
1526 longtable
1527 \emph default
1528
1529 \begin_inset Quotes erd
1530 \end_inset
1531
1532  that can run over several pages.
1533  Section\InsetSpace ~
1534
1535 \begin_inset LatexCommand ref
1536 reference "sec:Longtables"
1537
1538 \end_inset
1539
1540  and 
1541 \begin_inset LatexCommand ref
1542 reference "sec:Special-Longtable-Issues"
1543
1544 \end_inset
1545
1546  describe the longtable features in detail.
1547 \end_layout
1548
1549 \begin_layout Standard
1550 When the table toolbar is opened, you can move the cursor with the arrow
1551  keys from cell to cell and the property of the current cell will immediately
1552  be displayed in the dialog.
1553 \end_layout
1554
1555 \begin_layout Section
1556 Table Toolbar
1557 \begin_inset LatexCommand index
1558 name "Table ! Toolbar"
1559
1560 \end_inset
1561
1562
1563 \end_layout
1564
1565 \begin_layout Standard
1566 The table toolbar is an alternative to the table dialog to be able to alter
1567  tables faster.
1568  It should normally appear at the bottom of LyX's main window when the cursor
1569  is inside a table.
1570  You can alternatively switch it on to appear always, by right-clicking
1571  in LyX's main menu bar.
1572 \end_layout
1573
1574 \begin_layout Standard
1575 The toolbar has the following icons:
1576 \end_layout
1577
1578 \begin_layout Labeling
1579 \labelwidthstring 00.00.0000
1580 \begin_inset Graphics
1581         filename ../images/tabular-feature_append-row.xpm
1582
1583 \end_inset
1584
1585  adds a row below the current cell or selection
1586 \end_layout
1587
1588 \begin_layout Labeling
1589 \labelwidthstring 00.00.0000
1590 \begin_inset Graphics
1591         filename ../images/tabular-feature_append-column.xpm
1592
1593 \end_inset
1594
1595  adds a column right beside the current cell or selection
1596 \end_layout
1597
1598 \begin_layout Labeling
1599 \labelwidthstring 00.00.0000
1600 \begin_inset Graphics
1601         filename ../images/tabular-feature_delete-row.xpm
1602
1603 \end_inset
1604
1605  deletes the current row or selection
1606 \end_layout
1607
1608 \begin_layout Labeling
1609 \labelwidthstring 00.00.0000
1610 \begin_inset Graphics
1611         filename ../images/tabular-feature_delete-column.xpm
1612
1613 \end_inset
1614
1615  deletes the current column or selection
1616 \end_layout
1617
1618 \begin_layout Labeling
1619 \labelwidthstring 00.00.0000
1620 \begin_inset Graphics
1621         filename ../images/tabular-feature_toggle-line-top.xpm
1622
1623 \end_inset
1624
1625  adds a line at the top of the current cell / row or of a selection
1626 \end_layout
1627
1628 \begin_layout Labeling
1629 \labelwidthstring 00.00.0000
1630 \begin_inset Graphics
1631         filename ../images/tabular-feature_toggle-line-bottom.xpm
1632
1633 \end_inset
1634
1635  adds a line at the bottom of the current cell / row or of a selection
1636 \end_layout
1637
1638 \begin_layout Labeling
1639 \labelwidthstring 00.00.0000
1640 \begin_inset Graphics
1641         filename ../images/tabular-feature_toggle-line-left.xpm
1642
1643 \end_inset
1644
1645  adds a line at the left side of the current cell / row or of a selection
1646 \end_layout
1647
1648 \begin_layout Labeling
1649 \labelwidthstring 00.00.0000
1650 \begin_inset Graphics
1651         filename ../images/tabular-feature_toggle-line-right.xpm
1652
1653 \end_inset
1654
1655  adds a line at the right side of the current cell / row or of a selection
1656 \end_layout
1657
1658 \begin_layout Labeling
1659 \labelwidthstring 00.00.0000
1660 \begin_inset Graphics
1661         filename ../images/tabular-feature_set-all-lines.xpm
1662
1663 \end_inset
1664
1665  adds lines around the current or selected cells - if the current cell no
1666  multicolumn this also affects the current row and column
1667 \end_layout
1668
1669 \begin_layout Labeling
1670 \labelwidthstring 00.00.0000
1671 \begin_inset Graphics
1672         filename ../images/tabular-feature_unset-all-lines.xpm
1673
1674 \end_inset
1675
1676  deletes all lines of the current or selected cells - if the current cell
1677  no multicolumn this also affects the current row and column
1678 \end_layout
1679
1680 \begin_layout Labeling
1681 \labelwidthstring 00.00.0000
1682 \begin_inset Graphics
1683         filename ../images/tabular-feature_align-left.xpm
1684
1685 \end_inset
1686
1687  left-aligns the content of the current cell / column
1688 \end_layout
1689
1690 \begin_layout Labeling
1691 \labelwidthstring 00.00.0000
1692 \begin_inset Graphics
1693         filename ../images/tabular-feature_align-center.xpm
1694
1695 \end_inset
1696
1697  centers the content of the current cell / column horizontally
1698 \end_layout
1699
1700 \begin_layout Labeling
1701 \labelwidthstring 00.00.0000
1702 \begin_inset Graphics
1703         filename ../images/tabular-feature_align-right.xpm
1704
1705 \end_inset
1706
1707  right-aligns the content of the current cell / column
1708 \end_layout
1709
1710 \begin_layout Labeling
1711 \labelwidthstring 00.00.0000
1712 \begin_inset Graphics
1713         filename ../images/tabular-feature_valign-top.xpm
1714
1715 \end_inset
1716
1717  aligns the content of the current cell vertically to the top
1718 \end_layout
1719
1720 \begin_layout Labeling
1721 \labelwidthstring 00.00.0000
1722 \begin_inset Graphics
1723         filename ../images/tabular-feature_valign-middle.xpm
1724
1725 \end_inset
1726
1727  centers the content of the current cell vertically
1728 \end_layout
1729
1730 \begin_layout Labeling
1731 \labelwidthstring 00.00.0000
1732 \begin_inset Graphics
1733         filename ../images/tabular-feature_valign-bottom.xpm
1734
1735 \end_inset
1736
1737  aligns the content of the current cell vertically to the bottom
1738 \end_layout
1739
1740 \begin_layout Labeling
1741 \labelwidthstring 00.00.0000
1742 \begin_inset Graphics
1743         filename ../images/tabular-feature_set-rotate-cell.xpm
1744
1745 \end_inset
1746
1747  rotates the current cell or selection counter-clockwise by 90°
1748 \end_layout
1749
1750 \begin_layout Labeling
1751 \labelwidthstring 00.00.0000
1752 \begin_inset Graphics
1753         filename ../images/tabular-feature_set-rotate-tabular.xpm
1754
1755 \end_inset
1756
1757  rotates the whole table counter-clockwise by 90°
1758 \end_layout
1759
1760 \begin_layout Labeling
1761 \labelwidthstring 00.00.0000
1762 \begin_inset Graphics
1763         filename ../images/tabular-feature_multicolumn.xpm
1764
1765 \end_inset
1766
1767  sets the current cell or selection as a multicolumn
1768 \end_layout
1769
1770 \begin_layout Section
1771 Edit Table Menu
1772 \begin_inset LatexCommand index
1773 name "Table ! Edit Menu"
1774
1775 \end_inset
1776
1777
1778 \end_layout
1779
1780 \begin_layout Standard
1781 Additionally to the table dialog and toolbar, the menu 
1782 \family sans
1783 Edit\SpecialChar \menuseparator
1784 Table
1785 \family default
1786  allows you to add and delete border lines for the current row/column and
1787  to set the current selection as multicolumn.
1788  The menu is only available when the cursor is inside a table.
1789 \end_layout
1790
1791 \begin_layout Section
1792 Table Floats
1793 \begin_inset LatexCommand label
1794 name "sec:Table-Floats"
1795
1796 \end_inset
1797
1798
1799 \begin_inset LatexCommand index
1800 name "Floats ! Tables"
1801
1802 \end_inset
1803
1804
1805 \begin_inset LatexCommand index
1806 name "Table ! Floats"
1807
1808 \end_inset
1809
1810
1811 \end_layout
1812
1813 \begin_layout Standard
1814 For general explanations about floats, have a look at section\InsetSpace ~
1815
1816 \begin_inset LatexCommand ref
1817 reference "sec:FloatIntroduction"
1818
1819 \end_inset
1820
1821 .
1822 \end_layout
1823
1824 \begin_layout Standard
1825 \begin_inset Float table
1826 placement h
1827 wide false
1828 sideways false
1829 status open
1830
1831 \begin_layout Caption
1832 \begin_inset LatexCommand label
1833 name "tab:a table float"
1834
1835 \end_inset
1836
1837 A table float.
1838 \end_layout
1839
1840 \begin_layout Standard
1841 \align center
1842 \begin_inset Tabular
1843 <lyxtabular version="3" rows="3" columns="3">
1844 <features>
1845 <column alignment="center" valignment="top" leftline="true" width="0pt">
1846 <column alignment="center" valignment="top" leftline="true" width="0pt">
1847 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0pt">
1848 <row topline="true" bottomline="true">
1849 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1850 \begin_inset Text
1851
1852 \begin_layout Standard
1853
1854 \family roman
1855 \series medium
1856 \shape up
1857 \size normal
1858 \emph off
1859 \bar no
1860 \noun off
1861 \color none
1862 1
1863 \end_layout
1864
1865 \end_inset
1866 </cell>
1867 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1868 \begin_inset Text
1869
1870 \begin_layout Standard
1871
1872 \family roman
1873 \series medium
1874 \shape up
1875 \size normal
1876 \emph off
1877 \bar no
1878 \noun off
1879 \color none
1880 2
1881 \end_layout
1882
1883 \end_inset
1884 </cell>
1885 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1886 \begin_inset Text
1887
1888 \begin_layout Standard
1889
1890 \family roman
1891 \series medium
1892 \shape up
1893 \size normal
1894 \emph off
1895 \bar no
1896 \noun off
1897 \color none
1898 3
1899 \end_layout
1900
1901 \end_inset
1902 </cell>
1903 </row>
1904 <row topline="true">
1905 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1906 \begin_inset Text
1907
1908 \begin_layout Standard
1909
1910 \family roman
1911 \series medium
1912 \shape up
1913 \size normal
1914 \emph off
1915 \bar no
1916 \noun off
1917 \color none
1918 Joe
1919 \end_layout
1920
1921 \end_inset
1922 </cell>
1923 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1924 \begin_inset Text
1925
1926 \begin_layout Standard
1927
1928 \family roman
1929 \series medium
1930 \shape up
1931 \size normal
1932 \emph off
1933 \bar no
1934 \noun off
1935 \color none
1936 Mary
1937 \end_layout
1938
1939 \end_inset
1940 </cell>
1941 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1942 \begin_inset Text
1943
1944 \begin_layout Standard
1945
1946 \family roman
1947 \series medium
1948 \shape up
1949 \size normal
1950 \emph off
1951 \bar no
1952 \noun off
1953 \color none
1954 Ted
1955 \end_layout
1956
1957 \end_inset
1958 </cell>
1959 </row>
1960 <row topline="true" bottomline="true">
1961 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1962 \begin_inset Text
1963
1964 \begin_layout Standard
1965
1966 \family roman
1967 \series medium
1968 \shape up
1969 \size normal
1970 \emph off
1971 \bar no
1972 \noun off
1973 \color none
1974 \begin_inset Formula $\int x^{2}dx$
1975 \end_inset
1976
1977
1978 \end_layout
1979
1980 \end_inset
1981 </cell>
1982 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1983 \begin_inset Text
1984
1985 \begin_layout Standard
1986
1987 \family roman
1988 \series medium
1989 \shape up
1990 \size normal
1991 \emph off
1992 \bar no
1993 \noun off
1994 \color none
1995 \begin_inset Formula $\left[\begin{array}{cc}
1996 a & b\\
1997 c & d\end{array}\right]$
1998 \end_inset
1999
2000
2001 \end_layout
2002
2003 \end_inset
2004 </cell>
2005 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2006 \begin_inset Text
2007
2008 \begin_layout Standard
2009
2010 \family roman
2011 \series medium
2012 \shape up
2013 \size normal
2014 \emph off
2015 \bar no
2016 \noun off
2017 \color none
2018 \begin_inset Formula $1+1=2$
2019 \end_inset
2020
2021
2022 \end_layout
2023
2024 \end_inset
2025 </cell>
2026 </row>
2027 </lyxtabular>
2028
2029 \end_inset
2030
2031
2032 \end_layout
2033
2034 \end_inset
2035
2036
2037 \end_layout
2038
2039 \begin_layout Standard
2040 Table floats can be inserted using the menu 
2041 \family sans
2042 Insert\SpecialChar \menuseparator
2043 Float\SpecialChar \menuseparator
2044 Table
2045 \family default
2046  or the toolbar button 
2047 \begin_inset Graphics
2048         filename ../images/float-insert_table.xpm
2049         scale 85
2050
2051 \end_inset
2052
2053 .
2054 \end_layout
2055
2056 \begin_layout Standard
2057 The float appears as a collapsible box with the label 
2058 \begin_inset Quotes eld
2059 \end_inset
2060
2061
2062 \series bold
2063 Table\InsetSpace ~
2064 #:
2065 \series default
2066
2067 \begin_inset Quotes erd
2068 \end_inset
2069
2070  inside it.
2071  The text following the label is the caption of the table.
2072  To insert a table to the the float set the cursor at the end of the caption
2073  text, press enter and insert the table.
2074  The caption is now printed above the table.
2075 \end_layout
2076
2077 \begin_layout Standard
2078 Table\InsetSpace ~
2079
2080 \begin_inset LatexCommand ref
2081 reference "tab:a table float"
2082
2083 \end_inset
2084
2085  is an example table within a table float.
2086 \end_layout
2087
2088 \begin_layout Standard
2089 Having the caption above the table is the common rule that is unfortunately
2090  not supported in LaTeX's standard classes.
2091  That means if you are using the document classes 
2092 \family sans
2093 article
2094 \family default
2095
2096 \family sans
2097 book
2098 \family default
2099
2100 \family sans
2101 letter
2102 \family default
2103 , or 
2104 \family sans
2105 report
2106 \family default
2107  there will be no space between the caption and the table.
2108  To insert the needed space, add the following option to the load command
2109  of the LaTeX-package 
2110 \series bold
2111 caption
2112 \series default
2113
2114 \begin_inset LatexCommand index
2115 name "LaTeX-packages ! caption"
2116
2117 \end_inset
2118
2119  in your document preamble
2120 \begin_inset Foot
2121 status collapsed
2122
2123 \begin_layout Standard
2124 For more information have a look at section\InsetSpace ~
2125
2126 \begin_inset LatexCommand ref
2127 reference "sec:Caption-Placement"
2128
2129 \end_inset
2130
2131 .
2132 \end_layout
2133
2134 \end_inset
2135
2136 :
2137 \end_layout
2138
2139 \begin_layout Standard
2140
2141 \series bold
2142 tableposition=top
2143 \end_layout
2144
2145 \begin_layout Standard
2146 The package 
2147 \series bold
2148 caption
2149 \series default
2150 , which is described in section\InsetSpace ~
2151
2152 \begin_inset LatexCommand ref
2153 reference "sec:Caption-Formatting"
2154
2155 \end_inset
2156
2157 , is used to adjust the caption format.
2158 \end_layout
2159
2160 \begin_layout Standard
2161 \begin_inset LatexCommand index
2162 name "References ! to Tables"
2163
2164 \end_inset
2165
2166 Tables can be cross-referenced in the text by referencing their label.
2167  To do this insert a label in the caption using the menu 
2168 \family sans
2169 Insert\SpecialChar \menuseparator
2170 Label
2171 \family default
2172  or the toolbar button 
2173 \begin_inset Graphics
2174         filename ../images/label-insert.xpm
2175         scale 85
2176
2177 \end_inset
2178
2179 .
2180  You can now refer to the label using the menu 
2181 \family sans
2182 Insert\SpecialChar \menuseparator
2183 Cross\InsetSpace ~
2184 reference
2185 \family default
2186  or the toolbar button 
2187 \begin_inset Graphics
2188         filename ../images/dialog-show-new-inset_ref.xpm
2189         scale 85
2190
2191 \end_inset
2192
2193 .
2194 \end_layout
2195
2196 \begin_layout Standard
2197
2198 \end_layout
2199
2200 \begin_layout Section
2201 Longtables
2202 \begin_inset LatexCommand label
2203 name "sec:Longtables"
2204
2205 \end_inset
2206
2207
2208 \begin_inset LatexCommand index
2209 name "Longtables"
2210
2211 \end_inset
2212
2213
2214 \begin_inset LatexCommand index
2215 name "Table ! Longtables"
2216
2217 \end_inset
2218
2219
2220 \end_layout
2221
2222 \begin_layout Standard
2223 If the table is too long to fit on one page, you can use the option 
2224 \family sans
2225 Use\InsetSpace ~
2226 long\InsetSpace ~
2227 table
2228 \family default
2229  in the tab 
2230 \family sans
2231 Longtable
2232 \family default
2233  of the table dialog to split the table automatically over more pages.
2234  Doing this enables some check boxes and you can now define:
2235 \end_layout
2236
2237 \begin_layout Description
2238
2239 \family sans
2240 Header
2241 \family default
2242 : The current row and all rows above, that don't have any special options
2243  defined, are defined to be the header rows of all pages of the longtable;
2244  except for the first page, if 
2245 \family sans
2246 First\InsetSpace ~
2247 header
2248 \family default
2249  is defined.
2250  This therefore called the main header.
2251 \end_layout
2252
2253 \begin_layout Description
2254
2255 \family sans
2256 First\InsetSpace ~
2257 header
2258 \family default
2259 : The current row and all rows above, that don't have any special options
2260  defined, are defined to be the header rows of the first page of the longtable.
2261 \end_layout
2262
2263 \begin_layout Description
2264
2265 \family sans
2266 Footer
2267 \family default
2268 : The current row and all rows below, that don't have any special options
2269  defined, are defined to be the footer rows of all pages of the longtable;
2270  except for the last page, if 
2271 \family sans
2272 Last\InsetSpace ~
2273 footer
2274 \family default
2275  is defined.
2276 \end_layout
2277
2278 \begin_layout Description
2279
2280 \family sans
2281 Last\InsetSpace ~
2282 footer
2283 \family default
2284 : The current row and all rows below, that don't have any special options
2285  defined, are defined to be the footer rows of the last page of the longtable.
2286 \end_layout
2287
2288 \begin_layout Standard
2289 You can also specify a row where the table is splitted.
2290  If you set more than one option in the same table row, you should be aware
2291  of the fact that only the first one is used in the given table row.
2292  The others will then be defined as 
2293 \emph on
2294 empty
2295 \emph default
2296 .
2297  In this context, first means first in this order: 
2298 \family sans
2299 Footer, Last\InsetSpace ~
2300 footer,
2301 \family default
2302  
2303 \family sans
2304 Header,
2305 \family default
2306  
2307 \family sans
2308 First\InsetSpace ~
2309 header.
2310
2311 \family default
2312 \emph on
2313  
2314 \emph default
2315 See the following longtable to see how it works:
2316 \end_layout
2317
2318 \begin_layout Standard
2319 \align center
2320 \begin_inset Tabular
2321 <lyxtabular version="3" rows="69" columns="3">
2322 <features islongtable="true">
2323 <column alignment="left" valignment="top" leftline="true" width="0cm">
2324 <column alignment="left" valignment="top" width="0pt">
2325 <column alignment="right" valignment="top" leftline="true" rightline="true" width="0pt">
2326 <row topline="true" bottomline="true" endfirsthead="true">
2327 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2328 \begin_inset Text
2329
2330 \begin_layout Standard
2331
2332 \series bold
2333 Example Phone List (ignore the names)
2334 \end_layout
2335
2336 \end_inset
2337 </cell>
2338 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
2339 \begin_inset Text
2340
2341 \begin_layout Standard
2342
2343 \end_layout
2344
2345 \end_inset
2346 </cell>
2347 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2348 \begin_inset Text
2349
2350 \begin_layout Standard
2351
2352 \end_layout
2353
2354 \end_inset
2355 </cell>
2356 </row>
2357 <row topline="true" bottomline="true" endfirsthead="true">
2358 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
2359 \begin_inset Text
2360
2361 \begin_layout Standard
2362
2363 \series bold
2364 NAME
2365 \end_layout
2366
2367 \end_inset
2368 </cell>
2369 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
2370 \begin_inset Text
2371
2372 \begin_layout Standard
2373
2374 \end_layout
2375
2376 \end_inset
2377 </cell>
2378 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
2379 \begin_inset Text
2380
2381 \begin_layout Standard
2382
2383 \series bold
2384 TEL.
2385 \end_layout
2386
2387 \end_inset
2388 </cell>
2389 </row>
2390 <row topline="true" bottomline="true" endhead="true">
2391 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2392 \begin_inset Text
2393
2394 \begin_layout Standard
2395
2396 \series bold
2397 Example Phone List
2398 \end_layout
2399
2400 \end_inset
2401 </cell>
2402 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
2403 \begin_inset Text
2404
2405 \begin_layout Standard
2406
2407 \end_layout
2408
2409 \end_inset
2410 </cell>
2411 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2412 \begin_inset Text
2413
2414 \begin_layout Standard
2415
2416 \end_layout
2417
2418 \end_inset
2419 </cell>
2420 </row>
2421 <row topline="true" bottomline="true" endhead="true">
2422 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
2423 \begin_inset Text
2424
2425 \begin_layout Standard
2426
2427 \series bold
2428 NAME
2429 \end_layout
2430
2431 \end_inset
2432 </cell>
2433 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
2434 \begin_inset Text
2435
2436 \begin_layout Standard
2437
2438 \end_layout
2439
2440 \end_inset
2441 </cell>
2442 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
2443 \begin_inset Text
2444
2445 \begin_layout Standard
2446
2447 \series bold
2448 TEL.
2449 \end_layout
2450
2451 \end_inset
2452 </cell>
2453 </row>
2454 <row topline="true" bottomline="true" endfoot="true">
2455 <cell multicolumn="1" alignment="right" valignment="top" topline="true" usebox="none">
2456 \begin_inset Text
2457
2458 \begin_layout Standard
2459  continued on next page
2460 \end_layout
2461
2462 \end_inset
2463 </cell>
2464 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
2465 \begin_inset Text
2466
2467 \begin_layout Standard
2468
2469 \end_layout
2470
2471 \end_inset
2472 </cell>
2473 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2474 \begin_inset Text
2475
2476 \begin_layout Standard
2477
2478 \end_layout
2479
2480 \end_inset
2481 </cell>
2482 </row>
2483 <row>
2484 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2485 \begin_inset Text
2486
2487 \begin_layout Standard
2488
2489 \series bold
2490 Annovi
2491 \end_layout
2492
2493 \end_inset
2494 </cell>
2495 <cell alignment="center" valignment="top" topline="true" usebox="none">
2496 \begin_inset Text
2497
2498 \begin_layout Standard
2499 Silvia
2500 \end_layout
2501
2502 \end_inset
2503 </cell>
2504 <cell alignment="right" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2505 \begin_inset Text
2506
2507 \begin_layout Standard
2508 111
2509 \end_layout
2510
2511 \end_inset
2512 </cell>
2513 </row>
2514 <row>
2515 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2516 \begin_inset Text
2517
2518 \begin_layout Standard
2519
2520 \series bold
2521 Bertoli
2522 \end_layout
2523
2524 \end_inset
2525 </cell>
2526 <cell alignment="center" valignment="top" topline="true" usebox="none">
2527 \begin_inset Text
2528
2529 \begin_layout Standard
2530 Stefano
2531 \end_layout
2532
2533 \end_inset
2534 </cell>
2535 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2536 \begin_inset Text
2537
2538 \begin_layout Standard
2539 111
2540 \end_layout
2541
2542 \end_inset
2543 </cell>
2544 </row>
2545 <row>
2546 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2547 \begin_inset Text
2548
2549 \begin_layout Standard
2550
2551 \series bold
2552 Bozzi
2553 \end_layout
2554
2555 \end_inset
2556 </cell>
2557 <cell alignment="center" valignment="top" topline="true" usebox="none">
2558 \begin_inset Text
2559
2560 \begin_layout Standard
2561 Walter
2562 \end_layout
2563
2564 \end_inset
2565 </cell>
2566 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2567 \begin_inset Text
2568
2569 \begin_layout Standard
2570 111
2571 \end_layout
2572
2573 \end_inset
2574 </cell>
2575 </row>
2576 <row>
2577 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2578 \begin_inset Text
2579
2580 \begin_layout Standard
2581
2582 \series bold
2583 Cachia
2584 \end_layout
2585
2586 \end_inset
2587 </cell>
2588 <cell alignment="center" valignment="top" topline="true" usebox="none">
2589 \begin_inset Text
2590
2591 \begin_layout Standard
2592 Maria
2593 \end_layout
2594
2595 \end_inset
2596 </cell>
2597 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2598 \begin_inset Text
2599
2600 \begin_layout Standard
2601 111
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 Cachia
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 Maurizio
2624 \end_layout
2625
2626 \end_inset
2627 </cell>
2628 <cell alignment="center" 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 Cinquemani
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 Giusi
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 Colin
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 Bernard
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 Concli
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 Gianfranco
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 Dal Bosco
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 Carolina
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 Dalpiaz
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 Annamaria
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 Feliciello
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 Domenico
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 Focarelli
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 Paola
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 Galletti
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 Oreste
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 Gasparini
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 Franca
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 Rizzardi
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 Paola
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 Lassini
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 Giancarlo
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 Malfatti
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 Luciano
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 Malfatti
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 Valeriano
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 Meneguzzo
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 Roberto
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 Mezzadra
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 Roberto
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 Pirpamer
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 Erich
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 Pochiesa
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 Paolo
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, 222
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 Radina
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 Claudio
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 Stuffer
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 Oskar
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 Tacchelli
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 Ugo
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 Tezzele
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 Margit
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
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 Unterkalmsteiner
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 Frieda
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 Vieider
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 Hilde
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 Vigna
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 Jürgen
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 Weber
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 Maurizio
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 bottomline="true">
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 Winkler
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 Franz
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 bottomline="true">
3445 <cell multicolumn="1" alignment="left" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
3446 \begin_inset Text
3447
3448 \begin_layout Standard
3449  
3450 \end_layout
3451
3452 \end_inset
3453 </cell>
3454 <cell multicolumn="2" alignment="center" valignment="top" topline="true" usebox="none">
3455 \begin_inset Text
3456
3457 \begin_layout Standard
3458
3459 \end_layout
3460
3461 \end_inset
3462 </cell>
3463 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3464 \begin_inset Text
3465
3466 \begin_layout Standard
3467
3468 \end_layout
3469
3470 \end_inset
3471 </cell>
3472 </row>
3473 <row>
3474 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3475 \begin_inset Text
3476
3477 \begin_layout Standard
3478
3479 \series bold
3480 Annovi
3481 \end_layout
3482
3483 \end_inset
3484 </cell>
3485 <cell alignment="center" valignment="top" topline="true" usebox="none">
3486 \begin_inset Text
3487
3488 \begin_layout Standard
3489 Silvia
3490 \end_layout
3491
3492 \end_inset
3493 </cell>
3494 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3495 \begin_inset Text
3496
3497 \begin_layout Standard
3498 555
3499 \end_layout
3500
3501 \end_inset
3502 </cell>
3503 </row>
3504 <row>
3505 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3506 \begin_inset Text
3507
3508 \begin_layout Standard
3509
3510 \series bold
3511 Bertoli
3512 \end_layout
3513
3514 \end_inset
3515 </cell>
3516 <cell alignment="center" valignment="top" topline="true" usebox="none">
3517 \begin_inset Text
3518
3519 \begin_layout Standard
3520 Stefano
3521 \end_layout
3522
3523 \end_inset
3524 </cell>
3525 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3526 \begin_inset Text
3527
3528 \begin_layout Standard
3529 555
3530 \end_layout
3531
3532 \end_inset
3533 </cell>
3534 </row>
3535 <row>
3536 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3537 \begin_inset Text
3538
3539 \begin_layout Standard
3540
3541 \series bold
3542 Bozzi
3543 \end_layout
3544
3545 \end_inset
3546 </cell>
3547 <cell alignment="center" valignment="top" topline="true" usebox="none">
3548 \begin_inset Text
3549
3550 \begin_layout Standard
3551 Walter
3552 \end_layout
3553
3554 \end_inset
3555 </cell>
3556 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3557 \begin_inset Text
3558
3559 \begin_layout Standard
3560 555
3561 \end_layout
3562
3563 \end_inset
3564 </cell>
3565 </row>
3566 <row>
3567 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3568 \begin_inset Text
3569
3570 \begin_layout Standard
3571
3572 \series bold
3573 Cachia
3574 \end_layout
3575
3576 \end_inset
3577 </cell>
3578 <cell alignment="center" valignment="top" topline="true" usebox="none">
3579 \begin_inset Text
3580
3581 \begin_layout Standard
3582 Maria
3583 \end_layout
3584
3585 \end_inset
3586 </cell>
3587 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3588 \begin_inset Text
3589
3590 \begin_layout Standard
3591 555
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 Cachia
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 Maurizio
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 Cinquemani
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 Giusi
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 Colin
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 Bernard
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 Concli
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 Gianfranco
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 Dal Bosco
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 Carolina
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 Dalpiaz
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 Annamaria
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 Feliciello
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 Domenico
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 Focarelli
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 Paola
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 Galletti
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 Oreste
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 Gasparini
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 Franca
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 Rizzardi
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 Paola
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 Lassini
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 Giancarlo
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 Malfatti
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 Luciano
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 Malfatti
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 Valeriano
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 Meneguzzo
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 Roberto
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 Mezzadra
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 Roberto
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 Pirpamer
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 Erich
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 Pochiesa
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 Paolo
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, 222
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 Radina
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 Claudio
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 Stuffer
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 Oskar
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 Tacchelli
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 Ugo
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 Tezzele
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 Margit
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
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 Unterkalmsteiner
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 Frieda
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 Vieider
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 Hilde
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 Vigna
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 Jürgen
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 999
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 Weber
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 Maurizio
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 bottomline="true">
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 Winkler
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 Franz
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 bottomline="true" endlastfoot="true">
4435 <cell multicolumn="1" alignment="right" valignment="top" usebox="none">
4436 \begin_inset Text
4437
4438 \begin_layout Standard
4439 end
4440 \end_layout
4441
4442 \end_inset
4443 </cell>
4444 <cell multicolumn="2" alignment="center" valignment="top" topline="true" usebox="none">
4445 \begin_inset Text
4446
4447 \begin_layout Standard
4448
4449 \end_layout
4450
4451 \end_inset
4452 </cell>
4453 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4454 \begin_inset Text
4455
4456 \begin_layout Standard
4457
4458 \end_layout
4459
4460 \end_inset
4461 </cell>
4462 </row>
4463 </lyxtabular>
4464
4465 \end_inset
4466
4467
4468 \end_layout
4469
4470 \begin_layout Subsection
4471 Footnotes in Longtables
4472 \begin_inset LatexCommand label
4473 name "sub:Footnotes-in-Longtables"
4474
4475 \end_inset
4476
4477
4478 \begin_inset LatexCommand index
4479 name "Longtables ! Footnotes"
4480
4481 \end_inset
4482
4483
4484 \end_layout
4485
4486 \begin_layout Standard
4487 Footnotes can be inserted to every longtable cell.
4488  They appear at the bottom of the page where the table cell with the footnote
4489  appears.
4490  Table\InsetSpace ~
4491
4492 \begin_inset LatexCommand ref
4493 reference "tab:DiffCaptions"
4494
4495 \end_inset
4496
4497  has for example a footnote.
4498 \end_layout
4499
4500 \begin_layout Subsection
4501 Longtable Captions
4502 \begin_inset LatexCommand index
4503 name "Longtables ! Captions"
4504
4505 \end_inset
4506
4507
4508 \end_layout
4509
4510 \begin_layout Standard
4511 A longtable cannot be put into a table float because floats can only be
4512  on one page.
4513  Therefore the caption layout cannot be used for longtables.
4514 \end_layout
4515
4516 \begin_layout Standard
4517 To add a caption, a dirty hack is needed:
4518 \end_layout
4519
4520 \begin_layout Enumerate
4521 Create a longtable
4522 \end_layout
4523
4524 \begin_layout Enumerate
4525 Mark the first row an disable its upper line
4526 \end_layout
4527
4528 \begin_layout Enumerate
4529 Insert the following command as ERT into the first table cell:
4530 \newline
4531
4532 \series bold
4533
4534 \backslash
4535 caption[short title]{full title}
4536 \backslash
4537
4538 \backslash
4539 %
4540 \end_layout
4541
4542 \begin_layout Enumerate
4543 Insert a 
4544 \begin_inset Quotes eld
4545 \end_inset
4546
4547
4548 \series bold
4549 %
4550 \series default
4551
4552 \begin_inset Quotes erd
4553 \end_inset
4554
4555  as ERT into every cell of the first row
4556 \end_layout
4557
4558 \begin_layout Standard
4559 The 
4560 \series bold
4561
4562 \backslash
4563 caption
4564 \series default
4565  command is used like for normal captions, the short title that will appear
4566  in the LOT instead of the full title is optional.
4567  The 
4568 \series bold
4569 %
4570 \series default
4571  in the table cells omits the vertical line between the the cells.
4572  The first table row is now only a dummy row for the caption, the actual
4573  table starts with the second row.
4574 \end_layout
4575
4576 \begin_layout Standard
4577 Here is a short longtable to see how it works:
4578 \end_layout
4579
4580 \begin_layout Standard
4581 \begin_inset Tabular
4582 <lyxtabular version="3" rows="6" columns="5">
4583 <features islongtable="true">
4584 <column alignment="center" valignment="top" leftline="true" width="0">
4585 <column alignment="center" valignment="top" leftline="true" width="0">
4586 <column alignment="center" valignment="top" leftline="true" width="0">
4587 <column alignment="center" valignment="top" leftline="true" width="0">
4588 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
4589 <row>
4590 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4591 \begin_inset Text
4592
4593 \begin_layout Standard
4594 \begin_inset ERT
4595 status collapsed
4596
4597 \begin_layout Standard
4598
4599
4600 \backslash
4601 caption[Longtable]{Longtable with caption}
4602 \backslash
4603
4604 \backslash
4605 %
4606 \end_layout
4607
4608 \end_inset
4609
4610
4611 \end_layout
4612
4613 \end_inset
4614 </cell>
4615 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4616 \begin_inset Text
4617
4618 \begin_layout Standard
4619 \begin_inset ERT
4620 status collapsed
4621
4622 \begin_layout Standard
4623
4624 %
4625 \end_layout
4626
4627 \end_inset
4628
4629
4630 \end_layout
4631
4632 \end_inset
4633 </cell>
4634 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4635 \begin_inset Text
4636
4637 \begin_layout Standard
4638 \begin_inset ERT
4639 status collapsed
4640
4641 \begin_layout Standard
4642
4643 %
4644 \end_layout
4645
4646 \end_inset
4647
4648
4649 \end_layout
4650
4651 \end_inset
4652 </cell>
4653 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4654 \begin_inset Text
4655
4656 \begin_layout Standard
4657 \begin_inset ERT
4658 status collapsed
4659
4660 \begin_layout Standard
4661
4662 %
4663 \end_layout
4664
4665 \end_inset
4666
4667
4668 \end_layout
4669
4670 \end_inset
4671 </cell>
4672 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4673 \begin_inset Text
4674
4675 \begin_layout Standard
4676 \begin_inset ERT
4677 status collapsed
4678
4679 \begin_layout Standard
4680
4681 %
4682 \end_layout
4683
4684 \end_inset
4685
4686
4687 \end_layout
4688
4689 \end_inset
4690 </cell>
4691 </row>
4692 <row topline="true">
4693 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4694 \begin_inset Text
4695
4696 \begin_layout Standard
4697 1
4698 \end_layout
4699
4700 \end_inset
4701 </cell>
4702 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4703 \begin_inset Text
4704
4705 \begin_layout Standard
4706 2
4707 \end_layout
4708
4709 \end_inset
4710 </cell>
4711 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4712 \begin_inset Text
4713
4714 \begin_layout Standard
4715 3
4716 \end_layout
4717
4718 \end_inset
4719 </cell>
4720 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4721 \begin_inset Text
4722
4723 \begin_layout Standard
4724 4
4725 \end_layout
4726
4727 \end_inset
4728 </cell>
4729 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4730 \begin_inset Text
4731
4732 \begin_layout Standard
4733 5
4734 \end_layout
4735
4736 \end_inset
4737 </cell>
4738 </row>
4739 <row topline="true">
4740 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4741 \begin_inset Text
4742
4743 \begin_layout Standard
4744 asd
4745 \end_layout
4746
4747 \end_inset
4748 </cell>
4749 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4750 \begin_inset Text
4751
4752 \begin_layout Standard
4753 s
4754 \end_layout
4755
4756 \end_inset
4757 </cell>
4758 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4759 \begin_inset Text
4760
4761 \begin_layout Standard
4762 s
4763 \end_layout
4764
4765 \end_inset
4766 </cell>
4767 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4768 \begin_inset Text
4769
4770 \begin_layout Standard
4771 s
4772 \end_layout
4773
4774 \end_inset
4775 </cell>
4776 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4777 \begin_inset Text
4778
4779 \begin_layout Standard
4780 asd
4781 \end_layout
4782
4783 \end_inset
4784 </cell>
4785 </row>
4786 <row topline="true">
4787 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4788 \begin_inset Text
4789
4790 \begin_layout Standard
4791 asd
4792 \end_layout
4793
4794 \end_inset
4795 </cell>
4796 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4797 \begin_inset Text
4798
4799 \begin_layout Standard
4800 s
4801 \end_layout
4802
4803 \end_inset
4804 </cell>
4805 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4806 \begin_inset Text
4807
4808 \begin_layout Standard
4809 s
4810 \end_layout
4811
4812 \end_inset
4813 </cell>
4814 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4815 \begin_inset Text
4816
4817 \begin_layout Standard
4818 s
4819 \end_layout
4820
4821 \end_inset
4822 </cell>
4823 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4824 \begin_inset Text
4825
4826 \begin_layout Standard
4827 asd
4828 \end_layout
4829
4830 \end_inset
4831 </cell>
4832 </row>
4833 <row topline="true">
4834 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4835 \begin_inset Text
4836
4837 \begin_layout Standard
4838 asd
4839 \end_layout
4840
4841 \end_inset
4842 </cell>
4843 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4844 \begin_inset Text
4845
4846 \begin_layout Standard
4847 s
4848 \end_layout
4849
4850 \end_inset
4851 </cell>
4852 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4853 \begin_inset Text
4854
4855 \begin_layout Standard
4856 s
4857 \end_layout
4858
4859 \end_inset
4860 </cell>
4861 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4862 \begin_inset Text
4863
4864 \begin_layout Standard
4865 s
4866 \end_layout
4867
4868 \end_inset
4869 </cell>
4870 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4871 \begin_inset Text
4872
4873 \begin_layout Standard
4874 asd
4875 \end_layout
4876
4877 \end_inset
4878 </cell>
4879 </row>
4880 <row topline="true" bottomline="true">
4881 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4882 \begin_inset Text
4883
4884 \begin_layout Standard
4885 asd
4886 \end_layout
4887
4888 \end_inset
4889 </cell>
4890 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4891 \begin_inset Text
4892
4893 \begin_layout Standard
4894 asd
4895 \end_layout
4896
4897 \end_inset
4898 </cell>
4899 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4900 \begin_inset Text
4901
4902 \begin_layout Standard
4903 asd
4904 \end_layout
4905
4906 \end_inset
4907 </cell>
4908 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4909 \begin_inset Text
4910
4911 \begin_layout Standard
4912 asd
4913 \end_layout
4914
4915 \end_inset
4916 </cell>
4917 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4918 \begin_inset Text
4919
4920 \begin_layout Standard
4921 asd
4922 \end_layout
4923
4924 \end_inset
4925 </cell>
4926 </row>
4927 </lyxtabular>
4928
4929 \end_inset
4930
4931
4932 \end_layout
4933
4934 \begin_layout Standard
4935 \begin_inset VSpace medskip
4936 \end_inset
4937
4938
4939 \begin_inset Note Greyedout
4940 status open
4941
4942 \begin_layout Standard
4943
4944 \series bold
4945 Note:
4946 \series default
4947  If you are using the LaTeX-package 
4948 \series bold
4949 hyperref
4950 \series default
4951
4952 \begin_inset LatexCommand index
4953 name "LaTeX-packages ! hyperref"
4954
4955 \end_inset
4956
4957  to link cross-references, the link to a longtable caption will always point
4958  to the beginning of the document.
4959 \end_layout
4960
4961 \end_inset
4962
4963
4964 \end_layout
4965
4966 \begin_layout Subsubsection
4967 References to Longtables
4968 \begin_inset LatexCommand index
4969 name "Longtables ! References"
4970
4971 \end_inset
4972
4973
4974 \end_layout
4975
4976 \begin_layout Standard
4977 \begin_inset Tabular
4978 <lyxtabular version="3" rows="6" columns="5">
4979 <features islongtable="true">
4980 <column alignment="center" valignment="top" leftline="true" width="0">
4981 <column alignment="center" valignment="top" leftline="true" width="0">
4982 <column alignment="center" valignment="top" leftline="true" width="0">
4983 <column alignment="center" valignment="top" leftline="true" width="0">
4984 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
4985 <row>
4986 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4987 \begin_inset Text
4988
4989 \begin_layout Standard
4990 \begin_inset ERT
4991 status collapsed
4992
4993 \begin_layout Standard
4994
4995
4996 \backslash
4997 caption{Referenced longtable
4998 \end_layout
4999
5000 \end_inset
5001
5002
5003 \begin_inset LatexCommand label
5004 name "tab:RefExample"
5005
5006 \end_inset
5007
5008
5009 \begin_inset ERT
5010 status collapsed
5011
5012 \begin_layout Standard
5013
5014 }
5015 \backslash
5016
5017 \backslash
5018 %
5019 \end_layout
5020
5021 \end_inset
5022
5023
5024 \end_layout
5025
5026 \end_inset
5027 </cell>
5028 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5029 \begin_inset Text
5030
5031 \begin_layout Standard
5032 \begin_inset ERT
5033 status collapsed
5034
5035 \begin_layout Standard
5036
5037 %
5038 \end_layout
5039
5040 \end_inset
5041
5042
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 \begin_inset ERT
5052 status collapsed
5053
5054 \begin_layout Standard
5055
5056 %
5057 \end_layout
5058
5059 \end_inset
5060
5061
5062 \end_layout
5063
5064 \end_inset
5065 </cell>
5066 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5067 \begin_inset Text
5068
5069 \begin_layout Standard
5070 \begin_inset ERT
5071 status collapsed
5072
5073 \begin_layout Standard
5074
5075 %
5076 \end_layout
5077
5078 \end_inset
5079
5080
5081 \end_layout
5082
5083 \end_inset
5084 </cell>
5085 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5086 \begin_inset Text
5087
5088 \begin_layout Standard
5089 \begin_inset ERT
5090 status collapsed
5091
5092 \begin_layout Standard
5093
5094 %
5095 \end_layout
5096
5097 \end_inset
5098
5099
5100 \end_layout
5101
5102 \end_inset
5103 </cell>
5104 </row>
5105 <row topline="true">
5106 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5107 \begin_inset Text
5108
5109 \begin_layout Standard
5110 1
5111 \end_layout
5112
5113 \end_inset
5114 </cell>
5115 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5116 \begin_inset Text
5117
5118 \begin_layout Standard
5119 2
5120 \end_layout
5121
5122 \end_inset
5123 </cell>
5124 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5125 \begin_inset Text
5126
5127 \begin_layout Standard
5128 3
5129 \end_layout
5130
5131 \end_inset
5132 </cell>
5133 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5134 \begin_inset Text
5135
5136 \begin_layout Standard
5137 4
5138 \end_layout
5139
5140 \end_inset
5141 </cell>
5142 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5143 \begin_inset Text
5144
5145 \begin_layout Standard
5146 5
5147 \end_layout
5148
5149 \end_inset
5150 </cell>
5151 </row>
5152 <row topline="true">
5153 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5154 \begin_inset Text
5155
5156 \begin_layout Standard
5157 asd
5158 \end_layout
5159
5160 \end_inset
5161 </cell>
5162 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5163 \begin_inset Text
5164
5165 \begin_layout Standard
5166 s
5167 \end_layout
5168
5169 \end_inset
5170 </cell>
5171 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5172 \begin_inset Text
5173
5174 \begin_layout Standard
5175 s
5176 \end_layout
5177
5178 \end_inset
5179 </cell>
5180 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5181 \begin_inset Text
5182
5183 \begin_layout Standard
5184 s
5185 \end_layout
5186
5187 \end_inset
5188 </cell>
5189 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5190 \begin_inset Text
5191
5192 \begin_layout Standard
5193 asd
5194 \end_layout
5195
5196 \end_inset
5197 </cell>
5198 </row>
5199 <row topline="true">
5200 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5201 \begin_inset Text
5202
5203 \begin_layout Standard
5204 asd
5205 \end_layout
5206
5207 \end_inset
5208 </cell>
5209 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5210 \begin_inset Text
5211
5212 \begin_layout Standard
5213 s
5214 \end_layout
5215
5216 \end_inset
5217 </cell>
5218 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5219 \begin_inset Text
5220
5221 \begin_layout Standard
5222 s
5223 \end_layout
5224
5225 \end_inset
5226 </cell>
5227 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5228 \begin_inset Text
5229
5230 \begin_layout Standard
5231 s
5232 \end_layout
5233
5234 \end_inset
5235 </cell>
5236 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5237 \begin_inset Text
5238
5239 \begin_layout Standard
5240 asd
5241 \end_layout
5242
5243 \end_inset
5244 </cell>
5245 </row>
5246 <row topline="true">
5247 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5248 \begin_inset Text
5249
5250 \begin_layout Standard
5251 asd
5252 \end_layout
5253
5254 \end_inset
5255 </cell>
5256 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5257 \begin_inset Text
5258
5259 \begin_layout Standard
5260 s
5261 \end_layout
5262
5263 \end_inset
5264 </cell>
5265 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5266 \begin_inset Text
5267
5268 \begin_layout Standard
5269 s
5270 \end_layout
5271
5272 \end_inset
5273 </cell>
5274 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5275 \begin_inset Text
5276
5277 \begin_layout Standard
5278 s
5279 \end_layout
5280
5281 \end_inset
5282 </cell>
5283 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5284 \begin_inset Text
5285
5286 \begin_layout Standard
5287 asd
5288 \end_layout
5289
5290 \end_inset
5291 </cell>
5292 </row>
5293 <row topline="true" bottomline="true">
5294 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5295 \begin_inset Text
5296
5297 \begin_layout Standard
5298 asd
5299 \end_layout
5300
5301 \end_inset
5302 </cell>
5303 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5304 \begin_inset Text
5305
5306 \begin_layout Standard
5307 sad
5308 \end_layout
5309
5310 \end_inset
5311 </cell>
5312 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5313 \begin_inset Text
5314
5315 \begin_layout Standard
5316 asd
5317 \end_layout
5318
5319 \end_inset
5320 </cell>
5321 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5322 \begin_inset Text
5323
5324 \begin_layout Standard
5325 asd
5326 \end_layout
5327
5328 \end_inset
5329 </cell>
5330 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5331 \begin_inset Text
5332
5333 \begin_layout Standard
5334 asd
5335 \end_layout
5336
5337 \end_inset
5338 </cell>
5339 </row>
5340 </lyxtabular>
5341
5342 \end_inset
5343
5344
5345 \end_layout
5346
5347 \begin_layout Standard
5348 To reference a longtable, insert a label into the 
5349 \series bold
5350
5351 \backslash
5352 caption
5353 \series default
5354  command.
5355  This is done by splitting the ERT of the caption command.
5356  The part of the caption command before the last closing brace
5357 \end_layout
5358
5359 \begin_layout Standard
5360
5361 \series bold
5362
5363 \backslash
5364 caption[short title]{full title
5365 \end_layout
5366
5367 \begin_layout Standard
5368 is in the first ERT box, the label is inserted behind it.
5369  Note that you have to add the label prefix 
5370 \begin_inset Quotes eld
5371 \end_inset
5372
5373
5374 \emph on
5375 tab:
5376 \emph default
5377
5378 \begin_inset Quotes eld
5379 \end_inset
5380
5381  manually in the label field.
5382  The second ERT box contains the rest of the 
5383 \backslash
5384 caption command
5385 \end_layout
5386
5387 \begin_layout Standard
5388
5389 \series bold
5390 }
5391 \backslash
5392
5393 \backslash
5394 %
5395 \end_layout
5396
5397 \begin_layout Standard
5398 and is inserted behind the label box, see Table\InsetSpace ~
5399
5400 \begin_inset LatexCommand ref
5401 reference "tab:RefExample"
5402
5403 \end_inset
5404
5405 .
5406 \end_layout
5407
5408 \begin_layout Standard
5409 The caption layout can be set together with all other caption of your document
5410  using the LaTeX-package 
5411 \series bold
5412 caption
5413 \series default
5414
5415 \begin_inset LatexCommand index
5416 name "LaTeX-packages ! caption"
5417
5418 \end_inset
5419
5420 , see section\InsetSpace ~
5421
5422 \begin_inset LatexCommand ref
5423 reference "sec:Caption-Formatting"
5424
5425 \end_inset
5426
5427 .
5428 \end_layout
5429
5430 \begin_layout Subsubsection
5431 Caption Width
5432 \begin_inset LatexCommand index
5433 name "Longtables ! Caption Width"
5434
5435 \end_inset
5436
5437
5438 \end_layout
5439
5440 \begin_layout Standard
5441 The maximal width of of caption lines is defined by the length 
5442 \series bold
5443
5444 \backslash
5445 LTcapwidth
5446 \series default
5447 .
5448  It default value is 4\InsetSpace \thinspace{}
5449 in.
5450  To change it add the following command to your document preamble or as
5451  ERT into your document before the longtable that should be affected
5452 \end_layout
5453
5454 \begin_layout Standard
5455
5456 \series bold
5457
5458 \backslash
5459 setlength{
5460 \backslash
5461 LTcapwidth}{width}
5462 \end_layout
5463
5464 \begin_layout Standard
5465 where the width could have one of the units listed in appendix\InsetSpace ~
5466
5467 \begin_inset LatexCommand ref
5468 reference "cha:Units-available-in"
5469
5470 \end_inset
5471
5472 .
5473 \end_layout
5474
5475 \begin_layout Standard
5476 The following tables show the difference:
5477 \end_layout
5478
5479 \begin_layout Standard
5480 \begin_inset Tabular
5481 <lyxtabular version="3" rows="6" columns="5">
5482 <features islongtable="true">
5483 <column alignment="center" valignment="top" leftline="true" width="0">
5484 <column alignment="center" valignment="top" leftline="true" width="0">
5485 <column alignment="center" valignment="top" leftline="true" width="0">
5486 <column alignment="center" valignment="top" leftline="true" width="0">
5487 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
5488 <row>
5489 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5490 \begin_inset Text
5491
5492 \begin_layout Standard
5493 \begin_inset ERT
5494 status collapsed
5495
5496 \begin_layout Standard
5497
5498
5499 \backslash
5500 caption[caption with default width]{long full title with default width
5501 \end_layout
5502
5503 \begin_layout Standard
5504
5505 long full title with default width long full title with default width}
5506 \backslash
5507
5508 \backslash
5509 %
5510 \end_layout
5511
5512 \end_inset
5513
5514
5515 \end_layout
5516
5517 \end_inset
5518 </cell>
5519 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5520 \begin_inset Text
5521
5522 \begin_layout Standard
5523 \begin_inset ERT
5524 status collapsed
5525
5526 \begin_layout Standard
5527
5528 %
5529 \end_layout
5530
5531 \end_inset
5532
5533
5534 \end_layout
5535
5536 \end_inset
5537 </cell>
5538 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5539 \begin_inset Text
5540
5541 \begin_layout Standard
5542 \begin_inset ERT
5543 status collapsed
5544
5545 \begin_layout Standard
5546
5547 %
5548 \end_layout
5549
5550 \end_inset
5551
5552
5553 \end_layout
5554
5555 \end_inset
5556 </cell>
5557 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5558 \begin_inset Text
5559
5560 \begin_layout Standard
5561 \begin_inset ERT
5562 status collapsed
5563
5564 \begin_layout Standard
5565
5566 %
5567 \end_layout
5568
5569 \end_inset
5570
5571
5572 \end_layout
5573
5574 \end_inset
5575 </cell>
5576 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5577 \begin_inset Text
5578
5579 \begin_layout Standard
5580 \begin_inset ERT
5581 status collapsed
5582
5583 \begin_layout Standard
5584
5585 %
5586 \end_layout
5587
5588 \end_inset
5589
5590
5591 \end_layout
5592
5593 \end_inset
5594 </cell>
5595 </row>
5596 <row topline="true">
5597 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5598 \begin_inset Text
5599
5600 \begin_layout Standard
5601 1
5602 \end_layout
5603
5604 \end_inset
5605 </cell>
5606 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5607 \begin_inset Text
5608
5609 \begin_layout Standard
5610 2
5611 \end_layout
5612
5613 \end_inset
5614 </cell>
5615 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5616 \begin_inset Text
5617
5618 \begin_layout Standard
5619 3
5620 \end_layout
5621
5622 \end_inset
5623 </cell>
5624 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5625 \begin_inset Text
5626
5627 \begin_layout Standard
5628 4
5629 \end_layout
5630
5631 \end_inset
5632 </cell>
5633 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5634 \begin_inset Text
5635
5636 \begin_layout Standard
5637 5
5638 \end_layout
5639
5640 \end_inset
5641 </cell>
5642 </row>
5643 <row topline="true">
5644 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5645 \begin_inset Text
5646
5647 \begin_layout Standard
5648 asd
5649 \end_layout
5650
5651 \end_inset
5652 </cell>
5653 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5654 \begin_inset Text
5655
5656 \begin_layout Standard
5657 s
5658 \end_layout
5659
5660 \end_inset
5661 </cell>
5662 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5663 \begin_inset Text
5664
5665 \begin_layout Standard
5666 s
5667 \end_layout
5668
5669 \end_inset
5670 </cell>
5671 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5672 \begin_inset Text
5673
5674 \begin_layout Standard
5675 s
5676 \end_layout
5677
5678 \end_inset
5679 </cell>
5680 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5681 \begin_inset Text
5682
5683 \begin_layout Standard
5684 asd
5685 \end_layout
5686
5687 \end_inset
5688 </cell>
5689 </row>
5690 <row topline="true">
5691 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5692 \begin_inset Text
5693
5694 \begin_layout Standard
5695 asd
5696 \end_layout
5697
5698 \end_inset
5699 </cell>
5700 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5701 \begin_inset Text
5702
5703 \begin_layout Standard
5704 s
5705 \end_layout
5706
5707 \end_inset
5708 </cell>
5709 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5710 \begin_inset Text
5711
5712 \begin_layout Standard
5713 s
5714 \end_layout
5715
5716 \end_inset
5717 </cell>
5718 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5719 \begin_inset Text
5720
5721 \begin_layout Standard
5722 s
5723 \end_layout
5724
5725 \end_inset
5726 </cell>
5727 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5728 \begin_inset Text
5729
5730 \begin_layout Standard
5731 asd
5732 \end_layout
5733
5734 \end_inset
5735 </cell>
5736 </row>
5737 <row topline="true">
5738 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5739 \begin_inset Text
5740
5741 \begin_layout Standard
5742 asd
5743 \end_layout
5744
5745 \end_inset
5746 </cell>
5747 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5748 \begin_inset Text
5749
5750 \begin_layout Standard
5751 s
5752 \end_layout
5753
5754 \end_inset
5755 </cell>
5756 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5757 \begin_inset Text
5758
5759 \begin_layout Standard
5760 s
5761 \end_layout
5762
5763 \end_inset
5764 </cell>
5765 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5766 \begin_inset Text
5767
5768 \begin_layout Standard
5769 s
5770 \end_layout
5771
5772 \end_inset
5773 </cell>
5774 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5775 \begin_inset Text
5776
5777 \begin_layout Standard
5778 asd
5779 \end_layout
5780
5781 \end_inset
5782 </cell>
5783 </row>
5784 <row topline="true" bottomline="true">
5785 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5786 \begin_inset Text
5787
5788 \begin_layout Standard
5789 asd
5790 \end_layout
5791
5792 \end_inset
5793 </cell>
5794 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5795 \begin_inset Text
5796
5797 \begin_layout Standard
5798 sad
5799 \end_layout
5800
5801 \end_inset
5802 </cell>
5803 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5804 \begin_inset Text
5805
5806 \begin_layout Standard
5807 asd
5808 \end_layout
5809
5810 \end_inset
5811 </cell>
5812 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5813 \begin_inset Text
5814
5815 \begin_layout Standard
5816 asd
5817 \end_layout
5818
5819 \end_inset
5820 </cell>
5821 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5822 \begin_inset Text
5823
5824 \begin_layout Standard
5825 asd
5826 \end_layout
5827
5828 \end_inset
5829 </cell>
5830 </row>
5831 </lyxtabular>
5832
5833 \end_inset
5834
5835
5836 \end_layout
5837
5838 \begin_layout Standard
5839 \begin_inset ERT
5840 status collapsed
5841
5842 \begin_layout Standard
5843
5844
5845 \backslash
5846 setlength{
5847 \backslash
5848 LTcapwidth}{5cm}
5849 \end_layout
5850
5851 \end_inset
5852
5853
5854 \begin_inset Tabular
5855 <lyxtabular version="3" rows="6" columns="5">
5856 <features islongtable="true">
5857 <column alignment="center" valignment="top" leftline="true" width="0">
5858 <column alignment="center" valignment="top" leftline="true" width="0">
5859 <column alignment="center" valignment="top" leftline="true" width="0">
5860 <column alignment="center" valignment="top" leftline="true" width="0">
5861 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
5862 <row>
5863 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5864 \begin_inset Text
5865
5866 \begin_layout Standard
5867 \begin_inset ERT
5868 status collapsed
5869
5870 \begin_layout Standard
5871
5872
5873 \backslash
5874 caption[caption with width
5875 \backslash
5876 ,=
5877 \backslash
5878 ,15
5879 \backslash
5880 ,cm]{long full title with width set to 5
5881 \backslash
5882 ,cm
5883 \end_layout
5884
5885 \begin_layout Standard
5886
5887 long full title with width set to 15
5888 \backslash
5889 ,cm long full title with width set to 5
5890 \backslash
5891 ,cm}
5892 \backslash
5893
5894 \backslash
5895 %
5896 \end_layout
5897
5898 \end_inset
5899
5900
5901 \end_layout
5902
5903 \end_inset
5904 </cell>
5905 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5906 \begin_inset Text
5907
5908 \begin_layout Standard
5909 \begin_inset ERT
5910 status collapsed
5911
5912 \begin_layout Standard
5913
5914 %
5915 \end_layout
5916
5917 \end_inset
5918
5919
5920 \end_layout
5921
5922 \end_inset
5923 </cell>
5924 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5925 \begin_inset Text
5926
5927 \begin_layout Standard
5928 \begin_inset ERT
5929 status collapsed
5930
5931 \begin_layout Standard
5932
5933 %
5934 \end_layout
5935
5936 \end_inset
5937
5938
5939 \end_layout
5940
5941 \end_inset
5942 </cell>
5943 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5944 \begin_inset Text
5945
5946 \begin_layout Standard
5947 \begin_inset ERT
5948 status collapsed
5949
5950 \begin_layout Standard
5951
5952 %
5953 \end_layout
5954
5955 \end_inset
5956
5957
5958 \end_layout
5959
5960 \end_inset
5961 </cell>
5962 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5963 \begin_inset Text
5964
5965 \begin_layout Standard
5966 \begin_inset ERT
5967 status collapsed
5968
5969 \begin_layout Standard
5970
5971 %
5972 \end_layout
5973
5974 \end_inset
5975
5976
5977 \end_layout
5978
5979 \end_inset
5980 </cell>
5981 </row>
5982 <row topline="true">
5983 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5984 \begin_inset Text
5985
5986 \begin_layout Standard
5987 1
5988 \end_layout
5989
5990 \end_inset
5991 </cell>
5992 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5993 \begin_inset Text
5994
5995 \begin_layout Standard
5996 2
5997 \end_layout
5998
5999 \end_inset
6000 </cell>
6001 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6002 \begin_inset Text
6003
6004 \begin_layout Standard
6005 3
6006 \end_layout
6007
6008 \end_inset
6009 </cell>
6010 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6011 \begin_inset Text
6012
6013 \begin_layout Standard
6014 4
6015 \end_layout
6016
6017 \end_inset
6018 </cell>
6019 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6020 \begin_inset Text
6021
6022 \begin_layout Standard
6023 5
6024 \end_layout
6025
6026 \end_inset
6027 </cell>
6028 </row>
6029 <row topline="true">
6030 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6031 \begin_inset Text
6032
6033 \begin_layout Standard
6034 asd
6035 \end_layout
6036
6037 \end_inset
6038 </cell>
6039 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6040 \begin_inset Text
6041
6042 \begin_layout Standard
6043 s
6044 \end_layout
6045
6046 \end_inset
6047 </cell>
6048 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6049 \begin_inset Text
6050
6051 \begin_layout Standard
6052 s
6053 \end_layout
6054
6055 \end_inset
6056 </cell>
6057 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6058 \begin_inset Text
6059
6060 \begin_layout Standard
6061 s
6062 \end_layout
6063
6064 \end_inset
6065 </cell>
6066 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6067 \begin_inset Text
6068
6069 \begin_layout Standard
6070 asd
6071 \end_layout
6072
6073 \end_inset
6074 </cell>
6075 </row>
6076 <row topline="true">
6077 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6078 \begin_inset Text
6079
6080 \begin_layout Standard
6081 asd
6082 \end_layout
6083
6084 \end_inset
6085 </cell>
6086 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6087 \begin_inset Text
6088
6089 \begin_layout Standard
6090 s
6091 \end_layout
6092
6093 \end_inset
6094 </cell>
6095 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6096 \begin_inset Text
6097
6098 \begin_layout Standard
6099 s
6100 \end_layout
6101
6102 \end_inset
6103 </cell>
6104 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6105 \begin_inset Text
6106
6107 \begin_layout Standard
6108 s
6109 \end_layout
6110
6111 \end_inset
6112 </cell>
6113 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6114 \begin_inset Text
6115
6116 \begin_layout Standard
6117 asd
6118 \end_layout
6119
6120 \end_inset
6121 </cell>
6122 </row>
6123 <row topline="true">
6124 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6125 \begin_inset Text
6126
6127 \begin_layout Standard
6128 asd
6129 \end_layout
6130
6131 \end_inset
6132 </cell>
6133 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6134 \begin_inset Text
6135
6136 \begin_layout Standard
6137 s
6138 \end_layout
6139
6140 \end_inset
6141 </cell>
6142 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6143 \begin_inset Text
6144
6145 \begin_layout Standard
6146 s
6147 \end_layout
6148
6149 \end_inset
6150 </cell>
6151 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6152 \begin_inset Text
6153
6154 \begin_layout Standard
6155 s
6156 \end_layout
6157
6158 \end_inset
6159 </cell>
6160 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6161 \begin_inset Text
6162
6163 \begin_layout Standard
6164 asd
6165 \end_layout
6166
6167 \end_inset
6168 </cell>
6169 </row>
6170 <row topline="true" bottomline="true">
6171 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6172 \begin_inset Text
6173
6174 \begin_layout Standard
6175 asd
6176 \end_layout
6177
6178 \end_inset
6179 </cell>
6180 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6181 \begin_inset Text
6182
6183 \begin_layout Standard
6184 sad
6185 \end_layout
6186
6187 \end_inset
6188 </cell>
6189 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6190 \begin_inset Text
6191
6192 \begin_layout Standard
6193 asd
6194 \end_layout
6195
6196 \end_inset
6197 </cell>
6198 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6199 \begin_inset Text
6200
6201 \begin_layout Standard
6202 asd
6203 \end_layout
6204
6205 \end_inset
6206 </cell>
6207 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6208 \begin_inset Text
6209
6210 \begin_layout Standard
6211 asd
6212 \end_layout
6213
6214 \end_inset
6215 </cell>
6216 </row>
6217 </lyxtabular>
6218
6219 \end_inset
6220
6221
6222 \begin_inset ERT
6223 status collapsed
6224
6225 \begin_layout Standard
6226
6227
6228 \backslash
6229 setlength{
6230 \backslash
6231 LTcapwidth}{4in}
6232 \end_layout
6233
6234 \end_inset
6235
6236
6237 \end_layout
6238
6239 \begin_layout Standard
6240
6241 \end_layout
6242
6243 \begin_layout Subsubsection
6244 Different Captions for Table Pages
6245 \begin_inset LatexCommand index
6246 name "Longtables ! Different Captions for Pages"
6247
6248 \end_inset
6249
6250
6251 \end_layout
6252
6253 \begin_layout Standard
6254 When the other captions should differ from the one of the first table page,
6255  insert the 
6256 \series bold
6257
6258 \backslash
6259 caption
6260 \series default
6261  command with a non-empty short title in a dummy caption row marked as first
6262  header.
6263  The caption used for the other table pages is inserted as 
6264 \series bold
6265
6266 \backslash
6267 caption
6268 \series default
6269  command without a short title in a dummy caption row that is marked as
6270  main header.
6271  When this caption shouldn't include the table number, use the command 
6272 \series bold
6273
6274 \backslash
6275 caption*
6276 \series default
6277  instead of 
6278 \series bold
6279
6280 \backslash
6281 caption
6282 \series default
6283 .
6284  The label to reference the table is inserted into the caption of the first
6285  header.
6286  Table\InsetSpace ~
6287
6288 \begin_inset LatexCommand ref
6289 reference "tab:DiffCaptions"
6290
6291 \end_inset
6292
6293  is an example for a longtable with different heading where the second caption
6294  doesn't include the table number.
6295 \end_layout
6296
6297 \begin_layout Standard
6298 \align center
6299 \begin_inset Tabular
6300 <lyxtabular version="3" rows="60" columns="3">
6301 <features islongtable="true">
6302 <column alignment="left" valignment="top" leftline="true" width="0cm">
6303 <column alignment="left" valignment="top" rightline="true" width="0pt">
6304 <column alignment="right" valignment="top" rightline="true" width="0pt">
6305 <row endfirsthead="true">
6306 <cell alignment="right" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
6307 \begin_inset Text
6308
6309 \begin_layout Standard
6310 \begin_inset ERT
6311 status collapsed
6312
6313 \begin_layout Standard
6314
6315
6316 \backslash
6317 caption[Example Phone List]{Example Phone List 
6318 \end_layout
6319
6320 \end_inset
6321
6322
6323 \begin_inset LatexCommand label
6324 name "tab:DiffCaptions"
6325
6326 \end_inset
6327
6328
6329 \begin_inset ERT
6330 status collapsed
6331
6332 \begin_layout Standard
6333
6334 }
6335 \backslash
6336
6337 \backslash
6338 %
6339 \end_layout
6340
6341 \end_inset
6342
6343
6344 \end_layout
6345
6346 \end_inset
6347 </cell>
6348 <cell alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
6349 \begin_inset Text
6350
6351 \begin_layout Standard
6352 \begin_inset ERT
6353 status collapsed
6354
6355 \begin_layout Standard
6356
6357 %
6358 \end_layout
6359
6360 \end_inset
6361
6362
6363 \end_layout
6364
6365 \end_inset
6366 </cell>
6367 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6368 \begin_inset Text
6369
6370 \begin_layout Standard
6371 \begin_inset ERT
6372 status collapsed
6373
6374 \begin_layout Standard
6375
6376 %
6377 \end_layout
6378
6379 \end_inset
6380
6381
6382 \end_layout
6383
6384 \end_inset
6385 </cell>
6386 </row>
6387 <row topline="true" bottomline="true" endfirsthead="true">
6388 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6389 \begin_inset Text
6390
6391 \begin_layout Standard
6392
6393 \series bold
6394 Example Phone List (ignore the names)
6395 \end_layout
6396
6397 \end_inset
6398 </cell>
6399 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6400 \begin_inset Text
6401
6402 \begin_layout Standard
6403
6404 \end_layout
6405
6406 \end_inset
6407 </cell>
6408 <cell multicolumn="2" alignment="right" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6409 \begin_inset Text
6410
6411 \begin_layout Standard
6412
6413 \end_layout
6414
6415 \end_inset
6416 </cell>
6417 </row>
6418 <row topline="true" bottomline="true" endfirsthead="true">
6419 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
6420 \begin_inset Text
6421
6422 \begin_layout Standard
6423
6424 \series bold
6425 NAME
6426 \end_layout
6427
6428 \end_inset
6429 </cell>
6430 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
6431 \begin_inset Text
6432
6433 \begin_layout Standard
6434
6435 \end_layout
6436
6437 \end_inset
6438 </cell>
6439 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
6440 \begin_inset Text
6441
6442 \begin_layout Standard
6443
6444 \series bold
6445 TEL.
6446 \end_layout
6447
6448 \end_inset
6449 </cell>
6450 </row>
6451 <row bottomline="true" endhead="true">
6452 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6453 \begin_inset Text
6454
6455 \begin_layout Standard
6456 \begin_inset ERT
6457 status collapsed
6458
6459 \begin_layout Standard
6460
6461
6462 \backslash
6463 caption*{Continued Example Phone List}
6464 \backslash
6465
6466 \backslash
6467 %
6468 \end_layout
6469
6470 \end_inset
6471
6472
6473 \end_layout
6474
6475 \end_inset
6476 </cell>
6477 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6478 \begin_inset Text
6479
6480 \begin_layout Standard
6481 \begin_inset ERT
6482 status collapsed
6483
6484 \begin_layout Standard
6485
6486 %
6487 \end_layout
6488
6489 \end_inset
6490
6491
6492 \end_layout
6493
6494 \end_inset
6495 </cell>
6496 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6497 \begin_inset Text
6498
6499 \begin_layout Standard
6500 \begin_inset ERT
6501 status collapsed
6502
6503 \begin_layout Standard
6504
6505 %
6506 \end_layout
6507
6508 \end_inset
6509
6510
6511 \end_layout
6512
6513 \end_inset
6514 </cell>
6515 </row>
6516 <row topline="true" bottomline="true" endhead="true">
6517 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
6518 \begin_inset Text
6519
6520 \begin_layout Standard
6521
6522 \series bold
6523 Example Phone List
6524 \end_layout
6525
6526 \end_inset
6527 </cell>
6528 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
6529 \begin_inset Text
6530
6531 \begin_layout Standard
6532
6533 \end_layout
6534
6535 \end_inset
6536 </cell>
6537 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6538 \begin_inset Text
6539
6540 \begin_layout Standard
6541
6542 \end_layout
6543
6544 \end_inset
6545 </cell>
6546 </row>
6547 <row topline="true" bottomline="true" endhead="true">
6548 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
6549 \begin_inset Text
6550
6551 \begin_layout Standard
6552
6553 \series bold
6554 NAME
6555 \end_layout
6556
6557 \end_inset
6558 </cell>
6559 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
6560 \begin_inset Text
6561
6562 \begin_layout Standard
6563
6564 \end_layout
6565
6566 \end_inset
6567 </cell>
6568 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
6569 \begin_inset Text
6570
6571 \begin_layout Standard
6572
6573 \series bold
6574 TEL.
6575 \end_layout
6576
6577 \end_inset
6578 </cell>
6579 </row>
6580 <row topline="true" bottomline="true" endfoot="true">
6581 <cell multicolumn="1" alignment="right" valignment="top" topline="true" usebox="none">
6582 \begin_inset Text
6583
6584 \begin_layout Standard
6585 continued on next page
6586 \end_layout
6587
6588 \end_inset
6589 </cell>
6590 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
6591 \begin_inset Text
6592
6593 \begin_layout Standard
6594
6595 \end_layout
6596
6597 \end_inset
6598 </cell>
6599 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6600 \begin_inset Text
6601
6602 \begin_layout Standard
6603
6604 \end_layout
6605
6606 \end_inset
6607 </cell>
6608 </row>
6609 <row>
6610 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6611 \begin_inset Text
6612
6613 \begin_layout Standard
6614
6615 \series bold
6616 Annovi
6617 \end_layout
6618
6619 \end_inset
6620 </cell>
6621 <cell alignment="center" valignment="top" topline="true" usebox="none">
6622 \begin_inset Text
6623
6624 \begin_layout Standard
6625 Silvia
6626 \end_layout
6627
6628 \end_inset
6629 </cell>
6630 <cell alignment="right" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6631 \begin_inset Text
6632
6633 \begin_layout Standard
6634 111
6635 \end_layout
6636
6637 \end_inset
6638 </cell>
6639 </row>
6640 <row>
6641 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6642 \begin_inset Text
6643
6644 \begin_layout Standard
6645
6646 \series bold
6647 Bertoli
6648 \end_layout
6649
6650 \end_inset
6651 </cell>
6652 <cell alignment="center" valignment="top" topline="true" usebox="none">
6653 \begin_inset Text
6654
6655 \begin_layout Standard
6656 Stefano
6657 \end_layout
6658
6659 \end_inset
6660 </cell>
6661 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6662 \begin_inset Text
6663
6664 \begin_layout Standard
6665 111
6666 \end_layout
6667
6668 \end_inset
6669 </cell>
6670 </row>
6671 <row>
6672 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6673 \begin_inset Text
6674
6675 \begin_layout Standard
6676
6677 \series bold
6678 Bozzi
6679 \end_layout
6680
6681 \end_inset
6682 </cell>
6683 <cell alignment="center" valignment="top" topline="true" usebox="none">
6684 \begin_inset Text
6685
6686 \begin_layout Standard
6687 Walter
6688 \end_layout
6689
6690 \end_inset
6691 </cell>
6692 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6693 \begin_inset Text
6694
6695 \begin_layout Standard
6696 111
6697 \end_layout
6698
6699 \end_inset
6700 </cell>
6701 </row>
6702 <row>
6703 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6704 \begin_inset Text
6705
6706 \begin_layout Standard
6707
6708 \series bold
6709 Cachia
6710 \end_layout
6711
6712 \end_inset
6713 </cell>
6714 <cell alignment="center" valignment="top" topline="true" usebox="none">
6715 \begin_inset Text
6716
6717 \begin_layout Standard
6718 Maria
6719 \end_layout
6720
6721 \end_inset
6722 </cell>
6723 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6724 \begin_inset Text
6725
6726 \begin_layout Standard
6727 111
6728 \end_layout
6729
6730 \end_inset
6731 </cell>
6732 </row>
6733 <row>
6734 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6735 \begin_inset Text
6736
6737 \begin_layout Standard
6738
6739 \series bold
6740 Cachia
6741 \end_layout
6742
6743 \end_inset
6744 </cell>
6745 <cell alignment="center" valignment="top" topline="true" usebox="none">
6746 \begin_inset Text
6747
6748 \begin_layout Standard
6749 Maurizio
6750 \end_layout
6751
6752 \end_inset
6753 </cell>
6754 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6755 \begin_inset Text
6756
6757 \begin_layout Standard
6758 111
6759 \end_layout
6760
6761 \end_inset
6762 </cell>
6763 </row>
6764 <row>
6765 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6766 \begin_inset Text
6767
6768 \begin_layout Standard
6769
6770 \series bold
6771 Cinquemani
6772 \end_layout
6773
6774 \end_inset
6775 </cell>
6776 <cell alignment="center" valignment="top" topline="true" usebox="none">
6777 \begin_inset Text
6778
6779 \begin_layout Standard
6780 Giusi
6781 \end_layout
6782
6783 \end_inset
6784 </cell>
6785 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6786 \begin_inset Text
6787
6788 \begin_layout Standard
6789 111
6790 \end_layout
6791
6792 \end_inset
6793 </cell>
6794 </row>
6795 <row>
6796 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6797 \begin_inset Text
6798
6799 \begin_layout Standard
6800
6801 \series bold
6802 Colin
6803 \end_layout
6804
6805 \end_inset
6806 </cell>
6807 <cell alignment="center" valignment="top" topline="true" usebox="none">
6808 \begin_inset Text
6809
6810 \begin_layout Standard
6811 Bernard
6812 \end_layout
6813
6814 \end_inset
6815 </cell>
6816 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6817 \begin_inset Text
6818
6819 \begin_layout Standard
6820 111
6821 \end_layout
6822
6823 \end_inset
6824 </cell>
6825 </row>
6826 <row>
6827 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6828 \begin_inset Text
6829
6830 \begin_layout Standard
6831
6832 \series bold
6833 Concli
6834 \end_layout
6835
6836 \end_inset
6837 </cell>
6838 <cell alignment="center" valignment="top" topline="true" usebox="none">
6839 \begin_inset Text
6840
6841 \begin_layout Standard
6842 Gianfranco
6843 \end_layout
6844
6845 \end_inset
6846 </cell>
6847 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6848 \begin_inset Text
6849
6850 \begin_layout Standard
6851 111
6852 \end_layout
6853
6854 \end_inset
6855 </cell>
6856 </row>
6857 <row>
6858 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6859 \begin_inset Text
6860
6861 \begin_layout Standard
6862
6863 \series bold
6864 Dal Bosco
6865 \end_layout
6866
6867 \end_inset
6868 </cell>
6869 <cell alignment="center" valignment="top" topline="true" usebox="none">
6870 \begin_inset Text
6871
6872 \begin_layout Standard
6873 Carolina
6874 \end_layout
6875
6876 \end_inset
6877 </cell>
6878 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6879 \begin_inset Text
6880
6881 \begin_layout Standard
6882 111
6883 \end_layout
6884
6885 \end_inset
6886 </cell>
6887 </row>
6888 <row>
6889 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6890 \begin_inset Text
6891
6892 \begin_layout Standard
6893
6894 \series bold
6895 Dalpiaz
6896 \end_layout
6897
6898 \end_inset
6899 </cell>
6900 <cell alignment="center" valignment="top" topline="true" usebox="none">
6901 \begin_inset Text
6902
6903 \begin_layout Standard
6904 Annamaria
6905 \end_layout
6906
6907 \end_inset
6908 </cell>
6909 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6910 \begin_inset Text
6911
6912 \begin_layout Standard
6913 111
6914 \end_layout
6915
6916 \end_inset
6917 </cell>
6918 </row>
6919 <row>
6920 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6921 \begin_inset Text
6922
6923 \begin_layout Standard
6924
6925 \series bold
6926 Feliciello
6927 \end_layout
6928
6929 \end_inset
6930 </cell>
6931 <cell alignment="center" valignment="top" topline="true" usebox="none">
6932 \begin_inset Text
6933
6934 \begin_layout Standard
6935 Domenico
6936 \end_layout
6937
6938 \end_inset
6939 </cell>
6940 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6941 \begin_inset Text
6942
6943 \begin_layout Standard
6944 111
6945 \end_layout
6946
6947 \end_inset
6948 </cell>
6949 </row>
6950 <row>
6951 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6952 \begin_inset Text
6953
6954 \begin_layout Standard
6955
6956 \series bold
6957 Focarelli
6958 \end_layout
6959
6960 \end_inset
6961 </cell>
6962 <cell alignment="center" valignment="top" topline="true" usebox="none">
6963 \begin_inset Text
6964
6965 \begin_layout Standard
6966 Paola
6967 \end_layout
6968
6969 \end_inset
6970 </cell>
6971 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6972 \begin_inset Text
6973
6974 \begin_layout Standard
6975 111
6976 \end_layout
6977
6978 \end_inset
6979 </cell>
6980 </row>
6981 <row>
6982 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6983 \begin_inset Text
6984
6985 \begin_layout Standard
6986
6987 \series bold
6988 Galletti
6989 \end_layout
6990
6991 \end_inset
6992 </cell>
6993 <cell alignment="center" valignment="top" topline="true" usebox="none">
6994 \begin_inset Text
6995
6996 \begin_layout Standard
6997 Oreste
6998 \end_layout
6999
7000 \end_inset
7001 </cell>
7002 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7003 \begin_inset Text
7004
7005 \begin_layout Standard
7006 111
7007 \end_layout
7008
7009 \end_inset
7010 </cell>
7011 </row>
7012 <row>
7013 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7014 \begin_inset Text
7015
7016 \begin_layout Standard
7017
7018 \series bold
7019 Gasparini
7020 \end_layout
7021
7022 \end_inset
7023 </cell>
7024 <cell alignment="center" valignment="top" topline="true" usebox="none">
7025 \begin_inset Text
7026
7027 \begin_layout Standard
7028 Franca
7029 \end_layout
7030
7031 \end_inset
7032 </cell>
7033 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7034 \begin_inset Text
7035
7036 \begin_layout Standard
7037 111
7038 \end_layout
7039
7040 \end_inset
7041 </cell>
7042 </row>
7043 <row>
7044 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7045 \begin_inset Text
7046
7047 \begin_layout Standard
7048
7049 \series bold
7050 Rizzardi
7051 \series default
7052
7053 \begin_inset Foot
7054 status collapsed
7055
7056 \begin_layout Standard
7057 Example footnote
7058 \end_layout
7059
7060 \end_inset
7061
7062
7063 \end_layout
7064
7065 \end_inset
7066 </cell>
7067 <cell alignment="center" valignment="top" topline="true" usebox="none">
7068 \begin_inset Text
7069
7070 \begin_layout Standard
7071 Paola
7072 \end_layout
7073
7074 \end_inset
7075 </cell>
7076 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7077 \begin_inset Text
7078
7079 \begin_layout Standard
7080 111
7081 \end_layout
7082
7083 \end_inset
7084 </cell>
7085 </row>
7086 <row>
7087 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7088 \begin_inset Text
7089
7090 \begin_layout Standard
7091
7092 \series bold
7093 Lassini
7094 \end_layout
7095
7096 \end_inset
7097 </cell>
7098 <cell alignment="center" valignment="top" topline="true" usebox="none">
7099 \begin_inset Text
7100
7101 \begin_layout Standard
7102 Giancarlo
7103 \end_layout
7104
7105 \end_inset
7106 </cell>
7107 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7108 \begin_inset Text
7109
7110 \begin_layout Standard
7111 111
7112 \end_layout
7113
7114 \end_inset
7115 </cell>
7116 </row>
7117 <row>
7118 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7119 \begin_inset Text
7120
7121 \begin_layout Standard
7122
7123 \series bold
7124 Malfatti
7125 \end_layout
7126
7127 \end_inset
7128 </cell>
7129 <cell alignment="center" valignment="top" topline="true" usebox="none">
7130 \begin_inset Text
7131
7132 \begin_layout Standard
7133 Luciano
7134 \end_layout
7135
7136 \end_inset
7137 </cell>
7138 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7139 \begin_inset Text
7140
7141 \begin_layout Standard
7142 111
7143 \end_layout
7144
7145 \end_inset
7146 </cell>
7147 </row>
7148 <row>
7149 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7150 \begin_inset Text
7151
7152 \begin_layout Standard
7153
7154 \series bold
7155 Malfatti
7156 \end_layout
7157
7158 \end_inset
7159 </cell>
7160 <cell alignment="center" valignment="top" topline="true" usebox="none">
7161 \begin_inset Text
7162
7163 \begin_layout Standard
7164 Valeriano
7165 \end_layout
7166
7167 \end_inset
7168 </cell>
7169 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7170 \begin_inset Text
7171
7172 \begin_layout Standard
7173 111
7174 \end_layout
7175
7176 \end_inset
7177 </cell>
7178 </row>
7179 <row>
7180 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7181 \begin_inset Text
7182
7183 \begin_layout Standard
7184
7185 \series bold
7186 Meneguzzo
7187 \end_layout
7188
7189 \end_inset
7190 </cell>
7191 <cell alignment="center" valignment="top" topline="true" usebox="none">
7192 \begin_inset Text
7193
7194 \begin_layout Standard
7195 Roberto
7196 \end_layout
7197
7198 \end_inset
7199 </cell>
7200 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7201 \begin_inset Text
7202
7203 \begin_layout Standard
7204 111
7205 \end_layout
7206
7207 \end_inset
7208 </cell>
7209 </row>
7210 <row>
7211 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7212 \begin_inset Text
7213
7214 \begin_layout Standard
7215
7216 \series bold
7217 Mezzadra
7218 \end_layout
7219
7220 \end_inset
7221 </cell>
7222 <cell alignment="center" valignment="top" topline="true" usebox="none">
7223 \begin_inset Text
7224
7225 \begin_layout Standard
7226 Roberto
7227 \end_layout
7228
7229 \end_inset
7230 </cell>
7231 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7232 \begin_inset Text
7233
7234 \begin_layout Standard
7235 111
7236 \end_layout
7237
7238 \end_inset
7239 </cell>
7240 </row>
7241 <row>
7242 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7243 \begin_inset Text
7244
7245 \begin_layout Standard
7246
7247 \series bold
7248 Pirpamer
7249 \end_layout
7250
7251 \end_inset
7252 </cell>
7253 <cell alignment="center" valignment="top" topline="true" usebox="none">
7254 \begin_inset Text
7255
7256 \begin_layout Standard
7257 Erich
7258 \end_layout
7259
7260 \end_inset
7261 </cell>
7262 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7263 \begin_inset Text
7264
7265 \begin_layout Standard
7266 111
7267 \end_layout
7268
7269 \end_inset
7270 </cell>
7271 </row>
7272 <row>
7273 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7274 \begin_inset Text
7275
7276 \begin_layout Standard
7277
7278 \series bold
7279 Pochiesa
7280 \end_layout
7281
7282 \end_inset
7283 </cell>
7284 <cell alignment="center" valignment="top" topline="true" usebox="none">
7285 \begin_inset Text
7286
7287 \begin_layout Standard
7288 Paolo
7289 \end_layout
7290
7291 \end_inset
7292 </cell>
7293 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7294 \begin_inset Text
7295
7296 \begin_layout Standard
7297 111, 222
7298 \end_layout
7299
7300 \end_inset
7301 </cell>
7302 </row>
7303 <row>
7304 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7305 \begin_inset Text
7306
7307 \begin_layout Standard
7308
7309 \series bold
7310 Radina
7311 \end_layout
7312
7313 \end_inset
7314 </cell>
7315 <cell alignment="center" valignment="top" topline="true" usebox="none">
7316 \begin_inset Text
7317
7318 \begin_layout Standard
7319 Claudio
7320 \end_layout
7321
7322 \end_inset
7323 </cell>
7324 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7325 \begin_inset Text
7326
7327 \begin_layout Standard
7328 111
7329 \end_layout
7330
7331 \end_inset
7332 </cell>
7333 </row>
7334 <row>
7335 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7336 \begin_inset Text
7337
7338 \begin_layout Standard
7339
7340 \series bold
7341 Stuffer
7342 \end_layout
7343
7344 \end_inset
7345 </cell>
7346 <cell alignment="center" valignment="top" topline="true" usebox="none">
7347 \begin_inset Text
7348
7349 \begin_layout Standard
7350 Oskar
7351 \end_layout
7352
7353 \end_inset
7354 </cell>
7355 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7356 \begin_inset Text
7357
7358 \begin_layout Standard
7359 111
7360 \end_layout
7361
7362 \end_inset
7363 </cell>
7364 </row>
7365 <row>
7366 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7367 \begin_inset Text
7368
7369 \begin_layout Standard
7370
7371 \series bold
7372 Tacchelli
7373 \end_layout
7374
7375 \end_inset
7376 </cell>
7377 <cell alignment="center" valignment="top" topline="true" usebox="none">
7378 \begin_inset Text
7379
7380 \begin_layout Standard
7381 Ugo
7382 \end_layout
7383
7384 \end_inset
7385 </cell>
7386 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7387 \begin_inset Text
7388
7389 \begin_layout Standard
7390 111
7391 \end_layout
7392
7393 \end_inset
7394 </cell>
7395 </row>
7396 <row>
7397 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7398 \begin_inset Text
7399
7400 \begin_layout Standard
7401
7402 \series bold
7403 Tezzele
7404 \end_layout
7405
7406 \end_inset
7407 </cell>
7408 <cell alignment="center" valignment="top" topline="true" usebox="none">
7409 \begin_inset Text
7410
7411 \begin_layout Standard
7412 Margit
7413 \end_layout
7414
7415 \end_inset
7416 </cell>
7417 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7418 \begin_inset Text
7419
7420 \begin_layout Standard
7421 111
7422 \end_layout
7423
7424 \end_inset
7425 </cell>
7426 </row>
7427 <row>
7428 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7429 \begin_inset Text
7430
7431 \begin_layout Standard
7432
7433 \series bold
7434 Unterkalmsteiner
7435 \end_layout
7436
7437 \end_inset
7438 </cell>
7439 <cell alignment="center" valignment="top" topline="true" usebox="none">
7440 \begin_inset Text
7441
7442 \begin_layout Standard
7443 Frieda
7444 \end_layout
7445
7446 \end_inset
7447 </cell>
7448 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7449 \begin_inset Text
7450
7451 \begin_layout Standard
7452 111
7453 \end_layout
7454
7455 \end_inset
7456 </cell>
7457 </row>
7458 <row>
7459 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7460 \begin_inset Text
7461
7462 \begin_layout Standard
7463
7464 \series bold
7465 Vieider
7466 \end_layout
7467
7468 \end_inset
7469 </cell>
7470 <cell alignment="center" valignment="top" topline="true" usebox="none">
7471 \begin_inset Text
7472
7473 \begin_layout Standard
7474 Hilde
7475 \end_layout
7476
7477 \end_inset
7478 </cell>
7479 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7480 \begin_inset Text
7481
7482 \begin_layout Standard
7483 111
7484 \end_layout
7485
7486 \end_inset
7487 </cell>
7488 </row>
7489 <row>
7490 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7491 \begin_inset Text
7492
7493 \begin_layout Standard
7494
7495 \series bold
7496 Vigna
7497 \end_layout
7498
7499 \end_inset
7500 </cell>
7501 <cell alignment="center" valignment="top" topline="true" usebox="none">
7502 \begin_inset Text
7503
7504 \begin_layout Standard
7505 Jürgen
7506 \end_layout
7507
7508 \end_inset
7509 </cell>
7510 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7511 \begin_inset Text
7512
7513 \begin_layout Standard
7514 111
7515 \end_layout
7516
7517 \end_inset
7518 </cell>
7519 </row>
7520 <row>
7521 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7522 \begin_inset Text
7523
7524 \begin_layout Standard
7525
7526 \series bold
7527 Weber
7528 \end_layout
7529
7530 \end_inset
7531 </cell>
7532 <cell alignment="center" valignment="top" topline="true" usebox="none">
7533 \begin_inset Text
7534
7535 \begin_layout Standard
7536 Maurizio
7537 \end_layout
7538
7539 \end_inset
7540 </cell>
7541 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7542 \begin_inset Text
7543
7544 \begin_layout Standard
7545 111
7546 \end_layout
7547
7548 \end_inset
7549 </cell>
7550 </row>
7551 <row bottomline="true">
7552 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7553 \begin_inset Text
7554
7555 \begin_layout Standard
7556
7557 \series bold
7558 Winkler
7559 \end_layout
7560
7561 \end_inset
7562 </cell>
7563 <cell alignment="center" valignment="top" topline="true" usebox="none">
7564 \begin_inset Text
7565
7566 \begin_layout Standard
7567 Franz
7568 \end_layout
7569
7570 \end_inset
7571 </cell>
7572 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7573 \begin_inset Text
7574
7575 \begin_layout Standard
7576 111
7577 \end_layout
7578
7579 \end_inset
7580 </cell>
7581 </row>
7582 <row bottomline="true">
7583 <cell multicolumn="1" alignment="left" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
7584 \begin_inset Text
7585
7586 \begin_layout Standard
7587  
7588 \end_layout
7589
7590 \end_inset
7591 </cell>
7592 <cell multicolumn="2" alignment="center" valignment="top" topline="true" usebox="none">
7593 \begin_inset Text
7594
7595 \begin_layout Standard
7596
7597 \end_layout
7598
7599 \end_inset
7600 </cell>
7601 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7602 \begin_inset Text
7603
7604 \begin_layout Standard
7605
7606 \end_layout
7607
7608 \end_inset
7609 </cell>
7610 </row>
7611 <row>
7612 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7613 \begin_inset Text
7614
7615 \begin_layout Standard
7616
7617 \series bold
7618 Annovi
7619 \end_layout
7620
7621 \end_inset
7622 </cell>
7623 <cell alignment="center" valignment="top" topline="true" usebox="none">
7624 \begin_inset Text
7625
7626 \begin_layout Standard
7627 Silvia
7628 \end_layout
7629
7630 \end_inset
7631 </cell>
7632 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7633 \begin_inset Text
7634
7635 \begin_layout Standard
7636 555
7637 \end_layout
7638
7639 \end_inset
7640 </cell>
7641 </row>
7642 <row>
7643 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7644 \begin_inset Text
7645
7646 \begin_layout Standard
7647
7648 \series bold
7649 Bertoli
7650 \end_layout
7651
7652 \end_inset
7653 </cell>
7654 <cell alignment="center" valignment="top" topline="true" usebox="none">
7655 \begin_inset Text
7656
7657 \begin_layout Standard
7658 Stefano
7659 \end_layout
7660
7661 \end_inset
7662 </cell>
7663 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7664 \begin_inset Text
7665
7666 \begin_layout Standard
7667 555
7668 \end_layout
7669
7670 \end_inset
7671 </cell>
7672 </row>
7673 <row>
7674 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7675 \begin_inset Text
7676
7677 \begin_layout Standard
7678
7679 \series bold
7680 Bozzi
7681 \end_layout
7682
7683 \end_inset
7684 </cell>
7685 <cell alignment="center" valignment="top" topline="true" usebox="none">
7686 \begin_inset Text
7687
7688 \begin_layout Standard
7689 Walter
7690 \end_layout
7691
7692 \end_inset
7693 </cell>
7694 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7695 \begin_inset Text
7696
7697 \begin_layout Standard
7698 555
7699 \end_layout
7700
7701 \end_inset
7702 </cell>
7703 </row>
7704 <row>
7705 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7706 \begin_inset Text
7707
7708 \begin_layout Standard
7709
7710 \series bold
7711 Cachia
7712 \end_layout
7713
7714 \end_inset
7715 </cell>
7716 <cell alignment="center" valignment="top" topline="true" usebox="none">
7717 \begin_inset Text
7718
7719 \begin_layout Standard
7720 Maria
7721 \end_layout
7722
7723 \end_inset
7724 </cell>
7725 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7726 \begin_inset Text
7727
7728 \begin_layout Standard
7729 555
7730 \end_layout
7731
7732 \end_inset
7733 </cell>
7734 </row>
7735 <row>
7736 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7737 \begin_inset Text
7738
7739 \begin_layout Standard
7740
7741 \series bold
7742 Cachia
7743 \end_layout
7744
7745 \end_inset
7746 </cell>
7747 <cell alignment="center" valignment="top" topline="true" usebox="none">
7748 \begin_inset Text
7749
7750 \begin_layout Standard
7751 Maurizio
7752 \end_layout
7753
7754 \end_inset
7755 </cell>
7756 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7757 \begin_inset Text
7758
7759 \begin_layout Standard
7760 555
7761 \end_layout
7762
7763 \end_inset
7764 </cell>
7765 </row>
7766 <row>
7767 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7768 \begin_inset Text
7769
7770 \begin_layout Standard
7771
7772 \series bold
7773 Cinquemani
7774 \end_layout
7775
7776 \end_inset
7777 </cell>
7778 <cell alignment="center" valignment="top" topline="true" usebox="none">
7779 \begin_inset Text
7780
7781 \begin_layout Standard
7782 Giusi
7783 \end_layout
7784
7785 \end_inset
7786 </cell>
7787 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7788 \begin_inset Text
7789
7790 \begin_layout Standard
7791 555
7792 \end_layout
7793
7794 \end_inset
7795 </cell>
7796 </row>
7797 <row>
7798 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7799 \begin_inset Text
7800
7801 \begin_layout Standard
7802
7803 \series bold
7804 Colin
7805 \end_layout
7806
7807 \end_inset
7808 </cell>
7809 <cell alignment="center" valignment="top" topline="true" usebox="none">
7810 \begin_inset Text
7811
7812 \begin_layout Standard
7813 Bernard
7814 \end_layout
7815
7816 \end_inset
7817 </cell>
7818 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7819 \begin_inset Text
7820
7821 \begin_layout Standard
7822 555
7823 \end_layout
7824
7825 \end_inset
7826 </cell>
7827 </row>
7828 <row>
7829 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7830 \begin_inset Text
7831
7832 \begin_layout Standard
7833
7834 \series bold
7835 Concli
7836 \end_layout
7837
7838 \end_inset
7839 </cell>
7840 <cell alignment="center" valignment="top" topline="true" usebox="none">
7841 \begin_inset Text
7842
7843 \begin_layout Standard
7844 Gianfranco
7845 \end_layout
7846
7847 \end_inset
7848 </cell>
7849 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7850 \begin_inset Text
7851
7852 \begin_layout Standard
7853 555
7854 \end_layout
7855
7856 \end_inset
7857 </cell>
7858 </row>
7859 <row>
7860 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7861 \begin_inset Text
7862
7863 \begin_layout Standard
7864
7865 \series bold
7866 Dal Bosco
7867 \end_layout
7868
7869 \end_inset
7870 </cell>
7871 <cell alignment="center" valignment="top" topline="true" usebox="none">
7872 \begin_inset Text
7873
7874 \begin_layout Standard
7875 Carolina
7876 \end_layout
7877
7878 \end_inset
7879 </cell>
7880 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7881 \begin_inset Text
7882
7883 \begin_layout Standard
7884 555
7885 \end_layout
7886
7887 \end_inset
7888 </cell>
7889 </row>
7890 <row>
7891 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7892 \begin_inset Text
7893
7894 \begin_layout Standard
7895
7896 \series bold
7897 Dalpiaz
7898 \end_layout
7899
7900 \end_inset
7901 </cell>
7902 <cell alignment="center" valignment="top" topline="true" usebox="none">
7903 \begin_inset Text
7904
7905 \begin_layout Standard
7906 Annamaria
7907 \end_layout
7908
7909 \end_inset
7910 </cell>
7911 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7912 \begin_inset Text
7913
7914 \begin_layout Standard
7915 555
7916 \end_layout
7917
7918 \end_inset
7919 </cell>
7920 </row>
7921 <row>
7922 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7923 \begin_inset Text
7924
7925 \begin_layout Standard
7926
7927 \series bold
7928 Feliciello
7929 \end_layout
7930
7931 \end_inset
7932 </cell>
7933 <cell alignment="center" valignment="top" topline="true" usebox="none">
7934 \begin_inset Text
7935
7936 \begin_layout Standard
7937 Domenico
7938 \end_layout
7939
7940 \end_inset
7941 </cell>
7942 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7943 \begin_inset Text
7944
7945 \begin_layout Standard
7946 555
7947 \end_layout
7948
7949 \end_inset
7950 </cell>
7951 </row>
7952 <row>
7953 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7954 \begin_inset Text
7955
7956 \begin_layout Standard
7957
7958 \series bold
7959 Focarelli
7960 \end_layout
7961
7962 \end_inset
7963 </cell>
7964 <cell alignment="center" valignment="top" topline="true" usebox="none">
7965 \begin_inset Text
7966
7967 \begin_layout Standard
7968 Paola
7969 \end_layout
7970
7971 \end_inset
7972 </cell>
7973 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7974 \begin_inset Text
7975
7976 \begin_layout Standard
7977 555
7978 \end_layout
7979
7980 \end_inset
7981 </cell>
7982 </row>
7983 <row>
7984 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7985 \begin_inset Text
7986
7987 \begin_layout Standard
7988
7989 \series bold
7990 Galletti
7991 \end_layout
7992
7993 \end_inset
7994 </cell>
7995 <cell alignment="center" valignment="top" topline="true" usebox="none">
7996 \begin_inset Text
7997
7998 \begin_layout Standard
7999 Oreste
8000 \end_layout
8001
8002 \end_inset
8003 </cell>
8004 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8005 \begin_inset Text
8006
8007 \begin_layout Standard
8008 555
8009 \end_layout
8010
8011 \end_inset
8012 </cell>
8013 </row>
8014 <row>
8015 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8016 \begin_inset Text
8017
8018 \begin_layout Standard
8019
8020 \series bold
8021 Gasparini
8022 \end_layout
8023
8024 \end_inset
8025 </cell>
8026 <cell alignment="center" valignment="top" topline="true" usebox="none">
8027 \begin_inset Text
8028
8029 \begin_layout Standard
8030 Franca
8031 \end_layout
8032
8033 \end_inset
8034 </cell>
8035 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8036 \begin_inset Text
8037
8038 \begin_layout Standard
8039 555
8040 \end_layout
8041
8042 \end_inset
8043 </cell>
8044 </row>
8045 <row>
8046 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8047 \begin_inset Text
8048
8049 \begin_layout Standard
8050
8051 \series bold
8052 Rizzardi
8053 \end_layout
8054
8055 \end_inset
8056 </cell>
8057 <cell alignment="center" valignment="top" topline="true" usebox="none">
8058 \begin_inset Text
8059
8060 \begin_layout Standard
8061 Paola
8062 \end_layout
8063
8064 \end_inset
8065 </cell>
8066 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8067 \begin_inset Text
8068
8069 \begin_layout Standard
8070 555
8071 \end_layout
8072
8073 \end_inset
8074 </cell>
8075 </row>
8076 <row>
8077 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8078 \begin_inset Text
8079
8080 \begin_layout Standard
8081
8082 \series bold
8083 Lassini
8084 \end_layout
8085
8086 \end_inset
8087 </cell>
8088 <cell alignment="center" valignment="top" topline="true" usebox="none">
8089 \begin_inset Text
8090
8091 \begin_layout Standard
8092 Giancarlo
8093 \end_layout
8094
8095 \end_inset
8096 </cell>
8097 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8098 \begin_inset Text
8099
8100 \begin_layout Standard
8101 555
8102 \end_layout
8103
8104 \end_inset
8105 </cell>
8106 </row>
8107 <row>
8108 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8109 \begin_inset Text
8110
8111 \begin_layout Standard
8112
8113 \series bold
8114 Malfatti
8115 \end_layout
8116
8117 \end_inset
8118 </cell>
8119 <cell alignment="center" valignment="top" topline="true" usebox="none">
8120 \begin_inset Text
8121
8122 \begin_layout Standard
8123 Luciano
8124 \end_layout
8125
8126 \end_inset
8127 </cell>
8128 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8129 \begin_inset Text
8130
8131 \begin_layout Standard
8132 555
8133 \end_layout
8134
8135 \end_inset
8136 </cell>
8137 </row>
8138 <row>
8139 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8140 \begin_inset Text
8141
8142 \begin_layout Standard
8143
8144 \series bold
8145 Malfatti
8146 \end_layout
8147
8148 \end_inset
8149 </cell>
8150 <cell alignment="center" valignment="top" topline="true" usebox="none">
8151 \begin_inset Text
8152
8153 \begin_layout Standard
8154 Valeriano
8155 \end_layout
8156
8157 \end_inset
8158 </cell>
8159 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8160 \begin_inset Text
8161
8162 \begin_layout Standard
8163 555
8164 \end_layout
8165
8166 \end_inset
8167 </cell>
8168 </row>
8169 <row>
8170 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8171 \begin_inset Text
8172
8173 \begin_layout Standard
8174
8175 \series bold
8176 Meneguzzo
8177 \end_layout
8178
8179 \end_inset
8180 </cell>
8181 <cell alignment="center" valignment="top" topline="true" usebox="none">
8182 \begin_inset Text
8183
8184 \begin_layout Standard
8185 Roberto
8186 \end_layout
8187
8188 \end_inset
8189 </cell>
8190 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8191 \begin_inset Text
8192
8193 \begin_layout Standard
8194 555
8195 \end_layout
8196
8197 \end_inset
8198 </cell>
8199 </row>
8200 <row bottomline="true">
8201 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8202 \begin_inset Text
8203
8204 \begin_layout Standard
8205
8206 \series bold
8207 Mezzadra
8208 \end_layout
8209
8210 \end_inset
8211 </cell>
8212 <cell alignment="center" valignment="top" topline="true" usebox="none">
8213 \begin_inset Text
8214
8215 \begin_layout Standard
8216 Roberto
8217 \end_layout
8218
8219 \end_inset
8220 </cell>
8221 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8222 \begin_inset Text
8223
8224 \begin_layout Standard
8225 555
8226 \end_layout
8227
8228 \end_inset
8229 </cell>
8230 </row>
8231 <row bottomline="true" endlastfoot="true">
8232 <cell multicolumn="1" alignment="left" valignment="top" usebox="none">
8233 \begin_inset Text
8234
8235 \begin_layout Standard
8236
8237 \end_layout
8238
8239 \end_inset
8240 </cell>
8241 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8242 \begin_inset Text
8243
8244 \begin_layout Standard
8245
8246 \end_layout
8247
8248 \end_inset
8249 </cell>
8250 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8251 \begin_inset Text
8252
8253 \begin_layout Standard
8254
8255 \end_layout
8256
8257 \end_inset
8258 </cell>
8259 </row>
8260 </lyxtabular>
8261
8262 \end_inset
8263
8264
8265 \end_layout
8266
8267 \begin_layout Section
8268 Special Longtable Issues
8269 \begin_inset LatexCommand label
8270 name "sec:Special-Longtable-Issues"
8271
8272 \end_inset
8273
8274
8275 \end_layout
8276
8277 \begin_layout Subsection
8278 Longtable Calculation
8279 \begin_inset LatexCommand index
8280 name "Longtables ! Calculation"
8281
8282 \end_inset
8283
8284
8285 \end_layout
8286
8287 \begin_layout Standard
8288 LaTeX calculates the height of table pages and their page breaks using so
8289  called chunks.
8290  Chunks are pieces of the tables that are at once in LaTeX's memory.
8291  The default value is historically set to only 20 table rows.
8292  If you are using longtables with many pages this may slow down the creation
8293  of your document.
8294  You can safely increase the chunk size to values of 100-1000 by adding
8295  this command line to your document preamble:
8296 \end_layout
8297
8298 \begin_layout Standard
8299
8300 \series bold
8301
8302 \backslash
8303 setcounter{LTchunksize}{100}
8304 \end_layout
8305
8306 \begin_layout Subsection
8307 Floats and Longtables
8308 \begin_inset LatexCommand index
8309 name "Longtables ! Floats"
8310
8311 \end_inset
8312
8313
8314 \end_layout
8315
8316 \begin_layout Standard
8317 There might be problems when a float appears on the same page where a longtable
8318  starts.
8319  To avoid such situation, add the command 
8320 \series bold
8321
8322 \backslash
8323 clearpage
8324 \series default
8325  as ERT before your longtable.
8326 \end_layout
8327
8328 \begin_layout Subsection
8329 Forced Page Breaks
8330 \begin_inset LatexCommand index
8331 name "Longtables ! Forced Page Breaks"
8332
8333 \end_inset
8334
8335
8336 \end_layout
8337
8338 \begin_layout Standard
8339 By default tables are only broken between rows.
8340  If you have a cell with multiples lines and want to have a page break within
8341  the cell, insert the new line command 
8342 \begin_inset Quotes eld
8343 \end_inset
8344
8345
8346 \series bold
8347
8348 \backslash
8349
8350 \backslash
8351
8352 \series default
8353
8354 \begin_inset Quotes erd
8355 \end_inset
8356
8357  as ERT at this point of the cell where it should be broken.
8358  Before the 
8359 \series bold
8360
8361 \backslash
8362
8363 \backslash
8364
8365 \series default
8366  command you have to insert in ERT so many 
8367 \begin_inset Quotes eld
8368 \end_inset
8369
8370
8371 \series bold
8372 &
8373 \series default
8374
8375 \begin_inset Quotes erd
8376 \end_inset
8377
8378  characters like the number of the following table columns.
8379  The 
8380 \series bold
8381 &
8382 \series default
8383  is the character to separate table cells.
8384  Write in ERT after each 
8385 \series bold
8386 &
8387 \series default
8388  the content of the corresponding following cell and delete the content
8389  of these cells.
8390 \newline
8391 Behind the the 
8392 \series bold
8393
8394 \backslash
8395
8396 \backslash
8397
8398 \series default
8399  command, insert so many 
8400 \series bold
8401 &
8402 \series default
8403  characters like the number of table columns before the current column.
8404  In Table\InsetSpace ~
8405
8406 \begin_inset LatexCommand ref
8407 reference "tab:ForcedPagebreak"
8408
8409 \end_inset
8410
8411  the cell that should be broken is in the second column followed by another
8412  column.
8413  Therefore the following command was inserted in the cell as ERT behind
8414  
8415 \begin_inset Quotes eld
8416 \end_inset
8417
8418
8419 \emph on
8420 Castelchiodato,
8421 \emph default
8422
8423 \begin_inset Quotes erd
8424 \end_inset
8425
8426 :
8427 \end_layout
8428
8429 \begin_layout Standard
8430
8431 \series bold
8432 & 111
8433 \backslash
8434
8435 \backslash
8436
8437 \newline
8438 &
8439 \end_layout
8440
8441 \begin_layout Standard
8442 The 
8443 \begin_inset Quotes eld
8444 \end_inset
8445
8446 111
8447 \begin_inset Quotes erd
8448 \end_inset
8449
8450  in the third columns of the row was deleted.
8451  If your footer row of the longtable has for a certain reason no upper line
8452  but you would have a horizontal line where the cell is broken, use this
8453  command instead:
8454 \end_layout
8455
8456 \begin_layout Standard
8457
8458 \series bold
8459 & 111
8460 \backslash
8461
8462 \backslash
8463
8464 \newline
8465
8466 \backslash
8467 hline &
8468 \end_layout
8469
8470 \begin_layout Standard
8471 When the cell to be broken is in the last column, the command
8472 \end_layout
8473
8474 \begin_layout Standard
8475
8476 \series bold
8477
8478 \backslash
8479 setlength{
8480 \backslash
8481 parf\SpecialChar \textcompwordmark{}
8482 illskip}{0pt}
8483 \end_layout
8484
8485 \begin_layout Standard
8486 must be inserted as ERT at the beginning of the cell.
8487  This assures that the part of the cell that will be displayed on the new
8488  page appears with the full width.
8489  
8490 \end_layout
8491
8492 \begin_layout Standard
8493 \align center
8494 \begin_inset Tabular
8495 <lyxtabular version="3" rows="39" columns="3">
8496 <features islongtable="true">
8497 <column alignment="left" valignment="top" leftline="true" width="0cm">
8498 <column alignment="left" valignment="top" rightline="true" width="3cm">
8499 <column alignment="right" valignment="top" rightline="true" width="0pt">
8500 <row endfirsthead="true">
8501 <cell alignment="right" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8502 \begin_inset Text
8503
8504 \begin_layout Standard
8505 \begin_inset ERT
8506 status collapsed
8507
8508 \begin_layout Standard
8509
8510
8511 \backslash
8512 caption[Table with forced page break in table cell]{Table with forced page
8513  break in table cell 
8514 \end_layout
8515
8516 \end_inset
8517
8518
8519 \begin_inset LatexCommand label
8520 name "tab:ForcedPagebreak"
8521
8522 \end_inset
8523
8524
8525 \begin_inset ERT
8526 status collapsed
8527
8528 \begin_layout Standard
8529
8530 }
8531 \backslash
8532
8533 \backslash
8534 %
8535 \end_layout
8536
8537 \end_inset
8538
8539
8540 \end_layout
8541
8542 \end_inset
8543 </cell>
8544 <cell alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
8545 \begin_inset Text
8546
8547 \begin_layout Standard
8548 \begin_inset ERT
8549 status collapsed
8550
8551 \begin_layout Standard
8552
8553 %
8554 \end_layout
8555
8556 \end_inset
8557
8558
8559 \end_layout
8560
8561 \end_inset
8562 </cell>
8563 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8564 \begin_inset Text
8565
8566 \begin_layout Standard
8567 \begin_inset ERT
8568 status collapsed
8569
8570 \begin_layout Standard
8571
8572 %
8573 \end_layout
8574
8575 \end_inset
8576
8577
8578 \end_layout
8579
8580 \end_inset
8581 </cell>
8582 </row>
8583 <row topline="true" bottomline="true" endfirsthead="true">
8584 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8585 \begin_inset Text
8586
8587 \begin_layout Standard
8588
8589 \series bold
8590 Example Phone List (ignore the names)
8591 \end_layout
8592
8593 \end_inset
8594 </cell>
8595 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8596 \begin_inset Text
8597
8598 \begin_layout Standard
8599
8600 \end_layout
8601
8602 \end_inset
8603 </cell>
8604 <cell multicolumn="2" alignment="right" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8605 \begin_inset Text
8606
8607 \begin_layout Standard
8608
8609 \end_layout
8610
8611 \end_inset
8612 </cell>
8613 </row>
8614 <row topline="true" bottomline="true" endfirsthead="true">
8615 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8616 \begin_inset Text
8617
8618 \begin_layout Standard
8619
8620 \series bold
8621 NAME
8622 \end_layout
8623
8624 \end_inset
8625 </cell>
8626 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
8627 \begin_inset Text
8628
8629 \begin_layout Standard
8630
8631 \end_layout
8632
8633 \end_inset
8634 </cell>
8635 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8636 \begin_inset Text
8637
8638 \begin_layout Standard
8639
8640 \series bold
8641 TEL.
8642 \end_layout
8643
8644 \end_inset
8645 </cell>
8646 </row>
8647 <row bottomline="true" endhead="true">
8648 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8649 \begin_inset Text
8650
8651 \begin_layout Standard
8652 \begin_inset ERT
8653 status collapsed
8654
8655 \begin_layout Standard
8656
8657
8658 \backslash
8659 caption{Continued table with forced page break in table cell}
8660 \backslash
8661
8662 \backslash
8663 %
8664 \end_layout
8665
8666 \end_inset
8667
8668
8669 \end_layout
8670
8671 \end_inset
8672 </cell>
8673 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8674 \begin_inset Text
8675
8676 \begin_layout Standard
8677 \begin_inset ERT
8678 status collapsed
8679
8680 \begin_layout Standard
8681
8682 %
8683 \end_layout
8684
8685 \end_inset
8686
8687
8688 \end_layout
8689
8690 \end_inset
8691 </cell>
8692 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8693 \begin_inset Text
8694
8695 \begin_layout Standard
8696 \begin_inset ERT
8697 status collapsed
8698
8699 \begin_layout Standard
8700
8701 %
8702 \end_layout
8703
8704 \end_inset
8705
8706
8707 \end_layout
8708
8709 \end_inset
8710 </cell>
8711 </row>
8712 <row topline="true" bottomline="true" endhead="true">
8713 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8714 \begin_inset Text
8715
8716 \begin_layout Standard
8717
8718 \series bold
8719  Example Phone List
8720 \end_layout
8721
8722 \end_inset
8723 </cell>
8724 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
8725 \begin_inset Text
8726
8727 \begin_layout Standard
8728
8729 \end_layout
8730
8731 \end_inset
8732 </cell>
8733 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8734 \begin_inset Text
8735
8736 \begin_layout Standard
8737
8738 \end_layout
8739
8740 \end_inset
8741 </cell>
8742 </row>
8743 <row topline="true" bottomline="true" endhead="true">
8744 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8745 \begin_inset Text
8746
8747 \begin_layout Standard
8748
8749 \series bold
8750 NAME
8751 \end_layout
8752
8753 \end_inset
8754 </cell>
8755 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
8756 \begin_inset Text
8757
8758 \begin_layout Standard
8759
8760 \end_layout
8761
8762 \end_inset
8763 </cell>
8764 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8765 \begin_inset Text
8766
8767 \begin_layout Standard
8768
8769 \series bold
8770 TEL.
8771 \end_layout
8772
8773 \end_inset
8774 </cell>
8775 </row>
8776 <row topline="true" bottomline="true" endfoot="true">
8777 <cell multicolumn="1" alignment="right" valignment="top" topline="true" usebox="none">
8778 \begin_inset Text
8779
8780 \begin_layout Standard
8781 continued on next page
8782 \end_layout
8783
8784 \end_inset
8785 </cell>
8786 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
8787 \begin_inset Text
8788
8789 \begin_layout Standard
8790
8791 \end_layout
8792
8793 \end_inset
8794 </cell>
8795 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8796 \begin_inset Text
8797
8798 \begin_layout Standard
8799
8800 \end_layout
8801
8802 \end_inset
8803 </cell>
8804 </row>
8805 <row>
8806 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8807 \begin_inset Text
8808
8809 \begin_layout Standard
8810
8811 \series bold
8812 Annovi
8813 \end_layout
8814
8815 \end_inset
8816 </cell>
8817 <cell alignment="center" valignment="top" topline="true" usebox="none">
8818 \begin_inset Text
8819
8820 \begin_layout Standard
8821 Silvia
8822 \end_layout
8823
8824 \end_inset
8825 </cell>
8826 <cell alignment="right" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8827 \begin_inset Text
8828
8829 \begin_layout Standard
8830 111
8831 \end_layout
8832
8833 \end_inset
8834 </cell>
8835 </row>
8836 <row>
8837 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8838 \begin_inset Text
8839
8840 \begin_layout Standard
8841
8842 \series bold
8843 Bertoli
8844 \end_layout
8845
8846 \end_inset
8847 </cell>
8848 <cell alignment="center" valignment="top" topline="true" usebox="none">
8849 \begin_inset Text
8850
8851 \begin_layout Standard
8852 Stefano
8853 \end_layout
8854
8855 \end_inset
8856 </cell>
8857 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8858 \begin_inset Text
8859
8860 \begin_layout Standard
8861 111
8862 \end_layout
8863
8864 \end_inset
8865 </cell>
8866 </row>
8867 <row>
8868 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8869 \begin_inset Text
8870
8871 \begin_layout Standard
8872
8873 \series bold
8874 Bozzi
8875 \end_layout
8876
8877 \end_inset
8878 </cell>
8879 <cell alignment="center" valignment="top" topline="true" usebox="none">
8880 \begin_inset Text
8881
8882 \begin_layout Standard
8883 Walter
8884 \end_layout
8885
8886 \end_inset
8887 </cell>
8888 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8889 \begin_inset Text
8890
8891 \begin_layout Standard
8892 111
8893 \end_layout
8894
8895 \end_inset
8896 </cell>
8897 </row>
8898 <row>
8899 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8900 \begin_inset Text
8901
8902 \begin_layout Standard
8903
8904 \series bold
8905 Cachia
8906 \end_layout
8907
8908 \end_inset
8909 </cell>
8910 <cell alignment="center" valignment="top" topline="true" usebox="none">
8911 \begin_inset Text
8912
8913 \begin_layout Standard
8914 Maria
8915 \end_layout
8916
8917 \end_inset
8918 </cell>
8919 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8920 \begin_inset Text
8921
8922 \begin_layout Standard
8923 111
8924 \end_layout
8925
8926 \end_inset
8927 </cell>
8928 </row>
8929 <row>
8930 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8931 \begin_inset Text
8932
8933 \begin_layout Standard
8934
8935 \series bold
8936 Cachia
8937 \end_layout
8938
8939 \end_inset
8940 </cell>
8941 <cell alignment="center" valignment="top" topline="true" usebox="none">
8942 \begin_inset Text
8943
8944 \begin_layout Standard
8945 Maurizio
8946 \end_layout
8947
8948 \end_inset
8949 </cell>
8950 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8951 \begin_inset Text
8952
8953 \begin_layout Standard
8954 111
8955 \end_layout
8956
8957 \end_inset
8958 </cell>
8959 </row>
8960 <row>
8961 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8962 \begin_inset Text
8963
8964 \begin_layout Standard
8965
8966 \series bold
8967 Cinquemani
8968 \end_layout
8969
8970 \end_inset
8971 </cell>
8972 <cell alignment="center" valignment="top" topline="true" usebox="none">
8973 \begin_inset Text
8974
8975 \begin_layout Standard
8976 Giusi
8977 \end_layout
8978
8979 \end_inset
8980 </cell>
8981 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8982 \begin_inset Text
8983
8984 \begin_layout Standard
8985 111
8986 \end_layout
8987
8988 \end_inset
8989 </cell>
8990 </row>
8991 <row>
8992 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8993 \begin_inset Text
8994
8995 \begin_layout Standard
8996
8997 \series bold
8998 Colin
8999 \end_layout
9000
9001 \end_inset
9002 </cell>
9003 <cell alignment="center" valignment="top" topline="true" usebox="none">
9004 \begin_inset Text
9005
9006 \begin_layout Standard
9007 Bernard
9008 \end_layout
9009
9010 \end_inset
9011 </cell>
9012 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9013 \begin_inset Text
9014
9015 \begin_layout Standard
9016 111
9017 \end_layout
9018
9019 \end_inset
9020 </cell>
9021 </row>
9022 <row>
9023 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9024 \begin_inset Text
9025
9026 \begin_layout Standard
9027
9028 \series bold
9029 Concli
9030 \end_layout
9031
9032 \end_inset
9033 </cell>
9034 <cell alignment="center" valignment="top" topline="true" usebox="none">
9035 \begin_inset Text
9036
9037 \begin_layout Standard
9038 Gianfranco
9039 \end_layout
9040
9041 \end_inset
9042 </cell>
9043 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9044 \begin_inset Text
9045
9046 \begin_layout Standard
9047 111
9048 \end_layout
9049
9050 \end_inset
9051 </cell>
9052 </row>
9053 <row>
9054 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9055 \begin_inset Text
9056
9057 \begin_layout Standard
9058
9059 \series bold
9060 Dal Bosco
9061 \end_layout
9062
9063 \end_inset
9064 </cell>
9065 <cell alignment="center" valignment="top" topline="true" usebox="none">
9066 \begin_inset Text
9067
9068 \begin_layout Standard
9069 Carolina
9070 \end_layout
9071
9072 \end_inset
9073 </cell>
9074 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9075 \begin_inset Text
9076
9077 \begin_layout Standard
9078 111
9079 \end_layout
9080
9081 \end_inset
9082 </cell>
9083 </row>
9084 <row>
9085 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9086 \begin_inset Text
9087
9088 \begin_layout Standard
9089
9090 \series bold
9091 Dalpiaz
9092 \end_layout
9093
9094 \end_inset
9095 </cell>
9096 <cell alignment="center" valignment="top" topline="true" usebox="none">
9097 \begin_inset Text
9098
9099 \begin_layout Standard
9100 Annamaria
9101 \end_layout
9102
9103 \end_inset
9104 </cell>
9105 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9106 \begin_inset Text
9107
9108 \begin_layout Standard
9109 111
9110 \end_layout
9111
9112 \end_inset
9113 </cell>
9114 </row>
9115 <row>
9116 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9117 \begin_inset Text
9118
9119 \begin_layout Standard
9120
9121 \series bold
9122 Feliciello
9123 \end_layout
9124
9125 \end_inset
9126 </cell>
9127 <cell alignment="center" valignment="top" topline="true" usebox="none">
9128 \begin_inset Text
9129
9130 \begin_layout Standard
9131 Domenico
9132 \end_layout
9133
9134 \end_inset
9135 </cell>
9136 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9137 \begin_inset Text
9138
9139 \begin_layout Standard
9140 111
9141 \end_layout
9142
9143 \end_inset
9144 </cell>
9145 </row>
9146 <row>
9147 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9148 \begin_inset Text
9149
9150 \begin_layout Standard
9151
9152 \series bold
9153 Focarelli
9154 \end_layout
9155
9156 \end_inset
9157 </cell>
9158 <cell alignment="center" valignment="top" topline="true" usebox="none">
9159 \begin_inset Text
9160
9161 \begin_layout Standard
9162 Paola
9163 \end_layout
9164
9165 \end_inset
9166 </cell>
9167 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9168 \begin_inset Text
9169
9170 \begin_layout Standard
9171 111
9172 \end_layout
9173
9174 \end_inset
9175 </cell>
9176 </row>
9177 <row>
9178 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9179 \begin_inset Text
9180
9181 \begin_layout Standard
9182
9183 \series bold
9184 Galletti
9185 \end_layout
9186
9187 \end_inset
9188 </cell>
9189 <cell alignment="center" valignment="top" topline="true" usebox="none">
9190 \begin_inset Text
9191
9192 \begin_layout Standard
9193 Oreste
9194 \end_layout
9195
9196 \end_inset
9197 </cell>
9198 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9199 \begin_inset Text
9200
9201 \begin_layout Standard
9202 111
9203 \end_layout
9204
9205 \end_inset
9206 </cell>
9207 </row>
9208 <row>
9209 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9210 \begin_inset Text
9211
9212 \begin_layout Standard
9213
9214 \series bold
9215 Gasparini
9216 \end_layout
9217
9218 \end_inset
9219 </cell>
9220 <cell alignment="center" valignment="top" topline="true" usebox="none">
9221 \begin_inset Text
9222
9223 \begin_layout Standard
9224 Franca
9225 \end_layout
9226
9227 \end_inset
9228 </cell>
9229 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9230 \begin_inset Text
9231
9232 \begin_layout Standard
9233 111
9234 \end_layout
9235
9236 \end_inset
9237 </cell>
9238 </row>
9239 <row>
9240 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9241 \begin_inset Text
9242
9243 \begin_layout Standard
9244
9245 \series bold
9246 Lassini
9247 \end_layout
9248
9249 \end_inset
9250 </cell>
9251 <cell alignment="center" valignment="top" topline="true" usebox="none">
9252 \begin_inset Text
9253
9254 \begin_layout Standard
9255 Giancarlo
9256 \end_layout
9257
9258 \end_inset
9259 </cell>
9260 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9261 \begin_inset Text
9262
9263 \begin_layout Standard
9264 111
9265 \end_layout
9266
9267 \end_inset
9268 </cell>
9269 </row>
9270 <row>
9271 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9272 \begin_inset Text
9273
9274 \begin_layout Standard
9275
9276 \series bold
9277 Malfatti
9278 \end_layout
9279
9280 \end_inset
9281 </cell>
9282 <cell alignment="center" valignment="top" topline="true" usebox="none">
9283 \begin_inset Text
9284
9285 \begin_layout Standard
9286 Luciano
9287 \end_layout
9288
9289 \end_inset
9290 </cell>
9291 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9292 \begin_inset Text
9293
9294 \begin_layout Standard
9295 111
9296 \end_layout
9297
9298 \end_inset
9299 </cell>
9300 </row>
9301 <row>
9302 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9303 \begin_inset Text
9304
9305 \begin_layout Standard
9306
9307 \series bold
9308 Malfatti
9309 \end_layout
9310
9311 \end_inset
9312 </cell>
9313 <cell alignment="center" valignment="top" topline="true" usebox="none">
9314 \begin_inset Text
9315
9316 \begin_layout Standard
9317 Valeriano
9318 \end_layout
9319
9320 \end_inset
9321 </cell>
9322 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9323 \begin_inset Text
9324
9325 \begin_layout Standard
9326 111
9327 \end_layout
9328
9329 \end_inset
9330 </cell>
9331 </row>
9332 <row>
9333 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9334 \begin_inset Text
9335
9336 \begin_layout Standard
9337
9338 \series bold
9339 Meneguzzo
9340 \end_layout
9341
9342 \end_inset
9343 </cell>
9344 <cell alignment="center" valignment="top" topline="true" usebox="none">
9345 \begin_inset Text
9346
9347 \begin_layout Standard
9348 Roberto
9349 \end_layout
9350
9351 \end_inset
9352 </cell>
9353 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9354 \begin_inset Text
9355
9356 \begin_layout Standard
9357 111
9358 \end_layout
9359
9360 \end_inset
9361 </cell>
9362 </row>
9363 <row>
9364 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9365 \begin_inset Text
9366
9367 \begin_layout Standard
9368
9369 \series bold
9370 Mezzadra
9371 \end_layout
9372
9373 \end_inset
9374 </cell>
9375 <cell alignment="center" valignment="top" topline="true" usebox="none">
9376 \begin_inset Text
9377
9378 \begin_layout Standard
9379 Roberto
9380 \end_layout
9381
9382 \end_inset
9383 </cell>
9384 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9385 \begin_inset Text
9386
9387 \begin_layout Standard
9388 111
9389 \end_layout
9390
9391 \end_inset
9392 </cell>
9393 </row>
9394 <row>
9395 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9396 \begin_inset Text
9397
9398 \begin_layout Standard
9399
9400 \series bold
9401 Pirpamer
9402 \end_layout
9403
9404 \end_inset
9405 </cell>
9406 <cell alignment="center" valignment="top" topline="true" usebox="none">
9407 \begin_inset Text
9408
9409 \begin_layout Standard
9410 Erich
9411 \end_layout
9412
9413 \end_inset
9414 </cell>
9415 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9416 \begin_inset Text
9417
9418 \begin_layout Standard
9419 111
9420 \end_layout
9421
9422 \end_inset
9423 </cell>
9424 </row>
9425 <row>
9426 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9427 \begin_inset Text
9428
9429 \begin_layout Standard
9430
9431 \series bold
9432 Pochiesa
9433 \end_layout
9434
9435 \end_inset
9436 </cell>
9437 <cell alignment="center" valignment="top" topline="true" usebox="none">
9438 \begin_inset Text
9439
9440 \begin_layout Standard
9441 Paolo
9442 \end_layout
9443
9444 \end_inset
9445 </cell>
9446 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9447 \begin_inset Text
9448
9449 \begin_layout Standard
9450 111, 222
9451 \end_layout
9452
9453 \end_inset
9454 </cell>
9455 </row>
9456 <row>
9457 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9458 \begin_inset Text
9459
9460 \begin_layout Standard
9461
9462 \series bold
9463 Radina
9464 \end_layout
9465
9466 \end_inset
9467 </cell>
9468 <cell alignment="center" valignment="top" topline="true" usebox="none">
9469 \begin_inset Text
9470
9471 \begin_layout Standard
9472 Claudio
9473 \end_layout
9474
9475 \end_inset
9476 </cell>
9477 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9478 \begin_inset Text
9479
9480 \begin_layout Standard
9481 111
9482 \end_layout
9483
9484 \end_inset
9485 </cell>
9486 </row>
9487 <row>
9488 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9489 \begin_inset Text
9490
9491 \begin_layout Standard
9492
9493 \series bold
9494 Rizzardi
9495 \end_layout
9496
9497 \end_inset
9498 </cell>
9499 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9500 \begin_inset Text
9501
9502 \begin_layout Standard
9503 Paolo, 11.
9504  Fürst von Montecompatri, 11.
9505  Fürst von Sulmona und Vivaro, 10.
9506  Fürst von Rossano, 5.
9507  Herzog von Canemorte, 11.
9508  Herzog von Palombara, 5.
9509  Herzog von Castelchiodato,
9510 \begin_inset ERT
9511 status collapsed
9512
9513 \begin_layout Standard
9514
9515 & 111
9516 \backslash
9517
9518 \backslash
9519
9520 \end_layout
9521
9522 \begin_layout Standard
9523
9524 &
9525 \end_layout
9526
9527 \end_inset
9528
9529  11.
9530  Herzog von Poggionativo, 11.
9531  Markis von Mentana, Norma, Civitella, Pratica, Moricone und Percille, 11.
9532  Graf von Valinfreda, 11.
9533  Baron von Cropalati, 11.
9534  Herr von Scarpa, Edelmann von Rom, Patrizier von Venedig, Neapel und Genua
9535 \end_layout
9536
9537 \end_inset
9538 </cell>
9539 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9540 \begin_inset Text
9541
9542 \begin_layout Standard
9543
9544 \end_layout
9545
9546 \end_inset
9547 </cell>
9548 </row>
9549 <row>
9550 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9551 \begin_inset Text
9552
9553 \begin_layout Standard
9554
9555 \series bold
9556 Stuffer
9557 \end_layout
9558
9559 \end_inset
9560 </cell>
9561 <cell alignment="center" valignment="top" topline="true" usebox="none">
9562 \begin_inset Text
9563
9564 \begin_layout Standard
9565 Oskar
9566 \end_layout
9567
9568 \end_inset
9569 </cell>
9570 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9571 \begin_inset Text
9572
9573 \begin_layout Standard
9574 111
9575 \end_layout
9576
9577 \end_inset
9578 </cell>
9579 </row>
9580 <row>
9581 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9582 \begin_inset Text
9583
9584 \begin_layout Standard
9585
9586 \series bold
9587 Tacchelli
9588 \end_layout
9589
9590 \end_inset
9591 </cell>
9592 <cell alignment="center" valignment="top" topline="true" usebox="none">
9593 \begin_inset Text
9594
9595 \begin_layout Standard
9596 Ugo
9597 \end_layout
9598
9599 \end_inset
9600 </cell>
9601 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9602 \begin_inset Text
9603
9604 \begin_layout Standard
9605 111
9606 \end_layout
9607
9608 \end_inset
9609 </cell>
9610 </row>
9611 <row>
9612 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9613 \begin_inset Text
9614
9615 \begin_layout Standard
9616
9617 \series bold
9618 Tezzele
9619 \end_layout
9620
9621 \end_inset
9622 </cell>
9623 <cell alignment="center" valignment="top" topline="true" usebox="none">
9624 \begin_inset Text
9625
9626 \begin_layout Standard
9627 Margit
9628 \end_layout
9629
9630 \end_inset
9631 </cell>
9632 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9633 \begin_inset Text
9634
9635 \begin_layout Standard
9636 111
9637 \end_layout
9638
9639 \end_inset
9640 </cell>
9641 </row>
9642 <row>
9643 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9644 \begin_inset Text
9645
9646 \begin_layout Standard
9647
9648 \series bold
9649 Unterkalmsteiner
9650 \end_layout
9651
9652 \end_inset
9653 </cell>
9654 <cell alignment="center" valignment="top" topline="true" usebox="none">
9655 \begin_inset Text
9656
9657 \begin_layout Standard
9658 Frieda
9659 \end_layout
9660
9661 \end_inset
9662 </cell>
9663 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9664 \begin_inset Text
9665
9666 \begin_layout Standard
9667 111
9668 \end_layout
9669
9670 \end_inset
9671 </cell>
9672 </row>
9673 <row>
9674 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9675 \begin_inset Text
9676
9677 \begin_layout Standard
9678
9679 \series bold
9680 Vieider
9681 \end_layout
9682
9683 \end_inset
9684 </cell>
9685 <cell alignment="center" valignment="top" topline="true" usebox="none">
9686 \begin_inset Text
9687
9688 \begin_layout Standard
9689 Hilde
9690 \end_layout
9691
9692 \end_inset
9693 </cell>
9694 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9695 \begin_inset Text
9696
9697 \begin_layout Standard
9698 111
9699 \end_layout
9700
9701 \end_inset
9702 </cell>
9703 </row>
9704 <row>
9705 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9706 \begin_inset Text
9707
9708 \begin_layout Standard
9709
9710 \series bold
9711 Vigna
9712 \end_layout
9713
9714 \end_inset
9715 </cell>
9716 <cell alignment="center" valignment="top" topline="true" usebox="none">
9717 \begin_inset Text
9718
9719 \begin_layout Standard
9720 Jürgen
9721 \end_layout
9722
9723 \end_inset
9724 </cell>
9725 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9726 \begin_inset Text
9727
9728 \begin_layout Standard
9729 111
9730 \end_layout
9731
9732 \end_inset
9733 </cell>
9734 </row>
9735 <row>
9736 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9737 \begin_inset Text
9738
9739 \begin_layout Standard
9740
9741 \series bold
9742 Weber
9743 \end_layout
9744
9745 \end_inset
9746 </cell>
9747 <cell alignment="center" valignment="top" topline="true" usebox="none">
9748 \begin_inset Text
9749
9750 \begin_layout Standard
9751 Maurizio
9752 \end_layout
9753
9754 \end_inset
9755 </cell>
9756 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9757 \begin_inset Text
9758
9759 \begin_layout Standard
9760 111
9761 \end_layout
9762
9763 \end_inset
9764 </cell>
9765 </row>
9766 <row bottomline="true">
9767 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9768 \begin_inset Text
9769
9770 \begin_layout Standard
9771
9772 \series bold
9773 Winkler
9774 \end_layout
9775
9776 \end_inset
9777 </cell>
9778 <cell alignment="center" valignment="top" topline="true" usebox="none">
9779 \begin_inset Text
9780
9781 \begin_layout Standard
9782 Franz
9783 \end_layout
9784
9785 \end_inset
9786 </cell>
9787 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9788 \begin_inset Text
9789
9790 \begin_layout Standard
9791 111
9792 \end_layout
9793
9794 \end_inset
9795 </cell>
9796 </row>
9797 <row endlastfoot="true">
9798 <cell multicolumn="1" alignment="left" valignment="top" usebox="none">
9799 \begin_inset Text
9800
9801 \begin_layout Standard
9802
9803 \end_layout
9804
9805 \end_inset
9806 </cell>
9807 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9808 \begin_inset Text
9809
9810 \begin_layout Standard
9811
9812 \end_layout
9813
9814 \end_inset
9815 </cell>
9816 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9817 \begin_inset Text
9818
9819 \begin_layout Standard
9820
9821 \end_layout
9822
9823 \end_inset
9824 </cell>
9825 </row>
9826 </lyxtabular>
9827
9828 \end_inset
9829
9830
9831 \end_layout
9832
9833 \begin_layout Section
9834 Multiple Lines Columns and Rows
9835 \end_layout
9836
9837 \begin_layout Subsection
9838 Multiple Lines in Table Cells
9839 \begin_inset LatexCommand label
9840 name "sub:Multiple-Lines-in"
9841
9842 \end_inset
9843
9844
9845 \begin_inset LatexCommand index
9846 name "Multiple Lines in Table Cells"
9847
9848 \end_inset
9849
9850
9851 \begin_inset LatexCommand index
9852 name "Table ! Linebreaks"
9853
9854 \end_inset
9855
9856
9857 \end_layout
9858
9859 \begin_layout Standard
9860 \align center
9861 \begin_inset Float table
9862 placement H
9863 wide false
9864 sideways false
9865 status collapsed
9866
9867 \begin_layout Caption
9868 \begin_inset LatexCommand label
9869 name "tab:Table-with-multiple"
9870
9871 \end_inset
9872
9873 Table with multiple lines in cells
9874 \end_layout
9875
9876 \begin_layout Standard
9877 \align center
9878 \begin_inset Tabular
9879 <lyxtabular version="3" rows="3" columns="3">
9880 <features>
9881 <column alignment="center" valignment="middle" leftline="true" width="2.5cm">
9882 <column alignment="center" valignment="middle" leftline="true" width="0.5cm">
9883 <column alignment="center" valignment="middle" leftline="true" rightline="true" width="0.5cm">
9884 <row topline="true">
9885 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9886 \begin_inset Text
9887
9888 \begin_layout Standard
9889 multiple
9890 \begin_inset ERT
9891 status collapsed
9892
9893 \begin_layout Standard
9894
9895
9896 \backslash
9897 linebreak 
9898 \end_layout
9899
9900 \end_inset
9901
9902  lines
9903 \end_layout
9904
9905 \end_inset
9906 </cell>
9907 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9908 \begin_inset Text
9909
9910 \begin_layout Standard
9911 b
9912 \end_layout
9913
9914 \end_inset
9915 </cell>
9916 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9917 \begin_inset Text
9918
9919 \begin_layout Standard
9920 c
9921 \end_layout
9922
9923 \end_inset
9924 </cell>
9925 </row>
9926 <row topline="true">
9927 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9928 \begin_inset Text
9929
9930 \begin_layout Standard
9931 d
9932 \end_layout
9933
9934 \end_inset
9935 </cell>
9936 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9937 \begin_inset Text
9938
9939 \begin_layout Standard
9940 e
9941 \end_layout
9942
9943 \end_inset
9944 </cell>
9945 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9946 \begin_inset Text
9947
9948 \begin_layout Standard
9949 f
9950 \end_layout
9951
9952 \end_inset
9953 </cell>
9954 </row>
9955 <row topline="true" bottomline="true">
9956 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9957 \begin_inset Text
9958
9959 \begin_layout Standard
9960 g
9961 \end_layout
9962
9963 \end_inset
9964 </cell>
9965 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9966 \begin_inset Text
9967
9968 \begin_layout Standard
9969 h
9970 \end_layout
9971
9972 \end_inset
9973 </cell>
9974 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9975 \begin_inset Text
9976
9977 \begin_layout Standard
9978 i
9979 \end_layout
9980
9981 \end_inset
9982 </cell>
9983 </row>
9984 </lyxtabular>
9985
9986 \end_inset
9987
9988
9989 \end_layout
9990
9991 \end_inset
9992
9993
9994 \end_layout
9995
9996 \begin_layout Standard
9997 Adjusting a fixed width for a column, enables to enter text as a paragraph
9998  with multiple lines and hyphenations.
9999 \end_layout
10000
10001 \begin_layout Standard
10002 To produce Table\InsetSpace ~
10003
10004 \begin_inset LatexCommand ref
10005 reference "tab:Table-with-multiple"
10006
10007 \end_inset
10008
10009 , create a 3×3 table, mark the first cell and right-click on it.
10010  In the appearing table dialog we set a cell width of 2.5\InsetSpace \thinspace{}
10011 cm and choose centered
10012  for the vertical and horizontal alignment.
10013  As our text is smaller than than 2.5\InsetSpace \thinspace{}
10014 cm, only one line will appear.
10015  To get two lines, we add a line break with the command
10016 \end_layout
10017
10018 \begin_layout Standard
10019
10020 \series bold
10021
10022 \backslash
10023 linebreak
10024 \end_layout
10025
10026 \begin_layout Standard
10027 in ERT.
10028  If the text is wider than the set cell width it will automatically be broken
10029  to several lines.
10030 \end_layout
10031
10032 \begin_layout Standard
10033 To center the text inside the two other cells of the first row vertically,
10034  right-click in the second cell, adjust a fixed width of 0.5\InsetSpace \thinspace{}
10035 cm and choose
10036  centered alignments.
10037  Then do the same for the third cell of the row.
10038 \end_layout
10039
10040 \begin_layout Standard
10041 If you have a long word in a cell with a fixed width, it cannot be hyphenated
10042  by LaTeX if it is the first entry.
10043  Therefore you need to insert something, to make the word not being the
10044  first entry: Add the command
10045 \end_layout
10046
10047 \begin_layout Standard
10048
10049 \series bold
10050
10051 \backslash
10052 hspace{0pt}
10053 \end_layout
10054
10055 \begin_layout Standard
10056 in ERT before the word.
10057  As the space is zero, it doesn't change the output.
10058  Table\InsetSpace ~
10059
10060 \begin_inset LatexCommand ref
10061 reference "tab:Table-with-and"
10062
10063 \end_inset
10064
10065  shows the effect.
10066 \end_layout
10067
10068 \begin_layout Standard
10069 \begin_inset Float table
10070 wide false
10071 sideways false
10072 status open
10073
10074 \begin_layout Caption
10075 \begin_inset LatexCommand label
10076 name "tab:Table-with-and"
10077
10078 \end_inset
10079
10080 Table with and without hyphenation
10081 \end_layout
10082
10083 \begin_layout Standard
10084
10085 \hfill
10086
10087 \begin_inset Tabular
10088 <lyxtabular version="3" rows="3" columns="3">
10089 <features>
10090 <column alignment="center" valignment="middle" leftline="true" width="2.5cm">
10091 <column alignment="center" valignment="middle" leftline="true" width="0.5cm">
10092 <column alignment="center" valignment="middle" leftline="true" rightline="true" width="0.5cm">
10093 <row topline="true">
10094 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10095 \begin_inset Text
10096
10097 \begin_layout Standard
10098 verylongtablecellword
10099 \end_layout
10100
10101 \end_inset
10102 </cell>
10103 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10104 \begin_inset Text
10105
10106 \begin_layout Standard
10107 b
10108 \end_layout
10109
10110 \end_inset
10111 </cell>
10112 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10113 \begin_inset Text
10114
10115 \begin_layout Standard
10116 c
10117 \end_layout
10118
10119 \end_inset
10120 </cell>
10121 </row>
10122 <row topline="true">
10123 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10124 \begin_inset Text
10125
10126 \begin_layout Standard
10127 d
10128 \end_layout
10129
10130 \end_inset
10131 </cell>
10132 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10133 \begin_inset Text
10134
10135 \begin_layout Standard
10136 e
10137 \end_layout
10138
10139 \end_inset
10140 </cell>
10141 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10142 \begin_inset Text
10143
10144 \begin_layout Standard
10145 f
10146 \end_layout
10147
10148 \end_inset
10149 </cell>
10150 </row>
10151 <row topline="true" bottomline="true">
10152 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10153 \begin_inset Text
10154
10155 \begin_layout Standard
10156 g
10157 \end_layout
10158
10159 \end_inset
10160 </cell>
10161 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10162 \begin_inset Text
10163
10164 \begin_layout Standard
10165 h
10166 \end_layout
10167
10168 \end_inset
10169 </cell>
10170 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10171 \begin_inset Text
10172
10173 \begin_layout Standard
10174 i
10175 \end_layout
10176
10177 \end_inset
10178 </cell>
10179 </row>
10180 </lyxtabular>
10181
10182 \end_inset
10183
10184
10185 \hfill
10186
10187 \begin_inset Tabular
10188 <lyxtabular version="3" rows="3" columns="3">
10189 <features>
10190 <column alignment="center" valignment="middle" leftline="true" width="2.5cm">
10191 <column alignment="center" valignment="middle" leftline="true" width="0.5cm">
10192 <column alignment="center" valignment="middle" leftline="true" rightline="true" width="0.5cm">
10193 <row topline="true">
10194 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10195 \begin_inset Text
10196
10197 \begin_layout Standard
10198 \begin_inset ERT
10199 status collapsed
10200
10201 \begin_layout Standard
10202
10203
10204 \backslash
10205 hspace{0pt}
10206 \end_layout
10207
10208 \end_inset
10209
10210 verylongtablecellword
10211 \end_layout
10212
10213 \end_inset
10214 </cell>
10215 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10216 \begin_inset Text
10217
10218 \begin_layout Standard
10219 b
10220 \end_layout
10221
10222 \end_inset
10223 </cell>
10224 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10225 \begin_inset Text
10226
10227 \begin_layout Standard
10228 c
10229 \end_layout
10230
10231 \end_inset
10232 </cell>
10233 </row>
10234 <row topline="true">
10235 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10236 \begin_inset Text
10237
10238 \begin_layout Standard
10239 d
10240 \end_layout
10241
10242 \end_inset
10243 </cell>
10244 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10245 \begin_inset Text
10246
10247 \begin_layout Standard
10248 e
10249 \end_layout
10250
10251 \end_inset
10252 </cell>
10253 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10254 \begin_inset Text
10255
10256 \begin_layout Standard
10257 f
10258 \end_layout
10259
10260 \end_inset
10261 </cell>
10262 </row>
10263 <row topline="true" bottomline="true">
10264 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10265 \begin_inset Text
10266
10267 \begin_layout Standard
10268 g
10269 \end_layout
10270
10271 \end_inset
10272 </cell>
10273 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10274 \begin_inset Text
10275
10276 \begin_layout Standard
10277 h
10278 \end_layout
10279
10280 \end_inset
10281 </cell>
10282 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10283 \begin_inset Text
10284
10285 \begin_layout Standard
10286 i
10287 \end_layout
10288
10289 \end_inset
10290 </cell>
10291 </row>
10292 </lyxtabular>
10293
10294 \end_inset
10295
10296
10297 \hfill
10298
10299 \end_layout
10300
10301 \end_inset
10302
10303
10304 \end_layout
10305
10306 \begin_layout Standard
10307
10308 \newpage
10309
10310 \end_layout
10311
10312 \begin_layout Subsection
10313 Multicolumns
10314 \begin_inset LatexCommand label
10315 name "sub:Multicolumns"
10316
10317 \end_inset
10318
10319
10320 \begin_inset LatexCommand index
10321 name "Multicolumns"
10322
10323 \end_inset
10324
10325
10326 \begin_inset LatexCommand index
10327 name "Table ! Multicolumns"
10328
10329 \end_inset
10330
10331
10332 \end_layout
10333
10334 \begin_layout Subsubsection
10335 Multicolumn Basics
10336 \end_layout
10337
10338 \begin_layout Standard
10339 To span a cell over multiple columns, mark as much cells within a line that
10340  should be one spanned cell and use either the table-toolbar button 
10341 \begin_inset Graphics
10342         filename ../images/tabular-feature_multicolumn.xpm
10343         scale 85
10344
10345 \end_inset
10346
10347 , or the menu 
10348 \family sans
10349 Edit\SpecialChar \menuseparator
10350 Table\SpecialChar \menuseparator
10351 Multicolumn
10352 \family default
10353 , or right click on the marked cells and choose multicolumn in the appearing
10354  table dialog under the tab 
10355 \family sans
10356 Table Settings
10357 \family default
10358 .
10359 \end_layout
10360
10361 \begin_layout Standard
10362 Multicolumns have there own cell settings.
10363  That means changing cell borders, cell alignment, and the width only affects
10364  the multicolumn.
10365  Here is an example table with a multicolumn cell in the first row and one
10366  in the last row without the upper border:
10367 \end_layout
10368
10369 \begin_layout Standard
10370 \align center
10371 \begin_inset Tabular
10372 <lyxtabular version="3" rows="3" columns="4">
10373 <features firstHeadTopDL="true" firstHeadBottomDL="true">
10374 <column alignment="center" valignment="top" leftline="true" width="0pt">
10375 <column alignment="center" valignment="middle" leftline="true" width="0">
10376 <column alignment="center" valignment="top" leftline="true" width="0in">
10377 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0pt">
10378 <row topline="true" bottomline="true">
10379 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10380 \begin_inset Text
10381
10382 \begin_layout Standard
10383 abc
10384 \end_layout
10385
10386 \end_inset
10387 </cell>
10388 <cell multicolumn="1" alignment="center" valignment="middle" topline="true" bottomline="true" leftline="true" usebox="none">
10389 \begin_inset Text
10390
10391 \begin_layout Standard
10392 def
10393 \lang ngerman
10394  
10395 \lang english
10396 ghi
10397 \end_layout
10398
10399 \end_inset
10400 </cell>
10401 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10402 \begin_inset Text
10403
10404 \begin_layout Standard
10405
10406 \end_layout
10407
10408 \end_inset
10409 </cell>
10410 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10411 \begin_inset Text
10412
10413 \begin_layout Standard
10414 jkl
10415 \end_layout
10416
10417 \end_inset
10418 </cell>
10419 </row>
10420 <row topline="true">
10421 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10422 \begin_inset Text
10423
10424 \begin_layout Standard
10425
10426 \family roman
10427 \series medium
10428 \shape up
10429 \size normal
10430 \emph off
10431 \bar no
10432 \noun off
10433 \color none
10434 A
10435 \end_layout
10436
10437 \end_inset
10438 </cell>
10439 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10440 \begin_inset Text
10441
10442 \begin_layout Standard
10443 B
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 C
10453 \end_layout
10454
10455 \end_inset
10456 </cell>
10457 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10458 \begin_inset Text
10459
10460 \begin_layout Standard
10461 D
10462 \end_layout
10463
10464 \end_inset
10465 </cell>
10466 </row>
10467 <row topline="true" bottomline="true">
10468 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10469 \begin_inset Text
10470
10471 \begin_layout Standard
10472 1
10473 \end_layout
10474
10475 \end_inset
10476 </cell>
10477 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10478 \begin_inset Text
10479
10480 \begin_layout Standard
10481 2
10482 \end_layout
10483
10484 \end_inset
10485 </cell>
10486 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10487 \begin_inset Text
10488
10489 \begin_layout Standard
10490 3
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 4
10500 \end_layout
10501
10502 \end_inset
10503 </cell>
10504 </row>
10505 </lyxtabular>
10506
10507 \end_inset
10508
10509
10510 \end_layout
10511
10512 \begin_layout Subsubsection
10513 Multicolumn Calculations
10514 \begin_inset LatexCommand label
10515 name "sub:Multicolumn-Calculations"
10516
10517 \end_inset
10518
10519
10520 \begin_inset LatexCommand index
10521 name "Multicolumns ! Calculations"
10522
10523 \end_inset
10524
10525
10526 \end_layout
10527
10528 \begin_layout Standard
10529 LyX supports multicolumns directly, but we have to take notice of the cell
10530  width of the columns spanned by the multicolumn cell.
10531 \end_layout
10532
10533 \begin_layout Standard
10534 \begin_inset Float table
10535 wide false
10536 sideways false
10537 status open
10538
10539 \begin_layout Caption
10540 \begin_inset LatexCommand label
10541 name "tab:Table-with-centered"
10542
10543 \end_inset
10544
10545 Table with centered multicolumn text above two columns that have exactly
10546  half the width of the multicolumn cell
10547 \begin_inset OptArg
10548 status collapsed
10549
10550 \begin_layout Standard
10551 Perfect multicolumn table
10552 \end_layout
10553
10554 \end_inset
10555
10556
10557 \end_layout
10558
10559 \begin_layout Standard
10560 \align center
10561 \begin_inset Tabular
10562 <lyxtabular version="3" rows="3" columns="3">
10563 <features>
10564 <column alignment="center" valignment="middle" leftline="true" width="0" special="|>{\centering}m{1.25cm-6.2pt}">
10565 <column alignment="center" valignment="middle" leftline="true" width="0">
10566 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
10567 <row topline="true">
10568 <cell multicolumn="1" alignment="center" valignment="middle" topline="true" leftline="true" usebox="none" special="|>{\centering}m{2.5cm}|">
10569 \begin_inset Text
10570
10571 \begin_layout Standard
10572 multiple lines multicolumn
10573 \end_layout
10574
10575 \end_inset
10576 </cell>
10577 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10578 \begin_inset Text
10579
10580 \begin_layout Standard
10581
10582 \end_layout
10583
10584 \end_inset
10585 </cell>
10586 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10587 \begin_inset Text
10588
10589 \begin_layout Standard
10590 c
10591 \end_layout
10592
10593 \end_inset
10594 </cell>
10595 </row>
10596 <row topline="true">
10597 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10598 \begin_inset Text
10599
10600 \begin_layout Standard
10601 d
10602 \end_layout
10603
10604 \end_inset
10605 </cell>
10606 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10607 \begin_inset Text
10608
10609 \begin_layout Standard
10610 e
10611 \end_layout
10612
10613 \end_inset
10614 </cell>
10615 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10616 \begin_inset Text
10617
10618 \begin_layout Standard
10619 f
10620 \end_layout
10621
10622 \end_inset
10623 </cell>
10624 </row>
10625 <row topline="true" bottomline="true">
10626 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10627 \begin_inset Text
10628
10629 \begin_layout Standard
10630 g
10631 \end_layout
10632
10633 \end_inset
10634 </cell>
10635 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10636 \begin_inset Text
10637
10638 \begin_layout Standard
10639 h
10640 \end_layout
10641
10642 \end_inset
10643 </cell>
10644 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10645 \begin_inset Text
10646
10647 \begin_layout Standard
10648 i
10649 \end_layout
10650
10651 \end_inset
10652 </cell>
10653 </row>
10654 </lyxtabular>
10655
10656 \end_inset
10657
10658
10659 \end_layout
10660
10661 \end_inset
10662
10663
10664 \end_layout
10665
10666 \begin_layout Standard
10667 To create for example Table\InsetSpace ~
10668
10669 \begin_inset LatexCommand ref
10670 reference "tab:Table-with-centered"
10671
10672 \end_inset
10673
10674 , mark the first two cells in the first row a 3×3 table and right-click
10675  on them.
10676  Now choose for this cell 
10677 \emph on
10678 multicolumn
10679 \emph default
10680
10681 \emph on
10682 centered alignment
10683 \emph default
10684  and a width of 2.5\InsetSpace \thinspace{}
10685 cm in the table dialog.
10686  The spanned columns should have exactly half the width of the multicolumn
10687  cell, so that you would adjust a width of 1.25\InsetSpace \thinspace{}
10688 cm for the first column.
10689  The second column has then automatically a width of 1.25\InsetSpace \thinspace{}
10690 cm (multicolumn
10691  width - width of first column).
10692  This was done for Table\InsetSpace ~
10693
10694 \begin_inset LatexCommand ref
10695 reference "tab:Table-without-half"
10696
10697 \end_inset
10698
10699 .
10700 \end_layout
10701
10702 \begin_layout Standard
10703 \begin_inset Float table
10704 wide false
10705 sideways false
10706 status open
10707
10708 \begin_layout Caption
10709 \begin_inset LatexCommand label
10710 name "tab:Table-without-half"
10711
10712 \end_inset
10713
10714 Table where the spanned table columns have not exactly half the width of
10715  the multicolumn cell
10716 \begin_inset OptArg
10717 status collapsed
10718
10719 \begin_layout Standard
10720 Imperfect multicolumn table
10721 \end_layout
10722
10723 \end_inset
10724
10725
10726 \end_layout
10727
10728 \begin_layout Standard
10729 \align center
10730 \begin_inset Tabular
10731 <lyxtabular version="3" rows="3" columns="3">
10732 <features>
10733 <column alignment="center" valignment="top" leftline="true" width="1.25cm">
10734 <column alignment="center" valignment="top" leftline="true" width="0">
10735 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
10736 <row topline="true" bottomline="true">
10737 <cell multicolumn="1" alignment="center" valignment="top" topline="true" leftline="true" usebox="none" width="2.5cm">
10738 \begin_inset Text
10739
10740 \begin_layout Standard
10741 multiple lines multicolumn
10742 \end_layout
10743
10744 \end_inset
10745 </cell>
10746 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10747 \begin_inset Text
10748
10749 \begin_layout Standard
10750
10751 \end_layout
10752
10753 \end_inset
10754 </cell>
10755 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10756 \begin_inset Text
10757
10758 \begin_layout Standard
10759 c
10760 \end_layout
10761
10762 \end_inset
10763 </cell>
10764 </row>
10765 <row topline="true">
10766 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10767 \begin_inset Text
10768
10769 \begin_layout Standard
10770 d
10771 \end_layout
10772
10773 \end_inset
10774 </cell>
10775 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10776 \begin_inset Text
10777
10778 \begin_layout Standard
10779 e
10780 \end_layout
10781
10782 \end_inset
10783 </cell>
10784 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10785 \begin_inset Text
10786
10787 \begin_layout Standard
10788 f
10789 \end_layout
10790
10791 \end_inset
10792 </cell>
10793 </row>
10794 <row topline="true" bottomline="true">
10795 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10796 \begin_inset Text
10797
10798 \begin_layout Standard
10799 g
10800 \end_layout
10801
10802 \end_inset
10803 </cell>
10804 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10805 \begin_inset Text
10806
10807 \begin_layout Standard
10808 h
10809 \end_layout
10810
10811 \end_inset
10812 </cell>
10813 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10814 \begin_inset Text
10815
10816 \begin_layout Standard
10817 i
10818 \end_layout
10819
10820 \end_inset
10821 </cell>
10822 </row>
10823 </lyxtabular>
10824
10825 \end_inset
10826
10827
10828 \end_layout
10829
10830 \end_inset
10831
10832
10833 \end_layout
10834
10835 \begin_layout Standard
10836 You can see that the first column has not the half width of the multicolumn
10837  cell, it is a bit bigger.
10838  The reason is that the given width of a cell 
10839 \begin_inset Formula $W_{g}$
10840 \end_inset
10841
10842  is not its total width 
10843 \begin_inset Formula $W_{\mathrm{tot}}$
10844 \end_inset
10845
10846  because a cell is always a bit larger than its given width.
10847  Appendix\InsetSpace ~
10848
10849 \begin_inset LatexCommand eqref
10850 reference "cha:Explanation-of-Equation"
10851
10852 \end_inset
10853
10854  explains it in detail.
10855 \end_layout
10856
10857 \begin_layout Standard
10858 The needed given width 
10859 \begin_inset Formula $W_{g\, n}$
10860 \end_inset
10861
10862  when 
10863 \emph on
10864 n
10865 \emph default
10866  columns are spanned columns can be calculated, so that each column has
10867  a total width of 
10868 \begin_inset Formula $W_{\mathrm{tot\, multicolumn}}/n$
10869 \end_inset
10870
10871 :
10872 \begin_inset Formula \begin{equation}
10873 W_{g\, n}=(W_{g\,\mathrm{multicolumn}}+(1-n)·(12.4\,\mathrm{pt}))/n\label{eq:Wgn}\end{equation}
10874
10875 \end_inset
10876
10877
10878 \end_layout
10879
10880 \begin_layout Standard
10881 In our case we have 
10882 \begin_inset Formula $n=2$
10883 \end_inset
10884
10885
10886 \begin_inset Formula $W_{g\,\mathrm{multicolumn}}=2.5\,$
10887 \end_inset
10888
10889 cm and the default values for the lengths, so that equation 
10890 \begin_inset LatexCommand ref
10891 reference "eq:Wgn"
10892
10893 \end_inset
10894
10895  becomes
10896 \begin_inset Formula \begin{equation}
10897 W_{g\,2}=1.25\,\mathrm{cm}-6.2\,\mathrm{pt}\end{equation}
10898
10899 \end_inset
10900
10901
10902 \end_layout
10903
10904 \begin_layout Standard
10905 To enable calculations in LaTeX, the LaTeX-package 
10906 \series bold
10907 calc
10908 \series default
10909  must be loaded with the document preamble line
10910 \begin_inset LatexCommand index
10911 name "LaTeX-packages ! calc"
10912
10913 \end_inset
10914
10915
10916 \end_layout
10917
10918 \begin_layout Standard
10919
10920 \series bold
10921
10922 \backslash
10923 usepackage{calc}
10924 \end_layout
10925
10926 \begin_layout Standard
10927 LyX does not allow to calculate lengths in the width-field of the table
10928  dialog.
10929  Therefore you have to format the column by inserting a LaTeX-argument in
10930  the dialog.
10931  Here is an overview about the arguments:
10932 \end_layout
10933
10934 \begin_layout Itemize
10935
10936 \series bold
10937 p{width}
10938 \series default
10939  creates cell with a fixed width, its text is vertically top-aligned
10940 \end_layout
10941
10942 \begin_layout Itemize
10943
10944 \series bold
10945 m{width}
10946 \series default
10947  creates cell with a fixed width, its text is vertically centered
10948 \end_layout
10949
10950 \begin_layout Itemize
10951
10952 \series bold
10953 b{width}
10954 \series default
10955  creates cell with a fixed width, its text is vertically bottom-aligned
10956 \end_layout
10957
10958 \begin_layout Standard
10959 By entering a LaTeX-argument, all cell properties set in the table dialog
10960  are overwritten.
10961  
10962 \begin_inset Note Greyedout
10963 status open
10964
10965 \begin_layout Standard
10966
10967 \series bold
10968 Note:
10969 \series default
10970  Due to a bug, LyX shows the overwritten properties anyway.
10971 \end_layout
10972
10973 \end_inset
10974
10975  As the text should be horizontally centered, the command 
10976 \series bold
10977
10978 \backslash
10979 centering
10980 \series default
10981  is added.
10982  You can now enter the following LaTeX-argument for the first spanned column:
10983 \end_layout
10984
10985 \begin_layout Standard
10986
10987 \series bold
10988 |>{
10989 \backslash
10990 centering}m{1.25cm-6.2pt}
10991 \end_layout
10992
10993 \begin_layout Standard
10994 The bar 
10995 \begin_inset Quotes eld
10996 \end_inset
10997
10998
10999 \series bold
11000 |
11001 \series default
11002
11003 \begin_inset Quotes erd
11004 \end_inset
11005
11006  at the beginning draws the border line and the command 
11007 \series bold
11008 >{ }
11009 \series default
11010  means, that the commands inside the braces are applied before the cell
11011  is created.
11012 \end_layout
11013
11014 \begin_layout Standard
11015 Although we have chosen centered alignment for the text of the multicolumn
11016  cell, it is still left aligned.
11017  This is because LyX only applies the alignment to single columns.
11018  So we have to use for the multicolumn the LaTeX-argument
11019 \end_layout
11020
11021 \begin_layout Standard
11022
11023 \series bold
11024 |>{
11025 \backslash
11026 centering}m{2.5cm}|
11027 \end_layout
11028
11029 \begin_layout Subsection
11030 Multirows
11031 \begin_inset LatexCommand index
11032 name "Multirows"
11033
11034 \end_inset
11035
11036
11037 \begin_inset LatexCommand index
11038 name "Table ! Multirows"
11039
11040 \end_inset
11041
11042
11043 \begin_inset LatexCommand index
11044 name "LaTeX-packages ! multirow"
11045
11046 \end_inset
11047
11048
11049 \end_layout
11050
11051 \begin_layout Standard
11052 In contrary to multicolumns multirows are not yet supported by LyX so a
11053  bit of ERT needs to be used.
11054  To use multirows load the LaTeX-package 
11055 \series bold
11056 multirow
11057 \series default
11058  in your document preamble with the command
11059 \end_layout
11060
11061 \begin_layout Standard
11062
11063 \series bold
11064
11065 \backslash
11066 usepackage{multirow}
11067 \end_layout
11068
11069 \begin_layout Standard
11070 Multirows are created with the command
11071 \end_layout
11072
11073 \begin_layout Standard
11074
11075 \series bold
11076
11077 \backslash
11078 multirow{number of rows}{cell width}{cell entry}
11079 \end_layout
11080
11081 \begin_layout Standard
11082 To create the following table:
11083 \end_layout
11084
11085 \begin_layout Standard
11086 \align center
11087 \begin_inset ERT
11088 status collapsed
11089
11090 \begin_layout Standard
11091
11092
11093 \backslash
11094 renewcommand{
11095 \backslash
11096 multirowsetup}{
11097 \backslash
11098 centering}
11099 \end_layout
11100
11101 \end_inset
11102
11103
11104 \begin_inset Tabular
11105 <lyxtabular version="3" rows="3" columns="3">
11106 <features>
11107 <column alignment="center" valignment="top" leftline="true" width="0">
11108 <column alignment="center" valignment="top" leftline="true" width="0">
11109 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
11110 <row topline="true">
11111 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11112 \begin_inset Text
11113
11114 \begin_layout Standard
11115 a
11116 \end_layout
11117
11118 \end_inset
11119 </cell>
11120 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11121 \begin_inset Text
11122
11123 \begin_layout Standard
11124 b
11125 \end_layout
11126
11127 \end_inset
11128 </cell>
11129 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11130 \begin_inset Text
11131
11132 \begin_layout Standard
11133 c
11134 \end_layout
11135
11136 \end_inset
11137 </cell>
11138 </row>
11139 <row topline="true">
11140 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11141 \begin_inset Text
11142
11143 \begin_layout Standard
11144 \begin_inset ERT
11145 status collapsed
11146
11147 \begin_layout Standard
11148
11149
11150 \backslash
11151 multirow{2}{2.5cm}{
11152 \end_layout
11153
11154 \end_inset
11155
11156 multirow entry
11157 \begin_inset ERT
11158 status collapsed
11159
11160 \begin_layout Standard
11161
11162 }
11163 \end_layout
11164
11165 \end_inset
11166
11167
11168 \end_layout
11169
11170 \end_inset
11171 </cell>
11172 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11173 \begin_inset Text
11174
11175 \begin_layout Standard
11176 e
11177 \end_layout
11178
11179 \end_inset
11180 </cell>
11181 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11182 \begin_inset Text
11183
11184 \begin_layout Standard
11185 f
11186 \end_layout
11187
11188 \end_inset
11189 </cell>
11190 </row>
11191 <row topline="true" bottomline="true">
11192 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11193 \begin_inset Text
11194
11195 \begin_layout Standard
11196
11197 \end_layout
11198
11199 \end_inset
11200 </cell>
11201 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11202 \begin_inset Text
11203
11204 \begin_layout Standard
11205 h
11206 \end_layout
11207
11208 \end_inset
11209 </cell>
11210 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11211 \begin_inset Text
11212
11213 \begin_layout Standard
11214 i
11215 \end_layout
11216
11217 \end_inset
11218 </cell>
11219 </row>
11220 </lyxtabular>
11221
11222 \end_inset
11223
11224
11225 \begin_inset ERT
11226 status collapsed
11227
11228 \begin_layout Standard
11229
11230
11231 \backslash
11232 renewcommand{
11233 \backslash
11234 multirowsetup}{
11235 \backslash
11236 raggedright}
11237 \end_layout
11238
11239 \end_inset
11240
11241
11242 \end_layout
11243
11244 \begin_layout Standard
11245 create a 3×3 table.
11246  To get rid of the line above the last cell in the first column, the cell
11247  is marked as multicolumn and the upper border is unset.
11248  The multirow is now created in the second row of the first column by inserting
11249  there the command
11250 \end_layout
11251
11252 \begin_layout Standard
11253
11254 \series bold
11255
11256 \backslash
11257 multirow{2}{2.5cm}{
11258 \end_layout
11259
11260 \begin_layout Standard
11261 as ERT.
11262  According to the command parameters the multirow spans now two rows and
11263  has a width of 2.5\InsetSpace \thinspace{}
11264 cm.
11265  The content of the multirow cell follows outside the ERT box and the command
11266  is finished with a right brace 
11267 \series bold
11268 }
11269 \series default
11270  in another ERT-box behind the text.
11271 \end_layout
11272
11273 \begin_layout Standard
11274
11275 \series bold
11276
11277 \backslash
11278 multirow
11279 \series default
11280  left-aligns its content by default.
11281  To override the default, renew the command 
11282 \series bold
11283
11284 \backslash
11285 multirowsetup
11286 \series default
11287  with the command
11288 \end_layout
11289
11290 \begin_layout Standard
11291
11292 \series bold
11293
11294 \backslash
11295 renewcommand{
11296 \backslash
11297 multirowsetup}{
11298 \backslash
11299 centering}
11300 \end_layout
11301
11302 \begin_layout Standard
11303 in ERT in the document preamble.
11304  Then all entries of multirow cells in the document are centered.
11305  If centering is only needed for several tables, you can renew the command
11306  in an ERT box just before the table instead of the preamble.
11307  If the text should be right-aligned, replace 
11308 \series bold
11309
11310 \backslash
11311 centering
11312 \series default
11313  by 
11314 \series bold
11315
11316 \backslash
11317 raggedleft
11318 \series default
11319 .
11320  To return to left-alignment 
11321 \series bold
11322
11323 \backslash
11324 raggedright
11325 \series default
11326  is used.
11327 \end_layout
11328
11329 \begin_layout Section
11330 Formal Tables
11331 \begin_inset LatexCommand label
11332 name "sec:Formal-Tables"
11333
11334 \end_inset
11335
11336
11337 \begin_inset LatexCommand index
11338 name "Table ! Formal"
11339
11340 \end_inset
11341
11342
11343 \end_layout
11344
11345 \begin_layout Standard
11346 Tables are often typeset in books similar to Table\InsetSpace ~
11347
11348 \begin_inset LatexCommand ref
11349 reference "tab:Example-booktabs-table"
11350
11351 \end_inset
11352
11353 .
11354  This kind of tables is called 
11355 \begin_inset Quotes eld
11356 \end_inset
11357
11358
11359 \emph on
11360 formal
11361 \emph default
11362
11363 \begin_inset Quotes erd
11364 \end_inset
11365
11366 .
11367  To make a table a formal table use the option 
11368 \family sans
11369 Formal
11370 \family default
11371  in the 
11372 \family sans
11373 Borders
11374 \family default
11375  tab of the table dialog.
11376 \end_layout
11377
11378 \begin_layout Standard
11379 \begin_inset Float table
11380 placement h
11381 wide false
11382 sideways false
11383 status open
11384
11385 \begin_layout Caption
11386 \begin_inset LatexCommand label
11387 name "tab:Example-booktabs-table"
11388
11389 \end_inset
11390
11391 Example booktabs-table
11392 \end_layout
11393
11394 \begin_layout Standard
11395 \align center
11396 \begin_inset Tabular
11397 <lyxtabular version="3" rows="8" columns="4">
11398 <features booktabs="true">
11399 <column alignment="center" valignment="top" rightline="true" width="0">
11400 <column alignment="center" valignment="top" width="0">
11401 <column alignment="center" valignment="top" width="0">
11402 <column alignment="center" valignment="top" width="0">
11403 <row topline="true">
11404 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11405 \begin_inset Text
11406
11407 \begin_layout Standard
11408 System
11409 \end_layout
11410
11411 \end_inset
11412 </cell>
11413 <cell alignment="center" valignment="top" topline="true" usebox="none">
11414 \begin_inset Text
11415
11416 \begin_layout Standard
11417 Medipix
11418 \begin_inset Formula $\,$
11419 \end_inset
11420
11421 1
11422 \end_layout
11423
11424 \end_inset
11425 </cell>
11426 <cell multicolumn="1" alignment="center" valignment="top" leftline="true" usebox="none">
11427 \begin_inset Text
11428
11429 \begin_layout Standard
11430 Medipix
11431 \begin_inset Formula $\,$
11432 \end_inset
11433
11434 2
11435 \end_layout
11436
11437 \end_inset
11438 </cell>
11439 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11440 \begin_inset Text
11441
11442 \begin_layout Standard
11443
11444 \end_layout
11445
11446 \end_inset
11447 </cell>
11448 </row>
11449 <row>
11450 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11451 \begin_inset Text
11452
11453 \begin_layout Standard
11454 \begin_inset ERT
11455 status collapsed
11456
11457 \begin_layout Standard
11458
11459
11460 \backslash
11461 cmidrule(r){2-2}
11462 \end_layout
11463
11464 \end_inset
11465
11466
11467 \begin_inset ERT
11468 status collapsed
11469
11470 \begin_layout Standard
11471
11472
11473 \backslash
11474 cmidrule(l){3-4}
11475 \end_layout
11476
11477 \end_inset
11478
11479 Detector thickness [
11480 \begin_inset ERT
11481 status collapsed
11482
11483 \begin_layout Standard
11484
11485
11486 \backslash
11487 textmu m
11488 \end_layout
11489
11490 \end_inset
11491
11492 ]
11493 \end_layout
11494
11495 \end_inset
11496 </cell>
11497 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11498 \begin_inset Text
11499
11500 \begin_layout Standard
11501 300
11502 \end_layout
11503
11504 \end_inset
11505 </cell>
11506 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11507 \begin_inset Text
11508
11509 \begin_layout Standard
11510 300
11511 \end_layout
11512
11513 \end_inset
11514 </cell>
11515 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11516 \begin_inset Text
11517
11518 \begin_layout Standard
11519 700
11520 \end_layout
11521
11522 \end_inset
11523 </cell>
11524 </row>
11525 <row topline="true">
11526 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11527 \begin_inset Text
11528
11529 \begin_layout Standard
11530 Edge angle [°]
11531 \end_layout
11532
11533 \end_inset
11534 </cell>
11535 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11536 \begin_inset Text
11537
11538 \begin_layout Standard
11539 3.55
11540 \end_layout
11541
11542 \end_inset
11543 </cell>
11544 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11545 \begin_inset Text
11546
11547 \begin_layout Standard
11548 2.71
11549 \end_layout
11550
11551 \end_inset
11552 </cell>
11553 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11554 \begin_inset Text
11555
11556 \begin_layout Standard
11557 7.99
11558 \end_layout
11559
11560 \end_inset
11561 </cell>
11562 </row>
11563 <row topspace="default">
11564 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11565 \begin_inset Text
11566
11567 \begin_layout Standard
11568 Spatial resolution [
11569 \begin_inset ERT
11570 status collapsed
11571
11572 \begin_layout Standard
11573
11574
11575 \backslash
11576 textmu m
11577 \end_layout
11578
11579 \end_inset
11580
11581 ]
11582 \end_layout
11583
11584 \end_inset
11585 </cell>
11586 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11587 \begin_inset Text
11588
11589 \begin_layout Standard
11590 4.26
11591 \end_layout
11592
11593 \end_inset
11594 </cell>
11595 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11596 \begin_inset Text
11597
11598 \begin_layout Standard
11599 10.17
11600 \end_layout
11601
11602 \end_inset
11603 </cell>
11604 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11605 \begin_inset Text
11606
11607 \begin_layout Standard
11608 10.56
11609 \end_layout
11610
11611 \end_inset
11612 </cell>
11613 </row>
11614 <row topspace="default">
11615 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11616 \begin_inset Text
11617
11618 \begin_layout Standard
11619 MTF at 
11620 \begin_inset Formula $f_{\mathrm{max}}$
11621 \end_inset
11622
11623
11624 \end_layout
11625
11626 \end_inset
11627 </cell>
11628 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11629 \begin_inset Text
11630
11631 \begin_layout Standard
11632 0.53
11633 \end_layout
11634
11635 \end_inset
11636 </cell>
11637 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11638 \begin_inset Text
11639
11640 \begin_layout Standard
11641 0.37
11642 \end_layout
11643
11644 \end_inset
11645 </cell>
11646 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11647 \begin_inset Text
11648
11649 \begin_layout Standard
11650 0.39
11651 \end_layout
11652
11653 \end_inset
11654 </cell>
11655 </row>
11656 <row topspace="default">
11657 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11658 \begin_inset Text
11659
11660 \begin_layout Standard
11661 \begin_inset ERT
11662 status collapsed
11663
11664 \begin_layout Standard
11665
11666
11667 \backslash
11668 cmidrule(l{10pt}){1-1}
11669 \end_layout
11670
11671 \end_inset
11672
11673 LSF-spatial resolution
11674 \end_layout
11675
11676 \end_inset
11677 </cell>
11678 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11679 \begin_inset Text
11680
11681 \begin_layout Standard
11682
11683 \end_layout
11684
11685 \end_inset
11686 </cell>
11687 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11688 \begin_inset Text
11689
11690 \begin_layout Standard
11691
11692 \end_layout
11693
11694 \end_inset
11695 </cell>
11696 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11697 \begin_inset Text
11698
11699 \begin_layout Standard
11700
11701 \end_layout
11702
11703 \end_inset
11704 </cell>
11705 </row>
11706 <row>
11707 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11708 \begin_inset Text
11709
11710 \begin_layout Standard
11711 in 
11712 \begin_inset ERT
11713 status collapsed
11714
11715 \begin_layout Standard
11716
11717
11718 \backslash
11719 textmu m
11720 \end_layout
11721
11722 \end_inset
11723
11724
11725 \end_layout
11726
11727 \end_inset
11728 </cell>
11729 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11730 \begin_inset Text
11731
11732 \begin_layout Standard
11733 129.7
11734 \end_layout
11735
11736 \end_inset
11737 </cell>
11738 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11739 \begin_inset Text
11740
11741 \begin_layout Standard
11742 52.75
11743 \end_layout
11744
11745 \end_inset
11746 </cell>
11747 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11748 \begin_inset Text
11749
11750 \begin_layout Standard
11751 50.78
11752 \end_layout
11753
11754 \end_inset
11755 </cell>
11756 </row>
11757 <row bottomline="true">
11758 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11759 \begin_inset Text
11760
11761 \begin_layout Standard
11762 in % of pixel size
11763 \end_layout
11764
11765 \end_inset
11766 </cell>
11767 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11768 \begin_inset Text
11769
11770 \begin_layout Standard
11771 76.3
11772 \end_layout
11773
11774 \end_inset
11775 </cell>
11776 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11777 \begin_inset Text
11778
11779 \begin_layout Standard
11780 95.9
11781 \end_layout
11782
11783 \end_inset
11784 </cell>
11785 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11786 \begin_inset Text
11787
11788 \begin_layout Standard
11789 92.3
11790 \end_layout
11791
11792 \end_inset
11793 </cell>
11794 </row>
11795 </lyxtabular>
11796
11797 \end_inset
11798
11799
11800 \end_layout
11801
11802 \end_inset
11803
11804
11805 \end_layout
11806
11807 \begin_layout Standard
11808 Spaces to table rows can be added using the 
11809 \family sans
11810 Borders
11811 \family default
11812  tab of the table dialog as described in section\InsetSpace ~
11813
11814 \begin_inset LatexCommand ref
11815 reference "sub:Row-Spacing"
11816
11817 \end_inset
11818
11819 .
11820 \end_layout
11821
11822 \begin_layout Standard
11823 In contrary to normal tables, formal tables have no vertical table lines.
11824  The horizontal table lines can be set like for normal tables but they appear
11825  with different width in the output:
11826 \newline
11827 The first and the last table line have
11828  a default width of 0.08\InsetSpace \thinspace{}
11829 em while the other lines have a default width of
11830  0.05\InsetSpace \thinspace{}
11831 em.
11832 \end_layout
11833
11834 \begin_layout Standard
11835 The default widths can be changed with the following preamble lines
11836 \end_layout
11837
11838 \begin_layout Standard
11839
11840 \series bold
11841
11842 \backslash
11843 let
11844 \backslash
11845 mytoprule
11846 \backslash
11847 toprule
11848 \newline
11849
11850 \backslash
11851 renewcommand{
11852 \backslash
11853 toprule}{
11854 \backslash
11855 mytoprule[width]}
11856 \end_layout
11857
11858 \begin_layout Standard
11859 This example is for the first line, the so called toprule.
11860  If you want to change the width for the last line, replace 
11861 \series bold
11862 toprule
11863 \series default
11864  by 
11865 \series bold
11866 bottomrule
11867 \series default
11868 .
11869  To change the width for the other lines replace 
11870 \series bold
11871 toprule
11872 \series default
11873  by 
11874 \series bold
11875 midrule
11876 \series default
11877 .
11878  You can use all units listed in appendix\InsetSpace ~
11879
11880 \begin_inset LatexCommand ref
11881 reference "cha:Units-available-in"
11882
11883 \end_inset
11884
11885  to set the width.
11886 \end_layout
11887
11888 \begin_layout Standard
11889 Lines that don't span over all table columns can be created by setting a
11890  table line for multicolumn cells.
11891  LyX will then internally use the command 
11892 \series bold
11893
11894 \backslash
11895 cmidrule
11896 \series default
11897  to create this line.
11898  Its full scheme is
11899 \end_layout
11900
11901 \begin_layout Standard
11902
11903 \series bold
11904
11905 \backslash
11906 cmidrule[width](trim){startcol-endcol}
11907 \end_layout
11908
11909 \begin_layout Standard
11910 The options of 
11911 \series bold
11912
11913 \backslash
11914 cmidrule
11915 \series default
11916  are are currently not supported by LyX so you have to use ERT to be able
11917  to use them.
11918  
11919 \series bold
11920
11921 \backslash
11922 cmidrule
11923 \series default
11924 s can manually be created by inserting the command as ERT as first cell
11925  entry of the first cell of a row.
11926  The line is then drawn in the output above the current row.
11927 \end_layout
11928
11929 \begin_layout Standard
11930 The default for the width is 0.03\InsetSpace \thinspace{}
11931 em.
11932  Startcol is the number of the column where the line starts and endcol the
11933  column number where the line ends.
11934  The endcol always needs to be specified, also when the line should span
11935  only one column.
11936  The optional parameter trim could be either 
11937 \emph on
11938 l{trimwidth}
11939 \emph default
11940 , or 
11941 \emph on
11942 r{trimwidth}
11943 \emph default
11944  where the trimwidth is also optional.
11945  Using for example the parameter 
11946 \emph on
11947 l{2pt}
11948 \emph default
11949  means that the line is trimmed from its left end by 2\InsetSpace \thinspace{}
11950 pt.
11951  If you don't specify the trimwidth the lines are trimmed by the default
11952  of 0.5\InsetSpace \thinspace{}
11953 em.
11954 \end_layout
11955
11956 \begin_layout Standard
11957 \begin_inset VSpace bigskip
11958 \end_inset
11959
11960 Table\InsetSpace ~
11961
11962 \begin_inset LatexCommand ref
11963 reference "tab:Example-booktabs-table"
11964
11965 \end_inset
11966
11967  was created using the commands
11968 \end_layout
11969
11970 \begin_layout Standard
11971
11972 \series bold
11973
11974 \backslash
11975 cmidrule(r){2-2}
11976 \backslash
11977 cmidrule(l){3-4}
11978 \end_layout
11979
11980 \begin_layout Standard
11981 at the beginning of the in the second row and
11982 \end_layout
11983
11984 \begin_layout Standard
11985
11986 \series bold
11987
11988 \backslash
11989 cmidrule(l{10pt}){1-1}
11990 \end_layout
11991
11992 \begin_layout Standard
11993 in the sixth row.
11994 \end_layout
11995
11996 \begin_layout Standard
11997
11998 \end_layout
11999
12000 \begin_layout Standard
12001 \begin_inset VSpace bigskip
12002 \end_inset
12003
12004
12005 \end_layout
12006
12007 \begin_layout Standard
12008 You might want to have overlapping 
12009 \series bold
12010
12011 \backslash
12012 cmidrule
12013 \series default
12014 s like in Table\InsetSpace ~
12015
12016 \begin_inset LatexCommand ref
12017 reference "tab:Special-booktabs-table"
12018
12019 \end_inset
12020
12021 .
12022  This can be achieved with the ERT command
12023 \end_layout
12024
12025 \begin_layout Standard
12026
12027 \series bold
12028
12029 \backslash
12030 moremidrules
12031 \end_layout
12032
12033 \begin_layout Standard
12034 The command that was used for the second row of Table\InsetSpace ~
12035
12036 \begin_inset LatexCommand ref
12037 reference "tab:Special-booktabs-table"
12038
12039 \end_inset
12040
12041  is
12042 \end_layout
12043
12044 \begin_layout Standard
12045
12046 \series bold
12047
12048 \backslash
12049 cmidrule(r){2-2}
12050 \backslash
12051 cmidrule(l){3-4}
12052 \backslash
12053 moremidrules
12054 \backslash
12055 cmidrule{2-4}
12056 \end_layout
12057
12058 \begin_layout Standard
12059 The command for the sixth row is
12060 \end_layout
12061
12062 \begin_layout Standard
12063
12064 \series bold
12065
12066 \backslash
12067 midrule
12068 \backslash
12069 moremidrules
12070 \backslash
12071 cmidrule{3-4}
12072 \end_layout
12073
12074 \begin_layout Standard
12075 \begin_inset VSpace bigskip
12076 \end_inset
12077
12078
12079 \end_layout
12080
12081 \begin_layout Standard
12082 If you are anyway not satisfied with the border line spacing, you can use
12083  the following command to produce lines that span over all table columns
12084 \series bold
12085 :
12086 \end_layout
12087
12088 \begin_layout Standard
12089
12090 \series bold
12091
12092 \backslash
12093 specialrule{width}{space above}{space below}
12094 \end_layout
12095
12096 \begin_layout Standard
12097 For more informations about these specialties, we refer to the manual of
12098  the LaTeX-package 
12099 \series bold
12100 booktabs
12101 \series default
12102  
12103 \begin_inset LatexCommand cite
12104 key "booktabs"
12105
12106 \end_inset
12107
12108 .
12109 \begin_inset LatexCommand index
12110 name "LaTeX-packages ! booktabs"
12111
12112 \end_inset
12113
12114
12115 \end_layout
12116
12117 \begin_layout Standard
12118 \begin_inset Float table
12119 placement h
12120 wide false
12121 sideways false
12122 status open
12123
12124 \begin_layout Caption
12125 \begin_inset LatexCommand label
12126 name "tab:Special-booktabs-table"
12127
12128 \end_inset
12129
12130 Special booktabs-table
12131 \end_layout
12132
12133 \begin_layout Standard
12134 \align center
12135 \begin_inset Tabular
12136 <lyxtabular version="3" rows="8" columns="4">
12137 <features booktabs="true">
12138 <column alignment="center" valignment="top" width="0">
12139 <column alignment="center" valignment="top" width="0">
12140 <column alignment="center" valignment="top" width="0">
12141 <column alignment="center" valignment="top" width="0">
12142 <row topline="true">
12143 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12144 \begin_inset Text
12145
12146 \begin_layout Standard
12147 System
12148 \end_layout
12149
12150 \end_inset
12151 </cell>
12152 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12153 \begin_inset Text
12154
12155 \begin_layout Standard
12156 Medipix\InsetSpace \thinspace{}
12157 1
12158 \end_layout
12159
12160 \end_inset
12161 </cell>
12162 <cell multicolumn="1" alignment="center" valignment="top" leftline="true" usebox="none">
12163 \begin_inset Text
12164
12165 \begin_layout Standard
12166 Medipix\InsetSpace \thinspace{}
12167 2
12168 \end_layout
12169
12170 \end_inset
12171 </cell>
12172 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12173 \begin_inset Text
12174
12175 \begin_layout Standard
12176
12177 \end_layout
12178
12179 \end_inset
12180 </cell>
12181 </row>
12182 <row>
12183 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12184 \begin_inset Text
12185
12186 \begin_layout Standard
12187 \begin_inset ERT
12188 status collapsed
12189
12190 \begin_layout Standard
12191
12192
12193 \backslash
12194 cmidrule(r){2-2}
12195 \end_layout
12196
12197 \end_inset
12198
12199
12200 \begin_inset ERT
12201 status collapsed
12202
12203 \begin_layout Standard
12204
12205
12206 \backslash
12207 cmidrule(l){3-4}
12208 \end_layout
12209
12210 \end_inset
12211
12212
12213 \begin_inset ERT
12214 status collapsed
12215
12216 \begin_layout Standard
12217
12218
12219 \backslash
12220 morecmidrules 
12221 \end_layout
12222
12223 \end_inset
12224
12225
12226 \begin_inset ERT
12227 status collapsed
12228
12229 \begin_layout Standard
12230
12231
12232 \backslash
12233 cmidrule{2-4}
12234 \end_layout
12235
12236 \end_inset
12237
12238 Detector thickness [
12239 \begin_inset ERT
12240 status collapsed
12241
12242 \begin_layout Standard
12243
12244
12245 \backslash
12246 textmu m
12247 \end_layout
12248
12249 \end_inset
12250
12251 ]
12252 \end_layout
12253
12254 \end_inset
12255 </cell>
12256 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12257 \begin_inset Text
12258
12259 \begin_layout Standard
12260 300
12261 \end_layout
12262
12263 \end_inset
12264 </cell>
12265 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12266 \begin_inset Text
12267
12268 \begin_layout Standard
12269 300
12270 \end_layout
12271
12272 \end_inset
12273 </cell>
12274 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12275 \begin_inset Text
12276
12277 \begin_layout Standard
12278 700
12279 \end_layout
12280
12281 \end_inset
12282 </cell>
12283 </row>
12284 <row topline="true">
12285 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12286 \begin_inset Text
12287
12288 \begin_layout Standard
12289 Edge angle [°]
12290 \end_layout
12291
12292 \end_inset
12293 </cell>
12294 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12295 \begin_inset Text
12296
12297 \begin_layout Standard
12298 3.55
12299 \end_layout
12300
12301 \end_inset
12302 </cell>
12303 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12304 \begin_inset Text
12305
12306 \begin_layout Standard
12307 2.71
12308 \end_layout
12309
12310 \end_inset
12311 </cell>
12312 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12313 \begin_inset Text
12314
12315 \begin_layout Standard
12316 7.99
12317 \end_layout
12318
12319 \end_inset
12320 </cell>
12321 </row>
12322 <row topspace="default">
12323 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12324 \begin_inset Text
12325
12326 \begin_layout Standard
12327 Spatial resolution [
12328 \begin_inset ERT
12329 status collapsed
12330
12331 \begin_layout Standard
12332
12333
12334 \backslash
12335 textmu m
12336 \end_layout
12337
12338 \end_inset
12339
12340 ]
12341 \end_layout
12342
12343 \end_inset
12344 </cell>
12345 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12346 \begin_inset Text
12347
12348 \begin_layout Standard
12349 4.26
12350 \end_layout
12351
12352 \end_inset
12353 </cell>
12354 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12355 \begin_inset Text
12356
12357 \begin_layout Standard
12358 10.17
12359 \end_layout
12360
12361 \end_inset
12362 </cell>
12363 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12364 \begin_inset Text
12365
12366 \begin_layout Standard
12367 10.56
12368 \end_layout
12369
12370 \end_inset
12371 </cell>
12372 </row>
12373 <row topspace="default">
12374 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12375 \begin_inset Text
12376
12377 \begin_layout Standard
12378 MTF at 
12379 \begin_inset Formula $f_{\mathrm{max}}$
12380 \end_inset
12381
12382
12383 \end_layout
12384
12385 \end_inset
12386 </cell>
12387 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12388 \begin_inset Text
12389
12390 \begin_layout Standard
12391 0.53
12392 \end_layout
12393
12394 \end_inset
12395 </cell>
12396 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12397 \begin_inset Text
12398
12399 \begin_layout Standard
12400 0.37
12401 \end_layout
12402
12403 \end_inset
12404 </cell>
12405 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12406 \begin_inset Text
12407
12408 \begin_layout Standard
12409 0.39
12410 \end_layout
12411
12412 \end_inset
12413 </cell>
12414 </row>
12415 <row topline="true">
12416 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12417 \begin_inset Text
12418
12419 \begin_layout Standard
12420 \begin_inset ERT
12421 status collapsed
12422
12423 \begin_layout Standard
12424
12425
12426 \backslash
12427 morecmidrules 
12428 \end_layout
12429
12430 \end_inset
12431
12432
12433 \begin_inset ERT
12434 status collapsed
12435
12436 \begin_layout Standard
12437
12438
12439 \backslash
12440 cmidrule{3-4}
12441 \end_layout
12442
12443 \end_inset
12444
12445 LSF-spatial resolution
12446 \end_layout
12447
12448 \end_inset
12449 </cell>
12450 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12451 \begin_inset Text
12452
12453 \begin_layout Standard
12454
12455 \end_layout
12456
12457 \end_inset
12458 </cell>
12459 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12460 \begin_inset Text
12461
12462 \begin_layout Standard
12463
12464 \end_layout
12465
12466 \end_inset
12467 </cell>
12468 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12469 \begin_inset Text
12470
12471 \begin_layout Standard
12472
12473 \end_layout
12474
12475 \end_inset
12476 </cell>
12477 </row>
12478 <row>
12479 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12480 \begin_inset Text
12481
12482 \begin_layout Standard
12483 in 
12484 \begin_inset ERT
12485 status collapsed
12486
12487 \begin_layout Standard
12488
12489
12490 \backslash
12491 textmu m
12492 \end_layout
12493
12494 \end_inset
12495
12496
12497 \end_layout
12498
12499 \end_inset
12500 </cell>
12501 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12502 \begin_inset Text
12503
12504 \begin_layout Standard
12505 129.7
12506 \end_layout
12507
12508 \end_inset
12509 </cell>
12510 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12511 \begin_inset Text
12512
12513 \begin_layout Standard
12514 52.75
12515 \end_layout
12516
12517 \end_inset
12518 </cell>
12519 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12520 \begin_inset Text
12521
12522 \begin_layout Standard
12523 50.78
12524 \end_layout
12525
12526 \end_inset
12527 </cell>
12528 </row>
12529 <row bottomline="true">
12530 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12531 \begin_inset Text
12532
12533 \begin_layout Standard
12534 in % of pixel size
12535 \end_layout
12536
12537 \end_inset
12538 </cell>
12539 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12540 \begin_inset Text
12541
12542 \begin_layout Standard
12543 76.3
12544 \end_layout
12545
12546 \end_inset
12547 </cell>
12548 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12549 \begin_inset Text
12550
12551 \begin_layout Standard
12552 95.9
12553 \end_layout
12554
12555 \end_inset
12556 </cell>
12557 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12558 \begin_inset Text
12559
12560 \begin_layout Standard
12561 92.3
12562 \end_layout
12563
12564 \end_inset
12565 </cell>
12566 </row>
12567 </lyxtabular>
12568
12569 \end_inset
12570
12571
12572 \end_layout
12573
12574 \end_inset
12575
12576
12577 \end_layout
12578
12579 \begin_layout Section
12580 Vertical Table Alignment
12581 \begin_inset LatexCommand index
12582 name "Table ! Alignment"
12583
12584 \end_inset
12585
12586
12587 \end_layout
12588
12589 \begin_layout Standard
12590 To align tables vertically in a text line the table must be inside a box.
12591  The box can then be vertically aligned as described in section\InsetSpace ~
12592
12593 \begin_inset LatexCommand ref
12594 reference "sec:Box-Dialog"
12595
12596 \end_inset
12597
12598 .
12599 \end_layout
12600
12601 \begin_layout Standard
12602 In the following example the tables are inside a minipage
12603 \begin_inset Foot
12604 status collapsed
12605
12606 \begin_layout Standard
12607 Minipages are described in section\InsetSpace ~
12608
12609 \begin_inset LatexCommand ref
12610 reference "sec:Minipages"
12611
12612 \end_inset
12613
12614 .
12615 \end_layout
12616
12617 \end_inset
12618
12619  box that has a width of 15\InsetSpace \thinspace{}
12620 col%:
12621 \end_layout
12622
12623 \begin_layout Itemize
12624 test 
12625 \begin_inset Box Frameless
12626 position "t"
12627 hor_pos "c"
12628 has_inner_box 1
12629 inner_pos "c"
12630 use_parbox 0
12631 width "15col%"
12632 special "none"
12633 height "1in"
12634 height_special "totalheight"
12635 status collapsed
12636
12637 \begin_layout Standard
12638 \begin_inset Tabular
12639 <lyxtabular version="3" rows="3" columns="3">
12640 <features>
12641 <column alignment="center" valignment="top" leftline="true" width="0">
12642 <column alignment="center" valignment="top" leftline="true" width="0">
12643 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
12644 <row topline="true">
12645 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12646 \begin_inset Text
12647
12648 \begin_layout Standard
12649 a
12650 \end_layout
12651
12652 \end_inset
12653 </cell>
12654 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12655 \begin_inset Text
12656
12657 \begin_layout Standard
12658 d
12659 \end_layout
12660
12661 \end_inset
12662 </cell>
12663 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12664 \begin_inset Text
12665
12666 \begin_layout Standard
12667 g
12668 \end_layout
12669
12670 \end_inset
12671 </cell>
12672 </row>
12673 <row topline="true">
12674 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12675 \begin_inset Text
12676
12677 \begin_layout Standard
12678 b
12679 \end_layout
12680
12681 \end_inset
12682 </cell>
12683 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12684 \begin_inset Text
12685
12686 \begin_layout Standard
12687 e
12688 \end_layout
12689
12690 \end_inset
12691 </cell>
12692 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12693 \begin_inset Text
12694
12695 \begin_layout Standard
12696 h
12697 \end_layout
12698
12699 \end_inset
12700 </cell>
12701 </row>
12702 <row topline="true" bottomline="true">
12703 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12704 \begin_inset Text
12705
12706 \begin_layout Standard
12707 c
12708 \end_layout
12709
12710 \end_inset
12711 </cell>
12712 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12713 \begin_inset Text
12714
12715 \begin_layout Standard
12716 f
12717 \end_layout
12718
12719 \end_inset
12720 </cell>
12721 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12722 \begin_inset Text
12723
12724 \begin_layout Standard
12725 i
12726 \end_layout
12727
12728 \end_inset
12729 </cell>
12730 </row>
12731 </lyxtabular>
12732
12733 \end_inset
12734
12735
12736 \end_layout
12737
12738 \end_inset
12739
12740  test 
12741 \begin_inset ERT
12742 status collapsed
12743
12744 \begin_layout Standard
12745
12746
12747 \backslash
12748 raisebox{0.85
12749 \backslash
12750 baselineskip}{
12751 \end_layout
12752
12753 \end_inset
12754
12755
12756 \begin_inset Box Frameless
12757 position "t"
12758 hor_pos "c"
12759 has_inner_box 1
12760 inner_pos "c"
12761 use_parbox 0
12762 width "15col%"
12763 special "none"
12764 height "1in"
12765 height_special "totalheight"
12766 status collapsed
12767
12768 \begin_layout Standard
12769 \begin_inset Tabular
12770 <lyxtabular version="3" rows="3" columns="3">
12771 <features>
12772 <column alignment="center" valignment="top" leftline="true" width="0">
12773 <column alignment="center" valignment="top" leftline="true" width="0">
12774 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
12775 <row topline="true">
12776 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12777 \begin_inset Text
12778
12779 \begin_layout Standard
12780 a
12781 \end_layout
12782
12783 \end_inset
12784 </cell>
12785 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12786 \begin_inset Text
12787
12788 \begin_layout Standard
12789 d
12790 \end_layout
12791
12792 \end_inset
12793 </cell>
12794 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12795 \begin_inset Text
12796
12797 \begin_layout Standard
12798 g
12799 \end_layout
12800
12801 \end_inset
12802 </cell>
12803 </row>
12804 <row topline="true">
12805 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12806 \begin_inset Text
12807
12808 \begin_layout Standard
12809 b
12810 \end_layout
12811
12812 \end_inset
12813 </cell>
12814 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12815 \begin_inset Text
12816
12817 \begin_layout Standard
12818 e
12819 \end_layout
12820
12821 \end_inset
12822 </cell>
12823 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12824 \begin_inset Text
12825
12826 \begin_layout Standard
12827 h
12828 \end_layout
12829
12830 \end_inset
12831 </cell>
12832 </row>
12833 <row topline="true" bottomline="true">
12834 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12835 \begin_inset Text
12836
12837 \begin_layout Standard
12838 c
12839 \end_layout
12840
12841 \end_inset
12842 </cell>
12843 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12844 \begin_inset Text
12845
12846 \begin_layout Standard
12847 f
12848 \end_layout
12849
12850 \end_inset
12851 </cell>
12852 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12853 \begin_inset Text
12854
12855 \begin_layout Standard
12856 i
12857 \end_layout
12858
12859 \end_inset
12860 </cell>
12861 </row>
12862 </lyxtabular>
12863
12864 \end_inset
12865
12866
12867 \end_layout
12868
12869 \end_inset
12870
12871
12872 \begin_inset ERT
12873 status collapsed
12874
12875 \begin_layout Standard
12876
12877 }
12878 \end_layout
12879
12880 \end_inset
12881
12882
12883 \end_layout
12884
12885 \begin_layout Itemize
12886 test 
12887 \begin_inset Box Frameless
12888 position "c"
12889 hor_pos "c"
12890 has_inner_box 1
12891 inner_pos "c"
12892 use_parbox 0
12893 width "15col%"
12894 special "none"
12895 height "1in"
12896 height_special "totalheight"
12897 status collapsed
12898
12899 \begin_layout Standard
12900 \begin_inset Tabular
12901 <lyxtabular version="3" rows="3" columns="3">
12902 <features>
12903 <column alignment="center" valignment="top" leftline="true" width="0">
12904 <column alignment="center" valignment="top" leftline="true" width="0">
12905 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
12906 <row topline="true">
12907 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12908 \begin_inset Text
12909
12910 \begin_layout Standard
12911 a
12912 \end_layout
12913
12914 \end_inset
12915 </cell>
12916 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12917 \begin_inset Text
12918
12919 \begin_layout Standard
12920 d
12921 \end_layout
12922
12923 \end_inset
12924 </cell>
12925 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12926 \begin_inset Text
12927
12928 \begin_layout Standard
12929 g
12930 \end_layout
12931
12932 \end_inset
12933 </cell>
12934 </row>
12935 <row topline="true">
12936 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12937 \begin_inset Text
12938
12939 \begin_layout Standard
12940 b
12941 \end_layout
12942
12943 \end_inset
12944 </cell>
12945 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12946 \begin_inset Text
12947
12948 \begin_layout Standard
12949 e
12950 \end_layout
12951
12952 \end_inset
12953 </cell>
12954 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12955 \begin_inset Text
12956
12957 \begin_layout Standard
12958 h
12959 \end_layout
12960
12961 \end_inset
12962 </cell>
12963 </row>
12964 <row topline="true" bottomline="true">
12965 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12966 \begin_inset Text
12967
12968 \begin_layout Standard
12969 c
12970 \end_layout
12971
12972 \end_inset
12973 </cell>
12974 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12975 \begin_inset Text
12976
12977 \begin_layout Standard
12978 f
12979 \end_layout
12980
12981 \end_inset
12982 </cell>
12983 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12984 \begin_inset Text
12985
12986 \begin_layout Standard
12987 i
12988 \end_layout
12989
12990 \end_inset
12991 </cell>
12992 </row>
12993 </lyxtabular>
12994
12995 \end_inset
12996
12997
12998 \end_layout
12999
13000 \end_inset
13001
13002
13003 \end_layout
13004
13005 \begin_layout Itemize
13006 test 
13007 \begin_inset Box Frameless
13008 position "b"
13009 hor_pos "c"
13010 has_inner_box 1
13011 inner_pos "c"
13012 use_parbox 0
13013 width "15col%"
13014 special "none"
13015 height "1in"
13016 height_special "totalheight"
13017 status collapsed
13018
13019 \begin_layout Standard
13020 \begin_inset Tabular
13021 <lyxtabular version="3" rows="3" columns="3">
13022 <features>
13023 <column alignment="center" valignment="top" leftline="true" width="0">
13024 <column alignment="center" valignment="top" leftline="true" width="0">
13025 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
13026 <row topline="true">
13027 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13028 \begin_inset Text
13029
13030 \begin_layout Standard
13031 a
13032 \end_layout
13033
13034 \end_inset
13035 </cell>
13036 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13037 \begin_inset Text
13038
13039 \begin_layout Standard
13040 d
13041 \end_layout
13042
13043 \end_inset
13044 </cell>
13045 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13046 \begin_inset Text
13047
13048 \begin_layout Standard
13049 g
13050 \end_layout
13051
13052 \end_inset
13053 </cell>
13054 </row>
13055 <row topline="true">
13056 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13057 \begin_inset Text
13058
13059 \begin_layout Standard
13060 b
13061 \end_layout
13062
13063 \end_inset
13064 </cell>
13065 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13066 \begin_inset Text
13067
13068 \begin_layout Standard
13069 e
13070 \end_layout
13071
13072 \end_inset
13073 </cell>
13074 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13075 \begin_inset Text
13076
13077 \begin_layout Standard
13078 h
13079 \end_layout
13080
13081 \end_inset
13082 </cell>
13083 </row>
13084 <row topline="true" bottomline="true">
13085 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13086 \begin_inset Text
13087
13088 \begin_layout Standard
13089 c
13090 \end_layout
13091
13092 \end_inset
13093 </cell>
13094 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13095 \begin_inset Text
13096
13097 \begin_layout Standard
13098 f
13099 \end_layout
13100
13101 \end_inset
13102 </cell>
13103 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13104 \begin_inset Text
13105
13106 \begin_layout Standard
13107 i
13108 \end_layout
13109
13110 \end_inset
13111 </cell>
13112 </row>
13113 </lyxtabular>
13114
13115 \end_inset
13116
13117
13118 \end_layout
13119
13120 \end_inset
13121
13122  test 
13123 \begin_inset ERT
13124 status collapsed
13125
13126 \begin_layout Standard
13127
13128
13129 \backslash
13130 raisebox{-0.32
13131 \backslash
13132 baselineskip}{
13133 \end_layout
13134
13135 \end_inset
13136
13137
13138 \begin_inset Box Frameless
13139 position "b"
13140 hor_pos "c"
13141 has_inner_box 1
13142 inner_pos "c"
13143 use_parbox 0
13144 width "15col%"
13145 special "none"
13146 height "1in"
13147 height_special "totalheight"
13148 status collapsed
13149
13150 \begin_layout Standard
13151 \begin_inset Tabular
13152 <lyxtabular version="3" rows="3" columns="3">
13153 <features>
13154 <column alignment="center" valignment="top" leftline="true" width="0">
13155 <column alignment="center" valignment="top" leftline="true" width="0">
13156 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
13157 <row topline="true">
13158 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13159 \begin_inset Text
13160
13161 \begin_layout Standard
13162 a
13163 \end_layout
13164
13165 \end_inset
13166 </cell>
13167 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13168 \begin_inset Text
13169
13170 \begin_layout Standard
13171 d
13172 \end_layout
13173
13174 \end_inset
13175 </cell>
13176 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13177 \begin_inset Text
13178
13179 \begin_layout Standard
13180 g
13181 \end_layout
13182
13183 \end_inset
13184 </cell>
13185 </row>
13186 <row topline="true">
13187 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13188 \begin_inset Text
13189
13190 \begin_layout Standard
13191 b
13192 \end_layout
13193
13194 \end_inset
13195 </cell>
13196 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13197 \begin_inset Text
13198
13199 \begin_layout Standard
13200 e
13201 \end_layout
13202
13203 \end_inset
13204 </cell>
13205 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13206 \begin_inset Text
13207
13208 \begin_layout Standard
13209 h
13210 \end_layout
13211
13212 \end_inset
13213 </cell>
13214 </row>
13215 <row topline="true" bottomline="true">
13216 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13217 \begin_inset Text
13218
13219 \begin_layout Standard
13220 c
13221 \end_layout
13222
13223 \end_inset
13224 </cell>
13225 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13226 \begin_inset Text
13227
13228 \begin_layout Standard
13229 f
13230 \end_layout
13231
13232 \end_inset
13233 </cell>
13234 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13235 \begin_inset Text
13236
13237 \begin_layout Standard
13238 i
13239 \end_layout
13240
13241 \end_inset
13242 </cell>
13243 </row>
13244 </lyxtabular>
13245
13246 \end_inset
13247
13248
13249 \end_layout
13250
13251 \end_inset
13252
13253
13254 \begin_inset ERT
13255 status collapsed
13256
13257 \begin_layout Standard
13258
13259 }
13260 \end_layout
13261
13262 \end_inset
13263
13264
13265 \end_layout
13266
13267 \begin_layout Standard
13268 As you can see, the content of the first and last table row is not correctly
13269  aligned with the text line where the table is in.
13270  To get this alignment, the minipage box must be set into a raisebox
13271 \begin_inset Foot
13272 status collapsed
13273
13274 \begin_layout Standard
13275 Raiseboxes are described in section\InsetSpace ~
13276
13277 \begin_inset LatexCommand ref
13278 reference "sub:Vertical-Alignment"
13279
13280 \end_inset
13281
13282 .
13283 \end_layout
13284
13285 \end_inset
13286
13287 .
13288  In the example above the second table in the first item is aligned using
13289  the ERT-command
13290 \end_layout
13291
13292 \begin_layout Standard
13293
13294 \series bold
13295
13296 \backslash
13297 raisebox{0.85
13298 \backslash
13299 baselineskip}{
13300 \end_layout
13301
13302 \begin_layout Standard
13303 before the box.
13304  Behind the box the closing brace 
13305 \series bold
13306 }
13307 \series default
13308  is inserted as ERT.
13309  For the second table in the last item the command
13310 \end_layout
13311
13312 \begin_layout Standard
13313
13314 \series bold
13315
13316 \backslash
13317 raisebox{-0.32
13318 \backslash
13319 baselineskip}{
13320 \end_layout
13321
13322 \begin_layout Standard
13323 is used.
13324 \end_layout
13325
13326 \begin_layout Standard
13327 \begin_inset Note Greyedout
13328 status open
13329
13330 \begin_layout Standard
13331
13332 \series bold
13333 Note: 
13334 \series default
13335 The alignment of the table row content to the surrounding text line is not
13336  exact.
13337  The needed factor of the 
13338 \series bold
13339
13340 \backslash
13341 raisebox
13342 \series default
13343  command for this alignment depends on the document font, the font size,
13344  and the table line thickness.
13345 \end_layout
13346
13347 \end_inset
13348
13349
13350 \end_layout
13351
13352 \begin_layout Section
13353 Colored Tables
13354 \begin_inset LatexCommand label
13355 name "sec:Colored-Tables"
13356
13357 \end_inset
13358
13359
13360 \begin_inset LatexCommand index
13361 name "Table ! Color"
13362
13363 \end_inset
13364
13365
13366 \end_layout
13367
13368 \begin_layout Subsection
13369 Colored Cells
13370 \begin_inset LatexCommand index
13371 name "Table Color ! for Cells"
13372
13373 \end_inset
13374
13375
13376 \begin_inset LatexCommand index
13377 name "Color ! for Table Cells"
13378
13379 \end_inset
13380
13381
13382 \end_layout
13383
13384 \begin_layout Standard
13385 \begin_inset Float table
13386 placement h
13387 wide false
13388 sideways false
13389 status open
13390
13391 \begin_layout Caption
13392 \begin_inset LatexCommand label
13393 name "tab:Table-colored-without"
13394
13395 \end_inset
13396
13397 Table colored without using the package 
13398 \series bold
13399 colortbl
13400 \series default
13401
13402 \begin_inset OptArg
13403 status collapsed
13404
13405 \begin_layout Standard
13406 Table without colortbl
13407 \end_layout
13408
13409 \end_inset
13410
13411
13412 \end_layout
13413
13414 \begin_layout Standard
13415 \align center
13416 \begin_inset Tabular
13417 <lyxtabular version="3" rows="3" columns="3">
13418 <features>
13419 <column alignment="center" valignment="top" leftline="true" width="0">
13420 <column alignment="center" valignment="top" leftline="true" width="0">
13421 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
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 a
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 red
13440 b
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 red
13451 c
13452 \end_layout
13453
13454 \end_inset
13455 </cell>
13456 </row>
13457 <row topline="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 d
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 e
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 f
13487 \end_layout
13488
13489 \end_inset
13490 </cell>
13491 </row>
13492 <row topline="true" bottomline="true">
13493 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13494 \begin_inset Text
13495
13496 \begin_layout Standard
13497
13498 \color green
13499 g
13500 \end_layout
13501
13502 \end_inset
13503 </cell>
13504 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13505 \begin_inset Text
13506
13507 \begin_layout Standard
13508
13509 \color blue
13510 h
13511 \end_layout
13512
13513 \end_inset
13514 </cell>
13515 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13516 \begin_inset Text
13517
13518 \begin_layout Standard
13519
13520 \color blue
13521 i
13522 \end_layout
13523
13524 \end_inset
13525 </cell>
13526 </row>
13527 </lyxtabular>
13528
13529 \end_inset
13530
13531
13532 \end_layout
13533
13534 \end_inset
13535
13536
13537 \end_layout
13538
13539 \begin_layout Standard
13540 If you only need colored text, mark the cells and choose a color in the
13541  menu 
13542 \family sans
13543 Edit\SpecialChar \menuseparator
13544 Text\InsetSpace ~
13545 Style
13546 \family default
13547 .
13548  This was used to create Table\InsetSpace ~
13549
13550 \begin_inset LatexCommand ref
13551 reference "tab:Table-colored-without"
13552
13553 \end_inset
13554
13555 .
13556  In any other case you have to use the LaTeX-package 
13557 \series bold
13558 colortbl
13559 \series default
13560 .
13561 \begin_inset LatexCommand index
13562 name "LaTeX-packages ! colortbl"
13563
13564 \end_inset
13565
13566
13567 \end_layout
13568
13569 \begin_layout Standard
13570 To create colored tables, 
13571 \series bold
13572 colortbl
13573 \series default
13574  must be loaded in the preamble with the line
13575 \end_layout
13576
13577 \begin_layout Standard
13578
13579 \series bold
13580
13581 \backslash
13582 usepackage{colortbl}
13583 \end_layout
13584
13585 \begin_layout Standard
13586 The color of a column is adjusted with the command
13587 \end_layout
13588
13589 \begin_layout Standard
13590
13591 \series bold
13592
13593 \backslash
13594 columncolor{name of color}
13595 \end_layout
13596
13597 \begin_layout Standard
13598 inside the command 
13599 \series bold
13600 >{ }
13601 \series default
13602 .
13603  More about the command 
13604 \series bold
13605 >{}
13606 \series default
13607  is described in section\InsetSpace ~
13608
13609 \begin_inset LatexCommand ref
13610 reference "sub:Multicolumn-Calculations"
13611
13612 \end_inset
13613
13614 .
13615 \end_layout
13616
13617 \begin_layout Standard
13618 The following color names are predefined:
13619 \end_layout
13620
13621 \begin_layout Standard
13622
13623 \family sans
13624 red
13625 \family default
13626
13627 \family sans
13628 green
13629 \family default
13630
13631 \family sans
13632 yellow
13633 \family default
13634
13635 \family sans
13636 blue
13637 \family default
13638
13639 \family sans
13640 cyan
13641 \family default
13642
13643 \family sans
13644 magenta
13645 \family default
13646
13647 \family sans
13648 black
13649 \family default
13650  and 
13651 \family sans
13652 white
13653 \end_layout
13654
13655 \begin_layout Standard
13656 \begin_inset VSpace medskip
13657 \end_inset
13658
13659
13660 \end_layout
13661
13662 \begin_layout Standard
13663 You can also define your own color with the command
13664 \end_layout
13665
13666 \begin_layout Standard
13667
13668 \series bold
13669
13670 \backslash
13671 def\SpecialChar \textcompwordmark{}
13672 inecolor{color name}{color model}{color values}
13673 \end_layout
13674
13675 \begin_layout Standard
13676 The color model can be
13677 \end_layout
13678
13679 \begin_layout Labeling
13680 \labelwidthstring 00.00.0000
13681 cmyk: cyan, magenta, yellow, black
13682 \end_layout
13683
13684 \begin_layout Labeling
13685 \labelwidthstring 00.00.0000
13686 rgb: red, green blue
13687 \end_layout
13688
13689 \begin_layout Labeling
13690 \labelwidthstring 00.00.0000
13691 gray gray
13692 \end_layout
13693
13694 \begin_layout Standard
13695 and the color values are comma separated numbers between 0 and 1 describing
13696  the factor for the corresponding color of the color model.
13697 \end_layout
13698
13699 \begin_layout Standard
13700 You can e.\InsetSpace \thinspace{}
13701 g.\InsetSpace ~
13702 define the color "
13703 \emph on
13704 darkgreen
13705 \emph default
13706 " in the preamble with
13707 \end_layout
13708
13709 \begin_layout Standard
13710
13711 \series bold
13712
13713 \backslash
13714 def\SpecialChar \textcompwordmark{}
13715 inecolor{darkgreen}{cmyk}{0.5, 0, 1, 0.5}
13716 \end_layout
13717
13718 \begin_layout Standard
13719 and the color "
13720 \emph on
13721 lightgray
13722 \emph default
13723 " with
13724 \end_layout
13725
13726 \begin_layout Standard
13727
13728 \series bold
13729
13730 \backslash
13731 def\SpecialChar \textcompwordmark{}
13732 inecolor{lightgray}{gray}{0.8}
13733 \end_layout
13734
13735 \begin_layout Standard
13736 \begin_inset VSpace medskip
13737 \end_inset
13738
13739
13740 \end_layout
13741
13742 \begin_layout Standard
13743 Lines are colored with the command
13744 \end_layout
13745
13746 \begin_layout Standard
13747
13748 \series bold
13749
13750 \backslash
13751 rowcolor{name of color}
13752 \end_layout
13753
13754 \begin_layout Standard
13755 and cells are colored with the command
13756 \end_layout
13757
13758 \begin_layout Standard
13759
13760 \series bold
13761
13762 \backslash
13763 cellcolor{name of color}
13764 \end_layout
13765
13766 \begin_layout Standard
13767 Both commands are inserted at the beginning of a cell as ERT.
13768 \end_layout
13769
13770 \begin_layout Standard
13771 To color characters in the table, mark the cells and use the LyX menu 
13772 \family sans
13773 Edit\SpecialChar \menuseparator
13774 Text\InsetSpace ~
13775 Style
13776 \family default
13777 .
13778  If a cell contains ERT mark only the characters, otherwise the colored
13779  ERT will cause LaTeX-errors.
13780 \end_layout
13781
13782 \begin_layout Standard
13783 \begin_inset VSpace bigskip
13784 \end_inset
13785
13786
13787 \end_layout
13788
13789 \begin_layout Standard
13790 To create Table\InsetSpace ~
13791
13792 \begin_inset LatexCommand ref
13793 reference "tab:Table-colored-using"
13794
13795 \end_inset
13796
13797  do the following: The color of the first column should be 
13798 \emph on
13799 darkgreen
13800 \emph default
13801 .
13802  So insert
13803 \end_layout
13804
13805 \begin_layout Standard
13806
13807 \series bold
13808 >{
13809 \backslash
13810 columncolor{darkgreen}
13811 \backslash
13812 centering}c
13813 \end_layout
13814
13815 \begin_layout Standard
13816 as LaTeX-argument for this column.
13817  The first row should be blue, therefore the ERT command
13818 \end_layout
13819
13820 \begin_layout Standard
13821
13822 \series bold
13823
13824 \backslash
13825 rowcolow{cyan}
13826 \end_layout
13827
13828 \begin_layout Standard
13829 is inserted to the first cell of this row.
13830  Note that this overwrites the column color for the first cell.
13831  The last cell of the last row is colored magenta by inserting the ERT command
13832 \end_layout
13833
13834 \begin_layout Standard
13835
13836 \series bold
13837
13838 \backslash
13839 cellcolor{magenta}
13840 \end_layout
13841
13842 \begin_layout Standard
13843 The characters could now be colored using the menu 
13844 \family sans
13845 Edit\SpecialChar \menuseparator
13846 Text\InsetSpace ~
13847 Style
13848 \family default
13849 .
13850 \end_layout
13851
13852 \begin_layout Standard
13853 \begin_inset Float table
13854 placement h
13855 wide false
13856 sideways false
13857 status open
13858
13859 \begin_layout Caption
13860 \begin_inset LatexCommand label
13861 name "tab:Table-colored-using"
13862
13863 \end_inset
13864
13865 Table colored using the package 
13866 \series bold
13867 colortbl
13868 \series default
13869
13870 \begin_inset OptArg
13871 status collapsed
13872
13873 \begin_layout Standard
13874 Table with colortbl
13875 \end_layout
13876
13877 \end_inset
13878
13879
13880 \end_layout
13881
13882 \begin_layout Standard
13883 \align center
13884 \begin_inset Tabular
13885 <lyxtabular version="3" rows="3" columns="3">
13886 <features>
13887 <column alignment="center" valignment="top" leftline="true" width="0" special=">{\columncolor{darkgreen}\centering}c">
13888 <column alignment="center" valignment="top" width="0">
13889 <column alignment="center" valignment="top" width="0">
13890 <row>
13891 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13892 \begin_inset Text
13893
13894 \begin_layout Standard
13895 \begin_inset ERT
13896 status collapsed
13897
13898 \begin_layout Standard
13899
13900
13901 \backslash
13902 rowcolor{cyan}
13903 \end_layout
13904
13905 \end_inset
13906
13907
13908 \color magenta
13909 a
13910 \end_layout
13911
13912 \end_inset
13913 </cell>
13914 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13915 \begin_inset Text
13916
13917 \begin_layout Standard
13918
13919 \color red
13920 b
13921 \end_layout
13922
13923 \end_inset
13924 </cell>
13925 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13926 \begin_inset Text
13927
13928 \begin_layout Standard
13929
13930 \color red
13931 c
13932 \end_layout
13933
13934 \end_inset
13935 </cell>
13936 </row>
13937 <row>
13938 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13939 \begin_inset Text
13940
13941 \begin_layout Standard
13942
13943 \color yellow
13944 d
13945 \end_layout
13946
13947 \end_inset
13948 </cell>
13949 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13950 \begin_inset Text
13951
13952 \begin_layout Standard
13953
13954 \color blue
13955 e
13956 \end_layout
13957
13958 \end_inset
13959 </cell>
13960 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13961 \begin_inset Text
13962
13963 \begin_layout Standard
13964
13965 \color blue
13966 f
13967 \end_layout
13968
13969 \end_inset
13970 </cell>
13971 </row>
13972 <row>
13973 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13974 \begin_inset Text
13975
13976 \begin_layout Standard
13977
13978 \color yellow
13979 g
13980 \end_layout
13981
13982 \end_inset
13983 </cell>
13984 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13985 \begin_inset Text
13986
13987 \begin_layout Standard
13988
13989 \color blue
13990 h
13991 \end_layout
13992
13993 \end_inset
13994 </cell>
13995 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13996 \begin_inset Text
13997
13998 \begin_layout Standard
13999 \begin_inset ERT
14000 status collapsed
14001
14002 \begin_layout Standard
14003
14004
14005 \backslash
14006 cellcolor{magenta}
14007 \end_layout
14008
14009 \end_inset
14010
14011
14012 \color green
14013 i
14014 \end_layout
14015
14016 \end_inset
14017 </cell>
14018 </row>
14019 </lyxtabular>
14020
14021 \end_inset
14022
14023
14024 \end_layout
14025
14026 \end_inset
14027
14028
14029 \end_layout
14030
14031 \begin_layout Subsection
14032 Colored Lines
14033 \begin_inset LatexCommand index
14034 name "Table Color ! for Lines"
14035
14036 \end_inset
14037
14038
14039 \begin_inset LatexCommand index
14040 name "Color ! for Table Lines"
14041
14042 \end_inset
14043
14044
14045 \end_layout
14046
14047 \begin_layout Standard
14048 As described in section\InsetSpace ~
14049
14050 \begin_inset LatexCommand ref
14051 reference "sub:Line-Thickness"
14052
14053 \end_inset
14054
14055 , the line thickness for all lines in a table can be adjusted with the length
14056  
14057 \series bold
14058
14059 \backslash
14060 arrayrulewidth
14061 \series default
14062 .
14063  It is set to 1.5\InsetSpace \thinspace{}
14064 pt for all tables of this section.
14065 \begin_inset ERT
14066 status collapsed
14067
14068 \begin_layout Standard
14069
14070
14071 \backslash
14072 setlength{
14073 \backslash
14074 arrayrulewidth}{1.5pt}
14075 \end_layout
14076
14077 \end_inset
14078
14079
14080 \end_layout
14081
14082 \begin_layout Standard
14083 To color vertical lines for example with green, create the following column
14084  format in the document preamble, according to the description in section\InsetSpace ~
14085
14086 \begin_inset LatexCommand ref
14087 reference "sub:Customized-Format"
14088
14089 \end_inset
14090
14091 :
14092 \end_layout
14093
14094 \begin_layout Standard
14095
14096 \series bold
14097
14098 \backslash
14099 newcolumntype{W}{!{
14100 \backslash
14101 color{green}
14102 \backslash
14103 vline}}
14104 \end_layout
14105
14106 \begin_layout Standard
14107 For Table\InsetSpace ~
14108
14109 \begin_inset LatexCommand ref
14110 reference "tab:Table-with-vertical-colored"
14111
14112 \end_inset
14113
14114  the LaTeX-argument
14115 \end_layout
14116
14117 \begin_layout Standard
14118
14119 \series bold
14120 WcW
14121 \end_layout
14122
14123 \begin_layout Standard
14124 was used for the last column and
14125 \end_layout
14126
14127 \begin_layout Standard
14128
14129 \series bold
14130 Wc
14131 \end_layout
14132
14133 \begin_layout Standard
14134 for the other columns.
14135 \end_layout
14136
14137 \begin_layout Standard
14138 If you want to have several colors, define more column formats.
14139 \end_layout
14140
14141 \begin_layout Standard
14142 \begin_inset Float table
14143 wide false
14144 sideways false
14145 status open
14146
14147 \begin_layout Caption
14148 \begin_inset LatexCommand label
14149 name "tab:Table-with-vertical-colored"
14150
14151 \end_inset
14152
14153 Table with colored vertical lines
14154 \end_layout
14155
14156 \begin_layout Standard
14157 \align center
14158 \begin_inset Tabular
14159 <lyxtabular version="3" rows="3" columns="3">
14160 <features>
14161 <column alignment="center" valignment="top" leftline="true" width="0" special="Wc">
14162 <column alignment="center" valignment="top" width="0" special="Wc">
14163 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0" special="WcW">
14164 <row topline="true">
14165 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14166 \begin_inset Text
14167
14168 \begin_layout Standard
14169 sd
14170 \end_layout
14171
14172 \end_inset
14173 </cell>
14174 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14175 \begin_inset Text
14176
14177 \begin_layout Standard
14178
14179 \end_layout
14180
14181 \end_inset
14182 </cell>
14183 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14184 \begin_inset Text
14185
14186 \begin_layout Standard
14187
14188 \end_layout
14189
14190 \end_inset
14191 </cell>
14192 </row>
14193 <row topline="true">
14194 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14195 \begin_inset Text
14196
14197 \begin_layout Standard
14198
14199 \end_layout
14200
14201 \end_inset
14202 </cell>
14203 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14204 \begin_inset Text
14205
14206 \begin_layout Standard
14207 sd
14208 \end_layout
14209
14210 \end_inset
14211 </cell>
14212 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14213 \begin_inset Text
14214
14215 \begin_layout Standard
14216
14217 \end_layout
14218
14219 \end_inset
14220 </cell>
14221 </row>
14222 <row topline="true" bottomline="true">
14223 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14224 \begin_inset Text
14225
14226 \begin_layout Standard
14227
14228 \end_layout
14229
14230 \end_inset
14231 </cell>
14232 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14233 \begin_inset Text
14234
14235 \begin_layout Standard
14236
14237 \end_layout
14238
14239 \end_inset
14240 </cell>
14241 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14242 \begin_inset Text
14243
14244 \begin_layout Standard
14245 sd
14246 \end_layout
14247
14248 \end_inset
14249 </cell>
14250 </row>
14251 </lyxtabular>
14252
14253 \end_inset
14254
14255
14256 \end_layout
14257
14258 \end_inset
14259
14260
14261 \end_layout
14262
14263 \begin_layout Standard
14264 \begin_inset VSpace bigskip
14265 \end_inset
14266
14267 To color horizontal lines for example with red, like in Table\InsetSpace ~
14268
14269 \begin_inset LatexCommand ref
14270 reference "tab:Table-with-horizontal-colored"
14271
14272 \end_inset
14273
14274 , insert these commands in ERT before the table or table float:
14275 \end_layout
14276
14277 \begin_layout Standard
14278
14279 \series bold
14280
14281 \backslash
14282 let
14283 \backslash
14284 myHlineC
14285 \backslash
14286 hline
14287 \newline
14288
14289 \backslash
14290 renewcommand{
14291 \backslash
14292 hline}{
14293 \backslash
14294 arrayrulecolor{red}
14295 \backslash
14296 myHlineC
14297 \backslash
14298 arrayrulecolor{black}}
14299 \end_layout
14300
14301 \begin_layout Standard
14302 \begin_inset ERT
14303 status collapsed
14304
14305 \begin_layout Standard
14306
14307
14308 \backslash
14309 let
14310 \backslash
14311 myHlineC
14312 \backslash
14313 hline
14314 \end_layout
14315
14316 \begin_layout Standard
14317
14318
14319 \backslash
14320 renewcommand{
14321 \backslash
14322 hline}{
14323 \backslash
14324 arrayrulecolor{red}
14325 \backslash
14326 myHlineC
14327 \backslash
14328 arrayrulecolor{black}}
14329 \end_layout
14330
14331 \end_inset
14332
14333
14334 \begin_inset Float table
14335 wide false
14336 sideways false
14337 status open
14338
14339 \begin_layout Caption
14340 \begin_inset LatexCommand label
14341 name "tab:Table-with-horizontal-colored"
14342
14343 \end_inset
14344
14345 Table with colored horizontal lines
14346 \end_layout
14347
14348 \begin_layout Standard
14349 \align center
14350 \begin_inset Tabular
14351 <lyxtabular version="3" rows="3" columns="3">
14352 <features>
14353 <column alignment="center" valignment="top" leftline="true" width="0">
14354 <column alignment="center" valignment="top" leftline="true" width="0">
14355 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
14356 <row topline="true">
14357 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14358 \begin_inset Text
14359
14360 \begin_layout Standard
14361 sd
14362 \end_layout
14363
14364 \end_inset
14365 </cell>
14366 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14367 \begin_inset Text
14368
14369 \begin_layout Standard
14370
14371 \end_layout
14372
14373 \end_inset
14374 </cell>
14375 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14376 \begin_inset Text
14377
14378 \begin_layout Standard
14379
14380 \end_layout
14381
14382 \end_inset
14383 </cell>
14384 </row>
14385 <row topline="true">
14386 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14387 \begin_inset Text
14388
14389 \begin_layout Standard
14390
14391 \end_layout
14392
14393 \end_inset
14394 </cell>
14395 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14396 \begin_inset Text
14397
14398 \begin_layout Standard
14399 sd
14400 \end_layout
14401
14402 \end_inset
14403 </cell>
14404 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14405 \begin_inset Text
14406
14407 \begin_layout Standard
14408
14409 \end_layout
14410
14411 \end_inset
14412 </cell>
14413 </row>
14414 <row topline="true" bottomline="true">
14415 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14416 \begin_inset Text
14417
14418 \begin_layout Standard
14419
14420 \end_layout
14421
14422 \end_inset
14423 </cell>
14424 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14425 \begin_inset Text
14426
14427 \begin_layout Standard
14428
14429 \end_layout
14430
14431 \end_inset
14432 </cell>
14433 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14434 \begin_inset Text
14435
14436 \begin_layout Standard
14437 sd
14438 \end_layout
14439
14440 \end_inset
14441 </cell>
14442 </row>
14443 </lyxtabular>
14444
14445 \end_inset
14446
14447
14448 \end_layout
14449
14450 \end_inset
14451
14452
14453 \end_layout
14454
14455 \begin_layout Standard
14456 \begin_inset ERT
14457 status collapsed
14458
14459 \begin_layout Standard
14460
14461
14462 \backslash
14463 pagebreak 
14464 \end_layout
14465
14466 \end_inset
14467
14468
14469 \end_layout
14470
14471 \begin_layout Standard
14472 To return to the default line color black, insert this command in ERT behind
14473  the table or table float:
14474 \end_layout
14475
14476 \begin_layout Standard
14477
14478 \series bold
14479
14480 \backslash
14481 renewcommand{
14482 \backslash
14483 hline}{
14484 \backslash
14485 myHlineC}
14486 \end_layout
14487
14488 \begin_layout Standard
14489 Table\InsetSpace ~
14490
14491 \begin_inset LatexCommand ref
14492 reference "tab:Table-with-colored"
14493
14494 \end_inset
14495
14496  is an example with colored vertical and horizontal lines.
14497 \end_layout
14498
14499 \begin_layout Standard
14500 \begin_inset Float table
14501 wide false
14502 sideways false
14503 status open
14504
14505 \begin_layout Caption
14506 \begin_inset LatexCommand label
14507 name "tab:Table-with-colored"
14508
14509 \end_inset
14510
14511 Table with colored lines
14512 \end_layout
14513
14514 \begin_layout Standard
14515 \align center
14516 \begin_inset Tabular
14517 <lyxtabular version="3" rows="3" columns="3">
14518 <features>
14519 <column alignment="center" valignment="top" leftline="true" width="0" special="Wc">
14520 <column alignment="center" valignment="top" width="0" special="Wc">
14521 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0" special="WcW">
14522 <row topline="true">
14523 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14524 \begin_inset Text
14525
14526 \begin_layout Standard
14527 sd
14528 \end_layout
14529
14530 \end_inset
14531 </cell>
14532 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14533 \begin_inset Text
14534
14535 \begin_layout Standard
14536
14537 \end_layout
14538
14539 \end_inset
14540 </cell>
14541 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14542 \begin_inset Text
14543
14544 \begin_layout Standard
14545
14546 \end_layout
14547
14548 \end_inset
14549 </cell>
14550 </row>
14551 <row topline="true">
14552 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14553 \begin_inset Text
14554
14555 \begin_layout Standard
14556
14557 \end_layout
14558
14559 \end_inset
14560 </cell>
14561 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14562 \begin_inset Text
14563
14564 \begin_layout Standard
14565 sd
14566 \end_layout
14567
14568 \end_inset
14569 </cell>
14570 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14571 \begin_inset Text
14572
14573 \begin_layout Standard
14574
14575 \end_layout
14576
14577 \end_inset
14578 </cell>
14579 </row>
14580 <row topline="true" bottomline="true" topspace="default">
14581 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14582 \begin_inset Text
14583
14584 \begin_layout Standard
14585
14586 \end_layout
14587
14588 \end_inset
14589 </cell>
14590 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14591 \begin_inset Text
14592
14593 \begin_layout Standard
14594
14595 \end_layout
14596
14597 \end_inset
14598 </cell>
14599 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14600 \begin_inset Text
14601
14602 \begin_layout Standard
14603 sd
14604 \end_layout
14605
14606 \end_inset
14607 </cell>
14608 </row>
14609 </lyxtabular>
14610
14611 \end_inset
14612
14613
14614 \end_layout
14615
14616 \end_inset
14617
14618
14619 \end_layout
14620
14621 \begin_layout Standard
14622 \begin_inset ERT
14623 status collapsed
14624
14625 \begin_layout Standard
14626
14627
14628 \backslash
14629 renewcommand{
14630 \backslash
14631 hline}{
14632 \backslash
14633 myHlineC}
14634 \end_layout
14635
14636 \end_inset
14637
14638
14639 \end_layout
14640
14641 \begin_layout Standard
14642 \begin_inset ERT
14643 status collapsed
14644
14645 \begin_layout Standard
14646
14647
14648 \backslash
14649 setlength{
14650 \backslash
14651 arrayrulewidth}{0.4pt}
14652 \end_layout
14653
14654 \end_inset
14655
14656
14657 \end_layout
14658
14659 \begin_layout Section
14660 Table Customization
14661 \begin_inset LatexCommand index
14662 name "Table Customization"
14663
14664 \end_inset
14665
14666
14667 \begin_inset LatexCommand index
14668 name "Table ! Customization"
14669
14670 \end_inset
14671
14672
14673 \end_layout
14674
14675 \begin_layout Subsection
14676 Row Spacing
14677 \begin_inset LatexCommand label
14678 name "sub:Row-Spacing"
14679
14680 \end_inset
14681
14682
14683 \begin_inset LatexCommand index
14684 name "Table Customization ! Row Spacing"
14685
14686 \end_inset
14687
14688
14689 \end_layout
14690
14691 \begin_layout Standard
14692 You can add vertical space to table rows in the 
14693 \family sans
14694 Borders
14695 \family default
14696  tab of the table dialog.
14697  You find there three possibilities:
14698 \end_layout
14699
14700 \begin_layout Description
14701 Top\InsetSpace ~
14702 of\InsetSpace ~
14703 row will add space above the characters of the table row.
14704  If the table is a formal table
14705 \begin_inset Foot
14706 status collapsed
14707
14708 \begin_layout Standard
14709 Formal tables are explained in section\InsetSpace ~
14710
14711 \begin_inset LatexCommand ref
14712 reference "sec:Formal-Tables"
14713
14714 \end_inset
14715
14716 .
14717 \end_layout
14718
14719 \end_inset
14720
14721  LyX will insert as default 0.5\InsetSpace \thinspace{}
14722 em space.
14723  For normal tables the inserted space will unfortunately destroy the vertical
14724  table lines as in the following table: 
14725 \begin_inset Tabular
14726 <lyxtabular version="3" rows="3" columns="1">
14727 <features>
14728 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
14729 <row topline="true">
14730 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14731 \begin_inset Text
14732
14733 \begin_layout Standard
14734 A
14735 \end_layout
14736
14737 \end_inset
14738 </cell>
14739 </row>
14740 <row topline="true" topspace="3mm">
14741 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14742 \begin_inset Text
14743
14744 \begin_layout Standard
14745 3\InsetSpace \thinspace{}
14746 mm space top of row
14747 \end_layout
14748
14749 \end_inset
14750 </cell>
14751 </row>
14752 <row topline="true" bottomline="true">
14753 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14754 \begin_inset Text
14755
14756 \begin_layout Standard
14757 C
14758 \end_layout
14759
14760 \end_inset
14761 </cell>
14762 </row>
14763 </lyxtabular>
14764
14765 \end_inset
14766
14767
14768 \newline
14769 So inserting space to the top of row for normal tables is only useful when
14770  you don't have vertical lines.
14771 \end_layout
14772
14773 \begin_layout Description
14774 Bottom\InsetSpace ~
14775 of\InsetSpace ~
14776 row will add space below the characters of the table row.
14777  If the table is a formal table LyX will insert as default 0.5\InsetSpace \thinspace{}
14778 em space, for
14779  normal tables the default size is 2\InsetSpace \thinspace{}
14780 pt.
14781 \end_layout
14782
14783 \begin_layout Description
14784 Between\InsetSpace ~
14785 rows only has an effect when you have selected the whole table row
14786  before.
14787  The space is added between the current and the following row.
14788  If the table is a formal table LyX will insert as default 0.5\InsetSpace \thinspace{}
14789 em space.
14790  For normal tables the inserted space will unfortunately destroy the vertical
14791  table lines as in the following table: 
14792 \begin_inset Tabular
14793 <lyxtabular version="3" rows="3" columns="1">
14794 <features>
14795 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
14796 <row topline="true">
14797 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14798 \begin_inset Text
14799
14800 \begin_layout Standard
14801 A
14802 \end_layout
14803
14804 \end_inset
14805 </cell>
14806 </row>
14807 <row topline="true" interlinespace="3mm">
14808 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14809 \begin_inset Text
14810
14811 \begin_layout Standard
14812 \begin_inset Formula $\downarrow$
14813 \end_inset
14814
14815  3\InsetSpace \thinspace{}
14816 mm space between row 
14817 \begin_inset Formula $\downarrow$
14818 \end_inset
14819
14820
14821 \end_layout
14822
14823 \end_inset
14824 </cell>
14825 </row>
14826 <row topline="true" bottomline="true">
14827 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14828 \begin_inset Text
14829
14830 \begin_layout Standard
14831 \begin_inset Formula $\uparrow$
14832 \end_inset
14833
14834  3\InsetSpace \thinspace{}
14835 mm space between row 
14836 \begin_inset Formula $\uparrow$
14837 \end_inset
14838
14839
14840 \end_layout
14841
14842 \end_inset
14843 </cell>
14844 </row>
14845 </lyxtabular>
14846
14847 \end_inset
14848
14849
14850 \newline
14851 So inserting space to the top of row for normal tables is only useful when
14852  you don't have vertical lines.
14853 \end_layout
14854
14855 \begin_layout Standard
14856 When you want to add extra height to all cells of all tables, you can do
14857  this with the following preamble line:
14858 \end_layout
14859
14860 \begin_layout Standard
14861
14862 \series bold
14863
14864 \backslash
14865 setlength{
14866 \backslash
14867 extrarowheight}{height}
14868 \end_layout
14869
14870 \begin_layout Standard
14871 But this has the disadvantage that the cell texts are no longer exactly
14872  vertically centered.
14873 \end_layout
14874
14875 \begin_layout Subsection
14876 Special Cell Alignment
14877 \begin_inset LatexCommand index
14878 name "Table Customization ! Special Cell Alignment"
14879
14880 \end_inset
14881
14882
14883 \end_layout
14884
14885 \begin_layout Standard
14886 Sometimes it looks better when the cell entries of a column are aligned
14887  with a special character, e.\InsetSpace \thinspace{}
14888 g.\InsetSpace ~
14889 with the decimal separator as in Table\InsetSpace ~
14890
14891 \begin_inset LatexCommand ref
14892 reference "tab:Table-cells-of"
14893
14894 \end_inset
14895
14896 .
14897 \end_layout
14898
14899 \begin_layout Standard
14900 \begin_inset Float table
14901 placement h
14902 wide false
14903 sideways false
14904 status open
14905
14906 \begin_layout Caption
14907 \begin_inset LatexCommand label
14908 name "tab:Table-cells-of"
14909
14910 \end_inset
14911
14912 Table cells of a column aligned with the decimal separator.
14913 \end_layout
14914
14915 \begin_layout Standard
14916 \align center
14917 \begin_inset Tabular
14918 <lyxtabular version="3" rows="4" columns="2">
14919 <features>
14920 <column alignment="right" valignment="top" width="0">
14921 <column alignment="left" valignment="top" width="0" special="@{}l">
14922 <row bottomline="true">
14923 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" usebox="none">
14924 \begin_inset Text
14925
14926 \begin_layout Standard
14927 heading
14928 \end_layout
14929
14930 \end_inset
14931 </cell>
14932 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14933 \begin_inset Text
14934
14935 \begin_layout Standard
14936
14937 \end_layout
14938
14939 \end_inset
14940 </cell>
14941 </row>
14942 <row>
14943 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14944 \begin_inset Text
14945
14946 \begin_layout Standard
14947 12.
14948 \end_layout
14949
14950 \end_inset
14951 </cell>
14952 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14953 \begin_inset Text
14954
14955 \begin_layout Standard
14956 6
14957 \end_layout
14958
14959 \end_inset
14960 </cell>
14961 </row>
14962 <row>
14963 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14964 \begin_inset Text
14965
14966 \begin_layout Standard
14967 0.
14968 \end_layout
14969
14970 \end_inset
14971 </cell>
14972 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14973 \begin_inset Text
14974
14975 \begin_layout Standard
14976 68
14977 \end_layout
14978
14979 \end_inset
14980 </cell>
14981 </row>
14982 <row>
14983 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14984 \begin_inset Text
14985
14986 \begin_layout Standard
14987 -123.
14988 \end_layout
14989
14990 \end_inset
14991 </cell>
14992 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14993 \begin_inset Text
14994
14995 \begin_layout Standard
14996 0
14997 \end_layout
14998
14999 \end_inset
15000 </cell>
15001 </row>
15002 </lyxtabular>
15003
15004 \end_inset
15005
15006
15007 \end_layout
15008
15009 \end_inset
15010
15011
15012 \end_layout
15013
15014 \begin_layout Standard
15015 This table was created with a 4×2 table.
15016  The heading is a centered multicolumn.
15017  The first column is right-aligned and contains the digits before the decimal
15018  point and the decimal point.
15019  The second column is left aligned and contains the digits after the decimal
15020  point.
15021  To omit the space that is normally between two table columns, use the following
15022  LaTeX-argument for the second column:
15023 \end_layout
15024
15025 \begin_layout Standard
15026
15027 \series bold
15028 @{}l
15029 \end_layout
15030
15031 \begin_layout Standard
15032 If you need a vertical line right beside the second column, use this LaTeX-argum
15033 ent instead: 
15034 \series bold
15035 @{}l|
15036 \end_layout
15037
15038 \begin_layout Standard
15039 Table\InsetSpace ~
15040
15041 \begin_inset LatexCommand ref
15042 reference "tab:Several-table-cell"
15043
15044 \end_inset
15045
15046  shows some example alignments.
15047  For the alignment with the relation sign, you must add the second smallest
15048  math-space at the beginning of the last column to get the correct space
15049  surrounding the relation sign.
15050 \end_layout
15051
15052 \begin_layout Standard
15053 \begin_inset Float table
15054 wide false
15055 sideways false
15056 status open
15057
15058 \begin_layout Caption
15059 \begin_inset LatexCommand label
15060 name "tab:Several-table-cell"
15061
15062 \end_inset
15063
15064 Several table cell alignments.
15065 \end_layout
15066
15067 \begin_layout Standard
15068 \align center
15069 \begin_inset Tabular
15070 <lyxtabular version="3" rows="4" columns="6">
15071 <features>
15072 <column alignment="right" valignment="top" width="0">
15073 <column alignment="left" valignment="top" rightline="true" width="0" special="@{}l|">
15074 <column alignment="right" valignment="top" width="0">
15075 <column alignment="left" valignment="top" rightline="true" width="0" special="@{}l|">
15076 <column alignment="right" valignment="top" width="0">
15077 <column alignment="left" valignment="top" rightline="true" width="0" special="@{}l">
15078 <row bottomline="true">
15079 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
15080 \begin_inset Text
15081
15082 \begin_layout Standard
15083 units
15084 \end_layout
15085
15086 \end_inset
15087 </cell>
15088 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15089 \begin_inset Text
15090
15091 \begin_layout Standard
15092
15093 \end_layout
15094
15095 \end_inset
15096 </cell>
15097 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
15098 \begin_inset Text
15099
15100 \begin_layout Standard
15101 exponents
15102 \end_layout
15103
15104 \end_inset
15105 </cell>
15106 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15107 \begin_inset Text
15108
15109 \begin_layout Standard
15110
15111 \end_layout
15112
15113 \end_inset
15114 </cell>
15115 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" usebox="none">
15116 \begin_inset Text
15117
15118 \begin_layout Standard
15119 relations
15120 \end_layout
15121
15122 \end_inset
15123 </cell>
15124 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15125 \begin_inset Text
15126
15127 \begin_layout Standard
15128
15129 \end_layout
15130
15131 \end_inset
15132 </cell>
15133 </row>
15134 <row>
15135 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15136 \begin_inset Text
15137
15138 \begin_layout Standard
15139 12×
15140 \end_layout
15141
15142 \end_inset
15143 </cell>
15144 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15145 \begin_inset Text
15146
15147 \begin_layout Standard
15148 24\InsetSpace \thinspace{}
15149 bottles
15150 \end_layout
15151
15152 \end_inset
15153 </cell>
15154 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15155 \begin_inset Text
15156
15157 \begin_layout Standard
15158 \begin_inset Formula $10\cdot$
15159 \end_inset
15160
15161
15162 \end_layout
15163
15164 \end_inset
15165 </cell>
15166 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15167 \begin_inset Text
15168
15169 \begin_layout Standard
15170 \begin_inset Formula $10^{\mbox{-}17}$
15171 \end_inset
15172
15173
15174 \end_layout
15175
15176 \end_inset
15177 </cell>
15178 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15179 \begin_inset Text
15180
15181 \begin_layout Standard
15182 \begin_inset Formula $\Gamma(t)\propto$
15183 \end_inset
15184
15185
15186 \end_layout
15187
15188 \end_inset
15189 </cell>
15190 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15191 \begin_inset Text
15192
15193 \begin_layout Standard
15194 \begin_inset Formula $\:\Upsilon(t)$
15195 \end_inset
15196
15197
15198 \end_layout
15199
15200 \end_inset
15201 </cell>
15202 </row>
15203 <row>
15204 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15205 \begin_inset Text
15206
15207 \begin_layout Standard
15208 1024×
15209 \end_layout
15210
15211 \end_inset
15212 </cell>
15213 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15214 \begin_inset Text
15215
15216 \begin_layout Standard
15217 768\InsetSpace \thinspace{}
15218 Pixels
15219 \end_layout
15220
15221 \end_inset
15222 </cell>
15223 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15224 \begin_inset Text
15225
15226 \begin_layout Standard
15227 \begin_inset Formula $5.78\cdot$
15228 \end_inset
15229
15230
15231 \end_layout
15232
15233 \end_inset
15234 </cell>
15235 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15236 \begin_inset Text
15237
15238 \begin_layout Standard
15239 \begin_inset Formula $10^{7}$
15240 \end_inset
15241
15242
15243 \end_layout
15244
15245 \end_inset
15246 </cell>
15247 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15248 \begin_inset Text
15249
15250 \begin_layout Standard
15251 \begin_inset Formula $A\ne$
15252 \end_inset
15253
15254
15255 \end_layout
15256
15257 \end_inset
15258 </cell>
15259 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15260 \begin_inset Text
15261
15262 \begin_layout Standard
15263 \begin_inset Formula $\: B_{\mathrm{red}}$
15264 \end_inset
15265
15266
15267 \end_layout
15268
15269 \end_inset
15270 </cell>
15271 </row>
15272 <row>
15273 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15274 \begin_inset Text
15275
15276 \begin_layout Standard
15277 32×
15278 \end_layout
15279
15280 \end_inset
15281 </cell>
15282 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15283 \begin_inset Text
15284
15285 \begin_layout Standard
15286 6\InsetSpace \thinspace{}
15287 cm
15288 \end_layout
15289
15290 \end_inset
15291 </cell>
15292 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15293 \begin_inset Text
15294
15295 \begin_layout Standard
15296 -
15297 \begin_inset Formula $33.5\cdot$
15298 \end_inset
15299
15300
15301 \end_layout
15302
15303 \end_inset
15304 </cell>
15305 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15306 \begin_inset Text
15307
15308 \begin_layout Standard
15309 \begin_inset Formula $10^{4}$
15310 \end_inset
15311
15312
15313 \end_layout
15314
15315 \end_inset
15316 </cell>
15317 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15318 \begin_inset Text
15319
15320 \begin_layout Standard
15321 \begin_inset Formula $\sin(\alpha)\ge$
15322 \end_inset
15323
15324
15325 \end_layout
15326
15327 \end_inset
15328 </cell>
15329 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15330 \begin_inset Text
15331
15332 \begin_layout Standard
15333 \begin_inset Formula $\:\sin(\beta)$
15334 \end_inset
15335
15336
15337 \end_layout
15338
15339 \end_inset
15340 </cell>
15341 </row>
15342 </lyxtabular>
15343
15344 \end_inset
15345
15346
15347 \end_layout
15348
15349 \end_inset
15350
15351
15352 \end_layout
15353
15354 \begin_layout Standard
15355 \begin_inset VSpace bigskip
15356 \end_inset
15357
15358 There is also the LaTeX-package 
15359 \series bold
15360 dcolumn
15361 \series default
15362
15363 \begin_inset LatexCommand index
15364 name "LaTeX-packages ! dcolumn"
15365
15366 \end_inset
15367
15368  that provides table cell alignments.
15369  But this unfortunately treats the cell entries as math and doesn't allow
15370  formulas in table cells: The first column of Table\InsetSpace ~
15371
15372 \begin_inset LatexCommand ref
15373 reference "tab:Several-table-cell"
15374
15375 \end_inset
15376
15377  will look with 
15378 \series bold
15379 dcolumn
15380 \series default
15381  like the first column in Table\InsetSpace ~
15382
15383 \begin_inset LatexCommand ref
15384 reference "tab:Alignments-when"
15385
15386 \end_inset
15387
15388  and only with some tricks like the expected.
15389  The alignment of the second and third column of Table\InsetSpace ~
15390
15391 \begin_inset LatexCommand ref
15392 reference "tab:Several-table-cell"
15393
15394 \end_inset
15395
15396  is not possible with 
15397 \series bold
15398 dcolumn
15399 \series default
15400 .
15401 \end_layout
15402
15403 \begin_layout Standard
15404 \begin_inset Float table
15405 placement h
15406 wide false
15407 sideways false
15408 status open
15409
15410 \begin_layout Caption
15411 \begin_inset LatexCommand label
15412 name "tab:Alignments-when"
15413
15414 \end_inset
15415
15416 Alignments when LaTeX-package dcolumn is used.
15417  For the second and third alignment some tricks were used.
15418 \end_layout
15419
15420 \begin_layout Standard
15421 \align center
15422 \begin_inset Tabular
15423 <lyxtabular version="3" rows="4" columns="3">
15424 <features>
15425 <column alignment="center" valignment="top" rightline="true" width="0" special="D{×}{\times}{-1}|">
15426 <column alignment="center" valignment="top" width="0" special="D{×}{\times}{4.9}|">
15427 <column alignment="center" valignment="top" rightline="true" width="0" special="D{~}{\,}{9.7}">
15428 <row bottomline="true">
15429 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
15430 \begin_inset Text
15431
15432 \begin_layout Standard
15433 units
15434 \end_layout
15435
15436 \end_inset
15437 </cell>
15438 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
15439 \begin_inset Text
15440
15441 \begin_layout Standard
15442 units
15443 \end_layout
15444
15445 \end_inset
15446 </cell>
15447 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" usebox="none">
15448 \begin_inset Text
15449
15450 \begin_layout Standard
15451 units
15452 \end_layout
15453
15454 \end_inset
15455 </cell>
15456 </row>
15457 <row>
15458 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15459 \begin_inset Text
15460
15461 \begin_layout Standard
15462 12×24\InsetSpace \thinspace{}
15463 bottles
15464 \end_layout
15465
15466 \end_inset
15467 </cell>
15468 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15469 \begin_inset Text
15470
15471 \begin_layout Standard
15472 12×24\InsetSpace \thinspace{}
15473
15474 \begin_inset Formula $\mbox{bottles}$
15475 \end_inset
15476
15477
15478 \end_layout
15479
15480 \end_inset
15481 </cell>
15482 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15483 \begin_inset Text
15484
15485 \begin_layout Standard
15486 12×24~
15487 \begin_inset Formula $\mbox{bottles}$
15488 \end_inset
15489
15490
15491 \end_layout
15492
15493 \end_inset
15494 </cell>
15495 </row>
15496 <row>
15497 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15498 \begin_inset Text
15499
15500 \begin_layout Standard
15501 1024×768\InsetSpace \thinspace{}
15502 Pixels
15503 \end_layout
15504
15505 \end_inset
15506 </cell>
15507 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15508 \begin_inset Text
15509
15510 \begin_layout Standard
15511 1024×768\InsetSpace \thinspace{}
15512
15513 \begin_inset Formula $\mbox{Pixels}$
15514 \end_inset
15515
15516
15517 \end_layout
15518
15519 \end_inset
15520 </cell>
15521 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15522 \begin_inset Text
15523
15524 \begin_layout Standard
15525 1024×768~
15526 \begin_inset Formula $\mbox{Pixels}$
15527 \end_inset
15528
15529
15530 \end_layout
15531
15532 \end_inset
15533 </cell>
15534 </row>
15535 <row>
15536 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15537 \begin_inset Text
15538
15539 \begin_layout Standard
15540 32×6\InsetSpace \thinspace{}
15541 cm
15542 \end_layout
15543
15544 \end_inset
15545 </cell>
15546 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15547 \begin_inset Text
15548
15549 \begin_layout Standard
15550 32×6\InsetSpace \thinspace{}
15551
15552 \begin_inset Formula $\mbox{cm}$
15553 \end_inset
15554
15555
15556 \end_layout
15557
15558 \end_inset
15559 </cell>
15560 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15561 \begin_inset Text
15562
15563 \begin_layout Standard
15564 32×6~
15565 \begin_inset Formula $\mbox{cm}$
15566 \end_inset
15567
15568
15569 \end_layout
15570
15571 \end_inset
15572 </cell>
15573 </row>
15574 </lyxtabular>
15575
15576 \end_inset
15577
15578
15579 \end_layout
15580
15581 \end_inset
15582
15583
15584 \end_layout
15585
15586 \begin_layout Subsection
15587 Customized Cell/Column Format
15588 \begin_inset LatexCommand label
15589 name "sub:Customized-Format"
15590
15591 \end_inset
15592
15593
15594 \begin_inset LatexCommand index
15595 name "Table Customization ! Cell/Column Format"
15596
15597 \end_inset
15598
15599
15600 \end_layout
15601
15602 \begin_layout Standard
15603 Calculating the needed width for spanned columns like in section\InsetSpace ~
15604
15605 \begin_inset LatexCommand ref
15606 reference "sub:Multicolumn-Calculations"
15607
15608 \end_inset
15609
15610  is very annoying if you have several tables with multicolumn cells.
15611  To make life easier, you can define a cell/column format in the preamble,
15612  so that it can be used in all tables of the document.
15613  The format is defined with the command
15614 \end_layout
15615
15616 \begin_layout Standard
15617
15618 \series bold
15619
15620 \backslash
15621 newcolumntype{name of format}[number of arguments]{commands}
15622 \end_layout
15623
15624 \begin_layout Standard
15625 The format name may only consist of one letter.
15626  The letters 
15627 \emph on
15628 b
15629 \emph default
15630
15631 \emph on
15632 c
15633 \emph default
15634
15635 \emph on
15636 l
15637 \emph default
15638
15639 \emph on
15640 m
15641 \emph default
15642
15643 \emph on
15644 p
15645 \emph default
15646  and 
15647 \emph on
15648 r
15649 \emph default
15650  are predefined and cannot be used.
15651  But all letters are allowed as capitals.
15652 \end_layout
15653
15654 \begin_layout Standard
15655 \begin_inset VSpace medskip
15656 \end_inset
15657
15658
15659 \end_layout
15660
15661 \begin_layout Standard
15662 For vertically and horizontally centered multicolumn cells with a fixed
15663  width you can define the cell format
15664 \end_layout
15665
15666 \begin_layout Standard
15667
15668 \series bold
15669
15670 \backslash
15671 newcolumntype{M}[1]{>{
15672 \backslash
15673 centering
15674 \backslash
15675 hspace{0pt}}m{#1}}
15676 \end_layout
15677
15678 \begin_layout Standard
15679 where 
15680 \series bold
15681
15682 \backslash
15683 hspace{0pt}
15684 \series default
15685  avoids the problem of hyphenating the first word, as described in section\InsetSpace ~
15686
15687 \begin_inset LatexCommand ref
15688 reference "sub:Multiple-Lines-in"
15689
15690 \end_inset
15691
15692 .
15693  Now you can simply enter
15694 \end_layout
15695
15696 \begin_layout Standard
15697
15698 \series bold
15699 |M{width}
15700 \end_layout
15701
15702 \begin_layout Standard
15703 as LaTeX-argument in the table dialog to create a multicolumn.
15704 \end_layout
15705
15706 \begin_layout Standard
15707 \begin_inset VSpace bigskip
15708 \end_inset
15709
15710
15711 \end_layout
15712
15713 \begin_layout Standard
15714 For cells spanned by a multicolumn cell, you can define the format
15715 \end_layout
15716
15717 \begin_layout Standard
15718
15719 \series bold
15720
15721 \backslash
15722 newcolumntype{S}[2]{>{
15723 \backslash
15724 centering
15725 \backslash
15726 hspace{0pt}}
15727 \newline
15728
15729 \begin_inset ERT
15730 status collapsed
15731
15732 \begin_layout Standard
15733
15734
15735 \backslash
15736 phantom{
15737 \end_layout
15738
15739 \end_inset
15740
15741
15742 \backslash
15743 newcolumntype{S}[2]
15744 \begin_inset ERT
15745 status collapsed
15746
15747 \begin_layout Standard
15748
15749 }
15750 \end_layout
15751
15752 \end_inset
15753
15754 m{(#1+(2
15755 \backslash
15756 tabcolsep+
15757 \backslash
15758 arrayrulewidth)*(1-#2))/#2}}
15759 \end_layout
15760
15761 \begin_layout Standard
15762 This format uses equation 
15763 \begin_inset LatexCommand eqref
15764 reference "eq:Wgn"
15765
15766 \end_inset
15767
15768  to calculate the needed width so that each spanned cell has the same width.
15769 \end_layout
15770
15771 \begin_layout Standard
15772 You can now enter
15773 \end_layout
15774
15775 \begin_layout Standard
15776
15777 \series bold
15778 |S{width of multicolumn cell}{number of spanned columns}
15779 \end_layout
15780
15781 \begin_layout Standard
15782 as LaTeX-argument of the column.
15783 \end_layout
15784
15785 \begin_layout Standard
15786 \begin_inset VSpace bigskip
15787 \end_inset
15788
15789
15790 \end_layout
15791
15792 \begin_layout Standard
15793 For colored columns, you can define
15794 \end_layout
15795
15796 \begin_layout Standard
15797
15798 \series bold
15799
15800 \backslash
15801 newcolumntype{K}[1]{>{
15802 \backslash
15803 columncolor{#1}
15804 \backslash
15805 hspace{0pt}}c}
15806 \end_layout
15807
15808 \begin_layout Standard
15809 The 
15810 \begin_inset Quotes eld
15811 \end_inset
15812
15813 c
15814 \begin_inset Quotes erd
15815 \end_inset
15816
15817  at the end creates a column with a flexible width whose text is horizontally
15818  centered.
15819  You can now enter
15820 \end_layout
15821
15822 \begin_layout Standard
15823
15824 \series bold
15825 K{color name}
15826 \end_layout
15827
15828 \begin_layout Standard
15829 as LaTeX-argument.
15830 \end_layout
15831
15832 \begin_layout Standard
15833 \begin_inset VSpace bigskip
15834 \end_inset
15835
15836
15837 \end_layout
15838
15839 \begin_layout Standard
15840 To create Table\InsetSpace ~
15841
15842 \begin_inset LatexCommand ref
15843 reference "tab:Table-using-user-defined"
15844
15845 \end_inset
15846
15847  use the LaTeX-arguments
15848 \end_layout
15849
15850 \begin_layout Standard
15851
15852 \series bold
15853 |M{2.5cm}
15854 \end_layout
15855
15856 \begin_layout Standard
15857 for the first column and the multicolumn,
15858 \end_layout
15859
15860 \begin_layout Standard
15861
15862 \series bold
15863 |K{red}|
15864 \end_layout
15865
15866 \begin_layout Standard
15867 for the the last column, and
15868 \end_layout
15869
15870 \begin_layout Standard
15871
15872 \series bold
15873 |S{2.5cm}{2}
15874 \end_layout
15875
15876 \begin_layout Standard
15877 for the cells in the second column.
15878 \end_layout
15879
15880 \begin_layout Standard
15881 \begin_inset Float table
15882 placement h
15883 wide false
15884 sideways false
15885 status open
15886
15887 \begin_layout Caption
15888 \begin_inset LatexCommand label
15889 name "tab:Table-using-user-defined"
15890
15891 \end_inset
15892
15893 Table using user-defined table formats
15894 \end_layout
15895
15896 \begin_layout Standard
15897 \align center
15898 \begin_inset Tabular
15899 <lyxtabular version="3" rows="3" columns="4">
15900 <features>
15901 <column alignment="center" valignment="middle" leftline="true" width="2.5cm" special="|M{2.5cm}">
15902 <column alignment="center" valignment="middle" leftline="true" width="0" special="|S{2.5cm}{2}">
15903 <column alignment="center" valignment="middle" leftline="true" width="0">
15904 <column alignment="center" valignment="middle" leftline="true" rightline="true" width="0" special="|K{red}|">
15905 <row topline="true">
15906 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15907 \begin_inset Text
15908
15909 \begin_layout Standard
15910 verylongtablecellword
15911 \end_layout
15912
15913 \end_inset
15914 </cell>
15915 <cell multicolumn="1" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none" special="M{2.5cm}|">
15916 \begin_inset Text
15917
15918 \begin_layout Standard
15919 multiple lines multicolumn
15920 \end_layout
15921
15922 \end_inset
15923 </cell>
15924 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15925 \begin_inset Text
15926
15927 \begin_layout Standard
15928
15929 \end_layout
15930
15931 \end_inset
15932 </cell>
15933 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15934 \begin_inset Text
15935
15936 \begin_layout Standard
15937 c
15938 \end_layout
15939
15940 \end_inset
15941 </cell>
15942 </row>
15943 <row topline="true">
15944 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15945 \begin_inset Text
15946
15947 \begin_layout Standard
15948 d
15949 \end_layout
15950
15951 \end_inset
15952 </cell>
15953 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15954 \begin_inset Text
15955
15956 \begin_layout Standard
15957 e
15958 \end_layout
15959
15960 \end_inset
15961 </cell>
15962 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15963 \begin_inset Text
15964
15965 \begin_layout Standard
15966 f
15967 \end_layout
15968
15969 \end_inset
15970 </cell>
15971 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15972 \begin_inset Text
15973
15974 \begin_layout Standard
15975 g
15976 \end_layout
15977
15978 \end_inset
15979 </cell>
15980 </row>
15981 <row topline="true" bottomline="true">
15982 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15983 \begin_inset Text
15984
15985 \begin_layout Standard
15986 h
15987 \end_layout
15988
15989 \end_inset
15990 </cell>
15991 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15992 \begin_inset Text
15993
15994 \begin_layout Standard
15995 i
15996 \end_layout
15997
15998 \end_inset
15999 </cell>
16000 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16001 \begin_inset Text
16002
16003 \begin_layout Standard
16004 j
16005 \end_layout
16006
16007 \end_inset
16008 </cell>
16009 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16010 \begin_inset Text
16011
16012 \begin_layout Standard
16013 k
16014 \end_layout
16015
16016 \end_inset
16017 </cell>
16018 </row>
16019 </lyxtabular>
16020
16021 \end_inset
16022
16023
16024 \end_layout
16025
16026 \end_inset
16027
16028
16029 \end_layout
16030
16031 \begin_layout Subsection
16032 Line Thickness
16033 \begin_inset LatexCommand label
16034 name "sub:Line-Thickness"
16035
16036 \end_inset
16037
16038
16039 \begin_inset LatexCommand index
16040 name "Table Customization ! Line Thickness"
16041
16042 \end_inset
16043
16044
16045 \end_layout
16046
16047 \begin_layout Standard
16048 The line thickness for all lines in a table can be adjusted with the length
16049  
16050 \series bold
16051
16052 \backslash
16053 arrayrulewidth
16054 \series default
16055 .
16056  To set for example a line thickness of 1.5\InsetSpace \thinspace{}
16057 pt, like in Table\InsetSpace ~
16058
16059 \begin_inset LatexCommand ref
16060 reference "tab:Table-with-1.5"
16061
16062 \end_inset
16063
16064 , insert the command
16065 \end_layout
16066
16067 \begin_layout Standard
16068
16069 \series bold
16070
16071 \backslash
16072 setlength{
16073 \backslash
16074 arrayrulewidth}{1.5pt}
16075 \end_layout
16076
16077 \begin_layout Standard
16078 in ERT before the table or table float.
16079  The changed thickness is valid for all following tables.
16080  To use the default value again, set 
16081 \series bold
16082
16083 \backslash
16084 arrayrulewidth
16085 \series default
16086  to 0.4\InsetSpace \thinspace{}
16087 pt in ERT behind the table or table float.
16088 \end_layout
16089
16090 \begin_layout Standard
16091 \begin_inset ERT
16092 status collapsed
16093
16094 \begin_layout Standard
16095
16096
16097 \backslash
16098 setlength{
16099 \backslash
16100 arrayrulewidth}{1.5pt}
16101 \end_layout
16102
16103 \end_inset
16104
16105
16106 \begin_inset Float table
16107 wide false
16108 sideways false
16109 status open
16110
16111 \begin_layout Caption
16112 \begin_inset LatexCommand label
16113 name "tab:Table-with-1.5"
16114
16115 \end_inset
16116
16117 Table with 1.5\InsetSpace \thinspace{}
16118 pt thick lines
16119 \end_layout
16120
16121 \begin_layout Standard
16122 \align center
16123 \begin_inset Tabular
16124 <lyxtabular version="3" rows="3" columns="3">
16125 <features>
16126 <column alignment="center" valignment="top" leftline="true" width="0">
16127 <column alignment="center" valignment="top" leftline="true" width="0">
16128 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
16129 <row topline="true">
16130 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16131 \begin_inset Text
16132
16133 \begin_layout Standard
16134 sd
16135 \end_layout
16136
16137 \end_inset
16138 </cell>
16139 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16140 \begin_inset Text
16141
16142 \begin_layout Standard
16143
16144 \end_layout
16145
16146 \end_inset
16147 </cell>
16148 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16149 \begin_inset Text
16150
16151 \begin_layout Standard
16152
16153 \end_layout
16154
16155 \end_inset
16156 </cell>
16157 </row>
16158 <row topline="true">
16159 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16160 \begin_inset Text
16161
16162 \begin_layout Standard
16163
16164 \end_layout
16165
16166 \end_inset
16167 </cell>
16168 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16169 \begin_inset Text
16170
16171 \begin_layout Standard
16172 sd
16173 \end_layout
16174
16175 \end_inset
16176 </cell>
16177 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16178 \begin_inset Text
16179
16180 \begin_layout Standard
16181
16182 \end_layout
16183
16184 \end_inset
16185 </cell>
16186 </row>
16187 <row topline="true" bottomline="true">
16188 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16189 \begin_inset Text
16190
16191 \begin_layout Standard
16192
16193 \end_layout
16194
16195 \end_inset
16196 </cell>
16197 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16198 \begin_inset Text
16199
16200 \begin_layout Standard
16201
16202 \end_layout
16203
16204 \end_inset
16205 </cell>
16206 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16207 \begin_inset Text
16208
16209 \begin_layout Standard
16210 sd
16211 \end_layout
16212
16213 \end_inset
16214 </cell>
16215 </row>
16216 </lyxtabular>
16217
16218 \end_inset
16219
16220
16221 \end_layout
16222
16223 \end_inset
16224
16225
16226 \begin_inset ERT
16227 status collapsed
16228
16229 \begin_layout Standard
16230
16231
16232 \backslash
16233 setlength{
16234 \backslash
16235 arrayrulewidth}{0.4pt}
16236 \end_layout
16237
16238 \end_inset
16239
16240
16241 \end_layout
16242
16243 \begin_layout Standard
16244 \begin_inset VSpace bigskip
16245 \end_inset
16246
16247 To set the line thickness to 1.5\InsetSpace \thinspace{}
16248 pt only for horizontal lines, like in Table\InsetSpace ~
16249
16250 \begin_inset LatexCommand ref
16251 reference "tab:Table-with-horizontal"
16252
16253 \end_inset
16254
16255 , insert these commands in ERT before the table or table float:
16256 \end_layout
16257
16258 \begin_layout Standard
16259
16260 \series bold
16261
16262 \backslash
16263 let
16264 \backslash
16265 myHline
16266 \backslash
16267 hline
16268 \newline
16269
16270 \backslash
16271 renewcommand{
16272 \backslash
16273 hline}
16274 \newline
16275  {
16276 \backslash
16277 noalign{
16278 \backslash
16279 global
16280 \backslash
16281 arrayrulewidth 1.5pt}
16282 \newline
16283   
16284 \backslash
16285 myHline
16286 \backslash
16287 noalign{
16288 \backslash
16289 global
16290 \backslash
16291 arrayrulewidth 0.4pt}}
16292 \end_layout
16293
16294 \begin_layout Standard
16295 To return to the default line thickness, insert this command in ERT behind
16296  the table or table float:
16297 \end_layout
16298
16299 \begin_layout Standard
16300
16301 \series bold
16302
16303 \backslash
16304 renewcommand{
16305 \backslash
16306 hline}{
16307 \backslash
16308 myHline}
16309 \end_layout
16310
16311 \begin_layout Standard
16312 \begin_inset ERT
16313 status collapsed
16314
16315 \begin_layout Standard
16316
16317
16318 \backslash
16319 let
16320 \backslash
16321 myHline
16322 \backslash
16323 hline
16324 \end_layout
16325
16326 \begin_layout Standard
16327
16328
16329 \backslash
16330 renewcommand{
16331 \backslash
16332 hline}
16333 \end_layout
16334
16335 \begin_layout Standard
16336
16337  {
16338 \backslash
16339 noalign{
16340 \backslash
16341 global
16342 \backslash
16343 arrayrulewidth 1.5pt}
16344 \end_layout
16345
16346 \begin_layout Standard
16347
16348   
16349 \backslash
16350 myHline
16351 \backslash
16352 noalign{
16353 \backslash
16354 global
16355 \backslash
16356 arrayrulewidth 0.4pt}}
16357 \end_layout
16358
16359 \end_inset
16360
16361
16362 \begin_inset Float table
16363 wide false
16364 sideways false
16365 status open
16366
16367 \begin_layout Caption
16368 \begin_inset LatexCommand label
16369 name "tab:Table-with-horizontal"
16370
16371 \end_inset
16372
16373 Table with 1.5\InsetSpace \thinspace{}
16374 pt thick horizontal lines
16375 \end_layout
16376
16377 \begin_layout Standard
16378 \align center
16379 \begin_inset Tabular
16380 <lyxtabular version="3" rows="3" columns="3">
16381 <features>
16382 <column alignment="center" valignment="top" leftline="true" width="0">
16383 <column alignment="center" valignment="top" leftline="true" width="0">
16384 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
16385 <row topline="true">
16386 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16387 \begin_inset Text
16388
16389 \begin_layout Standard
16390 sd
16391 \end_layout
16392
16393 \end_inset
16394 </cell>
16395 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16396 \begin_inset Text
16397
16398 \begin_layout Standard
16399
16400 \end_layout
16401
16402 \end_inset
16403 </cell>
16404 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16405 \begin_inset Text
16406
16407 \begin_layout Standard
16408
16409 \end_layout
16410
16411 \end_inset
16412 </cell>
16413 </row>
16414 <row topline="true">
16415 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16416 \begin_inset Text
16417
16418 \begin_layout Standard
16419
16420 \end_layout
16421
16422 \end_inset
16423 </cell>
16424 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16425 \begin_inset Text
16426
16427 \begin_layout Standard
16428 sd
16429 \end_layout
16430
16431 \end_inset
16432 </cell>
16433 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16434 \begin_inset Text
16435
16436 \begin_layout Standard
16437
16438 \end_layout
16439
16440 \end_inset
16441 </cell>
16442 </row>
16443 <row topline="true" bottomline="true">
16444 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16445 \begin_inset Text
16446
16447 \begin_layout Standard
16448
16449 \end_layout
16450
16451 \end_inset
16452 </cell>
16453 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16454 \begin_inset Text
16455
16456 \begin_layout Standard
16457
16458 \end_layout
16459
16460 \end_inset
16461 </cell>
16462 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16463 \begin_inset Text
16464
16465 \begin_layout Standard
16466 sd
16467 \end_layout
16468
16469 \end_inset
16470 </cell>
16471 </row>
16472 </lyxtabular>
16473
16474 \end_inset
16475
16476
16477 \end_layout
16478
16479 \end_inset
16480
16481
16482 \begin_inset ERT
16483 status collapsed
16484
16485 \begin_layout Standard
16486
16487
16488 \backslash
16489 renewcommand{
16490 \backslash
16491 hline}{
16492 \backslash
16493 myHline}
16494 \end_layout
16495
16496 \end_inset
16497
16498
16499 \end_layout
16500
16501 \begin_layout Standard
16502 \begin_inset VSpace bigskip
16503 \end_inset
16504
16505 To set the line thickness to 1.5\InsetSpace \thinspace{}
16506 pt only for vertical lines, create the following
16507  column format in the document preamble, according to the description in
16508  section\InsetSpace ~
16509
16510 \begin_inset LatexCommand ref
16511 reference "sub:Customized-Format"
16512
16513 \end_inset
16514
16515 :
16516 \end_layout
16517
16518 \begin_layout Standard
16519
16520 \series bold
16521
16522 \backslash
16523 newcolumntype{V}{!{
16524 \backslash
16525 vrule width 1.5pt}}
16526 \end_layout
16527
16528 \begin_layout Standard
16529 For Table\InsetSpace ~
16530
16531 \begin_inset LatexCommand ref
16532 reference "tab:Table-with-vertical"
16533
16534 \end_inset
16535
16536  the LaTeX-argument
16537 \end_layout
16538
16539 \begin_layout Standard
16540
16541 \series bold
16542 VcV
16543 \end_layout
16544
16545 \begin_layout Standard
16546 was used for the last column and
16547 \end_layout
16548
16549 \begin_layout Standard
16550
16551 \series bold
16552 Vc
16553 \end_layout
16554
16555 \begin_layout Standard
16556 for the other columns.
16557 \end_layout
16558
16559 \begin_layout Standard
16560 \begin_inset Float table
16561 wide false
16562 sideways false
16563 status open
16564
16565 \begin_layout Caption
16566 \begin_inset LatexCommand label
16567 name "tab:Table-with-vertical"
16568
16569 \end_inset
16570
16571 Table with 1.5\InsetSpace \thinspace{}
16572 pt thick vertical lines
16573 \end_layout
16574
16575 \begin_layout Standard
16576 \align center
16577 \begin_inset Tabular
16578 <lyxtabular version="3" rows="3" columns="3">
16579 <features>
16580 <column alignment="center" valignment="top" leftline="true" width="0" special="Vc">
16581 <column alignment="center" valignment="top" leftline="true" width="0" special="Vc">
16582 <column alignment="center" valignment="top" leftline="true" width="0" special="VcV">
16583 <row topline="true">
16584 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16585 \begin_inset Text
16586
16587 \begin_layout Standard
16588 sd
16589 \end_layout
16590
16591 \end_inset
16592 </cell>
16593 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16594 \begin_inset Text
16595
16596 \begin_layout Standard
16597
16598 \end_layout
16599
16600 \end_inset
16601 </cell>
16602 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16603 \begin_inset Text
16604
16605 \begin_layout Standard
16606
16607 \end_layout
16608
16609 \end_inset
16610 </cell>
16611 </row>
16612 <row topline="true">
16613 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16614 \begin_inset Text
16615
16616 \begin_layout Standard
16617
16618 \end_layout
16619
16620 \end_inset
16621 </cell>
16622 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16623 \begin_inset Text
16624
16625 \begin_layout Standard
16626 sd
16627 \end_layout
16628
16629 \end_inset
16630 </cell>
16631 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16632 \begin_inset Text
16633
16634 \begin_layout Standard
16635
16636 \end_layout
16637
16638 \end_inset
16639 </cell>
16640 </row>
16641 <row topline="true" bottomline="true">
16642 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16643 \begin_inset Text
16644
16645 \begin_layout Standard
16646
16647 \end_layout
16648
16649 \end_inset
16650 </cell>
16651 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16652 \begin_inset Text
16653
16654 \begin_layout Standard
16655
16656 \end_layout
16657
16658 \end_inset
16659 </cell>
16660 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16661 \begin_inset Text
16662
16663 \begin_layout Standard
16664 sd
16665 \end_layout
16666
16667 \end_inset
16668 </cell>
16669 </row>
16670 </lyxtabular>
16671
16672 \end_inset
16673
16674
16675 \end_layout
16676
16677 \end_inset
16678
16679
16680 \end_layout
16681
16682 \begin_layout Subsection
16683 Dashed Lines
16684 \begin_inset LatexCommand index
16685 name "Table Customization ! Dashed Lines"
16686
16687 \end_inset
16688
16689
16690 \end_layout
16691
16692 \begin_layout Standard
16693 \begin_inset Float table
16694 placement H
16695 wide false
16696 sideways false
16697 status open
16698
16699 \begin_layout Caption
16700 \begin_inset LatexCommand label
16701 name "tab:Table-with-dashed"
16702
16703 \end_inset
16704
16705 Table with dashed lines
16706 \end_layout
16707
16708 \begin_layout Standard
16709 \align center
16710 \begin_inset Tabular
16711 <lyxtabular version="3" rows="5" columns="5">
16712 <features>
16713 <column alignment="center" valignment="top" leftline="true" width="0">
16714 <column alignment="center" valignment="top" leftline="true" width="0">
16715 <column alignment="center" valignment="top" width="0" special=":c">
16716 <column alignment="center" valignment="top" leftline="true" width="0">
16717 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
16718 <row topline="true" bottomline="true">
16719 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16720 \begin_inset Text
16721
16722 \begin_layout Standard
16723 a
16724 \end_layout
16725
16726 \end_inset
16727 </cell>
16728 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16729 \begin_inset Text
16730
16731 \begin_layout Standard
16732 b
16733 \end_layout
16734
16735 \end_inset
16736 </cell>
16737 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16738 \begin_inset Text
16739
16740 \begin_layout Standard
16741 c
16742 \end_layout
16743
16744 \end_inset
16745 </cell>
16746 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16747 \begin_inset Text
16748
16749 \begin_layout Standard
16750 d
16751 \end_layout
16752
16753 \end_inset
16754 </cell>
16755 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16756 \begin_inset Text
16757
16758 \begin_layout Standard
16759 e
16760 \end_layout
16761
16762 \end_inset
16763 </cell>
16764 </row>
16765 <row topline="true">
16766 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16767 \begin_inset Text
16768
16769 \begin_layout Standard
16770 f
16771 \end_layout
16772
16773 \end_inset
16774 </cell>
16775 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16776 \begin_inset Text
16777
16778 \begin_layout Standard
16779 g
16780 \end_layout
16781
16782 \end_inset
16783 </cell>
16784 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16785 \begin_inset Text
16786
16787 \begin_layout Standard
16788 h
16789 \end_layout
16790
16791 \end_inset
16792 </cell>
16793 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16794 \begin_inset Text
16795
16796 \begin_layout Standard
16797 i
16798 \end_layout
16799
16800 \end_inset
16801 </cell>
16802 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16803 \begin_inset Text
16804
16805 \begin_layout Standard
16806 j
16807 \end_layout
16808
16809 \end_inset
16810 </cell>
16811 </row>
16812 <row>
16813 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16814 \begin_inset Text
16815
16816 \begin_layout Standard
16817 \begin_inset ERT
16818 status collapsed
16819
16820 \begin_layout Standard
16821
16822
16823 \backslash
16824 hdashline 
16825 \end_layout
16826
16827 \end_inset
16828
16829 k
16830 \end_layout
16831
16832 \end_inset
16833 </cell>
16834 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16835 \begin_inset Text
16836
16837 \begin_layout Standard
16838 l
16839 \end_layout
16840
16841 \end_inset
16842 </cell>
16843 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16844 \begin_inset Text
16845
16846 \begin_layout Standard
16847 m
16848 \end_layout
16849
16850 \end_inset
16851 </cell>
16852 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16853 \begin_inset Text
16854
16855 \begin_layout Standard
16856 n
16857 \end_layout
16858
16859 \end_inset
16860 </cell>
16861 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16862 \begin_inset Text
16863
16864 \begin_layout Standard
16865 o
16866 \end_layout
16867
16868 \end_inset
16869 </cell>
16870 </row>
16871 <row topline="true">
16872 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16873 \begin_inset Text
16874
16875 \begin_layout Standard
16876 \begin_inset ERT
16877 status collapsed
16878
16879 \begin_layout Standard
16880
16881
16882 \backslash
16883 cdashline{4-5}
16884 \end_layout
16885
16886 \end_inset
16887
16888 p
16889 \end_layout
16890
16891 \end_inset
16892 </cell>
16893 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16894 \begin_inset Text
16895
16896 \begin_layout Standard
16897 q
16898 \end_layout
16899
16900 \end_inset
16901 </cell>
16902 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none" special="c:">
16903 \begin_inset Text
16904
16905 \begin_layout Standard
16906 r
16907 \end_layout
16908
16909 \end_inset
16910 </cell>
16911 <cell multicolumn="1" alignment="center" valignment="top" rightline="true" usebox="none" special="c:">
16912 \begin_inset Text
16913
16914 \begin_layout Standard
16915 s
16916 \end_layout
16917
16918 \end_inset
16919 </cell>
16920 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16921 \begin_inset Text
16922
16923 \begin_layout Standard
16924
16925 \end_layout
16926
16927 \end_inset
16928 </cell>
16929 </row>
16930 <row topline="true" bottomline="true">
16931 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16932 \begin_inset Text
16933
16934 \begin_layout Standard
16935 t
16936 \end_layout
16937
16938 \end_inset
16939 </cell>
16940 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16941 \begin_inset Text
16942
16943 \begin_layout Standard
16944 u
16945 \end_layout
16946
16947 \end_inset
16948 </cell>
16949 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16950 \begin_inset Text
16951
16952 \begin_layout Standard
16953 v
16954 \end_layout
16955
16956 \end_inset
16957 </cell>
16958 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16959 \begin_inset Text
16960
16961 \begin_layout Standard
16962 w
16963 \end_layout
16964
16965 \end_inset
16966 </cell>
16967 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16968 \begin_inset Text
16969
16970 \begin_layout Standard
16971 x
16972 \end_layout
16973
16974 \end_inset
16975 </cell>
16976 </row>
16977 </lyxtabular>
16978
16979 \end_inset
16980
16981
16982 \end_layout
16983
16984 \end_inset
16985
16986
16987 \end_layout
16988
16989 \begin_layout Standard
16990 LyX doesn't natively support dashed lines, so you have to use ERT.
16991  As prerequisite the LaTeX-package 
16992 \series bold
16993 arydshln
16994 \series default
16995
16996 \begin_inset LatexCommand index
16997 name "LaTeX-packages ! arydshln"
16998
16999 \end_inset
17000
17001  must be loaded in the document preamble with the command
17002 \end_layout
17003
17004 \begin_layout Standard
17005
17006 \series bold
17007
17008 \backslash
17009 usepackage{arydshln}
17010 \end_layout
17011
17012 \begin_layout Standard
17013 To make a vertical line dashed, enter the colon 
17014 \begin_inset Quotes eld
17015 \end_inset
17016
17017 :
17018 \begin_inset Quotes erd
17019 \end_inset
17020
17021  together with the character for the horizontal alignment as LaTeX-argument
17022  in the table cell dialog.
17023 \end_layout
17024
17025 \begin_layout Standard
17026 For a horizontal dashed line add the command
17027 \end_layout
17028
17029 \begin_layout Standard
17030
17031 \series bold
17032
17033 \backslash
17034 hdashline
17035 \end_layout
17036
17037 \begin_layout Standard
17038 in ERT as first element of the first cell in the table row.
17039 \end_layout
17040
17041 \begin_layout Standard
17042 For dashed multicolumn lines use the command
17043 \end_layout
17044
17045 \begin_layout Standard
17046
17047 \series bold
17048
17049 \backslash
17050 cdashline{line number
17051 \series default
17052 }
17053 \end_layout
17054
17055 \begin_layout Standard
17056 in ERT as first element of the first cell in the table row.
17057  If you have for example a multicolumn spanning over columns 2 to 4 and
17058  you want to have a dashed line above, add the command
17059 \end_layout
17060
17061 \begin_layout Standard
17062
17063 \series bold
17064
17065 \backslash
17066 cdashline{2-4}
17067 \end_layout
17068
17069 \begin_layout Standard
17070 as first element of the first cell in the row of the multicolumn.
17071 \end_layout
17072
17073 \begin_layout Standard
17074 \begin_inset VSpace bigskip
17075 \end_inset
17076
17077
17078 \end_layout
17079
17080 \begin_layout Standard
17081 Table\InsetSpace ~
17082
17083 \begin_inset LatexCommand ref
17084 reference "tab:Table-with-dashed"
17085
17086 \end_inset
17087
17088  was created using 
17089 \begin_inset Quotes eld
17090 \end_inset
17091
17092
17093 \series bold
17094 :c
17095 \series default
17096
17097 \begin_inset Quotes erd
17098 \end_inset
17099
17100  as LaTeX-argument of the third column.
17101  The ERT command 
17102 \series bold
17103
17104 \backslash
17105 hdashline
17106 \series default
17107  was inserted to the first cell of the third row and the the ERT command
17108 \newline
17109
17110  
17111 \series bold
17112
17113 \backslash
17114 cdashline{4-5}
17115 \series default
17116  was inserted to the first cell of the fourth row.
17117 \end_layout
17118
17119 \begin_layout Standard
17120 \begin_inset Note Greyedout
17121 status open
17122
17123 \begin_layout Standard
17124
17125 \series bold
17126 Note:
17127 \series default
17128  The used LaTeX-package 
17129 \series bold
17130 arydshln
17131 \series default
17132  is apparently not compatible with the LaTeX-package 
17133 \series bold
17134 colortbl
17135 \series default
17136
17137 \begin_inset LatexCommand index
17138 name "LaTeX-packages ! colortbl"
17139
17140 \end_inset
17141
17142  that is used for colored tables in section\InsetSpace ~
17143
17144 \begin_inset LatexCommand ref
17145 reference "sec:Colored-Tables"
17146
17147 \end_inset
17148
17149 .
17150  That means colored tables cannot have dashed lines.
17151 \end_layout
17152
17153 \end_inset
17154
17155
17156 \end_layout
17157
17158 \begin_layout Chapter
17159 Floats
17160 \begin_inset LatexCommand index
17161 name "Floats"
17162
17163 \end_inset
17164
17165
17166 \begin_inset LatexCommand label
17167 name "cha:Floats"
17168
17169 \end_inset
17170
17171
17172 \end_layout
17173
17174 \begin_layout Section
17175 Introduction
17176 \begin_inset LatexCommand label
17177 name "sec:FloatIntroduction"
17178
17179 \end_inset
17180
17181
17182 \begin_inset LatexCommand index
17183 name "Floats ! Introduction"
17184
17185 \end_inset
17186
17187
17188 \end_layout
17189
17190 \begin_layout Standard
17191 A float is a block of text associated with some sort of label, which doesn't
17192  have a fixed location.
17193  It can 
17194 \begin_inset Quotes eld
17195 \end_inset
17196
17197 float
17198 \begin_inset Quotes erd
17199 \end_inset
17200
17201  forward or backward a page or two, to wherever it fits best.
17202  
17203 \family sans
17204 Footnotes
17205 \family default
17206  and 
17207 \family sans
17208 Margin\InsetSpace ~
17209 Notes
17210 \family default
17211  are also floats, because they can float to the next page when there are
17212  too many notes at the page.
17213 \end_layout
17214
17215 \begin_layout Standard
17216 Floats allow a high quality layout.
17217  Images and tables can evenly be spread to the pages to avoid white space
17218  and pages without text.
17219  As the floating often destroys the context between the text and the image/table
17220 , every float can be referenced in the text.
17221  Floats are therefore numbered.
17222  Referencing is described in section\InsetSpace ~
17223
17224 \begin_inset LatexCommand ref
17225 reference "sec:Referencing-Floats"
17226
17227 \end_inset
17228
17229 .
17230 \end_layout
17231
17232 \begin_layout Standard
17233 To insert a float, use the menu 
17234 \family sans
17235 Insert\SpecialChar \menuseparator
17236 Floats
17237 \family default
17238 .
17239  This inserts a box with a label in the 
17240 \family sans
17241 Caption
17242 \family default
17243  environment
17244 \begin_inset Foot
17245 status collapsed
17246
17247 \begin_layout Standard
17248 The 
17249 \family sans
17250 Caption
17251 \family default
17252  environment is described in LyX's 
17253 \emph on
17254 Userguide
17255 \emph default
17256 .
17257 \end_layout
17258
17259 \end_inset
17260
17261  into your document.
17262  Every label ends with the character 
17263 \begin_inset Quotes eld
17264 \end_inset
17265
17266 #
17267 \begin_inset Quotes erd
17268 \end_inset
17269
17270  as placeholder for the float number in the output.
17271  The label will automatically be translated to the document language in
17272  the output.
17273  Behind the label you can insert the caption text.
17274  The image or table is inserted above or below the caption in a separate
17275  paragraph within the float.
17276  More about the caption placement is described in section\InsetSpace ~
17277
17278 \begin_inset LatexCommand ref
17279 reference "sec:Caption-Placement"
17280
17281 \end_inset
17282
17283 .
17284  To keep your LyX-document readable, you can open and close the float box
17285  by left-clicking on the box label.
17286  A closed float box looks like this: 
17287 \begin_inset Graphics
17288         filename ../clipart/floatQt4.png
17289         scale 70
17290
17291 \end_inset
17292
17293  -- a gray button with a red label.
17294 \end_layout
17295
17296 \begin_layout Standard
17297 It is recommended to insert floats as a separate paragraph to avoid possible
17298  LaTeX-errors that can occur when the surrounding text is specially formatted.
17299 \end_layout
17300
17301 \begin_layout Standard
17302 Existing figures or tables can be put into a float by marking them and then
17303  pressing the corresponding toolbar button for a new float.
17304 \end_layout
17305
17306 \begin_layout Section
17307 Float Types
17308 \end_layout
17309
17310 \begin_layout Standard
17311 Besides figure and table floats that are described in section\InsetSpace ~
17312
17313 \begin_inset LatexCommand ref
17314 reference "sec:Figure-Floats"
17315
17316 \end_inset
17317
17318  and 
17319 \begin_inset LatexCommand ref
17320 reference "sec:Table-Floats"
17321
17322 \end_inset
17323
17324 , respectively, LyX offers the float types 
17325 \series bold
17326 Algorithm
17327 \series default
17328  and 
17329 \series bold
17330 Text\InsetSpace ~
17331 Wrap\InsetSpace ~
17332 Float
17333 \series default
17334 .
17335 \end_layout
17336
17337 \begin_layout Subsection
17338 Algorithm Floats
17339 \begin_inset LatexCommand index
17340 name "Floats ! Algorithm Floats"
17341
17342 \end_inset
17343
17344
17345 \end_layout
17346
17347 \begin_layout Standard
17348 \begin_inset Float algorithm
17349 placement h
17350 wide false
17351 sideways false
17352 status open
17353
17354 \begin_layout Caption
17355 \begin_inset LatexCommand label
17356 name "alg:Example-Algorithm-float"
17357
17358 \end_inset
17359
17360 Example Algorithm float
17361 \end_layout
17362
17363 \begin_layout LyX-Code
17364 for I in 1..N loop
17365 \newline
17366  Sum:= Sum + A(I); /*senseless comment*/
17367 \newline
17368 end loop
17369 \begin_inset VSpace -4mm
17370 \end_inset
17371
17372
17373 \end_layout
17374
17375 \end_inset
17376
17377
17378 \end_layout
17379
17380 \begin_layout Standard
17381 This float type is inserted with the menu 
17382 \family sans
17383 Insert\SpecialChar \menuseparator
17384 Floats\SpecialChar \menuseparator
17385 Algorithm
17386 \family default
17387 .
17388  It is used for program codes and descriptions of algorithms.
17389  A possible environment for algorithms is the 
17390 \family sans
17391 LyX-Code
17392 \family default
17393 , described in LyX's 
17394 \emph on
17395 Userguide
17396 \emph default
17397 .
17398  Algorithm\InsetSpace ~
17399
17400 \begin_inset LatexCommand ref
17401 reference "alg:Example-Algorithm-float"
17402
17403 \end_inset
17404
17405  is an example of an algorithm float where -4\InsetSpace \thinspace{}
17406 mm vertical space was added
17407  at the end of the float to have the bottom rule exactly below the last
17408  text line.
17409 \end_layout
17410
17411 \begin_layout Standard
17412 The float label is not automatically translated into the document language.
17413  If your document is not in English, you have to do this manually by adding
17414  the following line
17415 \series bold
17416  
17417 \series default
17418 to the document preamble
17419 \series bold
17420 :
17421 \end_layout
17422
17423 \begin_layout Standard
17424
17425 \series bold
17426
17427 \backslash
17428 floatname{algorithm}{your\InsetSpace ~
17429 name}
17430 \end_layout
17431
17432 \begin_layout Standard
17433
17434 \family sans
17435 your\InsetSpace ~
17436 name
17437 \family default
17438  is the word 
17439 \begin_inset Quotes eld
17440 \end_inset
17441
17442
17443 \emph on
17444 algorithm
17445 \emph default
17446
17447 \begin_inset Quotes erd
17448 \end_inset
17449
17450  in your language.
17451 \end_layout
17452
17453 \begin_layout Description
17454
17455 \series bold
17456 Note:
17457 \series default
17458  When the LaTeX-package 
17459 \series bold
17460 hyperref
17461 \series default
17462
17463 \begin_inset LatexCommand index
17464 name "LaTeX-packages ! hyperref"
17465
17466 \end_inset
17467
17468  is used to link cross-references to floats in the PDF-output, it must be
17469  loaded in the document preamble before the definition of floats to be able
17470  to reference floats.
17471  As LyX sets the float definition for algorithm floats automatically before
17472  the user editable part of the document preamble, you need to insert the
17473  following preamble lines 
17474 \emph on
17475 after
17476 \emph default
17477  the loading command of 
17478 \series bold
17479 hyperref
17480 \series default
17481 :
17482 \series bold
17483
17484 \begin_inset VSpace defskip
17485 \end_inset
17486
17487
17488 \newline
17489
17490 \backslash
17491 newfloat{Xalgorithm}{tbp}{loa}
17492 \newline
17493
17494 \backslash
17495 floatname{Xalgorithm}{your\InsetSpace ~
17496 name}
17497 \newline
17498
17499 \backslash
17500 newcommand{
17501 \backslash
17502 theHalgorithm}{
17503 \backslash
17504 theHXalgorithm}
17505 \newline
17506
17507 \backslash
17508 renewenvironment{algorithm}[1][tbp]
17509 \newline
17510
17511 \begin_inset ERT
17512 status collapsed
17513
17514 \begin_layout Standard
17515
17516
17517 \backslash
17518 hphantom{ }
17519 \end_layout
17520
17521 \end_inset
17522
17523 {
17524 \backslash
17525 begin{Xalgorithm}[#1]}{
17526 \backslash
17527 end{Xalgorithm}}
17528 \begin_inset VSpace defskip
17529 \end_inset
17530
17531
17532 \series default
17533
17534 \newline
17535 Where 
17536 \family sans
17537 your\InsetSpace ~
17538 name
17539 \family default
17540  is the word 
17541 \begin_inset Quotes eld
17542 \end_inset
17543
17544
17545 \emph on
17546 algorithm
17547 \emph default
17548
17549 \begin_inset Quotes erd
17550 \end_inset
17551
17552  in your language.
17553 \end_layout
17554
17555 \begin_layout Standard
17556 Algorithm floats are not by default numbered in the scheme 
17557 \begin_inset Quotes eld
17558 \end_inset
17559
17560 chapter.algorithm
17561 \begin_inset Quotes erd
17562 \end_inset
17563
17564  like it is the case for table and figure floats in many document-classes.
17565  To number algorithm floats in the same scheme, add this command to your
17566  document preamble:
17567 \end_layout
17568
17569 \begin_layout Standard
17570
17571 \series bold
17572
17573 \backslash
17574 numberwithin{algorithm}{chapter}
17575 \end_layout
17576
17577 \begin_layout Standard
17578 If you use the LaTeX-package 
17579 \series bold
17580 hyperref
17581 \series default
17582 , add this line instead 
17583 \emph on
17584 after
17585 \emph default
17586  the definition of 
17587 \family sans
17588 Xalgorithm
17589 \family default
17590  (the commands from above) to the preamble:
17591 \end_layout
17592
17593 \begin_layout Standard
17594
17595 \series bold
17596
17597 \backslash
17598 numberwithin{Xalgorithm}{chapter}
17599 \end_layout
17600
17601 \begin_layout Standard
17602 To be able to use the command 
17603 \series bold
17604
17605 \backslash
17606 numberwithin
17607 \series default
17608 , set in the tab 
17609 \family sans
17610 Math\InsetSpace ~
17611 Options
17612 \family default
17613  in the document settings the option 
17614 \family sans
17615 Use\InsetSpace ~
17616 AMS\InsetSpace ~
17617 math\InsetSpace ~
17618 package
17619 \family default
17620 .
17621 \end_layout
17622
17623 \begin_layout Subsection
17624 Text Wrap Floats
17625 \begin_inset LatexCommand index
17626 name "Floats ! Text Wrap Floats"
17627
17628 \end_inset
17629
17630
17631 \begin_inset LatexCommand label
17632 name "sub:floatflt-wrap-float"
17633
17634 \end_inset
17635
17636
17637 \end_layout
17638
17639 \begin_layout Standard
17640 This float type is used if you want to 
17641 \begin_inset Quotes eld
17642 \end_inset
17643
17644 wrap
17645 \begin_inset Quotes erd
17646 \end_inset
17647
17648  text around a figure so that it only occupies some fraction of the column
17649  width.
17650  It can be inserted using the menu 
17651 \begin_inset Wrap figure
17652 placement l
17653 width "40col%"
17654 status open
17655
17656 \begin_layout Standard
17657 \begin_inset Graphics
17658         filename mobius.eps
17659         display color
17660         width 40col%
17661         rotateOrigin center
17662
17663 \end_inset
17664
17665
17666 \end_layout
17667
17668 \begin_layout Caption
17669 \begin_inset LatexCommand label
17670 name "fig:This-is-a"
17671
17672 \end_inset
17673
17674 This is a wrapped figure, and this is the brilliant caption that describes
17675  it.
17676 \begin_inset VSpace medskip
17677 \end_inset
17678
17679
17680 \end_layout
17681
17682 \end_inset
17683
17684  
17685 \family sans
17686 Insert\SpecialChar \menuseparator
17687 Floats\SpecialChar \menuseparator
17688 Text\InsetSpace ~
17689 Wrap\InsetSpace ~
17690 Float
17691 \family default
17692  if the LaTeX-package 
17693 \series bold
17694 floatflt
17695 \series default
17696
17697 \begin_inset LatexCommand index
17698 name "LaTeX-packages ! floatflt"
17699
17700 \end_inset
17701
17702  is installed.
17703 \begin_inset Foot
17704 status collapsed
17705
17706 \begin_layout Standard
17707 Installing a LaTeX-package is explained it in the 
17708 \emph on
17709 LaTeX\InsetSpace ~
17710 Configuration
17711 \emph default
17712  manual.
17713 \end_layout
17714
17715 \end_inset
17716
17717  The width and placement of the float is adjusted by right-clicking on the
17718  float box.
17719  Figure\InsetSpace ~
17720
17721 \begin_inset LatexCommand ref
17722 reference "fig:This-is-a"
17723
17724 \end_inset
17725
17726  is an example text wrap float with a width of 40
17727 \begin_inset Formula $\,$
17728 \end_inset
17729
17730 col%.
17731 \begin_inset Foot
17732 status collapsed
17733
17734 \begin_layout Standard
17735 Available units are explained in 
17736 \begin_inset LatexCommand ref
17737 reference "cha:Units-available-in"
17738
17739 \end_inset
17740
17741 .
17742 \end_layout
17743
17744 \end_inset
17745
17746  Some space was added under the caption to separate it better from the surroundi
17747 ng text.
17748 \end_layout
17749
17750 \begin_layout Standard
17751 The LaTeX-package 
17752 \series bold
17753 floatflt
17754 \series default
17755  also supports table wrap floats, but they are not yet supported by LyX.
17756  If you need this, read the documentation of 
17757 \series bold
17758 floatflt
17759 \series default
17760  
17761 \begin_inset LatexCommand cite
17762 key "floatflt"
17763
17764 \end_inset
17765
17766 .
17767 \end_layout
17768
17769 \begin_layout Standard
17770 \begin_inset Note Greyedout
17771 status open
17772
17773 \begin_layout Standard
17774
17775 \series bold
17776 Note:
17777 \series default
17778  Text\InsetSpace ~
17779 wrap float floats are fragile! E.\InsetSpace \thinspace{}
17780 g.\InsetSpace ~
17781 having a figure too close to the bottom
17782  of the page can mess things up in the way that the float doesn't appear
17783  in the output or that it is placed over some other text.
17784 \begin_inset Foot
17785 status open
17786
17787 \begin_layout Standard
17788 The better solution is to use the LaTeX-package 
17789 \series bold
17790 wrapf\SpecialChar \textcompwordmark{}
17791 ig
17792 \series default
17793
17794 \begin_inset LatexCommand index
17795 name "LaTeX-packages ! wrapfig\\vspace{4mm}"
17796
17797 \end_inset
17798
17799  instead of 
17800 \series bold
17801 floatf\SpecialChar \textcompwordmark{}
17802 lt
17803 \series default
17804 , but it is currently not supported by LyX.
17805 \end_layout
17806
17807 \end_inset
17808
17809
17810 \end_layout
17811
17812 \end_inset
17813
17814
17815 \end_layout
17816
17817 \begin_layout Standard
17818 In general:
17819 \end_layout
17820
17821 \begin_layout Itemize
17822 Wrap floats should not be placed in paragraphs that run over a page break.
17823  That means that wrap floats should better be inserted to the exact place
17824  when the document is nearly ready and you are able to estimate where page
17825  breaks will appear.
17826 \end_layout
17827
17828 \begin_layout Itemize
17829 Wrap floats should either be placed in an own paragraph before the paragraph
17830  where they should wrap into or within a paragraph.
17831 \end_layout
17832
17833 \begin_layout Itemize
17834 Wrap floats in consecutive paragraphs may cause troubles, so assure that
17835  there is a text paragraph between them as separator.
17836 \end_layout
17837
17838 \begin_layout Itemize
17839 Wrap floats are not allowed in section headings or tables.
17840 \end_layout
17841
17842 \begin_layout Section
17843 Referencing Floats
17844 \begin_inset LatexCommand label
17845 name "sec:Referencing-Floats"
17846
17847 \end_inset
17848
17849
17850 \begin_inset LatexCommand index
17851 name "Floats ! References"
17852
17853 \end_inset
17854
17855
17856 \begin_inset LatexCommand index
17857 name "References"
17858
17859 \end_inset
17860
17861
17862 \end_layout
17863
17864 \begin_layout Standard
17865 To reference a float, insert a label into its caption using the menu 
17866 \family sans
17867 Insert\SpecialChar \menuseparator
17868 Label
17869 \family default
17870  or the toolbar button 
17871 \begin_inset Graphics
17872         filename ../images/label-insert.xpm
17873         scale 85
17874
17875 \end_inset
17876
17877 .
17878  A grey label box like this one: 
17879 \begin_inset Graphics
17880         filename ../clipart/labelQt4.png
17881         scale 85
17882
17883 \end_inset
17884
17885  will be inserted and the label window pops up asking for the label text.
17886  LyX offers as text the first words of the caption with a prefix.
17887  The prefix depends on the float type, e.\InsetSpace \thinspace{}
17888 g.\InsetSpace ~
17889 for figure floats the prefix will
17890  be "
17891 \family sans
17892 fig:
17893 \family default
17894 ".
17895 \end_layout
17896
17897 \begin_layout Standard
17898 The label is used as anchor and name for the reference.
17899  You can refer to the label using the menu 
17900 \family sans
17901 Insert\SpecialChar \menuseparator
17902 Cross-reference
17903 \family default
17904  or the toolbar button 
17905 \begin_inset Graphics
17906         filename ../images/dialog-show-new-inset_ref.xpm
17907         scale 85
17908
17909 \end_inset
17910
17911 .
17912  A grey cross-reference box like this one: 
17913 \begin_inset Graphics
17914         filename ../clipart/referenceQt4.png
17915         scale 85
17916
17917 \end_inset
17918
17919  will be inserted and the cross-reference window appear showing all labels
17920  of the document.
17921  If you have multiple LyX-documents opened, choose the one you are working
17922  on from the drop-list at the top of the dialog.
17923  You can now sort the labels alphabetically and then choose one.
17924  At the position of the cross-reference box the float number will appear
17925  in the output.
17926 \end_layout
17927
17928 \begin_layout Standard
17929 It is recommended to use a protected space between the cross-reference name
17930  and its number to avoid line breaks between them.
17931  If a cross-reference refers to a non-existing label, you will see two question
17932  marks in the output instead of the reference.
17933 \end_layout
17934
17935 \begin_layout Standard
17936 You can change labels at any time by clicking on the label box.
17937  References to the changed label will automatically change its link to the
17938  new label text, so that you don't need to take care about this.
17939 \end_layout
17940
17941 \begin_layout Standard
17942 The button 
17943 \family sans
17944 Go\InsetSpace ~
17945 to\InsetSpace ~
17946 Label
17947 \family default
17948  in the cross-reference window sets the cursor before the referred label.
17949  The button text changes then to Go\InsetSpace ~
17950 Back and you can use it to set the cursor
17951  back to the cross-reference.
17952  Right-clicking on a cross-reference box also sets the cursor before the
17953  referenced label but without a possibility to go back.
17954 \end_layout
17955
17956 \begin_layout Subsection
17957 Cross-reference formats
17958 \begin_inset LatexCommand label
17959 name "sub:Cross-reference-formats"
17960
17961 \end_inset
17962
17963
17964 \begin_inset LatexCommand index
17965 name "References ! Formats"
17966
17967 \end_inset
17968
17969
17970 \end_layout
17971
17972 \begin_layout Standard
17973 There are six varieties of cross-references:
17974 \end_layout
17975
17976 \begin_layout Description
17977 <reference>: prints the float number, this is the default: 
17978 \begin_inset LatexCommand ref
17979 reference "fig:Two-distorted-images"
17980
17981 \end_inset
17982
17983
17984 \end_layout
17985
17986 \begin_layout Description
17987 (<reference>): prints the float number within two parentheses, this is the
17988  style normally used to reference formulas, especially when the reference
17989  name 
17990 \begin_inset Quotes eld
17991 \end_inset
17992
17993 Equation
17994 \begin_inset Quotes erd
17995 \end_inset
17996
17997  is omitted: 
17998 \begin_inset LatexCommand eqref
17999 reference "eq:Wgn"
18000
18001 \end_inset
18002
18003
18004 \end_layout
18005
18006 \begin_layout Description
18007 <page>: prints the page number: Page\InsetSpace ~
18008
18009 \begin_inset LatexCommand pageref
18010 reference "fig:Two-distorted-images"
18011
18012 \end_inset
18013
18014
18015 \end_layout
18016
18017 \begin_layout Description
18018 on\InsetSpace ~
18019 page\InsetSpace ~
18020 <page>: prints the text "on page" and the page number: 
18021 \begin_inset LatexCommand vpageref
18022 reference "fig:Two-distorted-images"
18023
18024 \end_inset
18025
18026
18027 \end_layout
18028
18029 \begin_layout Description
18030 <reference>\InsetSpace ~
18031 on\InsetSpace ~
18032 page\InsetSpace ~
18033 <page>: prints the float number, the text "on page", and
18034  the page number: 
18035 \begin_inset LatexCommand vref
18036 reference "fig:Two-distorted-images"
18037
18038 \end_inset
18039
18040
18041 \end_layout
18042
18043 \begin_layout Description
18044 Formatted\InsetSpace ~
18045 reference: prints a self defined cross-reference format:
18046 \newline
18047
18048 \begin_inset LatexCommand prettyref
18049 reference "fig:Two-distorted-images"
18050
18051 \end_inset
18052
18053
18054 \end_layout
18055
18056 \begin_layout Standard
18057 Note that the style <page> won't print the page number if the label is on
18058  the previous, the same, or the next page.
18059  You will e.\InsetSpace \thinspace{}
18060 g.\InsetSpace ~
18061 see the text 
18062 \begin_inset Quotes eld
18063 \end_inset
18064
18065
18066 \family sans
18067 on this page
18068 \family default
18069
18070 \begin_inset Quotes erd
18071 \end_inset
18072
18073  instead.
18074 \end_layout
18075
18076 \begin_layout Standard
18077 The number and current page of the referred document part in the output,
18078  is automatically calculated by LaTeX.
18079  The varieties are adjusted in the field 
18080 \family sans
18081 Format
18082 \family default
18083  of the cross-reference window, that appear when you click on the cross-referenc
18084 e box.
18085 \begin_inset VSpace bigskip
18086 \end_inset
18087
18088
18089 \end_layout
18090
18091 \begin_layout Standard
18092 To define a format for the 
18093 \family sans
18094 Formatted\InsetSpace ~
18095 reference
18096 \family default
18097  style, you have to use the following command in the document preamble:
18098 \end_layout
18099
18100 \begin_layout Standard
18101
18102 \series bold
18103
18104 \backslash
18105 newrefformat{prefix}{text}
18106 \end_layout
18107
18108 \begin_layout Standard
18109 This formatting command affects all references to labels with the same prefix.
18110  To get the format of the 
18111 \family sans
18112 Formatted\InsetSpace ~
18113 reference
18114 \family default
18115  example above, this command was used:
18116 \end_layout
18117
18118 \begin_layout Standard
18119
18120 \series bold
18121
18122 \backslash
18123 newrefformat{fig}
18124 \newline
18125
18126 \begin_inset ERT
18127 status collapsed
18128
18129 \begin_layout Standard
18130
18131
18132 \backslash
18133 hphantom{ }
18134 \end_layout
18135
18136 \end_inset
18137
18138 {Figure~float~
18139 \backslash
18140 ref{#1} printed on page~
18141 \backslash
18142 pageref{#1}}
18143 \end_layout
18144
18145 \begin_layout Standard
18146 The tilde "~" is the LaTeX equivalent for the protected space.
18147  The command 
18148 \series bold
18149
18150 \backslash
18151 ref{#1}
18152 \series default
18153  refers to the float number, the command 
18154 \series bold
18155
18156 \backslash
18157 pageref{#1}
18158 \series default
18159  to the page number.
18160 \end_layout
18161
18162 \begin_layout Subsection
18163 Automatic Reference Naming
18164 \begin_inset LatexCommand index
18165 name "References ! Automatic Reference Naming"
18166
18167 \end_inset
18168
18169
18170 \end_layout
18171
18172 \begin_layout Standard
18173 The LaTeX-package 
18174 \series bold
18175 hyperref
18176 \series default
18177  provides a very useful feature that cross-references automatically include
18178  the name of the referenced floats (or text parts like sections).
18179  You save to write e.\InsetSpace \thinspace{}
18180 g.\InsetSpace ~
18181 the name 
18182 \begin_inset Quotes eld
18183 \end_inset
18184
18185 Figure
18186 \begin_inset Quotes erd
18187 \end_inset
18188
18189  before every reference box.
18190  To get this automatic reference naming, you have to load the LaTeX-package
18191  
18192 \series bold
18193 hyperref
18194 \series default
18195
18196 \begin_inset LatexCommand index
18197 name "LaTeX-packages ! hyperref"
18198
18199 \end_inset
18200
18201  in the document preamble with
18202 \end_layout
18203
18204 \begin_layout Standard
18205
18206 \series bold
18207
18208 \backslash
18209 usepackage[pdfborder={0 0 0}]{hyperref}
18210 \newline
18211
18212 \backslash
18213 AtBeginDocument{
18214 \backslash
18215 renewcommand{
18216 \backslash
18217 ref}[1]{
18218 \backslash
18219 mbox{
18220 \backslash
18221 autoref{#1}}}}
18222 \end_layout
18223
18224 \begin_layout Standard
18225
18226 \series bold
18227 hyperref
18228 \series default
18229  is used to link cross-references in the DVI- and PDF-output, this means
18230  that the reader of your document will be able to click on a table of content
18231  (TOC) entry or on a reference and he will be shown the referenced document
18232  part.
18233  
18234 \series bold
18235 hyperref
18236 \series default
18237  also creates PDF-bookmarks for every section of your document to make it
18238  easier for readers to navigate through the document.
18239  This is also used in this document but when you have a look in the document
18240  preamble you will find various options in the load command of 
18241 \series bold
18242 hyperref
18243 \series default
18244 .
18245  To learn more about the 
18246 \series bold
18247 hyperref
18248 \series default
18249  package, we refer to its documentation 
18250 \begin_inset LatexCommand cite
18251 key "hyperref"
18252
18253 \end_inset
18254
18255 .
18256 \end_layout
18257
18258 \begin_layout Standard
18259 \begin_inset Note Greyedout
18260 status open
18261
18262 \begin_layout Standard
18263
18264 \series bold
18265 Note:
18266 \series default
18267  Automatic reference naming cannot be used when you use cross-references
18268  in the 
18269 \family sans
18270 Formatted\InsetSpace ~
18271 reference
18272 \family default
18273  style, described in section\InsetSpace ~
18274
18275 \begin_inset LatexCommand ref
18276 reference "sub:Cross-reference-formats"
18277
18278 \end_inset
18279
18280 .
18281  That is the reason why it is not used in this document.
18282 \end_layout
18283
18284 \end_inset
18285
18286
18287 \end_layout
18288
18289 \begin_layout Subsection
18290 Reference Position
18291 \begin_inset LatexCommand label
18292 name "sub:Reference-Position"
18293
18294 \end_inset
18295
18296
18297 \begin_inset LatexCommand index
18298 name "References ! Reference Position"
18299
18300 \end_inset
18301
18302
18303 \end_layout
18304
18305 \begin_layout Standard
18306 If you use 
18307 \series bold
18308 hyperref
18309 \series default
18310
18311 \begin_inset LatexCommand index
18312 name "LaTeX-packages ! hyperref"
18313
18314 \end_inset
18315
18316  to link cross-references in the output, you will see that clicking on an
18317  image float reference jumps to the image label.
18318  The caption will be the first text part on the screen, so that you cannot
18319  see the image without scrolling.
18320  This is because the reference link anchor is placed at the position of
18321  the label.
18322  With the use of the package 
18323 \series bold
18324 hypcap
18325 \series default
18326
18327 \begin_inset LatexCommand index
18328 name "LaTeX-packages ! hypcap"
18329
18330 \end_inset
18331
18332 , which is part of the LaTeX-package 
18333 \series bold
18334 oberdiek
18335 \series default
18336
18337 \begin_inset LatexCommand index
18338 name "LaTeX-packages ! oberdiek"
18339
18340 \end_inset
18341
18342 , the link anchor is placed at the beginning of a float.
18343  To use this feature for figure floats, load 
18344 \series bold
18345 hypcap
18346 \series default
18347  in the document preamble with the line
18348 \end_layout
18349
18350 \begin_layout Standard
18351
18352 \series bold
18353
18354 \backslash
18355 usepackage[f\SpecialChar \textcompwordmark{}
18356 igure]{hypcap}
18357 \end_layout
18358
18359 \begin_layout Standard
18360 You can also use 
18361 \series bold
18362 hypcap
18363 \series default
18364  for all floats but this isn't recommended for stability reasons.
18365  For more informations, have a look at 
18366 \series bold
18367 hypcap
18368 \series default
18369 's manual 
18370 \begin_inset LatexCommand cite
18371 key "hypcap"
18372
18373 \end_inset
18374
18375 .
18376 \end_layout
18377
18378 \begin_layout Standard
18379 \begin_inset Note Greyedout
18380 status open
18381
18382 \begin_layout Standard
18383
18384 \series bold
18385 Note:
18386 \series default
18387  
18388 \series bold
18389 hypcap
18390 \series default
18391  must be loaded after 
18392 \series bold
18393 hyperref
18394 \series default
18395  in the document preamble.
18396 \end_layout
18397
18398 \end_inset
18399
18400
18401 \end_layout
18402
18403 \begin_layout Section
18404 Float Placement
18405 \begin_inset LatexCommand label
18406 name "sec:Float-Placement"
18407
18408 \end_inset
18409
18410
18411 \begin_inset LatexCommand index
18412 name "Floats ! Placement"
18413
18414 \end_inset
18415
18416
18417 \end_layout
18418
18419 \begin_layout Standard
18420 Right-clicking on a float-box opens a dialog where you can alter the placement
18421  options that LaTeX uses for positioning the float.
18422 \newline
18423 The option 
18424 \family sans
18425 Span\InsetSpace ~
18426 columns
18427 \family default
18428  is only useful for two-column documents: If you select it, the float will
18429  span across both columns on the page instead of being confined to just
18430  one.
18431 \newline
18432 The option 
18433 \family sans
18434 Rotate\InsetSpace ~
18435 sideways
18436 \family default
18437  is used to rotate floats, see section 
18438 \begin_inset LatexCommand ref
18439 reference "sec:Rotated-Floats"
18440
18441 \end_inset
18442
18443 .
18444 \end_layout
18445
18446 \begin_layout Standard
18447 You can use one ore more of the following options in the float dialog to
18448  set the placement for a particular float when you uncheck the option 
18449 \family sans
18450 Use\InsetSpace ~
18451 default\InsetSpace ~
18452 placement
18453 \family default
18454 :
18455 \end_layout
18456
18457 \begin_layout Description
18458 Here\InsetSpace ~
18459 if\InsetSpace ~
18460 possible: try to place the float on the position where it is inserted
18461 \end_layout
18462
18463 \begin_layout Description
18464 Top\InsetSpace ~
18465 of\InsetSpace ~
18466 page: try to place the float on the top of the current page
18467 \end_layout
18468
18469 \begin_layout Description
18470 Bottom\InsetSpace ~
18471 of\InsetSpace ~
18472 page: try to place the float on the bottom of the current page
18473 \end_layout
18474
18475 \begin_layout Description
18476 Page\InsetSpace ~
18477 of\InsetSpace ~
18478 floats: try to place the float on an own page 
18479 \end_layout
18480
18481 \begin_layout Standard
18482 The order of the above option is 
18483 \emph on
18484 always
18485 \emph default
18486  used by LaTeX.
18487  That means, if you use the default placement, LaTeX will first try out
18488  
18489 \family sans
18490 Here\InsetSpace ~
18491 if\InsetSpace ~
18492 possible
18493 \family default
18494 , then 
18495 \family sans
18496 Top\InsetSpace ~
18497 of\InsetSpace ~
18498 page
18499 \family default
18500 , and then the others.
18501  If you don't use the default, LaTeX will try only the checked options but
18502  in the same order.
18503  If none of the 4 placements are possible the procedure is internally repeated
18504  but it is tried to put the float on the following page.
18505 \end_layout
18506
18507 \begin_layout Standard
18508 By default, each options has its own rules:
18509 \end_layout
18510
18511 \begin_layout Labeling
18512 \labelwidthstring 00.00.0000
18513
18514 \family sans
18515 Top\InsetSpace ~
18516 of\InsetSpace ~
18517 page
18518 \family default
18519  only floats occupying less than 70\InsetSpace \thinspace{}
18520 % of the page can be placed at the top
18521  of a page (
18522 \series bold
18523
18524 \backslash
18525 topfraction
18526 \series default
18527 )
18528 \end_layout
18529
18530 \begin_layout Labeling
18531 \labelwidthstring 00.00.0000
18532
18533 \family sans
18534 Bottom\InsetSpace ~
18535 of\InsetSpace ~
18536 page
18537 \family default
18538 : only floats occupying less than 30\InsetSpace \thinspace{}
18539 % of the page can be placed at the bottom
18540  of a page.
18541  (
18542 \series bold
18543
18544 \backslash
18545 bottomfraction
18546 \series default
18547 )
18548 \end_layout
18549
18550 \begin_layout Labeling
18551 \labelwidthstring 00.00.0000
18552
18553 \family sans
18554 Page\InsetSpace ~
18555 of\InsetSpace ~
18556 floats
18557 \family default
18558 : only if more than 50\InsetSpace \thinspace{}
18559 % of the page are occupied by floats, several floats
18560  can be set together on a page.
18561  (
18562 \series bold
18563
18564 \backslash
18565 floatpagefraction
18566 \series default
18567 )
18568 \end_layout
18569
18570 \begin_layout Standard
18571 If you don't like these rules, you can ignore them by using the additional
18572  option 
18573 \family sans
18574 Ignore\InsetSpace ~
18575 LaTeX\InsetSpace ~
18576 rules
18577 \family default
18578 .
18579 \newline
18580 You can also redefine the rules with LaTeX-commands that are given in parenthese
18581 s behind the rules description above.
18582  To increase for example the often too small default of the bottom-rule
18583  to 50\InsetSpace \thinspace{}
18584 % of the page, add this line to your document preamble:
18585 \end_layout
18586
18587 \begin_layout Standard
18588
18589 \series bold
18590
18591 \backslash
18592 renewcommand{
18593 \backslash
18594 bottomfraction}{0.5}
18595 \end_layout
18596
18597 \begin_layout Standard
18598 Sometimes you might need, under all circumstances, a float to be placed
18599  exactly at the position where it is inserted.
18600  For this case you can use the option 
18601 \family sans
18602 Here\InsetSpace ~
18603 definitely
18604 \family default
18605 .
18606  Use this option very rarely and only if the document is nearly ready to
18607  be printed.
18608  Because the float is then no longer able to 
18609 \begin_inset Quotes eld
18610 \end_inset
18611
18612 float
18613 \begin_inset Quotes erd
18614 \end_inset
18615
18616  when you change your document and this will often destroy the page layout.
18617 \end_layout
18618
18619 \begin_layout Standard
18620 There are no placement options for text wrap floats, because they are always
18621  surrounded by the text of a certain paragraph.
18622 \begin_inset VSpace bigskip
18623 \end_inset
18624
18625
18626 \end_layout
18627
18628 \begin_layout Standard
18629 Sometimes you have the problem that a float is placed at the top of a page
18630  while its corresponding section starts at the middle of the page, so that
18631  the reader could think the float is part of the previous section.
18632  To avoid this the LaTeX-command 
18633 \series bold
18634
18635 \backslash
18636 suppressf\SpecialChar \textcompwordmark{}
18637 loats
18638 \series default
18639  can be used.
18640  It suppresses a given float placement for the page where it is inserted
18641  and can therefore be used to avoid that floats could be set before a section
18642  starts.
18643  To get this, add these commands to your document preamble:
18644 \end_layout
18645
18646 \begin_layout Standard
18647
18648 \series bold
18649
18650 \backslash
18651 let
18652 \backslash
18653 mySection
18654 \backslash
18655 section
18656 \newline
18657
18658 \backslash
18659 renewcommand{
18660 \backslash
18661 section}{
18662 \backslash
18663 suppressf\SpecialChar \textcompwordmark{}
18664 loats[t]
18665 \backslash
18666 mySection}
18667 \end_layout
18668
18669 \begin_layout Standard
18670 You can define the same for all section headings, like chapters and subsections.
18671  This definition is not recommended to be used for small text parts like
18672  subsubsections because LaTeX may then have problems to find a suitable
18673  placement.
18674 \end_layout
18675
18676 \begin_layout Standard
18677 \begin_inset VSpace bigskip
18678 \end_inset
18679
18680 In some cases it is required to have all figures/tables at the end of the
18681  document.
18682  For this purpose the LaTeX-package 
18683 \series bold
18684 endf\SpecialChar \textcompwordmark{}
18685 loat
18686 \series default
18687
18688 \begin_inset LatexCommand index
18689 name "LaTeX-packages ! endfloat"
18690
18691 \end_inset
18692
18693  was developed.
18694  It puts all figure and table floats at the end of the document into own
18695  sections.
18696  At the original float position a text hint like 
18697 \begin_inset Quotes eld
18698 \end_inset
18699
18700
18701 \family sans
18702 [Figure\InsetSpace ~
18703 3.2 about here.]
18704 \family default
18705
18706 \begin_inset Quotes erd
18707 \end_inset
18708
18709  is inserted.
18710  The endfloat-package is loaded in the preamble with the line
18711 \end_layout
18712
18713 \begin_layout Standard
18714
18715 \series bold
18716
18717 \backslash
18718 usepackage[options]{endf\SpecialChar \textcompwordmark{}
18719 loat}
18720 \end_layout
18721
18722 \begin_layout Standard
18723 There are various package options to format the created figure/table sections.
18724  For more information we refer to the 
18725 \series bold
18726 endf\SpecialChar \textcompwordmark{}
18727 loat
18728 \series default
18729  documentation 
18730 \begin_inset LatexCommand cite
18731 key "endfloat"
18732
18733 \end_inset
18734
18735 .
18736 \newline
18737
18738 \begin_inset Note Greyedout
18739 status open
18740
18741 \begin_layout Standard
18742
18743 \series bold
18744 Note: endf\SpecialChar \textcompwordmark{}
18745 loat
18746 \series default
18747  doesn't provide an automatic translation for the text hint, you have to
18748  do this manually, see section\InsetSpace ~
18749 4 in 
18750 \begin_inset LatexCommand cite
18751 key "endfloat"
18752
18753 \end_inset
18754
18755 .
18756 \end_layout
18757
18758 \end_inset
18759
18760
18761 \newline
18762
18763 \begin_inset Note Greyedout
18764 status open
18765
18766 \begin_layout Standard
18767
18768 \series bold
18769 Note:
18770 \series default
18771  There is currently a bug in 
18772 \series bold
18773 endf\SpecialChar \textcompwordmark{}
18774 loat
18775 \series default
18776  when the caption contains a German 
18777 \begin_inset Quotes eld
18778 \end_inset
18779
18780 ß
18781 \begin_inset Quotes erd
18782 \end_inset
18783
18784 .
18785  Use in this case the command 
18786 \begin_inset Quotes eld
18787 \end_inset
18788
18789
18790 \series bold
18791
18792 \backslash
18793 ss
18794 \series default
18795
18796 \begin_inset Quotes erd
18797 \end_inset
18798
18799  in ERT instead of 
18800 \begin_inset Quotes eld
18801 \end_inset
18802
18803 ß
18804 \begin_inset Quotes erd
18805 \end_inset
18806
18807 .
18808 \end_layout
18809
18810 \end_inset
18811
18812
18813 \end_layout
18814
18815 \begin_layout Standard
18816 \begin_inset VSpace bigskip
18817 \end_inset
18818
18819 For more details about float placements, have a look at LaTeX books, 
18820 \begin_inset LatexCommand cite
18821 key "latexcompanion,latexguide,latexbook"
18822
18823 \end_inset
18824
18825 .
18826 \end_layout
18827
18828 \begin_layout Section
18829 Rotated Floats
18830 \begin_inset LatexCommand label
18831 name "sec:Rotated-Floats"
18832
18833 \end_inset
18834
18835
18836 \begin_inset LatexCommand index
18837 name "Floats ! Rotating"
18838
18839 \end_inset
18840
18841
18842 \end_layout
18843
18844 \begin_layout Standard
18845 Especially for wide tables you might have floats rotated.
18846  To rotate a whole float including the caption, right-click on the float-box
18847  and use the option 
18848 \family sans
18849 Rotate\InsetSpace ~
18850 sideways
18851 \family default
18852 .
18853 \end_layout
18854
18855 \begin_layout Standard
18856 Rotated floats are always placed on its own page (or column, when you have
18857  a two-column document).
18858  They are normally rotated so that you can read them from the outside margin
18859  -- to the left on even pages, to the right on odd pages.
18860 \end_layout
18861
18862 \begin_layout Standard
18863 Referencing rotated floats is the same like for normal floats, the caption
18864  format is also the same: Table\InsetSpace ~
18865
18866 \begin_inset LatexCommand ref
18867 reference "tab:Rotated-table"
18868
18869 \end_inset
18870
18871  is an example of a rotated table float.
18872 \end_layout
18873
18874 \begin_layout Standard
18875 \begin_inset Note Greyedout
18876 status open
18877
18878 \begin_layout Standard
18879
18880 \series bold
18881 Note:
18882 \series default
18883  Not all DVI-viewers are able to display rotated floats.
18884 \end_layout
18885
18886 \end_inset
18887
18888
18889 \end_layout
18890
18891 \begin_layout Standard
18892 \begin_inset Float table
18893 wide false
18894 sideways true
18895 status open
18896
18897 \begin_layout Caption
18898 \begin_inset LatexCommand label
18899 name "tab:Rotated-table"
18900
18901 \end_inset
18902
18903  Rotated table
18904 \end_layout
18905
18906 \begin_layout Standard
18907 \align center
18908 \begin_inset Tabular
18909 <lyxtabular version="3" rows="1" columns="5">
18910 <features>
18911 <column alignment="center" valignment="top" leftline="true" width="0">
18912 <column alignment="center" valignment="top" leftline="true" width="0">
18913 <column alignment="center" valignment="top" leftline="true" width="0">
18914 <column alignment="center" valignment="top" leftline="true" width="0">
18915 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
18916 <row topline="true" bottomline="true">
18917 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18918 \begin_inset Text
18919
18920 \begin_layout Standard
18921 test
18922 \end_layout
18923
18924 \end_inset
18925 </cell>
18926 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18927 \begin_inset Text
18928
18929 \begin_layout Standard
18930 b
18931 \end_layout
18932
18933 \end_inset
18934 </cell>
18935 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18936 \begin_inset Text
18937
18938 \begin_layout Standard
18939 c
18940 \end_layout
18941
18942 \end_inset
18943 </cell>
18944 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18945 \begin_inset Text
18946
18947 \begin_layout Standard
18948 d
18949 \end_layout
18950
18951 \end_inset
18952 </cell>
18953 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18954 \begin_inset Text
18955
18956 \begin_layout Standard
18957 e
18958 \end_layout
18959
18960 \end_inset
18961 </cell>
18962 </row>
18963 </lyxtabular>
18964
18965 \end_inset
18966
18967
18968 \end_layout
18969
18970 \end_inset
18971
18972
18973 \end_layout
18974
18975 \begin_layout Section
18976 Caption Formatting
18977 \begin_inset LatexCommand index
18978 name "Caption ! Formatting"
18979
18980 \end_inset
18981
18982
18983 \begin_inset LatexCommand index
18984 name "Floats ! Caption Formatting"
18985
18986 \end_inset
18987
18988
18989 \begin_inset LatexCommand index
18990 name "LaTeX-packages ! caption"
18991
18992 \end_inset
18993
18994
18995 \begin_inset LatexCommand label
18996 name "sec:Caption-Formatting"
18997
18998 \end_inset
18999
19000
19001 \end_layout
19002
19003 \begin_layout Standard
19004 The 
19005 \family sans
19006 Caption
19007 \family default
19008  environment is the default paragraph environment for 
19009 \family sans
19010 Floats
19011 \family default
19012 .
19013  On the LyX screen captions appear as label, e.\InsetSpace \thinspace{}
19014 g.\InsetSpace ~
19015
19016 \begin_inset Quotes eld
19017 \end_inset
19018
19019
19020 \family sans
19021 Figure #:
19022 \family default
19023
19024 \begin_inset Quotes erd
19025 \end_inset
19026
19027  followed by the caption text.
19028  The number sign 
19029 \begin_inset Quotes eld
19030 \end_inset
19031
19032 #
19033 \begin_inset Quotes erd
19034 \end_inset
19035
19036  is substituted in the printed output by the actual reference number.
19037  By default the label and the number are in the same font as the caption
19038  text and a colon follows the number to divide then label from the text.
19039  This caption format is not suitable for all document formats.
19040  
19041 \end_layout
19042
19043 \begin_layout Standard
19044 To change the default caption format, load the LaTeX-package 
19045 \series bold
19046 caption
19047 \series default
19048
19049 \begin_inset LatexCommand index
19050 name "LaTeX-packages ! caption"
19051
19052 \end_inset
19053
19054  in the document preamble with this line:
19055 \end_layout
19056
19057 \begin_layout Standard
19058
19059 \series bold
19060
19061 \backslash
19062 usepackage[format definition]{caption}
19063 \end_layout
19064
19065 \begin_layout Standard
19066 To have for example the label and the number in sans-serif bold font and
19067  the table captions always above the table like in this document, use the
19068  following command:
19069 \end_layout
19070
19071 \begin_layout Standard
19072
19073 \series bold
19074
19075 \backslash
19076 usepackage[labelfont={bf,sf}, tableposition=top]{caption}
19077 \end_layout
19078
19079 \begin_layout Standard
19080 You can also define different caption formats for the different float types.
19081  In this case load the 
19082 \series bold
19083 caption
19084 \series default
19085  package without format specific options and define the different formats
19086  with the help of the command
19087 \end_layout
19088
19089 \begin_layout Standard
19090
19091 \series bold
19092
19093 \backslash
19094 captionsetup[float type]{format definition}
19095 \end_layout
19096
19097 \begin_layout Standard
19098 in the document preamble.
19099  For example the caption formats of Figure\InsetSpace ~
19100
19101 \begin_inset LatexCommand ref
19102 reference "fig:This-is-an-fig"
19103
19104 \end_inset
19105
19106  and Table\InsetSpace ~
19107
19108 \begin_inset LatexCommand ref
19109 reference "tab:This-is-an-tab"
19110
19111 \end_inset
19112
19113  can be created using these commands in the document preamble:
19114 \end_layout
19115
19116 \begin_layout Standard
19117
19118 \series bold
19119
19120 \backslash
19121 usepackage[tableposition=top]{caption}
19122 \series default
19123
19124 \newline
19125
19126 \series bold
19127
19128 \backslash
19129 captionsetup[f\SpecialChar \textcompwordmark{}
19130 igure]{labelfont={tt}, textfont=it, indention=1cm,%
19131 \newline
19132
19133 \begin_inset ERT
19134 status collapsed
19135
19136 \begin_layout Standard
19137
19138
19139 \backslash
19140 hphantom{
19141 \backslash
19142
19143 \backslash
19144 captionsetup[figure]
19145 \backslash
19146 {}
19147 \end_layout
19148
19149 \end_inset
19150
19151  labelsep=period}
19152 \newline
19153
19154 \backslash
19155 captionsetup[table]{labelfont={bf,sf}}
19156 \end_layout
19157
19158 \begin_layout Standard
19159 For more information about the package 
19160 \series bold
19161 caption
19162 \series default
19163  we refer to its documentation 
19164 \begin_inset LatexCommand cite
19165 key "caption,caption-de"
19166
19167 \end_inset
19168
19169 .
19170 \end_layout
19171
19172 \begin_layout Standard
19173 \begin_inset VSpace bigskip
19174 \end_inset
19175
19176 If you are using a 
19177 \series bold
19178 koma-script
19179 \series default
19180
19181 \begin_inset LatexCommand index
19182 name "LaTeX-packages ! koma-script"
19183
19184 \end_inset
19185
19186  document class (
19187 \family sans
19188 article (koma-script)
19189 \family default
19190
19191 \family sans
19192 book (koma-script)
19193 \family default
19194
19195 \family sans
19196 letter (koma-script)
19197 \family default
19198 , or 
19199 \family sans
19200 report (koma-script)
19201 \family default
19202 \InsetSpace \thinspace{}
19203 ), you can alternatively to the 
19204 \series bold
19205 caption
19206 \series default
19207  package use 
19208 \series bold
19209 koma-script
19210 \series default
19211 's built-in command 
19212 \series bold
19213
19214 \backslash
19215 setkomafont
19216 \series default
19217 .
19218  For example, to have the caption label in bold, add this command to your
19219  document preamble:
19220 \end_layout
19221
19222 \begin_layout Standard
19223
19224 \series bold
19225
19226 \backslash
19227 setkomafont{captionlabel}{
19228 \backslash
19229 bfseries}
19230 \end_layout
19231
19232 \begin_layout Standard
19233 For more information about 
19234 \series bold
19235
19236 \backslash
19237 setkomafont
19238 \series default
19239  we refer to the 
19240 \series bold
19241 koma-script
19242 \series default
19243  documentation 
19244 \begin_inset LatexCommand cite
19245 key "koma-script,koma-script-de"
19246
19247 \end_inset
19248
19249 .
19250 \end_layout
19251
19252 \begin_layout Standard
19253 \begin_inset ERT
19254 status collapsed
19255
19256 \begin_layout Standard
19257
19258
19259 \backslash
19260 captionsetup[figure]{labelfont={tt}, textfont=it, indention=1cm, labelsep=period
19261 }
19262 \end_layout
19263
19264 \end_inset
19265
19266
19267 \begin_inset Note Note
19268 status open
19269
19270 \begin_layout Standard
19271 The caption format is changed only for this example.
19272 \end_layout
19273
19274 \end_inset
19275
19276
19277 \end_layout
19278
19279 \begin_layout Standard
19280 \begin_inset Float figure
19281 placement !p
19282 wide false
19283 sideways false
19284 status open
19285
19286 \begin_layout Standard
19287 \align center
19288 \begin_inset Graphics
19289         filename mobius.eps
19290         lyxscale 50
19291         scale 50
19292
19293 \end_inset
19294
19295
19296 \end_layout
19297
19298 \begin_layout Caption
19299 \begin_inset LatexCommand label
19300 name "fig:This-is-an-fig"
19301
19302 \end_inset
19303
19304 This is an example figure caption that is longer than one line to show the
19305  different caption format.
19306  Here a self-defined caption format is used.
19307 \end_layout
19308
19309 \end_inset
19310
19311
19312 \end_layout
19313
19314 \begin_layout Standard
19315 \begin_inset ERT
19316 status collapsed
19317
19318 \begin_layout Standard
19319
19320
19321 \backslash
19322 captionsetup[figure]{labelfont={bf,sf}, textfont=rm, indention=0cm, labelsep=col
19323 on}
19324 \end_layout
19325
19326 \end_inset
19327
19328
19329 \end_layout
19330
19331 \begin_layout Standard
19332 \begin_inset Float table
19333 placement !p
19334 wide false
19335 sideways false
19336 status open
19337
19338 \begin_layout Caption
19339 \begin_inset LatexCommand label
19340 name "tab:This-is-an-tab"
19341
19342 \end_inset
19343
19344 This is an example table caption that is longer than one line to show the
19345  different caption format.
19346  Here the standard caption format for tables in this document is used.
19347 \end_layout
19348
19349 \begin_layout Standard
19350 \align center
19351 \begin_inset Tabular
19352 <lyxtabular version="3" rows="1" columns="5">
19353 <features>
19354 <column alignment="center" valignment="top" leftline="true" width="0">
19355 <column alignment="center" valignment="top" leftline="true" width="0">
19356 <column alignment="center" valignment="top" leftline="true" width="0">
19357 <column alignment="center" valignment="top" leftline="true" width="0">
19358 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
19359 <row topline="true" bottomline="true">
19360 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19361 \begin_inset Text
19362
19363 \begin_layout Standard
19364 a
19365 \end_layout
19366
19367 \end_inset
19368 </cell>
19369 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19370 \begin_inset Text
19371
19372 \begin_layout Standard
19373 b
19374 \end_layout
19375
19376 \end_inset
19377 </cell>
19378 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19379 \begin_inset Text
19380
19381 \begin_layout Standard
19382 c
19383 \end_layout
19384
19385 \end_inset
19386 </cell>
19387 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19388 \begin_inset Text
19389
19390 \begin_layout Standard
19391 d
19392 \end_layout
19393
19394 \end_inset
19395 </cell>
19396 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19397 \begin_inset Text
19398
19399 \begin_layout Standard
19400 e
19401 \end_layout
19402
19403 \end_inset
19404 </cell>
19405 </row>
19406 </lyxtabular>
19407
19408 \end_inset
19409
19410
19411 \end_layout
19412
19413 \end_inset
19414
19415
19416 \end_layout
19417
19418 \begin_layout Section
19419 Caption Placement
19420 \begin_inset LatexCommand index
19421 name "Caption ! Placement"
19422
19423 \end_inset
19424
19425
19426 \begin_inset LatexCommand index
19427 name "Floats ! Caption Placement"
19428
19429 \end_inset
19430
19431
19432 \begin_inset LatexCommand label
19433 name "sec:Caption-Placement"
19434
19435 \end_inset
19436
19437
19438 \end_layout
19439
19440 \begin_layout Standard
19441 The common caption placement rule is:
19442 \end_layout
19443
19444 \begin_layout Description
19445 Figure: Caption is set below the figure
19446 \end_layout
19447
19448 \begin_layout Description
19449 Table: Caption is set above the table
19450 \end_layout
19451
19452 \begin_layout Standard
19453 Having the caption above the table is unfortunately not supported in LaTeX's
19454  standard classes.
19455  That means if you are using the document classes 
19456 \family sans
19457 article
19458 \family default
19459
19460 \family sans
19461 book
19462 \family default
19463
19464 \family sans
19465 letter
19466 \family default
19467 , or 
19468 \family sans
19469 report
19470 \family default
19471  there will be no space between the caption and the table.
19472  To insert the needed space, add the following option to the load command
19473  of the LaTeX-package 
19474 \series bold
19475 caption
19476 \series default
19477  in your document preamble
19478 \begin_inset Foot
19479 status collapsed
19480
19481 \begin_layout Standard
19482 See section\InsetSpace ~
19483
19484 \begin_inset LatexCommand ref
19485 reference "sec:Caption-Formatting"
19486
19487 \end_inset
19488
19489  for more information of the package 
19490 \series bold
19491 caption
19492 \series default
19493 .
19494 \end_layout
19495
19496 \end_inset
19497
19498 :
19499 \end_layout
19500
19501 \begin_layout Standard
19502
19503 \series bold
19504 tableposition=top
19505 \end_layout
19506
19507 \begin_layout Standard
19508 If you are using a 
19509 \series bold
19510 koma-script
19511 \series default
19512
19513 \begin_inset LatexCommand index
19514 name "LaTeX-packages ! koma-script"
19515
19516 \end_inset
19517
19518  document class (
19519 \family sans
19520 article (koma-script)
19521 \family default
19522
19523 \family sans
19524 book (koma-script)
19525 \family default
19526
19527 \family sans
19528 letter (koma-script)
19529 \family default
19530 , or 
19531 \family sans
19532 report (koma-script)
19533 \family default
19534 \InsetSpace \thinspace{}
19535 ), you can alternatively to the 
19536 \series bold
19537 caption
19538 \series default
19539  package set the document class option 
19540 \series bold
19541 tablecaptionabove
19542 \series default
19543 , or you can use the environment 
19544 \family sans
19545 caption\InsetSpace ~
19546 above
19547 \family default
19548  instead of the 
19549 \family sans
19550 caption
19551 \family default
19552  environment.
19553 \end_layout
19554
19555 \begin_layout Standard
19556 \begin_inset VSpace bigskip
19557 \end_inset
19558
19559 It is also possible to set the caption beside a figure or table.
19560  To get this the LaTeX-package 
19561 \series bold
19562 sidecap
19563 \series default
19564
19565 \begin_inset LatexCommand index
19566 name "LaTeX-packages ! sidecap"
19567
19568 \end_inset
19569
19570  has to be loaded in the document preamble with the line
19571 \end_layout
19572
19573 \begin_layout Standard
19574
19575 \series bold
19576
19577 \backslash
19578 usepackage[option]{sidecap}
19579 \end_layout
19580
19581 \begin_layout Standard
19582 If you set no option, the caption is placed on the side of the outer page
19583  margin -- to the right on odd pages, to the left on even pages.
19584  You can change the placement to inner margin with the option 
19585 \series bold
19586 innercaption
19587 \series default
19588 .
19589  To force the placement always to the right or left, use the option 
19590 \series bold
19591 rightcaption
19592 \series default
19593  or 
19594 \series bold
19595 leftcaption
19596 \series default
19597 , respectively.
19598 \end_layout
19599
19600 \begin_layout Standard
19601 To place in LyX the caption of a float on the side, it is necessary to add
19602  these commands to the document preamble:
19603 \end_layout
19604
19605 \begin_layout Standard
19606
19607 \lyxline
19608
19609 \end_layout
19610
19611 \begin_layout Standard
19612
19613 \series bold
19614
19615 \backslash
19616 newcommand{
19617 \backslash
19618 TabBesBeg}{%
19619 \newline
19620
19621 \begin_inset ERT
19622 status collapsed
19623
19624 \begin_layout Standard
19625
19626
19627 \backslash
19628 hphantom{ }
19629 \end_layout
19630
19631 \end_inset
19632
19633
19634 \backslash
19635 let
19636 \backslash
19637 MyTable
19638 \backslash
19639 table
19640 \newline
19641
19642 \begin_inset ERT
19643 status collapsed
19644
19645 \begin_layout Standard
19646
19647
19648 \backslash
19649 hphantom{ }
19650 \end_layout
19651
19652 \end_inset
19653
19654
19655 \backslash
19656 let
19657 \backslash
19658 MyEndtable
19659 \backslash
19660 endtable
19661 \newline
19662
19663 \begin_inset ERT
19664 status collapsed
19665
19666 \begin_layout Standard
19667
19668
19669 \backslash
19670 hphantom{ }
19671 \end_layout
19672
19673 \end_inset
19674
19675
19676 \backslash
19677 renewenvironment{table}{
19678 \backslash
19679 begin{SCtable}}{
19680 \backslash
19681 end{SCtable}}}
19682 \end_layout
19683
19684 \begin_layout Standard
19685
19686 \series bold
19687
19688 \backslash
19689 newcommand{
19690 \backslash
19691 TabBesEnd}{%
19692 \newline
19693
19694 \begin_inset ERT
19695 status collapsed
19696
19697 \begin_layout Standard
19698
19699
19700 \backslash
19701 hphantom{ }
19702 \end_layout
19703
19704 \end_inset
19705
19706
19707 \backslash
19708 let
19709 \backslash
19710 table
19711 \backslash
19712 MyTable
19713 \newline
19714
19715 \begin_inset ERT
19716 status collapsed
19717
19718 \begin_layout Standard
19719
19720
19721 \backslash
19722 hphantom{ }
19723 \end_layout
19724
19725 \end_inset
19726
19727
19728 \backslash
19729 let
19730 \backslash
19731 endtable
19732 \backslash
19733 MyEndtable
19734 \end_layout
19735
19736 \begin_layout Standard
19737
19738 \series bold
19739
19740 \backslash
19741 newcommand{
19742 \backslash
19743 FigBesBeg}{%
19744 \newline
19745
19746 \begin_inset ERT
19747 status collapsed
19748
19749 \begin_layout Standard
19750
19751
19752 \backslash
19753 hphantom{ }
19754 \end_layout
19755
19756 \end_inset
19757
19758
19759 \backslash
19760 let
19761 \backslash
19762 MyFigure
19763 \backslash
19764 f\SpecialChar \textcompwordmark{}
19765 igure
19766 \newline
19767
19768 \begin_inset ERT
19769 status collapsed
19770
19771 \begin_layout Standard
19772
19773
19774 \backslash
19775 hphantom{ }
19776 \end_layout
19777
19778 \end_inset
19779
19780
19781 \backslash
19782 let
19783 \backslash
19784 MyEndf\SpecialChar \textcompwordmark{}
19785 igure
19786 \backslash
19787 endf\SpecialChar \textcompwordmark{}
19788 igure
19789 \newline
19790
19791 \begin_inset ERT
19792 status collapsed
19793
19794 \begin_layout Standard
19795
19796
19797 \backslash
19798 hphantom{ }
19799 \end_layout
19800
19801 \end_inset
19802
19803
19804 \backslash
19805 renewenvironment{f\SpecialChar \textcompwordmark{}
19806 igure}{
19807 \backslash
19808 begin{SCf\SpecialChar \textcompwordmark{}
19809 igure}}{
19810 \backslash
19811 end{SCf\SpecialChar \textcompwordmark{}
19812 igure}}}
19813 \end_layout
19814
19815 \begin_layout Standard
19816
19817 \series bold
19818
19819 \backslash
19820 newcommand{
19821 \backslash
19822 FigBesEnd}{%
19823 \newline
19824
19825 \begin_inset ERT
19826 status collapsed
19827
19828 \begin_layout Standard
19829
19830
19831 \backslash
19832 hphantom{ }
19833 \end_layout
19834
19835 \end_inset
19836
19837
19838 \backslash
19839 let
19840 \backslash
19841 f\SpecialChar \textcompwordmark{}
19842 igure
19843 \backslash
19844 MyFigure
19845 \newline
19846
19847 \begin_inset ERT
19848 status collapsed
19849
19850 \begin_layout Standard
19851
19852
19853 \backslash
19854 hphantom{ }
19855 \end_layout
19856
19857 \end_inset
19858
19859
19860 \backslash
19861 let
19862 \backslash
19863 endf\SpecialChar \textcompwordmark{}
19864 igure
19865 \backslash
19866 MyEndf\SpecialChar \textcompwordmark{}
19867 igure}
19868 \end_layout
19869
19870 \begin_layout Standard
19871
19872 \lyxline
19873
19874 \end_layout
19875
19876 \begin_layout Standard
19877 The commands allow you to redefine the floats so that the caption is set
19878  on the side.
19879  For figure floats use the command
19880 \end_layout
19881
19882 \begin_layout Standard
19883
19884 \series bold
19885
19886 \backslash
19887 FigBesBeg
19888 \end_layout
19889
19890 \begin_layout Standard
19891 in ERT before the float.
19892  Behind the float insert the command
19893 \end_layout
19894
19895 \begin_layout Standard
19896
19897 \series bold
19898
19899 \backslash
19900 FigBesEnd
19901 \end_layout
19902
19903 \begin_layout Standard
19904 in ERT to get back to the original float definition.
19905 \end_layout
19906
19907 \begin_layout Standard
19908 For table floats use the corresponding commands
19909 \end_layout
19910
19911 \begin_layout Standard
19912
19913 \series bold
19914
19915 \backslash
19916 TabBesBeg
19917 \series default
19918  and 
19919 \series bold
19920
19921 \backslash
19922 TabBesEnd
19923 \end_layout
19924
19925 \begin_layout Standard
19926 Figure\InsetSpace ~
19927
19928 \begin_inset LatexCommand ref
19929 reference "fig:cap-beside-fig"
19930
19931 \end_inset
19932
19933  and Table\InsetSpace ~
19934
19935 \begin_inset LatexCommand ref
19936 reference "tab:cap-beside-tab"
19937
19938 \end_inset
19939
19940  are examples where the caption is set beside.
19941 \end_layout
19942
19943 \begin_layout Standard
19944 You can see in the examples that the caption text appears at the top of
19945  the floats for table floats and at the bottom for figure floats.
19946  To change this, you can use the command
19947 \end_layout
19948
19949 \begin_layout Standard
19950
19951 \series bold
19952
19953 \backslash
19954 sidecaptionvpos{float type}{placement}
19955 \end_layout
19956
19957 \begin_layout Standard
19958 in the document preamble or in ERT before the float.
19959  The float type is either 
19960 \family sans
19961 figure
19962 \family default
19963  or 
19964 \family sans
19965 table
19966 \family default
19967 , the placement can be 
19968 \begin_inset Quotes eld
19969 \end_inset
19970
19971
19972 \family sans
19973 t
19974 \family default
19975
19976 \begin_inset Quotes erd
19977 \end_inset
19978
19979  for top, 
19980 \begin_inset Quotes eld
19981 \end_inset
19982
19983
19984 \family sans
19985 c
19986 \family default
19987
19988 \begin_inset Quotes erd
19989 \end_inset
19990
19991  for center, or 
19992 \begin_inset Quotes eld
19993 \end_inset
19994
19995
19996 \family sans
19997 b
19998 \family default
19999
20000 \begin_inset Quotes erd
20001 \end_inset
20002
20003  for bottom.
20004  To have for example the caption of figure floats vertically centered, use
20005  the command
20006 \end_layout
20007
20008 \begin_layout Standard
20009
20010 \series bold
20011
20012 \backslash
20013 sidecaptionvpos{f\SpecialChar \textcompwordmark{}
20014 igure}{c}
20015 \end_layout
20016
20017 \begin_layout Standard
20018 This was used for Figure\InsetSpace ~
20019
20020 \begin_inset LatexCommand ref
20021 reference "fig:cap-beside-fig-2"
20022
20023 \end_inset
20024
20025 .
20026 \end_layout
20027
20028 \begin_layout Standard
20029 \begin_inset VSpace defskip
20030 \end_inset
20031
20032 For more information about the package 
20033 \series bold
20034 sidecap
20035 \series default
20036  we refer to its documentation 
20037 \begin_inset LatexCommand cite
20038 key "sidecap"
20039
20040 \end_inset
20041
20042 .
20043 \end_layout
20044
20045 \begin_layout Standard
20046 \begin_inset Note Greyedout
20047 status open
20048
20049 \begin_layout Standard
20050
20051 \series bold
20052 Note:
20053 \series default
20054  The LaTeX-package 
20055 \series bold
20056 hypcap
20057 \series default
20058
20059 \begin_inset LatexCommand index
20060 name "LaTeX-packages ! hypcap"
20061
20062 \end_inset
20063
20064 , described in section\InsetSpace ~
20065
20066 \begin_inset LatexCommand ref
20067 reference "sub:Reference-Position"
20068
20069 \end_inset
20070
20071 , has no effect on floats with the caption set beside.
20072 \end_layout
20073
20074 \end_inset
20075
20076
20077 \end_layout
20078
20079 \begin_layout Standard
20080 \begin_inset ERT
20081 status collapsed
20082
20083 \begin_layout Standard
20084
20085
20086 \backslash
20087 FigBesBeg 
20088 \end_layout
20089
20090 \end_inset
20091
20092
20093 \end_layout
20094
20095 \begin_layout Standard
20096 \begin_inset Float figure
20097 wide false
20098 sideways false
20099 status open
20100
20101 \begin_layout Standard
20102 \begin_inset Graphics
20103         filename escher-lsd.eps
20104         scale 75
20105
20106 \end_inset
20107
20108
20109 \end_layout
20110
20111 \begin_layout Caption
20112 \begin_inset LatexCommand label
20113 name "fig:cap-beside-fig"
20114
20115 \end_inset
20116
20117 This is a caption beside a figure.
20118 \end_layout
20119
20120 \end_inset
20121
20122
20123 \end_layout
20124
20125 \begin_layout Standard
20126 \begin_inset ERT
20127 status collapsed
20128
20129 \begin_layout Standard
20130
20131
20132 \backslash
20133 TabBesBeg 
20134 \end_layout
20135
20136 \end_inset
20137
20138
20139 \end_layout
20140
20141 \begin_layout Standard
20142 \begin_inset Float table
20143 wide false
20144 sideways false
20145 status open
20146
20147 \begin_layout Caption
20148 \begin_inset LatexCommand label
20149 name "tab:cap-beside-tab"
20150
20151 \end_inset
20152
20153 This is a caption beside a table.
20154 \end_layout
20155
20156 \begin_layout Standard
20157 \begin_inset Tabular
20158 <lyxtabular version="3" rows="4" columns="5">
20159 <features>
20160 <column alignment="center" valignment="top" leftline="true" width="0">
20161 <column alignment="center" valignment="top" leftline="true" width="0">
20162 <column alignment="center" valignment="top" leftline="true" width="0">
20163 <column alignment="center" valignment="top" leftline="true" width="0">
20164 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
20165 <row topline="true">
20166 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20167 \begin_inset Text
20168
20169 \begin_layout Standard
20170 a
20171 \end_layout
20172
20173 \end_inset
20174 </cell>
20175 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20176 \begin_inset Text
20177
20178 \begin_layout Standard
20179
20180 \end_layout
20181
20182 \end_inset
20183 </cell>
20184 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20185 \begin_inset Text
20186
20187 \begin_layout Standard
20188 b
20189 \end_layout
20190
20191 \end_inset
20192 </cell>
20193 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20194 \begin_inset Text
20195
20196 \begin_layout Standard
20197
20198 \end_layout
20199
20200 \end_inset
20201 </cell>
20202 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20203 \begin_inset Text
20204
20205 \begin_layout Standard
20206 c
20207 \end_layout
20208
20209 \end_inset
20210 </cell>
20211 </row>
20212 <row topline="true">
20213 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20214 \begin_inset Text
20215
20216 \begin_layout Standard
20217
20218 \end_layout
20219
20220 \end_inset
20221 </cell>
20222 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20223 \begin_inset Text
20224
20225 \begin_layout Standard
20226 d
20227 \end_layout
20228
20229 \end_inset
20230 </cell>
20231 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20232 \begin_inset Text
20233
20234 \begin_layout Standard
20235
20236 \end_layout
20237
20238 \end_inset
20239 </cell>
20240 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20241 \begin_inset Text
20242
20243 \begin_layout Standard
20244 e
20245 \end_layout
20246
20247 \end_inset
20248 </cell>
20249 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20250 \begin_inset Text
20251
20252 \begin_layout Standard
20253
20254 \end_layout
20255
20256 \end_inset
20257 </cell>
20258 </row>
20259 <row topline="true">
20260 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20261 \begin_inset Text
20262
20263 \begin_layout Standard
20264 f
20265 \end_layout
20266
20267 \end_inset
20268 </cell>
20269 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20270 \begin_inset Text
20271
20272 \begin_layout Standard
20273
20274 \end_layout
20275
20276 \end_inset
20277 </cell>
20278 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20279 \begin_inset Text
20280
20281 \begin_layout Standard
20282 g
20283 \end_layout
20284
20285 \end_inset
20286 </cell>
20287 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20288 \begin_inset Text
20289
20290 \begin_layout Standard
20291
20292 \end_layout
20293
20294 \end_inset
20295 </cell>
20296 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20297 \begin_inset Text
20298
20299 \begin_layout Standard
20300 h
20301 \end_layout
20302
20303 \end_inset
20304 </cell>
20305 </row>
20306 <row topline="true" bottomline="true">
20307 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20308 \begin_inset Text
20309
20310 \begin_layout Standard
20311
20312 \end_layout
20313
20314 \end_inset
20315 </cell>
20316 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20317 \begin_inset Text
20318
20319 \begin_layout Standard
20320 i
20321 \end_layout
20322
20323 \end_inset
20324 </cell>
20325 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20326 \begin_inset Text
20327
20328 \begin_layout Standard
20329
20330 \end_layout
20331
20332 \end_inset
20333 </cell>
20334 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20335 \begin_inset Text
20336
20337 \begin_layout Standard
20338 j
20339 \end_layout
20340
20341 \end_inset
20342 </cell>
20343 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20344 \begin_inset Text
20345
20346 \begin_layout Standard
20347
20348 \end_layout
20349
20350 \end_inset
20351 </cell>
20352 </row>
20353 </lyxtabular>
20354
20355 \end_inset
20356
20357
20358 \end_layout
20359
20360 \end_inset
20361
20362
20363 \end_layout
20364
20365 \begin_layout Standard
20366 \begin_inset ERT
20367 status collapsed
20368
20369 \begin_layout Standard
20370
20371
20372 \backslash
20373 TabBesEnd
20374 \end_layout
20375
20376 \end_inset
20377
20378
20379 \end_layout
20380
20381 \begin_layout Standard
20382 \begin_inset ERT
20383 status collapsed
20384
20385 \begin_layout Standard
20386
20387
20388 \backslash
20389 sidecaptionvpos{figure}{c}
20390 \end_layout
20391
20392 \end_inset
20393
20394
20395 \begin_inset Float figure
20396 wide false
20397 sideways false
20398 status open
20399
20400 \begin_layout Standard
20401 \begin_inset Graphics
20402         filename escher-lsd.eps
20403         scale 75
20404
20405 \end_inset
20406
20407
20408 \end_layout
20409
20410 \begin_layout Caption
20411 \begin_inset LatexCommand label
20412 name "fig:cap-beside-fig-2"
20413
20414 \end_inset
20415
20416 This is a vertically centered caption beside a figure.
20417 \end_layout
20418
20419 \end_inset
20420
20421
20422 \end_layout
20423
20424 \begin_layout Standard
20425 \begin_inset ERT
20426 status collapsed
20427
20428 \begin_layout Standard
20429
20430
20431 \backslash
20432 FigBesEnd
20433 \end_layout
20434
20435 \end_inset
20436
20437
20438 \end_layout
20439
20440 \begin_layout Section
20441 Listings of Floats
20442 \begin_inset LatexCommand label
20443 name "sec:Listings-of-Floats"
20444
20445 \end_inset
20446
20447
20448 \begin_inset LatexCommand index
20449 name "Floats ! Listings"
20450
20451 \end_inset
20452
20453
20454 \end_layout
20455
20456 \begin_layout Standard
20457 Similar to the the table of contents where the sections of the document
20458  are listed, there are listings for all float types, like the figures of
20459  the documents.
20460  You can insert them via the 
20461 \family sans
20462 Insert\SpecialChar \menuseparator
20463 List\InsetSpace ~
20464 /\InsetSpace ~
20465 TOC
20466 \family default
20467  sub menus.
20468 \end_layout
20469
20470 \begin_layout Standard
20471 The list entries are the float captions or its short title, the float number,
20472  and the page number where they appear in the document.
20473 \end_layout
20474
20475 \begin_layout Standard
20476 You can find the list of figures and tables at the end of this document.
20477 \end_layout
20478
20479 \begin_layout Chapter
20480 Notes
20481 \end_layout
20482
20483 \begin_layout Section
20484 \begin_inset ERT
20485 status collapsed
20486
20487 \begin_layout Standard
20488
20489
20490 \backslash
20491 texorpdfstring{
20492 \end_layout
20493
20494 \end_inset
20495
20496 LyX
20497 \begin_inset ERT
20498 status collapsed
20499
20500 \begin_layout Standard
20501
20502 }{LyX}
20503 \end_layout
20504
20505 \end_inset
20506
20507  Notes
20508 \begin_inset LatexCommand label
20509 name "sec:LyX-Notes"
20510
20511 \end_inset
20512
20513
20514 \begin_inset LatexCommand index
20515 name "Notes ! LyX Notes"
20516
20517 \end_inset
20518
20519
20520 \begin_inset Note Note
20521 status collapsed
20522
20523 \begin_layout Standard
20524 The command 
20525 \backslash
20526 texorpdfstring is provided by the LaTeX-package hyperref to avoid that ligatures
20527  are displayed wrongly in PDF-bookmarks.
20528  For more information about this, have a look at 
20529 \begin_inset LatexCommand cite
20530 key "hyperref"
20531
20532 \end_inset
20533
20534 .
20535 \end_layout
20536
20537 \end_inset
20538
20539
20540 \end_layout
20541
20542 \begin_layout Standard
20543 Notes are inserted with the toolbar button 
20544 \begin_inset Graphics
20545         filename ../images/note-insert.xpm
20546         scale 85
20547
20548 \end_inset
20549
20550  or the menu 
20551 \family sans
20552 Insert\SpecialChar \menuseparator
20553 Note
20554 \family default
20555 .
20556  There are three types of notes:
20557 \end_layout
20558
20559 \begin_layout Description
20560 LyX\InsetSpace ~
20561 Note This note type is for internal notes that won't appear in the output.
20562  Its note-box looks like this:
20563 \newline
20564
20565 \newline
20566
20567 \begin_inset Graphics
20568         filename ../clipart/LyXNoteImageQt4.png
20569         display none
20570         scale 85
20571
20572 \end_inset
20573
20574  
20575 \begin_inset Note Note
20576 status open
20577
20578 \begin_layout Standard
20579 This is text in a note box that doesn't appear in the output.
20580 \end_layout
20581
20582 \end_inset
20583
20584
20585 \end_layout
20586
20587 \begin_layout Description
20588 Comment This note also doesn't appear in the output but it appears as LaTeX-comm
20589 ent, when you export the document to LaTeX via the menu 
20590 \family sans
20591 File\SpecialChar \menuseparator
20592 Export\SpecialChar \menuseparator
20593 LaTeX (pdflatex) / LaTeX (plain)
20594 \family default
20595 .
20596  Its note-box looks like this:
20597 \newline
20598
20599 \newline
20600
20601 \begin_inset Graphics
20602         filename ../clipart/CommentNoteImageQt4.png
20603         display none
20604         scale 85
20605
20606 \end_inset
20607
20608  
20609 \begin_inset Note Comment
20610 status open
20611
20612 \begin_layout Standard
20613 This is text in a note box that only appears as comment in LaTeX-files.
20614 \end_layout
20615
20616 \end_inset
20617
20618
20619 \end_layout
20620
20621 \begin_layout Description
20622 Greyed\InsetSpace ~
20623 Out This note will appear in the output as grey text.
20624  Its note-box looks like this:
20625 \newline
20626
20627 \newline
20628
20629 \begin_inset Graphics
20630         filename ../clipart/GreyedOutNoteImageQt4.png
20631         display none
20632         scale 85
20633
20634 \end_inset
20635
20636
20637 \newline
20638
20639 \begin_inset ERT
20640 status collapsed
20641
20642 \begin_layout Standard
20643
20644
20645 \backslash
20646 renewenvironment{lyxgreyedout}
20647 \end_layout
20648
20649 \begin_layout Standard
20650
20651 {
20652 \backslash
20653 textcolor[gray]{0.8}
20654 \backslash
20655 bgroup}{
20656 \backslash
20657 egroup}
20658 \end_layout
20659
20660 \end_inset
20661
20662
20663 \begin_inset Note Greyedout
20664 status open
20665
20666 \begin_layout Standard
20667 This is text
20668 \begin_inset Foot
20669 status open
20670
20671 \begin_layout Standard
20672 This is an example footnote within a greyed out note.
20673 \end_layout
20674
20675 \end_inset
20676
20677  of a comment that appears in the output as grey text.
20678 \end_layout
20679
20680 \end_inset
20681
20682
20683 \begin_inset ERT
20684 status collapsed
20685
20686 \begin_layout Standard
20687
20688
20689 \backslash
20690 renewenvironment{lyxgreyedout}
20691 \end_layout
20692
20693 \begin_layout Standard
20694
20695 {
20696 \backslash
20697 textcolor{blue}
20698 \backslash
20699 bgroup}{
20700 \backslash
20701 egroup}
20702 \end_layout
20703
20704 \end_inset
20705
20706
20707 \begin_inset Note Note
20708 status collapsed
20709
20710 \begin_layout Standard
20711 The greyed out note is here redefined to show it with the original LyX definitio
20712 n because greyed out notes are redefined in the preamble of this document,
20713  as described below, to have blue text.
20714 \end_layout
20715
20716 \end_inset
20717
20718
20719 \newline
20720
20721 \newline
20722 As you can see in the example, the first line of greyed out notes is a bit
20723  indented and greyed out notes can have footnotes.
20724 \end_layout
20725
20726 \begin_layout Description
20727 Framed This note will appear in the output as framed text.
20728  Its note-box looks like this:
20729 \newline
20730
20731 \newline
20732
20733 \begin_inset Graphics
20734         filename ../clipart/FramedNoteImageQt4.png
20735         display none
20736         scale 85
20737
20738 \end_inset
20739
20740  
20741 \begin_inset Note Framed
20742 status open
20743
20744 \begin_layout Standard
20745 This is text in a note box that appears framed in the output.
20746 \end_layout
20747
20748 \end_inset
20749
20750  In contrary to framed boxes
20751 \begin_inset Foot
20752 status collapsed
20753
20754 \begin_layout Standard
20755 Framed boxes are described in section\InsetSpace ~
20756
20757 \begin_inset LatexCommand ref
20758 reference "sec:Framed-Boxes"
20759
20760 \end_inset
20761
20762 .
20763 \end_layout
20764
20765 \end_inset
20766
20767  the frame uses always the whole text width and the note is set into its
20768  own paragraph.
20769 \end_layout
20770
20771 \begin_layout Description
20772 Shaded This note will appear in the output with red background color.
20773  Its note box looks like this:
20774 \newline
20775
20776 \newline
20777
20778 \begin_inset Graphics
20779         filename ../clipart/ShadedNoteImageQt4.png
20780         display none
20781         scale 85
20782
20783 \end_inset
20784
20785
20786 \begin_inset Note Shaded
20787 status open
20788
20789 \begin_layout Standard
20790 This text in a note box appears in the output with red background.
20791 \end_layout
20792
20793 \end_inset
20794
20795 In contrary to colored boxes
20796 \begin_inset Foot
20797 status collapsed
20798
20799 \begin_layout Standard
20800 Colored boxes are described in section\InsetSpace ~
20801
20802 \begin_inset LatexCommand ref
20803 reference "sec:Colored-Boxes"
20804
20805 \end_inset
20806
20807 .
20808 \end_layout
20809
20810 \end_inset
20811
20812  the note uses always the whole text width and the note is set into its
20813  own paragraph.
20814 \end_layout
20815
20816 \begin_layout Standard
20817 \begin_inset VSpace bigskip
20818 \end_inset
20819
20820 When you use the toolbar button to insert notes, a 
20821 \family sans
20822 LyX\InsetSpace ~
20823 Note
20824 \family default
20825  is inserted.
20826  You can switch between the three note types by right-clicking on the note-box.
20827  
20828 \family roman
20829 \series medium
20830 \bar no
20831 If you want to turn existing text into a note, mark it and click on the
20832  note 
20833 \family default
20834 \series default
20835 \bar default
20836 toolbar 
20837 \family roman
20838 \series medium
20839 \bar no
20840 button
20841 \family default
20842 \series default
20843 \bar default
20844 .
20845 \end_layout
20846
20847 \begin_layout Standard
20848 \begin_inset VSpace bigskip
20849 \end_inset
20850
20851 You can change the text color of the greyed out notes in the preamble with
20852  the following command:
20853 \end_layout
20854
20855 \begin_layout Standard
20856
20857 \series bold
20858
20859 \backslash
20860 renewenvironment{lyxgreyedout}
20861 \newline
20862
20863 \begin_inset ERT
20864 status collapsed
20865
20866 \begin_layout Standard
20867
20868
20869 \backslash
20870 hphantom{ }
20871 \end_layout
20872
20873 \end_inset
20874
20875 {
20876 \backslash
20877 textcolor{color}
20878 \backslash
20879 bgroup}{
20880 \backslash
20881 egroup}
20882 \end_layout
20883
20884 \begin_layout Standard
20885 The available colors and the method to define own colors is explained in
20886  section\InsetSpace ~
20887
20888 \begin_inset LatexCommand ref
20889 reference "sec:Colored-Tables"
20890
20891 \end_inset
20892
20893 .
20894 \end_layout
20895
20896 \begin_layout Standard
20897 Notes that appear in blue in this document are set using greyed out notes
20898  with blue text.
20899 \end_layout
20900
20901 \begin_layout Standard
20902 \begin_inset VSpace bigskip
20903 \end_inset
20904
20905
20906 \end_layout
20907
20908 \begin_layout Standard
20909 The text style of 
20910 \family sans
20911 Framed
20912 \family default
20913  and 
20914 \family sans
20915 Shaded
20916 \family default
20917  notes can be set in the 
20918 \family sans
20919 Text Style
20920 \family default
20921  dialog.
20922 \end_layout
20923
20924 \begin_layout Standard
20925 The default frame width for 
20926 \family sans
20927 Framed
20928 \family default
20929  notes is 0.4\InsetSpace \thinspace{}
20930 pt; it can be changed by changing the size 
20931 \series bold
20932
20933 \backslash
20934 FrameRule
20935 \series default
20936 .
20937  The default space between the note content and the frame is 9\InsetSpace \thinspace{}
20938 pt; it can
20939  be changed by changing the size 
20940 \series bold
20941
20942 \backslash
20943 FrameSep
20944 \series default
20945 .
20946  For example the frame appearance of the following 
20947 \family sans
20948 Framed
20949 \family default
20950  note is set with the ERT commands
20951 \end_layout
20952
20953 \begin_layout Standard
20954
20955 \series bold
20956
20957 \backslash
20958 FrameRule 5pt 
20959 \backslash
20960 FrameSep 0.5cm
20961 \end_layout
20962
20963 \begin_layout Standard
20964 \begin_inset ERT
20965 status collapsed
20966
20967 \begin_layout Standard
20968
20969
20970 \backslash
20971 FrameRule 5pt 
20972 \backslash
20973 FrameSep 0.5cm
20974 \end_layout
20975
20976 \end_inset
20977
20978
20979 \begin_inset Note Framed
20980 status open
20981
20982 \begin_layout Standard
20983 This is text in a 
20984 \family sans
20985 Framed
20986 \family default
20987  note.
20988 \end_layout
20989
20990 \end_inset
20991
20992
20993 \begin_inset ERT
20994 status collapsed
20995
20996 \begin_layout Standard
20997
20998
20999 \backslash
21000 FrameRule 0.4pt 
21001 \backslash
21002 FrameSep 9pt
21003 \end_layout
21004
21005 \end_inset
21006
21007
21008 \end_layout
21009
21010 \begin_layout Standard
21011 \begin_inset VSpace bigskip
21012 \end_inset
21013
21014
21015 \end_layout
21016
21017 \begin_layout Standard
21018 For 
21019 \family sans
21020 Shaded
21021 \family default
21022  notes the default space between the note content and the note border is
21023  3\InsetSpace \thinspace{}
21024 pt; it can be changed by changing the size 
21025 \series bold
21026
21027 \backslash
21028 fboxsep
21029 \series default
21030 .
21031 \newline
21032 The default background color red can be changed with the command 
21033 \series bold
21034
21035 \backslash
21036 def\SpecialChar \textcompwordmark{}
21037 inecolor{shadebox}
21038 \series default
21039 .
21040  The scheme of the 
21041 \series bold
21042
21043 \backslash
21044 def\SpecialChar \textcompwordmark{}
21045 inecolor
21046 \series default
21047  command is explained in section\InsetSpace ~
21048
21049 \begin_inset LatexCommand ref
21050 reference "sec:Colored-Tables"
21051
21052 \end_inset
21053
21054
21055 \begin_inset Foot
21056 status collapsed
21057
21058 \begin_layout Standard
21059 Note that 
21060 \series bold
21061
21062 \backslash
21063 def
21064 \series default
21065 \SpecialChar \textcompwordmark{}
21066
21067 \series bold
21068 inecolor
21069 \series default
21070  requires the LaTeX-package 
21071 \series bold
21072 color
21073 \series default
21074  in the preamble, see section\InsetSpace ~
21075
21076 \begin_inset LatexCommand ref
21077 reference "sec:Colored-Boxes"
21078
21079 \end_inset
21080
21081 .
21082 \end_layout
21083
21084 \end_inset
21085
21086 .
21087 \end_layout
21088
21089 \begin_layout Standard
21090 For example the appearance of the following 
21091 \family sans
21092 Shaded
21093 \family default
21094  note is set with the ERT commands
21095 \end_layout
21096
21097 \begin_layout Standard
21098
21099 \series bold
21100
21101 \backslash
21102 fboxsep 0.5cm
21103 \series default
21104
21105 \newline
21106
21107 \series bold
21108
21109 \backslash
21110 def\SpecialChar \textcompwordmark{}
21111 inecolor{shadecolor}{cmyk}{0.5,0,1,0.5}
21112 \end_layout
21113
21114 \begin_layout Standard
21115 \begin_inset ERT
21116 status collapsed
21117
21118 \begin_layout Standard
21119
21120
21121 \backslash
21122 fboxsep 0.5cm
21123 \end_layout
21124
21125 \end_inset
21126
21127
21128 \begin_inset ERT
21129 status collapsed
21130
21131 \begin_layout Standard
21132
21133
21134 \backslash
21135 definecolor{shadecolor}{cmyk}{0.5,0,1,0.5}
21136 \end_layout
21137
21138 \end_inset
21139
21140
21141 \begin_inset Note Shaded
21142 status open
21143
21144 \begin_layout Standard
21145
21146 \color yellow
21147 This is yellow text in a 
21148 \family sans
21149 Shaded
21150 \family default
21151  note with darkgreen background.
21152 \end_layout
21153
21154 \end_inset
21155
21156
21157 \begin_inset ERT
21158 status collapsed
21159
21160 \begin_layout Standard
21161
21162
21163 \backslash
21164 fboxsep 3pt
21165 \end_layout
21166
21167 \end_inset
21168
21169
21170 \begin_inset ERT
21171 status collapsed
21172
21173 \begin_layout Standard
21174
21175
21176 \backslash
21177 definecolor{shadecolor}{rgb}{1,0,0}
21178 \end_layout
21179
21180 \end_inset
21181
21182
21183 \end_layout
21184
21185 \begin_layout Section
21186 Footnotes
21187 \begin_inset LatexCommand label
21188 name "sec:Footnotes"
21189
21190 \end_inset
21191
21192
21193 \begin_inset LatexCommand index
21194 name "Notes ! Footnotes"
21195
21196 \end_inset
21197
21198
21199 \begin_inset LatexCommand index
21200 name "Footnotes"
21201
21202 \end_inset
21203
21204
21205 \end_layout
21206
21207 \begin_layout Standard
21208 Footnotes can be inserted using the toolbar button 
21209 \begin_inset Graphics
21210         filename ../images/footnote-insert.xpm
21211         scale 85
21212
21213 \end_inset
21214
21215  or the menu 
21216 \family sans
21217 Insert\SpecialChar \menuseparator
21218 Footnote
21219 \family default
21220 .
21221  
21222 \family roman
21223 \series medium
21224 \bar no
21225 You'll see 
21226 \family default
21227 \series default
21228 \bar default
21229 then the following footnote-box: 
21230 \begin_inset Graphics
21231         filename ../clipart/footnoteQt4.png
21232         scale 80
21233
21234 \end_inset
21235
21236
21237 \family roman
21238 \series medium
21239 \bar no
21240  where you can enter the footnote text.
21241  If you want to turn existing text into a footnote, mark it and click on
21242  the footnote 
21243 \family default
21244 \series default
21245 \bar default
21246 toolbar 
21247 \family roman
21248 \series medium
21249 \bar no
21250 button
21251 \family default
21252 \series default
21253 \bar default
21254 .
21255 \end_layout
21256
21257 \begin_layout Standard
21258 Here is an example footnote:
21259 \family roman
21260 \series medium
21261 \bar no
21262
21263 \begin_inset Foot
21264 status open
21265
21266 \begin_layout Standard
21267 \begin_inset LatexCommand label
21268 name "foot:This-is-an"
21269
21270 \end_inset
21271
21272 This is an example footnote.
21273 \end_layout
21274
21275 \end_inset
21276
21277
21278 \family default
21279 \series default
21280 \bar default
21281
21282 \begin_inset ERT
21283 status collapsed
21284
21285 \begin_layout Standard
21286
21287
21288 \backslash
21289 newcounter{MyRepeatFoot}
21290 \end_layout
21291
21292 \begin_layout Standard
21293
21294
21295 \backslash
21296 setcounter{MyRepeatFoot}{
21297 \backslash
21298 thefootnote}
21299 \end_layout
21300
21301 \end_inset
21302
21303
21304 \end_layout
21305
21306 \begin_layout Standard
21307 The footnote will appear in the output as a superscript number at the text
21308  position where the footnote box is placed.
21309  The footnote text is placed at the bottom of the current page.
21310  The footnote number is calculated by LaTeX, the numbers are consecutive.
21311  It depends on your document-class, if the footnote number is reset for
21312  every chapter.
21313 \end_layout
21314
21315 \begin_layout Standard
21316 Footnotes can be referenced like floats: Insert a label into the footnote
21317  and cross-reference this label in the text as described in section\InsetSpace ~
21318
21319 \begin_inset LatexCommand ref
21320 reference "sec:Referencing-Floats"
21321
21322 \end_inset
21323
21324 .
21325 \newline
21326 This is a cross-reference of Footnote\InsetSpace ~
21327
21328 \begin_inset LatexCommand prettyref
21329 reference "foot:This-is-an"
21330
21331 \end_inset
21332
21333 .
21334 \newline
21335
21336 \begin_inset Note Greyedout
21337 status open
21338
21339 \begin_layout Standard
21340
21341 \series bold
21342 Note:
21343 \series default
21344  LyX doesn't provide a prefix for labels in footnotes, so you have to insert
21345  e.\InsetSpace \thinspace{}
21346 g.\InsetSpace ~
21347 the prefix 
21348 \family sans
21349
21350 \begin_inset Quotes eld
21351 \end_inset
21352
21353 foot:
21354 \family default
21355
21356 \begin_inset Quotes erd
21357 \end_inset
21358
21359  manually when you want to use the reference style 
21360 \family sans
21361 Formatted\InsetSpace ~
21362 reference
21363 \family default
21364 .
21365 \end_layout
21366
21367 \end_inset
21368
21369
21370 \end_layout
21371
21372 \begin_layout Standard
21373 \begin_inset VSpace defskip
21374 \end_inset
21375
21376 To use footnotes within tables, you have to use minipages, see section\InsetSpace ~
21377
21378 \begin_inset LatexCommand ref
21379 reference "sec:Minipages"
21380
21381 \end_inset
21382
21383 .
21384  Footnotes within longtables are described in section\InsetSpace ~
21385
21386 \begin_inset LatexCommand ref
21387 reference "sub:Footnotes-in-Longtables"
21388
21389 \end_inset
21390
21391 .
21392 \end_layout
21393
21394 \begin_layout Standard
21395 \begin_inset VSpace defskip
21396 \end_inset
21397
21398 To create only a mark for a footnote, use the command 
21399 \series bold
21400
21401 \backslash
21402 footnotemark[number]
21403 \series default
21404  in ERT.
21405  This is used when you have the same annotation several times in a text
21406  but doesn't want to print the footnote text every time.
21407 \newline
21408 As you don't know
21409  the number of the repeating footnote while you are writing the text, you
21410  have to store its number.
21411  For the following footnote mark example, these commands were inserted in
21412  ERT behind Footnote\InsetSpace ~
21413
21414 \begin_inset LatexCommand ref
21415 reference "foot:This-is-an"
21416
21417 \end_inset
21418
21419  to store the footnote number:
21420 \end_layout
21421
21422 \begin_layout Standard
21423
21424 \series bold
21425
21426 \backslash
21427 newcounter{MyRepeatFoot}
21428 \newline
21429
21430 \backslash
21431 setcounter{MyRepeatFoot}{
21432 \backslash
21433 thefootnote}
21434 \end_layout
21435
21436 \begin_layout Standard
21437 The footnote mark was then created with this command:
21438 \end_layout
21439
21440 \begin_layout Standard
21441
21442 \series bold
21443
21444 \backslash
21445 footnotemark[
21446 \backslash
21447 theMyRepeatFoot]
21448 \end_layout
21449
21450 \begin_layout Standard
21451 Here is an example footnote mark:
21452 \family roman
21453 \series medium
21454 \bar no
21455
21456 \begin_inset ERT
21457 status collapsed
21458
21459 \begin_layout Standard
21460
21461
21462 \backslash
21463 footnotemark[
21464 \backslash
21465 theMyRepeatFoot]
21466 \end_layout
21467
21468 \end_inset
21469
21470
21471 \end_layout
21472
21473 \begin_layout Subsection
21474 Footnote Numbering
21475 \begin_inset LatexCommand label
21476 name "sub:Footnote-Numbering"
21477
21478 \end_inset
21479
21480
21481 \begin_inset LatexCommand index
21482 name "Footnotes ! Numbering"
21483
21484 \end_inset
21485
21486
21487 \end_layout
21488
21489 \begin_layout Standard
21490 If you want to have footnotes numbered in the scheme 
21491 \begin_inset Quotes eld
21492 \end_inset
21493
21494 chapter.footnote
21495 \begin_inset Quotes erd
21496 \end_inset
21497
21498 , add the following command to your document preamble:
21499 \end_layout
21500
21501 \begin_layout Standard
21502
21503 \series bold
21504
21505 \backslash
21506 numberwithin{footnote}{chapter}
21507 \end_layout
21508
21509 \begin_layout Standard
21510 To be able to use the command 
21511 \series bold
21512
21513 \backslash
21514 numberwithin
21515 \series default
21516 , set in the tab 
21517 \family sans
21518 Math\InsetSpace ~
21519 Options
21520 \family default
21521  in the document settings the option 
21522 \family sans
21523 Use\InsetSpace ~
21524 AMS\InsetSpace ~
21525 math\InsetSpace ~
21526 package
21527 \family default
21528 .
21529 \end_layout
21530
21531 \begin_layout Standard
21532 \begin_inset ERT
21533 status collapsed
21534
21535 \begin_layout Standard
21536
21537
21538 \backslash
21539 numberwithin{footnote}{chapter}
21540 \end_layout
21541
21542 \end_inset
21543
21544 This is another example footnote:
21545 \series bold
21546
21547 \begin_inset Foot
21548 status open
21549
21550 \begin_layout Standard
21551 This is a footnote numbered in the scheme 
21552 \begin_inset Quotes eld
21553 \end_inset
21554
21555 chapter.footnote
21556 \begin_inset Quotes erd
21557 \end_inset
21558
21559 .
21560 \end_layout
21561
21562 \end_inset
21563
21564
21565 \series default
21566
21567 \begin_inset ERT
21568 status collapsed
21569
21570 \begin_layout Standard
21571
21572
21573 \backslash
21574 numberwithin{footnote}{part}
21575 \end_layout
21576
21577 \end_inset
21578
21579
21580 \end_layout
21581
21582 \begin_layout Standard
21583 \begin_inset VSpace bigskip
21584 \end_inset
21585
21586
21587 \end_layout
21588
21589 \begin_layout Standard
21590 To reset the footnote number back to 1 after each section
21591 \family roman
21592 , add this command to your document preamble:
21593 \end_layout
21594
21595 \begin_layout Standard
21596
21597 \series bold
21598
21599 \backslash
21600 @addtoreset{footnote}{section}
21601 \end_layout
21602
21603 \begin_layout Standard
21604 \begin_inset VSpace bigskip
21605 \end_inset
21606
21607 The following preamble command changes the footnote numbering style to small
21608  roman numerals:
21609 \end_layout
21610
21611 \begin_layout Standard
21612
21613 \series bold
21614
21615 \backslash
21616 renewcommand{
21617 \backslash
21618 thefootnote}{
21619 \backslash
21620 roman{footnote}}
21621 \end_layout
21622
21623 \begin_layout Standard
21624 \begin_inset ERT
21625 status collapsed
21626
21627 \begin_layout Standard
21628
21629
21630 \backslash
21631 renewcommand{
21632 \backslash
21633 thefootnote}{
21634 \backslash
21635 roman{footnote}}
21636 \end_layout
21637
21638 \end_inset
21639
21640  This is a footnote with roman numbering:
21641 \begin_inset Foot
21642 status open
21643
21644 \begin_layout Standard
21645 This is an example footnote with roman numbering.
21646 \end_layout
21647
21648 \end_inset
21649
21650
21651 \begin_inset ERT
21652 status collapsed
21653
21654 \begin_layout Standard
21655
21656
21657 \backslash
21658 renewcommand{
21659 \backslash
21660 thefootnote}{
21661 \backslash
21662 arabic{footnote}}
21663 \end_layout
21664
21665 \end_inset
21666
21667
21668 \end_layout
21669
21670 \begin_layout Standard
21671 To change the numbering style to capital roman numerals replace in the command
21672  above 
21673 \series bold
21674
21675 \backslash
21676 roman
21677 \series default
21678  by 
21679 \series bold
21680
21681 \backslash
21682 Roman
21683 \series default
21684 .
21685  To 
21686 \begin_inset Quotes eld
21687 \end_inset
21688
21689 number
21690 \begin_inset Quotes erd
21691 \end_inset
21692
21693  footnotes with capital or small Latin letters use 
21694 \series bold
21695
21696 \backslash
21697 Alph
21698 \series default
21699  or 
21700 \series bold
21701
21702 \backslash
21703 alph
21704 \series default
21705 , respectively.
21706  To 
21707 \begin_inset Quotes eld
21708 \end_inset
21709
21710 number
21711 \begin_inset Quotes erd
21712 \end_inset
21713
21714  footnotes with symbols use 
21715 \series bold
21716
21717 \backslash
21718 fnsymbol
21719 \series default
21720 .
21721 \end_layout
21722
21723 \begin_layout Standard
21724 \begin_inset Note Greyedout
21725 status open
21726
21727 \begin_layout Standard
21728
21729 \series bold
21730 Note:
21731 \series medium
21732  
21733 \series default
21734 You can only number 26 footnotes with Latin letters, because this numbering
21735  is limited to single letters.
21736 \end_layout
21737
21738 \end_inset
21739
21740
21741 \newline
21742
21743 \begin_inset Note Greyedout
21744 status open
21745
21746 \begin_layout Standard
21747
21748 \series bold
21749 Note:
21750 \series default
21751  You can only number 9 footnotes with symbols.
21752 \end_layout
21753
21754 \end_inset
21755
21756
21757 \end_layout
21758
21759 \begin_layout Standard
21760 To return to the default numbering style when you changed to another one,
21761  use 
21762 \series bold
21763
21764 \backslash
21765 arabic
21766 \series default
21767  instead of 
21768 \series bold
21769
21770 \backslash
21771 roman
21772 \series default
21773  in the command above.
21774 \end_layout
21775
21776 \begin_layout Subsection
21777 Footnote Placement
21778 \begin_inset LatexCommand index
21779 name "Footnotes ! Placement"
21780
21781 \end_inset
21782
21783
21784 \end_layout
21785
21786 \begin_layout Standard
21787 If you have several footnotes in one page, they appear without vertical
21788  space between them at the bottom of the page.
21789  To make them better readable you can e.\InsetSpace \thinspace{}
21790 g.\InsetSpace ~
21791 add 1.5\InsetSpace \thinspace{}
21792 mm space with the following
21793  preamble command:
21794 \end_layout
21795
21796 \begin_layout Standard
21797
21798 \series bold
21799
21800 \backslash
21801 let
21802 \backslash
21803 myFoot
21804 \backslash
21805 footnote
21806 \newline
21807
21808 \backslash
21809 renewcommand{
21810 \backslash
21811 footnote}[1]{
21812 \backslash
21813 myFoot{#1
21814 \backslash
21815 vspace{1.5mm}}}
21816 \end_layout
21817
21818 \begin_layout Standard
21819 \begin_inset VSpace bigskip
21820 \end_inset
21821
21822 In a two-column document the footnotes appear at the bottom of every column,
21823  see Figure\InsetSpace ~
21824
21825 \begin_inset LatexCommand ref
21826 reference "fig:Standard-footnote-placement"
21827
21828 \end_inset
21829
21830 .
21831  If the footnotes should only appear at the bottom of the right column,
21832  as in Figure\InsetSpace ~
21833
21834 \begin_inset LatexCommand ref
21835 reference "fig:Footnote-placement-in"
21836
21837 \end_inset
21838
21839 , use the LaTeX-package 
21840 \series bold
21841 ftnright
21842 \series default
21843
21844 \begin_inset LatexCommand index
21845 name "LaTeX-packages ! ftnright"
21846
21847 \end_inset
21848
21849  with this command in the document preamble:
21850 \end_layout
21851
21852 \begin_layout Standard
21853
21854 \series bold
21855
21856 \backslash
21857 usepackage{ftnright}
21858 \end_layout
21859
21860 \begin_layout Standard
21861 \begin_inset Float figure
21862 placement !h
21863 wide false
21864 sideways false
21865 status open
21866
21867 \begin_layout Standard
21868 \begin_inset ERT
21869 status collapsed
21870
21871 \begin_layout Standard
21872
21873
21874 \backslash
21875 framebox{
21876 \end_layout
21877
21878 \end_inset
21879
21880
21881 \begin_inset Graphics
21882         filename ../clipart/without_fntright.pdf
21883         width 100col%
21884
21885 \end_inset
21886
21887
21888 \begin_inset ERT
21889 status collapsed
21890
21891 \begin_layout Standard
21892
21893 }
21894 \end_layout
21895
21896 \end_inset
21897
21898
21899 \end_layout
21900
21901 \begin_layout Caption
21902 \begin_inset LatexCommand label
21903 name "fig:Standard-footnote-placement"
21904
21905 \end_inset
21906
21907 Standard footnote placement in two-column documents.
21908 \end_layout
21909
21910 \end_inset
21911
21912
21913 \end_layout
21914
21915 \begin_layout Standard
21916 \begin_inset Float figure
21917 placement !h
21918 wide false
21919 sideways false
21920 status open
21921
21922 \begin_layout Standard
21923 \begin_inset ERT
21924 status collapsed
21925
21926 \begin_layout Standard
21927
21928
21929 \backslash
21930 framebox{
21931 \end_layout
21932
21933 \end_inset
21934
21935
21936 \begin_inset Graphics
21937         filename ../clipart/with_fntright.pdf
21938         width 100col%
21939
21940 \end_inset
21941
21942
21943 \begin_inset ERT
21944 status collapsed
21945
21946 \begin_layout Standard
21947
21948 }
21949 \end_layout
21950
21951 \end_inset
21952
21953
21954 \end_layout
21955
21956 \begin_layout Caption
21957 \begin_inset LatexCommand label
21958 name "fig:Footnote-placement-in"
21959
21960 \end_inset
21961
21962 Footnote placement in two-column documents when the LaTeX-package 
21963 \series bold
21964 ftnright
21965 \series default
21966  is used.
21967 \end_layout
21968
21969 \end_inset
21970
21971
21972 \end_layout
21973
21974 \begin_layout Standard
21975 \begin_inset VSpace bigskip
21976 \end_inset
21977
21978 In some scientific literature it is usual to collect the footnotes and print
21979  them in a separate paragraph at the the end of a section, like in Figure\InsetSpace ~
21980
21981 \begin_inset LatexCommand ref
21982 reference "fig:Endnotes----footnotes"
21983
21984 \end_inset
21985
21986 .
21987  They are then so called 
21988 \begin_inset Quotes eld
21989 \end_inset
21990
21991 endnotes
21992 \begin_inset Quotes erd
21993 \end_inset
21994
21995 .
21996  To use endnotes instead of footnotes in your document, load the LaTeX-package
21997  
21998 \series bold
21999 endnotes
22000 \series default
22001
22002 \begin_inset LatexCommand index
22003 name "LaTeX-packages ! endnotes"
22004
22005 \end_inset
22006
22007  with the document preamble lines
22008 \end_layout
22009
22010 \begin_layout Standard
22011
22012 \series bold
22013
22014 \backslash
22015 usepackage{endnotes}
22016 \newline
22017
22018 \backslash
22019 let
22020 \backslash
22021 footnote
22022 \backslash
22023 endnote
22024 \end_layout
22025
22026 \begin_layout Standard
22027 To insert the collected footnotes, insert the command
22028 \end_layout
22029
22030 \begin_layout Standard
22031
22032 \series bold
22033
22034 \backslash
22035 theendnotes
22036 \end_layout
22037
22038 \begin_layout Standard
22039 in ERT at the the end of a section or chapter.
22040 \end_layout
22041
22042 \begin_layout Standard
22043 \begin_inset Float figure
22044 wide false
22045 sideways false
22046 status open
22047
22048 \begin_layout Standard
22049 \align center
22050 \begin_inset ERT
22051 status collapsed
22052
22053 \begin_layout Standard
22054
22055
22056 \backslash
22057 framebox{
22058 \end_layout
22059
22060 \end_inset
22061
22062
22063 \begin_inset Graphics
22064         filename ../clipart/endnotes.pdf
22065
22066 \end_inset
22067
22068
22069 \begin_inset ERT
22070 status collapsed
22071
22072 \begin_layout Standard
22073
22074 }
22075 \end_layout
22076
22077 \end_inset
22078
22079
22080 \end_layout
22081
22082 \begin_layout Caption
22083 \begin_inset LatexCommand label
22084 name "fig:Endnotes----footnotes"
22085
22086 \end_inset
22087
22088 Endnotes -- footnotes are printed in a separate paragraph at the end of
22089  sections or chapters.
22090 \end_layout
22091
22092 \end_inset
22093
22094
22095 \end_layout
22096
22097 \begin_layout Standard
22098 \begin_inset VSpace defskip
22099 \end_inset
22100
22101 The paragraph heading for the endnotes isn't automatically translated into
22102  the document language, this must be done manually.
22103  The following preamble command translate the default English name 
22104 \begin_inset Quotes eld
22105 \end_inset
22106
22107 Notes
22108 \begin_inset Quotes erd
22109 \end_inset
22110
22111  to the German translation 
22112 \begin_inset Quotes eld
22113 \end_inset
22114
22115 Anmerkungen
22116 \begin_inset Quotes erd
22117 \end_inset
22118
22119 :
22120 \end_layout
22121
22122 \begin_layout Standard
22123
22124 \series bold
22125
22126 \backslash
22127 renewcommand{
22128 \backslash
22129 notesname}{Anmerkungen}
22130 \end_layout
22131
22132 \begin_layout Standard
22133 \begin_inset VSpace defskip
22134 \end_inset
22135
22136 The numbering of endnotes can be changed like the footnote numbering as
22137  described in section\InsetSpace ~
22138
22139 \begin_inset LatexCommand ref
22140 reference "sub:Footnote-Numbering"
22141
22142 \end_inset
22143
22144 ; just replace the command 
22145 \series bold
22146
22147 \backslash
22148 thefootnote
22149 \series default
22150  by 
22151 \series bold
22152
22153 \backslash
22154 theendnote
22155 \series default
22156 .
22157  To reset the endnote number use the command 
22158 \series bold
22159
22160 \backslash
22161 @addtoreset 
22162 \series default
22163 as described in section\InsetSpace ~
22164
22165 \begin_inset LatexCommand ref
22166 reference "sub:Footnote-Numbering"
22167
22168 \end_inset
22169
22170  and replace the command parameter 
22171 \series bold
22172 footnote
22173 \series default
22174  by 
22175 \series bold
22176 endnote
22177 \series default
22178 .
22179 \end_layout
22180
22181 \begin_layout Standard
22182 To create only a mark for an endnote, use the command 
22183 \series bold
22184
22185 \backslash
22186 endnotemark[number]
22187 \series default
22188  similar to the command 
22189 \series bold
22190
22191 \backslash
22192 footnotemark
22193 \series default
22194 , described in section\InsetSpace ~
22195
22196 \begin_inset LatexCommand ref
22197 reference "sec:Footnotes"
22198
22199 \end_inset
22200
22201 .
22202 \end_layout
22203
22204 \begin_layout Standard
22205 \begin_inset VSpace bigskip
22206 \end_inset
22207
22208 Footnotes can also be placed in the page margin and the footnote text alignment
22209  can be changed, see the LaTeX-package 
22210 \series bold
22211 footmisc
22212 \series default
22213
22214 \begin_inset LatexCommand index
22215 name "LaTeX-packages ! footmisc"
22216
22217 \end_inset
22218
22219
22220 \begin_inset LatexCommand cite
22221 key "footmisc"
22222
22223 \end_inset
22224
22225  for more information about this.
22226 \end_layout
22227
22228 \begin_layout Standard
22229 For various further footnote formatting issues have a look at LaTeX-books,
22230  
22231 \begin_inset LatexCommand cite
22232 key "latexcompanion,latexguide,latexbook"
22233
22234 \end_inset
22235
22236 .
22237 \end_layout
22238
22239 \begin_layout Section
22240 Margin Notes
22241 \begin_inset LatexCommand index
22242 name "Notes ! Margin Notes"
22243
22244 \end_inset
22245
22246
22247 \end_layout
22248
22249 \begin_layout Standard
22250 Margin notes look and behave in LyX like footnotes.
22251  They are inserted via the menu 
22252 \family sans
22253 Insert\SpecialChar \menuseparator
22254 Marginal\InsetSpace ~
22255 Note
22256 \family default
22257  or the toolbar button 
22258 \begin_inset Graphics
22259         filename ../images/marginalnote-insert.xpm
22260         scale 85
22261
22262 \end_inset
22263
22264 .
22265  A
22266 \family roman
22267 \series medium
22268  
22269 \family default
22270 \series default
22271 grey
22272 \family roman
22273 \series medium
22274  box with the 
22275 \family default
22276 \series default
22277 red 
22278 \family roman
22279 \series medium
22280 label 
22281 \begin_inset Quotes eld
22282 \end_inset
22283
22284 margin
22285 \begin_inset Quotes erd
22286 \end_inset
22287
22288  appears where you can enter the text of the margin note.
22289 \end_layout
22290
22291 \begin_layout Standard
22292 At the side is an example margin note.
22293 \family roman
22294 \series medium
22295
22296 \begin_inset Marginal
22297 status open
22298
22299 \begin_layout Standard
22300 This is a margin note.
22301 \end_layout
22302
22303 \end_inset
22304
22305
22306 \end_layout
22307
22308 \begin_layout Standard
22309 Margin notes appear at the right side in single-sided documents.
22310  In double-sided documents they appear in the outer margin -- left on even
22311  pages, right on odd pages.
22312  The text of margin notes is aligned opposite to the outer margin -- right-align
22313 ed when the note appears in the left margin.
22314  The first line of the margin note is placed at the position of the text
22315  line where it is inserted in the document.
22316 \end_layout
22317
22318 \begin_layout Standard
22319 \begin_inset VSpace bigskip
22320 \end_inset
22321
22322 To place the margin note in the inner margin, add the command
22323 \end_layout
22324
22325 \begin_layout Standard
22326
22327 \series bold
22328
22329 \backslash
22330 reversemarginpar
22331 \end_layout
22332
22333 \begin_layout Standard
22334 in ERT before a margin note.
22335  The new placement is valid for all following margin notes.
22336 \begin_inset ERT
22337 status collapsed
22338
22339 \begin_layout Standard
22340
22341
22342 \backslash
22343 reversemarginpar 
22344 \end_layout
22345
22346 \end_inset
22347
22348
22349 \begin_inset Marginal
22350 status open
22351
22352 \begin_layout Standard
22353 This is a margin note in the inner margin.
22354 \end_layout
22355
22356 \end_inset
22357
22358
22359 \series bold
22360
22361 \newline
22362
22363 \series default
22364
22365 \begin_inset Note Greyedout
22366 status open
22367
22368 \begin_layout Standard
22369
22370 \series bold
22371 Note:
22372 \series default
22373  There is often not enough space in the inner margin so that the notes are
22374  not correctly displayed in the output.
22375 \end_layout
22376
22377 \end_inset
22378
22379
22380 \end_layout
22381
22382 \begin_layout Standard
22383 \begin_inset ERT
22384 status collapsed
22385
22386 \begin_layout Standard
22387
22388
22389 \backslash
22390 normalmarginpar 
22391 \end_layout
22392
22393 \end_inset
22394
22395 To return to the default placement insert the command
22396 \end_layout
22397
22398 \begin_layout Standard
22399
22400 \series bold
22401
22402 \backslash
22403 normalmarginpar
22404 \end_layout
22405
22406 \begin_layout Standard
22407 in ERT.
22408  
22409 \begin_inset Note Greyedout
22410 status open
22411
22412 \begin_layout Standard
22413
22414 \series bold
22415 Note:
22416 \series default
22417  The command is ignored when it is within a paragraph where also the command
22418  
22419 \series bold
22420
22421 \backslash
22422 reversemarginpar
22423 \series default
22424  is inserted.
22425 \end_layout
22426
22427 \end_inset
22428
22429
22430 \end_layout
22431
22432 \begin_layout Standard
22433 \begin_inset VSpace bigskip
22434 \end_inset
22435
22436
22437 \family roman
22438 \series medium
22439
22440 \begin_inset Marginal
22441 status open
22442
22443 \begin_layout Standard
22444 AVeryLongMarginParWord that isn't hyphenated.
22445 \end_layout
22446
22447 \end_inset
22448
22449
22450 \family default
22451 \series default
22452 Similar to the case described in section\InsetSpace ~
22453
22454 \begin_inset LatexCommand ref
22455 reference "sub:Multiple-Lines-in"
22456
22457 \end_inset
22458
22459 , long words cannot be hyphenated when they are the first word in a margin
22460  note.
22461  To avoid this, insert the command
22462 \end_layout
22463
22464 \begin_layout Standard
22465
22466 \series bold
22467
22468 \backslash
22469 hspace{0pt}
22470 \end_layout
22471
22472 \begin_layout Standard
22473 in ERT before the word
22474 \family roman
22475 \series medium
22476 .
22477 \begin_inset Marginal
22478 status open
22479
22480 \begin_layout Standard
22481 \begin_inset ERT
22482 status collapsed
22483
22484 \begin_layout Standard
22485
22486
22487 \backslash
22488 hspace{0pt}
22489 \end_layout
22490
22491 \end_inset
22492
22493 AVeryLongMarginParWord that is hyphenated.
22494 \end_layout
22495
22496 \end_inset
22497
22498
22499 \end_layout
22500
22501 \begin_layout Standard
22502 \begin_inset VSpace bigskip
22503 \end_inset
22504
22505
22506 \end_layout
22507
22508 \begin_layout Standard
22509 \begin_inset Note Greyedout
22510 status open
22511
22512 \begin_layout Standard
22513
22514 \series bold
22515 Note:
22516 \series default
22517  Margin notes can normally not be used inside tables, floats, and footnotes.
22518 \end_layout
22519
22520 \end_inset
22521
22522
22523 \end_layout
22524
22525 \begin_layout Standard
22526 This restriction can be evaded by using the LaTeX-package 
22527 \series bold
22528 marginnote
22529 \series default
22530
22531 \begin_inset LatexCommand index
22532 name "LaTeX-packages ! marginnote"
22533
22534 \end_inset
22535
22536 .
22537  By adding these two lines to your document preamble, the command used by
22538  LyX for margin notes is redefined to use the command provided by the 
22539 \series bold
22540 marginnote
22541 \series default
22542 -package:
22543 \end_layout
22544
22545 \begin_layout Standard
22546
22547 \series bold
22548
22549 \backslash
22550 usepackage{marginnote}
22551 \newline
22552
22553 \backslash
22554 let
22555 \backslash
22556 marginpar
22557 \backslash
22558 marginnote
22559 \end_layout
22560
22561 \begin_layout Standard
22562 This is also used in this document because 
22563 \series bold
22564 marginnote
22565 \series default
22566  has another useful feature: You can set a vertical offset for the note.
22567  This is often needed when too many margin notes are too close together
22568  or for a better page layout.
22569  The offset is set in LyX as ERT directly behind the margin note in the
22570  scheme
22571 \end_layout
22572
22573 \begin_layout Standard
22574
22575 \series bold
22576 [offset]
22577 \end_layout
22578
22579 \begin_layout Standard
22580 where the offset is a length with one of the units listed in Table\InsetSpace ~
22581
22582 \begin_inset LatexCommand ref
22583 reference "tab:Units"
22584
22585 \end_inset
22586
22587 .
22588  A negative value shifts the note up, a positive value shifts it down.
22589
22590 \family roman
22591 \series medium
22592  For example the margin note beside this text line is shifted up 1.5\InsetSpace \thinspace{}
22593 cm with
22594  the ERT-command 
22595 \begin_inset Quotes eld
22596 \end_inset
22597
22598
22599 \family default
22600 \series bold
22601 [-1.5cm]
22602 \family roman
22603 \series medium
22604
22605 \begin_inset Quotes erd
22606 \end_inset
22607
22608
22609 \begin_inset Marginal
22610 status open
22611
22612 \begin_layout Standard
22613 This margin note is shifted up 1.5\InsetSpace \thinspace{}
22614 cm from its original position.
22615 \end_layout
22616
22617 \end_inset
22618
22619
22620 \family default
22621 \series default
22622
22623 \begin_inset ERT
22624 status collapsed
22625
22626 \begin_layout Standard
22627
22628 [-1.5cm]
22629 \end_layout
22630
22631 \end_inset
22632
22633
22634 \end_layout
22635
22636 \begin_layout Standard
22637 \begin_inset VSpace defskip
22638 \end_inset
22639
22640 With 
22641 \series bold
22642 marginnote
22643 \series default
22644  you can also change the alignment of the text in the margin note.
22645  For example the commands
22646 \end_layout
22647
22648 \begin_layout Standard
22649
22650 \series bold
22651
22652 \backslash
22653 renewcommand*{
22654 \backslash
22655 raggedleftmarginnote}{
22656 \backslash
22657 centering}
22658 \newline
22659
22660 \backslash
22661 renewcommand*{
22662 \backslash
22663 raggedrightmarginnote}{
22664 \backslash
22665 centering}
22666 \end_layout
22667
22668 \begin_layout Standard
22669 set the alignment to centered.
22670  
22671 \series bold
22672
22673 \backslash
22674 raggedleftmarginnote
22675 \series default
22676  denotes margin notes that appear at the left side.
22677 \family roman
22678 \series medium
22679
22680 \begin_inset ERT
22681 status collapsed
22682
22683 \begin_layout Standard
22684
22685
22686 \backslash
22687 renewcommand*{
22688 \backslash
22689 raggedleftmarginnote}{
22690 \backslash
22691 centering}
22692 \end_layout
22693
22694 \begin_layout Standard
22695
22696
22697 \backslash
22698 renewcommand*{
22699 \backslash
22700 raggedrightmarginnote}{
22701 \backslash
22702 centering}
22703 \end_layout
22704
22705 \end_inset
22706
22707
22708 \begin_inset Marginal
22709 status open
22710
22711 \begin_layout Standard
22712 The text of this margin note is centered.
22713 \end_layout
22714
22715 \end_inset
22716
22717  
22718 \family default
22719 \series default
22720 The default is
22721 \end_layout
22722
22723 \begin_layout Standard
22724
22725 \series bold
22726
22727 \backslash
22728 renewcommand*{
22729 \backslash
22730 raggedleftmarginnote}{
22731 \backslash
22732 raggedleft}
22733 \newline
22734
22735 \backslash
22736 renewcommand*{
22737 \backslash
22738 raggedrightmarginnote}{
22739 \backslash
22740 raggedright}
22741 \family roman
22742 \series medium
22743
22744 \begin_inset ERT
22745 status collapsed
22746
22747 \begin_layout Standard
22748
22749
22750 \backslash
22751 renewcommand*{
22752 \backslash
22753 raggedleftmarginnote}{
22754 \backslash
22755 raggedleft}
22756 \end_layout
22757
22758 \begin_layout Standard
22759
22760
22761 \backslash
22762 renewcommand*{
22763 \backslash
22764 raggedrightmarginnote}{
22765 \backslash
22766 raggedright}
22767 \end_layout
22768
22769 \end_inset
22770
22771
22772 \end_layout
22773
22774 \begin_layout Standard
22775 \begin_inset VSpace defskip
22776 \end_inset
22777
22778 For the other features of 
22779 \series bold
22780 marginnote
22781 \series default
22782  we refer to its documentation 
22783 \begin_inset LatexCommand cite
22784 key "marginnote"
22785
22786 \end_inset
22787
22788 .
22789 \end_layout
22790
22791 \begin_layout Standard
22792 \begin_inset VSpace bigskip
22793 \end_inset
22794
22795 You can change the layout of margin notes by redefining its definition.
22796  To create for example a header for all margin notes with the underlined,
22797  sans-serif, and bold header text 
22798 \begin_inset Quotes eld
22799 \end_inset
22800
22801
22802 \family sans
22803 \series bold
22804 \bar under
22805 Attention!
22806 \family default
22807 \series default
22808 \bar default
22809
22810 \begin_inset Quotes erd
22811 \end_inset
22812
22813 , add this to your document preamble:
22814 \end_layout
22815
22816 \begin_layout Standard
22817
22818 \series bold
22819
22820 \backslash
22821 let
22822 \backslash
22823 myMarginpar
22824 \backslash
22825 marginpar
22826 \newline
22827
22828 \backslash
22829 renewcommand{
22830 \backslash
22831 marginpar}[1]{
22832 \backslash
22833 myMarginpar{%
22834 \newline
22835
22836 \begin_inset ERT
22837 status collapsed
22838
22839 \begin_layout Standard
22840
22841
22842 \backslash
22843 hphantom{ }
22844 \end_layout
22845
22846 \end_inset
22847
22848
22849 \backslash
22850 hspace{0pt}
22851 \backslash
22852 textsf{
22853 \backslash
22854 textbf{
22855 \backslash
22856 underbar{Attention!}}}%
22857 \newline
22858
22859 \begin_inset ERT
22860 status collapsed
22861
22862 \begin_layout Standard
22863
22864
22865 \backslash
22866 hphantom{ }
22867 \end_layout
22868
22869 \end_inset
22870
22871
22872 \backslash
22873 vspace{1.5mm}
22874 \backslash
22875
22876 \backslash
22877 #1}}
22878 \end_layout
22879
22880 \begin_layout Standard
22881
22882 \family roman
22883 \series medium
22884 \begin_inset ERT
22885 status collapsed
22886
22887 \begin_layout Standard
22888
22889
22890 \backslash
22891 let
22892 \backslash
22893 myMarginpar
22894 \backslash
22895 marginpar
22896 \end_layout
22897
22898 \begin_layout Standard
22899
22900
22901 \backslash
22902 renewcommand{
22903 \backslash
22904 marginpar}[1]{
22905 \backslash
22906 myMarginpar{%
22907 \end_layout
22908
22909 \begin_layout Standard
22910
22911    
22912 \backslash
22913 textsf{
22914 \backslash
22915 textbf{
22916 \backslash
22917 underbar{Attention!}}}%
22918 \end_layout
22919
22920 \begin_layout Standard
22921
22922    
22923 \backslash
22924 vspace{1.5mm}
22925 \backslash
22926
22927 \backslash
22928 #1}}
22929 \end_layout
22930
22931 \end_inset
22932
22933
22934 \begin_inset Marginal
22935 status open
22936
22937 \begin_layout Standard
22938 This is a margin note with a defined heading.
22939 \end_layout
22940
22941 \end_inset
22942
22943
22944 \family default
22945 \series default
22946
22947 \begin_inset ERT
22948 status collapsed
22949
22950 \begin_layout Standard
22951
22952 [-1.5cm]
22953 \end_layout
22954
22955 \end_inset
22956
22957
22958 \family roman
22959 \series medium
22960
22961 \begin_inset ERT
22962 status collapsed
22963
22964 \begin_layout Standard
22965
22966
22967 \backslash
22968 renewcommand{
22969 \backslash
22970 marginpar}[1]{
22971 \backslash
22972 myMarginpar{#1}}
22973 \end_layout
22974
22975 \end_inset
22976
22977
22978 \family default
22979 \series default
22980
22981 \begin_inset Note Note
22982 status open
22983
22984 \begin_layout Standard
22985 The margin note format is changed only for this example.
22986 \end_layout
22987
22988 \end_inset
22989
22990
22991 \end_layout
22992
22993 \begin_layout Chapter
22994 Boxes
22995 \end_layout
22996
22997 \begin_layout Section
22998 Introduction
22999 \begin_inset LatexCommand index
23000 name "Boxes ! Introduction"
23001
23002 \end_inset
23003
23004
23005 \end_layout
23006
23007 \begin_layout Standard
23008 Boxes are used to format a block of text.
23009  Boxes can be used to write documents with multiple languages, see section\InsetSpace ~
23010
23011 \begin_inset LatexCommand ref
23012 reference "sec:Minipages"
23013
23014 \end_inset
23015
23016 , to frame texts, see section\InsetSpace ~
23017
23018 \begin_inset LatexCommand ref
23019 reference "sec:Framed-Boxes"
23020
23021 \end_inset
23022
23023 , to prevent words to be hyphenated, see section\InsetSpace ~
23024
23025 \begin_inset LatexCommand ref
23026 reference "sec:Prevent-Hyphenation"
23027
23028 \end_inset
23029
23030 , to align text, see section\InsetSpace ~
23031
23032 \begin_inset LatexCommand ref
23033 reference "sub:Vertical-Alignment"
23034
23035 \end_inset
23036
23037 , or to set the background color of texts, see section\InsetSpace ~
23038
23039 \begin_inset LatexCommand ref
23040 reference "sec:Colored-Boxes"
23041
23042 \end_inset
23043
23044 .
23045 \end_layout
23046
23047 \begin_layout Standard
23048 Boxes can be inserted with the menu 
23049 \family sans
23050 Insert\SpecialChar \menuseparator
23051 Box
23052 \family default
23053 .
23054  A grey box with the label 
23055 \family sans
23056 Box (Minipage)
23057 \family default
23058
23059 \begin_inset Graphics
23060         filename ../clipart/BoxInsetDefaultQt4.png
23061         scale 85
23062
23063 \end_inset
23064
23065 , will be inserted.
23066  The box type can be specified by right-clicking on the box.
23067  The appearing box dialog offers the 
23068 \family sans
23069 Inner\InsetSpace ~
23070 Box
23071 \family default
23072  types 
23073 \family sans
23074 Parbox
23075 \family default
23076  and 
23077 \family sans
23078 Minipage
23079 \family default
23080 .
23081  The type 
23082 \family sans
23083 Minipage
23084 \family default
23085  is the default for new boxes and is explained in section\InsetSpace ~
23086
23087 \begin_inset LatexCommand ref
23088 reference "sec:Minipages"
23089
23090 \end_inset
23091
23092 ; the type 
23093 \family sans
23094 Parbox
23095 \family default
23096  is described in section\InsetSpace ~
23097
23098 \begin_inset LatexCommand ref
23099 reference "sec:Parboxes"
23100
23101 \end_inset
23102
23103 .
23104 \end_layout
23105
23106 \begin_layout Standard
23107 Boxes aren't numbered and can therefore not be referenced like floats or
23108  footnotes.
23109 \end_layout
23110
23111 \begin_layout Standard
23112 \begin_inset Note Greyedout
23113 status open
23114
23115 \begin_layout Standard
23116
23117 \series bold
23118 Note:
23119 \series default
23120  Due to a bug in LyX you have to insert a protected space behind a box when
23121  you want to separate in a line the box from the following text with a space.
23122 \end_layout
23123
23124 \end_inset
23125
23126
23127 \end_layout
23128
23129 \begin_layout Standard
23130 \begin_inset Note Greyedout
23131 status open
23132
23133 \begin_layout Standard
23134
23135 \series bold
23136 Note:
23137 \series default
23138  Boxes must not be the item in an 
23139 \family sans
23140 Itemize
23141 \family default
23142  or 
23143 \family sans
23144 Description
23145 \family default
23146  environment.
23147 \end_layout
23148
23149 \end_inset
23150
23151
23152 \end_layout
23153
23154 \begin_layout Standard
23155 \begin_inset Note Greyedout
23156 status open
23157
23158 \begin_layout Standard
23159
23160 \series bold
23161 Note:
23162 \series default
23163  For an unknown reason you can only set the 
23164 \family sans
23165 Inner\InsetSpace ~
23166 Box
23167 \family default
23168  type to 
23169 \family sans
23170 None
23171 \family default
23172  when you use a framed box.
23173  Boxes without an 
23174 \family sans
23175 Inner\InsetSpace ~
23176 Box
23177 \family default
23178  type and without frames are explained in section\InsetSpace ~
23179
23180 \begin_inset LatexCommand ref
23181 reference "sec:Prevent-Hyphenation"
23182
23183 \end_inset
23184
23185 .
23186 \end_layout
23187
23188 \end_inset
23189
23190
23191 \end_layout
23192
23193 \begin_layout Section
23194 Box Dialog
23195 \begin_inset LatexCommand label
23196 name "sec:Box-Dialog"
23197
23198 \end_inset
23199
23200
23201 \begin_inset LatexCommand index
23202 name "Boxes ! Box Dialog"
23203
23204 \end_inset
23205
23206
23207 \begin_inset LatexCommand index
23208 name "Boxes ! Alignment"
23209
23210 \end_inset
23211
23212
23213 \end_layout
23214
23215 \begin_layout Standard
23216 In the box dialog you can adjust the box geometry in the fields 
23217 \family sans
23218 Width
23219 \family default
23220  and 
23221 \family sans
23222 Height
23223 \family default
23224 .
23225  The available units for the geometry are explained in Table\InsetSpace ~
23226
23227 \begin_inset LatexCommand ref
23228 reference "tab:Units"
23229
23230 \end_inset
23231
23232 .
23233  The field 
23234 \family sans
23235 Heigth
23236 \family default
23237  offers the following additional sizes:
23238 \end_layout
23239
23240 \begin_layout Description
23241 Depth This is the plain text 
23242 \begin_inset Quotes eld
23243 \end_inset
23244
23245 height
23246 \begin_inset Quotes erd
23247 \end_inset
23248
23249 .
23250  It ignores the total depth when there are multiple text lines in the box:
23251 \newline
23252
23253 \newline
23254
23255 \newline
23256
23257 \begin_inset Box Boxed
23258 position "c"
23259 hor_pos "c"
23260 has_inner_box 1
23261 inner_pos "c"
23262 use_parbox 0
23263 width "12col%"
23264 special "none"
23265 height "1in"
23266 height_special "depth"
23267 status collapsed
23268
23269 \begin_layout Standard
23270 \align center
23271 Box height set to 1\InsetSpace \thinspace{}
23272 Depth
23273 \end_layout
23274
23275 \end_inset
23276
23277
23278 \newline
23279
23280 \newline
23281
23282 \end_layout
23283
23284 \begin_layout Description
23285 Height This is the heigth of the text that is inside the box.
23286  A value of e.\InsetSpace \thinspace{}
23287 g.\InsetSpace ~
23288 2 for this size will set the box heigth to 2 times the text
23289  height: 
23290 \begin_inset Box Boxed
23291 position "c"
23292 hor_pos "c"
23293 has_inner_box 1
23294 inner_pos "c"
23295 use_parbox 0
23296 width "20col%"
23297 special "none"
23298 height "2in"
23299 height_special "height"
23300 status collapsed
23301
23302 \begin_layout Standard
23303 \align center
23304 Box height set to 2\InsetSpace \thinspace{}
23305 Height
23306 \end_layout
23307
23308 \end_inset
23309
23310
23311 \end_layout
23312
23313 \begin_layout Description
23314 Total\InsetSpace ~
23315 Height This is the Height\InsetSpace \thinspace{}
23316 +\InsetSpace \thinspace{}
23317 Depth: 
23318 \begin_inset Box Boxed
23319 position "c"
23320 hor_pos "c"
23321 has_inner_box 1
23322 inner_pos "c"
23323 use_parbox 0
23324 width "20col%"
23325 special "none"
23326 height "1in"
23327 height_special "totalheight"
23328 status collapsed
23329
23330 \begin_layout Standard
23331 \align center
23332 Box height set to 1\InsetSpace \thinspace{}
23333 Total\InsetSpace ~
23334 Height
23335 \end_layout
23336
23337 \end_inset
23338
23339
23340 \end_layout
23341
23342 \begin_layout Description
23343 Width This set the width of the box as heigth: 
23344 \begin_inset Box Boxed
23345 position "c"
23346 hor_pos "c"
23347 has_inner_box 1
23348 inner_pos "c"
23349 use_parbox 0
23350 width "12col%"
23351 special "none"
23352 height "1in"
23353 height_special "width"
23354 status collapsed
23355
23356 \begin_layout Standard
23357 \align center
23358 Box height set to 1\InsetSpace \thinspace{}
23359 Width
23360 \end_layout
23361
23362 \end_inset
23363
23364
23365 \end_layout
23366
23367 \begin_layout Standard
23368 \begin_inset VSpace bigskip
23369 \end_inset
23370
23371 When you have chosen an 
23372 \family sans
23373 Inner\InsetSpace ~
23374 Box
23375 \family default
23376 , the vertical box alignment can be:
23377 \end_layout
23378
23379 \begin_layout Description
23380 Top This is an example text line.
23381  
23382 \begin_inset Box Boxed
23383 position "t"
23384 hor_pos "c"
23385 has_inner_box 1
23386 inner_pos "c"
23387 use_parbox 0
23388 width "12col%"
23389 special "none"
23390 height "1in"
23391 height_special "totalheight"
23392 status collapsed
23393
23394 \begin_layout Standard
23395 \align center
23396 This box is top-aligned.
23397 \end_layout
23398
23399 \end_inset
23400
23401 \InsetSpace ~
23402 This is an example text line.
23403 \end_layout
23404
23405 \begin_layout Description
23406 Middle This is an example text line.
23407  
23408 \begin_inset Box Boxed
23409 position "c"
23410 hor_pos "c"
23411 has_inner_box 1
23412 inner_pos "c"
23413 use_parbox 0
23414 width "12col%"
23415 special "none"
23416 height "1in"
23417 height_special "totalheight"
23418 status collapsed
23419
23420 \begin_layout Standard
23421 \align center
23422 This box is middle-aligned.
23423 \end_layout
23424
23425 \end_inset
23426
23427 \InsetSpace ~
23428 This is an example text line.
23429 \end_layout
23430
23431 \begin_layout Description
23432 Bottom This is an example text line.
23433  
23434 \begin_inset Box Boxed
23435 position "b"
23436 hor_pos "c"
23437 has_inner_box 1
23438 inner_pos "c"
23439 use_parbox 0
23440 width "12col%"
23441 special "none"
23442 height "1in"
23443 height_special "totalheight"
23444 status collapsed
23445
23446 \begin_layout Standard
23447 \align center
23448 This box is bottom-aligned.
23449 \end_layout
23450
23451 \end_inset
23452
23453 \InsetSpace ~
23454 This is an example text line.
23455 \end_layout
23456
23457 \begin_layout Standard
23458 The horizontal box alignment can be set via LyX's paragraph dialog when
23459  you set the box into its own paragraph.
23460 \end_layout
23461
23462 \begin_layout Standard
23463 \begin_inset VSpace bigskip
23464 \end_inset
23465
23466 When you have chosen an 
23467 \family sans
23468 Inner\InsetSpace ~
23469 Box
23470 \family default
23471 , the box content can be vertical aligned to:
23472 \end_layout
23473
23474 \begin_layout Description
23475 top This is an example text line.
23476  
23477 \begin_inset Box Boxed
23478 position "c"
23479 hor_pos "c"
23480 has_inner_box 1
23481 inner_pos "t"
23482 use_parbox 0
23483 width "12col%"
23484 special "none"
23485 height "1.5in"
23486 height_special "totalheight"
23487 status collapsed
23488
23489 \begin_layout Standard
23490 \align center
23491 This box text is top-aligned.
23492 \end_layout
23493
23494 \end_inset
23495
23496 \InsetSpace ~
23497 This is an example text line.
23498 \end_layout
23499
23500 \begin_layout Description
23501 middle This is an example text line.
23502  
23503 \begin_inset Box Boxed
23504 position "c"
23505 hor_pos "c"
23506 has_inner_box 1
23507 inner_pos "c"
23508 use_parbox 0
23509 width "12col%"
23510 special "none"
23511 height "1.5in"
23512 height_special "totalheight"
23513 status collapsed
23514
23515 \begin_layout Standard
23516 \align center
23517 This box text is middle-aligned.
23518 \end_layout
23519
23520 \end_inset
23521
23522 \InsetSpace ~
23523 This is an example text line.
23524 \end_layout
23525
23526 \begin_layout Description
23527 bottom This is an example text line.
23528  
23529 \begin_inset Box Boxed
23530 position "c"
23531 hor_pos "c"
23532 has_inner_box 1
23533 inner_pos "b"
23534 use_parbox 0
23535 width "12col%"
23536 special "none"
23537 height "1.5in"
23538 height_special "totalheight"
23539 status collapsed
23540
23541 \begin_layout Standard
23542 \align center
23543 This box text is bottom-aligned.
23544 \end_layout
23545
23546 \end_inset
23547
23548 \InsetSpace ~
23549 This is an example text line.
23550 \end_layout
23551
23552 \begin_layout Description
23553 stretch This is an example text line.
23554  
23555 \begin_inset Box Boxed
23556 position "c"
23557 hor_pos "c"
23558 has_inner_box 1
23559 inner_pos "s"
23560 use_parbox 0
23561 width "12col%"
23562 special "none"
23563 height "1.5in"
23564 height_special "totalheight"
23565 status collapsed
23566
23567 \begin_layout Standard
23568 \align center
23569 This box
23570 \end_layout
23571
23572 \begin_layout Standard
23573 \align center
23574 text is
23575 \end_layout
23576
23577 \begin_layout Standard
23578 \align center
23579 stretched.
23580 \end_layout
23581
23582 \end_inset
23583
23584 \InsetSpace ~
23585 This is an example text line.
23586 \end_layout
23587
23588 \begin_layout Standard
23589 To stretch the box content, it must consist of more than one paragraph.
23590  In the example above every text line is in an own paragraph.
23591 \end_layout
23592
23593 \begin_layout Standard
23594 \begin_inset VSpace bigskip
23595 \end_inset
23596
23597 To align the box content horizontally you can use LyX's paragraph dialog
23598  when you have chosen an 
23599 \family sans
23600 Inner\InsetSpace ~
23601 Box
23602 \family default
23603 .
23604 \end_layout
23605
23606 \begin_layout Standard
23607 \align center
23608 \begin_inset Box Boxed
23609 position "c"
23610 hor_pos "c"
23611 has_inner_box 1
23612 inner_pos "s"
23613 use_parbox 0
23614 width "15col%"
23615 special "none"
23616 height "1.25in"
23617 height_special "totalheight"
23618 status collapsed
23619
23620 \begin_layout Standard
23621 \align left
23622 This box
23623 \end_layout
23624
23625 \begin_layout Standard
23626 \align center
23627 text is
23628 \end_layout
23629
23630 \begin_layout Standard
23631 \align right
23632 stretched.
23633 \end_layout
23634
23635 \end_inset
23636
23637
23638 \end_layout
23639
23640 \begin_layout Standard
23641 If you haven't set an 
23642 \family sans
23643 Inner\InsetSpace ~
23644 Box
23645 \family default
23646 , you can align the box content horizontally in the box dialog.
23647 \end_layout
23648
23649 \begin_layout Standard
23650 \align center
23651 \begin_inset Box Boxed
23652 position "c"
23653 hor_pos "s"
23654 has_inner_box 0
23655 inner_pos "s"
23656 use_parbox 0
23657 width "90col%"
23658 special "none"
23659 height "1.25in"
23660 height_special "totalheight"
23661 status collapsed
23662
23663 \begin_layout Standard
23664 \align left
23665 This box text is horizontally stretched.
23666 \end_layout
23667
23668 \end_inset
23669
23670
23671 \end_layout
23672
23673 \begin_layout Section
23674 Framed Boxes
23675 \begin_inset LatexCommand label
23676 name "sec:Framed-Boxes"
23677
23678 \end_inset
23679
23680
23681 \begin_inset LatexCommand index
23682 name "Boxes ! Frames"
23683
23684 \end_inset
23685
23686
23687 \end_layout
23688
23689 \begin_layout Standard
23690 The frame style of the box can be specified in the box-dialog in the drop-down
23691  list 
23692 \family sans
23693 Type
23694 \family default
23695 .
23696  The following frame types are possible:
23697 \end_layout
23698
23699 \begin_layout Description
23700 Rectangular\InsetSpace ~
23701 box This draws a rectangle frame around the box.
23702  The frame line thickness has the size of 
23703 \series bold
23704
23705 \backslash
23706 fboxrule
23707 \series default
23708 .
23709  
23710 \begin_inset Box Boxed
23711 position "c"
23712 hor_pos "c"
23713 has_inner_box 1
23714 inner_pos "c"
23715 use_parbox 0
23716 width "20col%"
23717 special "none"
23718 height "1in"
23719 height_special "totalheight"
23720 status collapsed
23721
23722 \begin_layout Standard
23723 \align center
23724 Rectangular box
23725 \end_layout
23726
23727 \end_inset
23728
23729
23730 \end_layout
23731
23732 \begin_layout Description
23733 Oval\InsetSpace ~
23734 box,\InsetSpace ~
23735 thin This draws an oval frame around the box.
23736  The frame line thickness has the size 0.4\InsetSpace \thinspace{}
23737 pt.
23738  
23739 \begin_inset Box ovalbox
23740 position "c"
23741 hor_pos "c"
23742 has_inner_box 1
23743 inner_pos "c"
23744 use_parbox 0
23745 width "20col%"
23746 special "none"
23747 height "1in"
23748 height_special "totalheight"
23749 status collapsed
23750
23751 \begin_layout Standard
23752 \align center
23753 Oval box, thin
23754 \end_layout
23755
23756 \end_inset
23757
23758
23759 \end_layout
23760
23761 \begin_layout Description
23762 Oval\InsetSpace ~
23763 box,\InsetSpace ~
23764 thick This draws an oval frame around the box.
23765  The frame line thickness has the size 0.8\InsetSpace \thinspace{}
23766 pt.
23767  
23768 \begin_inset Box Ovalbox
23769 position "c"
23770 hor_pos "c"
23771 has_inner_box 1
23772 inner_pos "c"
23773 use_parbox 0
23774 width "20col%"
23775 special "none"
23776 height "1in"
23777 height_special "totalheight"
23778 status collapsed
23779
23780 \begin_layout Standard
23781 \align center
23782 Oval box, thick
23783 \end_layout
23784
23785 \end_inset
23786
23787
23788 \end_layout
23789
23790 \begin_layout Description
23791 Shadow\InsetSpace ~
23792 box This draws a rectangle frame with a shadow around the box.
23793  The frame line thickness has the size of 
23794 \series bold
23795
23796 \backslash
23797 fboxrule
23798 \series default
23799 , the shadow has a width of 4\InsetSpace \thinspace{}
23800 pt.
23801  
23802 \begin_inset Box Shadowbox
23803 position "c"
23804 hor_pos "c"
23805 has_inner_box 1
23806 inner_pos "c"
23807 use_parbox 0
23808 width "20col%"
23809 special "none"
23810 height "1in"
23811 height_special "totalheight"
23812 status collapsed
23813
23814 \begin_layout Standard
23815 \align center
23816 Shadow box
23817 \end_layout
23818
23819 \end_inset
23820
23821
23822 \end_layout
23823
23824 \begin_layout Description
23825 Double\InsetSpace ~
23826 box This draws a double-line rectangle frame around the box.
23827  The line thickness of the inner frame is 0.75\InsetSpace \thinspace{}
23828
23829 \series bold
23830
23831 \backslash
23832 fboxrule
23833 \series default
23834 , the thickness of the outer frame is 1.5\InsetSpace \thinspace{}
23835
23836 \series bold
23837
23838 \backslash
23839 fboxrule
23840 \series default
23841 .
23842  The distance between the lines is 1.5\InsetSpace \thinspace{}
23843
23844 \series bold
23845
23846 \backslash
23847 fboxrule
23848 \series default
23849 \InsetSpace \thinspace{}
23850 +\InsetSpace \thinspace{}
23851 0.5\InsetSpace \thinspace{}
23852 pt.
23853  
23854 \begin_inset Box Doublebox
23855 position "c"
23856 hor_pos "c"
23857 has_inner_box 1
23858 inner_pos "c"
23859 use_parbox 0
23860 width "20col%"
23861 special "none"
23862 height "1in"
23863 height_special "totalheight"
23864 status collapsed
23865
23866 \begin_layout Standard
23867 \align center
23868 Double box
23869 \end_layout
23870
23871 \end_inset
23872
23873
23874 \end_layout
23875
23876 \begin_layout Standard
23877 \begin_inset VSpace bigskip
23878 \end_inset
23879
23880 LyX's box label will change to the used frame style when you set a frame.
23881  To be able to use the different frame styles, the LaTeX-package 
23882 \series bold
23883 fancybox
23884 \series default
23885
23886 \begin_inset LatexCommand index
23887 name "LaTeX-packages ! fancybox"
23888
23889 \end_inset
23890
23891  must be installed.
23892 \end_layout
23893
23894 \begin_layout Standard
23895 \begin_inset VSpace bigskip
23896 \end_inset
23897
23898 The default value for the size 
23899 \series bold
23900
23901 \backslash
23902 fboxrule
23903 \series default
23904  is 0.4\InsetSpace \thinspace{}
23905 pt.
23906  It can be changed with the following command in ERT to e.\InsetSpace \thinspace{}
23907 g.\InsetSpace ~
23908 2\InsetSpace \thinspace{}
23909 pt:
23910 \end_layout
23911
23912 \begin_layout Standard
23913
23914 \series bold
23915
23916 \backslash
23917 setlength{
23918 \backslash
23919 fboxrule}{2pt}
23920 \end_layout
23921
23922 \begin_layout Standard
23923 \begin_inset ERT
23924 status collapsed
23925
23926 \begin_layout Standard
23927
23928
23929 \backslash
23930 setlength{
23931 \backslash
23932 fboxrule}{2pt}
23933 \end_layout
23934
23935 \end_inset
23936
23937
23938 \begin_inset Box Boxed
23939 position "c"
23940 hor_pos "c"
23941 has_inner_box 1
23942 inner_pos "c"
23943 use_parbox 0
23944 width "25col%"
23945 special "none"
23946 height "1in"
23947 height_special "totalheight"
23948 status collapsed
23949
23950 \begin_layout Standard
23951 \align center
23952 Rectangular box with 
23953 \series bold
23954
23955 \backslash
23956 fboxrule
23957 \series default
23958 \InsetSpace \thinspace{}
23959 =\InsetSpace \thinspace{}
23960 2\InsetSpace \thinspace{}
23961 pt
23962 \end_layout
23963
23964 \end_inset
23965
23966
23967 \begin_inset ERT
23968 status collapsed
23969
23970 \begin_layout Standard
23971
23972
23973 \backslash
23974 setlength{
23975 \backslash
23976 fboxrule}{0.4pt}
23977 \end_layout
23978
23979 \end_inset
23980
23981
23982 \end_layout
23983
23984 \begin_layout Standard
23985 \begin_inset VSpace bigskip
23986 \end_inset
23987
23988 The space between the frame and the box content is for all frame styles
23989  by default 3\InsetSpace \thinspace{}
23990 pt.
23991  You can change it by setting the length 
23992 \series bold
23993
23994 \backslash
23995 fboxsep
23996 \series default
23997  to another value.
23998  For example the command
23999 \end_layout
24000
24001 \begin_layout Standard
24002
24003 \series bold
24004
24005 \backslash
24006 setlength{
24007 \backslash
24008 fboxsep}{10pt}
24009 \end_layout
24010
24011 \begin_layout Standard
24012 sets the value to 10\InsetSpace \thinspace{}
24013 pt, like for the following box:
24014 \end_layout
24015
24016 \begin_layout Standard
24017 \begin_inset ERT
24018 status collapsed
24019
24020 \begin_layout Standard
24021
24022
24023 \backslash
24024 setlength{
24025 \backslash
24026 fboxsep}{10pt}
24027 \end_layout
24028
24029 \end_inset
24030
24031
24032 \begin_inset Box Boxed
24033 position "c"
24034 hor_pos "c"
24035 has_inner_box 1
24036 inner_pos "c"
24037 use_parbox 0
24038 width "25col%"
24039 special "none"
24040 height "1in"
24041 height_special "totalheight"
24042 status collapsed
24043
24044 \begin_layout Standard
24045 \align center
24046 Rectangular box with 
24047 \series bold
24048
24049 \backslash
24050 fboxsep
24051 \series default
24052 \InsetSpace \thinspace{}
24053 =\InsetSpace \thinspace{}
24054 10\InsetSpace \thinspace{}
24055 pt
24056 \end_layout
24057
24058 \end_inset
24059
24060
24061 \begin_inset ERT
24062 status collapsed
24063
24064 \begin_layout Standard
24065
24066
24067 \backslash
24068 setlength{
24069 \backslash
24070 fboxsep}{3pt}
24071 \end_layout
24072
24073 \end_inset
24074
24075
24076 \end_layout
24077
24078 \begin_layout Standard
24079 \begin_inset VSpace bigskip
24080 \end_inset
24081
24082 The diameter of the round corners of the oval boxes can be set with the
24083  command 
24084 \series bold
24085
24086 \backslash
24087 cornersize
24088 \series default
24089 .
24090  The command
24091 \end_layout
24092
24093 \begin_layout Standard
24094
24095 \series bold
24096
24097 \backslash
24098 cornersize*{1cm}
24099 \end_layout
24100
24101 \begin_layout Standard
24102 sets the diameter to 1\InsetSpace \thinspace{}
24103 cm.
24104  The command
24105 \end_layout
24106
24107 \begin_layout Standard
24108
24109 \series bold
24110
24111 \backslash
24112 cornersize{num}
24113 \end_layout
24114
24115 \begin_layout Standard
24116 sets the diameter to 
24117 \family sans
24118 num\InsetSpace \thinspace{}
24119 ×\InsetSpace \thinspace{}
24120 minimum(width and heigth of box)
24121 \family default
24122 .
24123  The default is 
24124 \series bold
24125
24126 \backslash
24127 cornersize{0.5}
24128 \series default
24129 .
24130 \end_layout
24131
24132 \begin_layout Standard
24133 \begin_inset ERT
24134 status collapsed
24135
24136 \begin_layout Standard
24137
24138
24139 \backslash
24140 cornersize*{1.5cm}
24141 \end_layout
24142
24143 \end_inset
24144
24145
24146 \begin_inset Box Ovalbox
24147 position "c"
24148 hor_pos "c"
24149 has_inner_box 1
24150 inner_pos "c"
24151 use_parbox 0
24152 width "25col%"
24153 special "none"
24154 height "1in"
24155 height_special "totalheight"
24156 status collapsed
24157
24158 \begin_layout Standard
24159 \align center
24160 Oval box with 
24161 \series bold
24162
24163 \backslash
24164 cornersize
24165 \series default
24166 \InsetSpace \thinspace{}
24167 =\InsetSpace \thinspace{}
24168 1.5\InsetSpace \thinspace{}
24169 cm
24170 \end_layout
24171
24172 \end_inset
24173
24174
24175 \begin_inset ERT
24176 status collapsed
24177
24178 \begin_layout Standard
24179
24180
24181 \backslash
24182 cornersize{0.5}
24183 \end_layout
24184
24185 \end_inset
24186
24187
24188 \end_layout
24189
24190 \begin_layout Standard
24191 \begin_inset VSpace bigskip
24192 \end_inset
24193
24194 The size of the shadow can be adjusted by changing the length 
24195 \series bold
24196
24197 \backslash
24198 shadowsize
24199 \series default
24200 .
24201  It it set to 2\InsetSpace \thinspace{}
24202 pt for the following box by this command:
24203 \end_layout
24204
24205 \begin_layout Standard
24206
24207 \series bold
24208
24209 \backslash
24210 setlength{
24211 \backslash
24212 shadowsize}{2pt}
24213 \end_layout
24214
24215 \begin_layout Standard
24216 \begin_inset ERT
24217 status collapsed
24218
24219 \begin_layout Standard
24220
24221
24222 \backslash
24223 setlength{
24224 \backslash
24225 shadowsize}{2pt}
24226 \end_layout
24227
24228 \end_inset
24229
24230
24231 \begin_inset Box Shadowbox
24232 position "c"
24233 hor_pos "c"
24234 has_inner_box 1
24235 inner_pos "c"
24236 use_parbox 0
24237 width "25col%"
24238 special "none"
24239 height "1in"
24240 height_special "totalheight"
24241 status collapsed
24242
24243 \begin_layout Standard
24244 \align center
24245 Shadow box with 
24246 \series bold
24247
24248 \backslash
24249 shadowsize
24250 \series default
24251 \InsetSpace \thinspace{}
24252 =\InsetSpace \thinspace{}
24253 2\InsetSpace \thinspace{}
24254 pt
24255 \end_layout
24256
24257 \end_inset
24258
24259
24260 \begin_inset ERT
24261 status collapsed
24262
24263 \begin_layout Standard
24264
24265
24266 \backslash
24267 setlength{
24268 \backslash
24269 shadowsize}{4pt}
24270 \end_layout
24271
24272 \end_inset
24273
24274
24275 \end_layout
24276
24277 \begin_layout Standard
24278 \begin_inset VSpace bigskip
24279 \end_inset
24280
24281 Changed lengths and widths are valid for all boxes following the commands
24282  that change them.
24283 \end_layout
24284
24285 \begin_layout Section
24286 Minipages
24287 \begin_inset LatexCommand label
24288 name "sec:Minipages"
24289
24290 \end_inset
24291
24292
24293 \begin_inset LatexCommand index
24294 name "Boxes ! Minipages"
24295
24296 \end_inset
24297
24298
24299 \end_layout
24300
24301 \begin_layout Standard
24302 Minipages are treated by LaTeX as pages within pages and can therefore for
24303  example have their own footnotes.
24304 \end_layout
24305
24306 \begin_layout Standard
24307 Minipages are useful when you write documents with different languages.
24308 \end_layout
24309
24310 \begin_layout Standard
24311 Below are two example minipages side by side.
24312  Their width is set to 45\InsetSpace \thinspace{}
24313 col% and they are separated by a horizontal fill,
24314  that was inserted via the menu 
24315 \family sans
24316 Insert\SpecialChar \menuseparator
24317 Special\InsetSpace ~
24318 Formatting\SpecialChar \menuseparator
24319 Horizontal\InsetSpace ~
24320 Fill
24321 \family default
24322 .
24323 \end_layout
24324
24325 \begin_layout Standard
24326 \begin_inset Box Frameless
24327 position "t"
24328 hor_pos "c"
24329 has_inner_box 1
24330 inner_pos "c"
24331 use_parbox 0
24332 width "45col%"
24333 special "none"
24334 height "1in"
24335 height_special "totalheight"
24336 status open
24337
24338 \begin_layout Standard
24339
24340 \lang german
24341 Dies ist ein deutscher Text.
24342  Dies ist ein deutscher Text.
24343  Dies ist ein deutscher Text.
24344  Dies ist ein deutscher Text.
24345  Dies ist ein deutscher Text.
24346  Dies ist ein deutscher Text.
24347  Dies ist ein deutscher Text.
24348  Dies ist ein deutscher Text.
24349  Dies ist ein deutscher Text.
24350  Dies ist ein deutscher Text.
24351  Dies ist ein deutscher Text.
24352  Dies ist ein deutscher Text.
24353  Dies ist ein deutscher Text
24354 \begin_inset Foot
24355 status collapsed
24356
24357 \begin_layout Standard
24358
24359 \lang german
24360 Dies ist eine deutsche Fußnote.
24361 \end_layout
24362
24363 \end_inset
24364
24365 .
24366  Dies ist ein deutscher Text.
24367  Dies ist ein deutscher Text.
24368 \end_layout
24369
24370 \end_inset
24371
24372
24373 \hfill
24374
24375 \begin_inset Box Frameless
24376 position "t"
24377 hor_pos "c"
24378 has_inner_box 1
24379 inner_pos "c"
24380 use_parbox 0
24381 width "45col%"
24382 special "none"
24383 height "1in"
24384 height_special "totalheight"
24385 status open
24386
24387 \begin_layout Standard
24388 This is an English Text.
24389  This is an English Text.
24390  This is an English Text.
24391  This is an English Text.
24392  This is an English Text.
24393  This is an English Text.
24394  This is an English Text.
24395  This is an English Text.
24396  This is an English Text.
24397  This is an English Text.
24398  This is an English Text.
24399  This is an English Text.
24400  This is an English Text.
24401  This is an English Text.
24402  This is an English Text.
24403  This is an English Text.
24404 \begin_inset Foot
24405 status collapsed
24406
24407 \begin_layout Standard
24408 This is an English footnote.
24409 \end_layout
24410
24411 \end_inset
24412
24413  This is an English Text.
24414  
24415 \end_layout
24416
24417 \end_inset
24418
24419
24420 \end_layout
24421
24422 \begin_layout Standard
24423 \begin_inset VSpace bigskip
24424 \end_inset
24425
24426 Another application for minipages are footnotes within tables.
24427  Due to a LaTeX restriction footnotes within tables doesn't appear at the
24428  bottom of the current page.
24429  But when you put the table with the footnote to a minipage, the footnote
24430  will appear at its bottom, numbered with Latin letters.
24431  The footnote number is reset to 1 in every minipage but not outside the
24432  minipages.
24433 \end_layout
24434
24435 \begin_layout Standard
24436 The footnote of this table doesn't appear: 
24437 \begin_inset Tabular
24438 <lyxtabular version="3" rows="3" columns="4">
24439 <features>
24440 <column alignment="center" valignment="top" leftline="true" width="0pt">
24441 <column alignment="center" valignment="top" leftline="true" width="0pt">
24442 <column alignment="center" valignment="top" leftline="true" width="0pt">
24443 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0pt">
24444 <row topline="true">
24445 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24446 \begin_inset Text
24447
24448 \begin_layout Standard
24449 1
24450 \end_layout
24451
24452 \end_inset
24453 </cell>
24454 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24455 \begin_inset Text
24456
24457 \begin_layout Standard
24458 2
24459 \end_layout
24460
24461 \end_inset
24462 </cell>
24463 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24464 \begin_inset Text
24465
24466 \begin_layout Standard
24467 3
24468 \begin_inset Foot
24469 status collapsed
24470
24471 \begin_layout Standard
24472 This is a footnote within a table.
24473 \end_layout
24474
24475 \end_inset
24476
24477
24478 \end_layout
24479
24480 \end_inset
24481 </cell>
24482 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24483 \begin_inset Text
24484
24485 \begin_layout Standard
24486 4
24487 \end_layout
24488
24489 \end_inset
24490 </cell>
24491 </row>
24492 <row topline="true">
24493 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24494 \begin_inset Text
24495
24496 \begin_layout Standard
24497 a
24498 \end_layout
24499
24500 \end_inset
24501 </cell>
24502 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24503 \begin_inset Text
24504
24505 \begin_layout Standard
24506 b
24507 \end_layout
24508
24509 \end_inset
24510 </cell>
24511 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24512 \begin_inset Text
24513
24514 \begin_layout Standard
24515 c
24516 \end_layout
24517
24518 \end_inset
24519 </cell>
24520 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24521 \begin_inset Text
24522
24523 \begin_layout Standard
24524 d
24525 \end_layout
24526
24527 \end_inset
24528 </cell>
24529 </row>
24530 <row topline="true" bottomline="true">
24531 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24532 \begin_inset Text
24533
24534 \begin_layout Standard
24535 e
24536 \end_layout
24537
24538 \end_inset
24539 </cell>
24540 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24541 \begin_inset Text
24542
24543 \begin_layout Standard
24544 f
24545 \end_layout
24546
24547 \end_inset
24548 </cell>
24549 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24550 \begin_inset Text
24551
24552 \begin_layout Standard
24553 g
24554 \end_layout
24555
24556 \end_inset
24557 </cell>
24558 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24559 \begin_inset Text
24560
24561 \begin_layout Standard
24562 h
24563 \end_layout
24564
24565 \end_inset
24566 </cell>
24567 </row>
24568 </lyxtabular>
24569
24570 \end_inset
24571
24572
24573 \end_layout
24574
24575 \begin_layout Standard
24576 \align center
24577 \begin_inset Box Frameless
24578 position "t"
24579 hor_pos "c"
24580 has_inner_box 1
24581 inner_pos "c"
24582 use_parbox 0
24583 width "30col%"
24584 special "none"
24585 height "1in"
24586 height_special "totalheight"
24587 status open
24588
24589 \begin_layout Standard
24590 \align center
24591 \begin_inset Tabular
24592 <lyxtabular version="3" rows="3" columns="4">
24593 <features>
24594 <column alignment="center" valignment="top" leftline="true" width="0pt">
24595 <column alignment="center" valignment="top" leftline="true" width="0pt">
24596 <column alignment="center" valignment="top" leftline="true" width="0pt">
24597 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0pt">
24598 <row topline="true">
24599 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24600 \begin_inset Text
24601
24602 \begin_layout Standard
24603 1
24604 \end_layout
24605
24606 \end_inset
24607 </cell>
24608 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24609 \begin_inset Text
24610
24611 \begin_layout Standard
24612 2
24613 \end_layout
24614
24615 \end_inset
24616 </cell>
24617 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24618 \begin_inset Text
24619
24620 \begin_layout Standard
24621 3
24622 \begin_inset Foot
24623 status collapsed
24624
24625 \begin_layout Standard
24626 This is a footnote within a table.
24627 \end_layout
24628
24629 \end_inset
24630
24631
24632 \end_layout
24633
24634 \end_inset
24635 </cell>
24636 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24637 \begin_inset Text
24638
24639 \begin_layout Standard
24640 4
24641 \end_layout
24642
24643 \end_inset
24644 </cell>
24645 </row>
24646 <row topline="true">
24647 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24648 \begin_inset Text
24649
24650 \begin_layout Standard
24651 a
24652 \end_layout
24653
24654 \end_inset
24655 </cell>
24656 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24657 \begin_inset Text
24658
24659 \begin_layout Standard
24660 b
24661 \end_layout
24662
24663 \end_inset
24664 </cell>
24665 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24666 \begin_inset Text
24667
24668 \begin_layout Standard
24669 c
24670 \end_layout
24671
24672 \end_inset
24673 </cell>
24674 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24675 \begin_inset Text
24676
24677 \begin_layout Standard
24678 d
24679 \end_layout
24680
24681 \end_inset
24682 </cell>
24683 </row>
24684 <row topline="true" bottomline="true">
24685 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24686 \begin_inset Text
24687
24688 \begin_layout Standard
24689 e
24690 \end_layout
24691
24692 \end_inset
24693 </cell>
24694 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24695 \begin_inset Text
24696
24697 \begin_layout Standard
24698 f
24699 \end_layout
24700
24701 \end_inset
24702 </cell>
24703 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24704 \begin_inset Text
24705
24706 \begin_layout Standard
24707 g
24708 \end_layout
24709
24710 \end_inset
24711 </cell>
24712 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24713 \begin_inset Text
24714
24715 \begin_layout Standard
24716 h
24717 \end_layout
24718
24719 \end_inset
24720 </cell>
24721 </row>
24722 </lyxtabular>
24723
24724 \end_inset
24725
24726
24727 \end_layout
24728
24729 \end_inset
24730
24731
24732 \end_layout
24733
24734 \begin_layout Standard
24735 \begin_inset VSpace bigskip
24736 \end_inset
24737
24738 The document-wide paragraph settings are ignored within minipages.
24739  That means that there will be no space between paragraphs in minipages
24740  although you set it to e.\InsetSpace \thinspace{}
24741 g.\InsetSpace ~
24742
24743 \family sans
24744 MedSkip
24745 \family default
24746  in the document settings.
24747 \end_layout
24748
24749 \begin_layout Standard
24750 Minipages can also be used to set a background color for text parts, see
24751  section\InsetSpace ~
24752
24753 \begin_inset LatexCommand ref
24754 reference "sub:Color-for-Paragraphs"
24755
24756 \end_inset
24757
24758 .
24759 \end_layout
24760
24761 \begin_layout Standard
24762 \begin_inset Note Greyedout
24763 status open
24764
24765 \begin_layout Standard
24766
24767 \series bold
24768 Note:
24769 \series default
24770  You cannot have floats or margin notes inside minipages but minipages can
24771  be used inside tables, floats, and other boxes.
24772 \end_layout
24773
24774 \end_inset
24775
24776
24777 \end_layout
24778
24779 \begin_layout Section
24780 Parboxes
24781 \begin_inset LatexCommand label
24782 name "sec:Parboxes"
24783
24784 \end_inset
24785
24786
24787 \begin_inset LatexCommand index
24788 name "Boxes ! Parboxes"
24789
24790 \end_inset
24791
24792
24793 \end_layout
24794
24795 \begin_layout Standard
24796 Parboxes are very similar to minipages with the difference that they cannot
24797  have footnotes.
24798  The main difference to minipages is that minipages are in contrary to parboxes
24799  no real boxes but LaTeX-environments.
24800 \end_layout
24801
24802 \begin_layout Standard
24803 \align center
24804 \begin_inset Box Frameless
24805 position "t"
24806 hor_pos "c"
24807 has_inner_box 1
24808 inner_pos "t"
24809 use_parbox 1
24810 width "33col%"
24811 special "none"
24812 height "1in"
24813 height_special "totalheight"
24814 status collapsed
24815
24816 \begin_layout Standard
24817 This a text within a parbox.
24818  This a text within a parbox.
24819 \end_layout
24820
24821 \begin_layout Standard
24822 This footnote won't appear:
24823 \begin_inset Foot
24824 status collapsed
24825
24826 \begin_layout Standard
24827 This footnote is inside a parbox and will therefore not appear.
24828 \end_layout
24829
24830 \end_inset
24831
24832
24833 \end_layout
24834
24835 \end_inset
24836
24837
24838 \end_layout
24839
24840 \begin_layout Section
24841 Boxes for Words and Characters
24842 \begin_inset LatexCommand index
24843 name "Boxes ! for Characters"
24844
24845 \end_inset
24846
24847
24848 \end_layout
24849
24850 \begin_layout Subsection
24851 Prevent Hyphenation
24852 \begin_inset LatexCommand label
24853 name "sec:Prevent-Hyphenation"
24854
24855 \end_inset
24856
24857
24858 \begin_inset LatexCommand index
24859 name "Boxes ! to Prevent Hyphenation"
24860
24861 \end_inset
24862
24863
24864 \end_layout
24865
24866 \begin_layout Standard
24867 You can use a special kind of boxes to prevent words or text to be hyphenated.
24868 \newline
24869 Her
24870 e is an example text:
24871 \end_layout
24872
24873 \begin_layout Standard
24874 This line is an example to show how you can prevent the hyphenation of e.\InsetSpace \thinspace{}
24875 g.\InsetSpace ~
24876 veryver
24877 ylongwords.
24878 \end_layout
24879
24880 \begin_layout Standard
24881 To prevent the hyphenation of the word 
24882 \begin_inset Quotes eld
24883 \end_inset
24884
24885 veryverylongwords
24886 \begin_inset Quotes erd
24887 \end_inset
24888
24889 , add the command
24890 \end_layout
24891
24892 \begin_layout Standard
24893
24894 \series bold
24895
24896 \backslash
24897 mbox{
24898 \end_layout
24899
24900 \begin_layout Standard
24901 in ERT before the word.
24902  Behind the word insert a closing brace 
24903 \begin_inset Quotes eld
24904 \end_inset
24905
24906
24907 \series bold
24908 }
24909 \series default
24910
24911 \begin_inset Quotes erd
24912 \end_inset
24913
24914  in ERT.
24915 \begin_inset ERT
24916 status collapsed
24917
24918 \begin_layout Standard
24919
24920
24921 \backslash
24922 pagebreak 
24923 \end_layout
24924
24925 \end_inset
24926
24927
24928 \end_layout
24929
24930 \begin_layout Standard
24931 This is the result:
24932 \end_layout
24933
24934 \begin_layout Standard
24935 This line is an example to show how you can prevent the hyphenation of e.\InsetSpace \thinspace{}
24936 g.\InsetSpace ~
24937
24938 \begin_inset ERT
24939 status collapsed
24940
24941 \begin_layout Standard
24942
24943
24944 \backslash
24945 mbox{
24946 \end_layout
24947
24948 \end_inset
24949
24950 veryverylongwords.
24951 \begin_inset ERT
24952 status collapsed
24953
24954 \begin_layout Standard
24955
24956 }
24957 \end_layout
24958
24959 \end_inset
24960
24961
24962 \end_layout
24963
24964 \begin_layout Standard
24965 Of course the word now protrudes over the side margin.
24966  To avoid this, add via the menu 
24967 \family sans
24968 Insert\SpecialChar \menuseparator
24969 Special\InsetSpace ~
24970 Formatting\SpecialChar \menuseparator
24971 Line\InsetSpace ~
24972 Break
24973 \family default
24974  (shortcut 
24975 \series bold
24976 Ctrl-Return
24977 \series default
24978 ) a line break before the word:
24979 \end_layout
24980
24981 \begin_layout Standard
24982 This line is an example to show how you can prevent the hyphenation of e.\InsetSpace \thinspace{}
24983 g.\InsetSpace ~
24984
24985 \newline
24986
24987 \begin_inset ERT
24988 status collapsed
24989
24990 \begin_layout Standard
24991
24992
24993 \backslash
24994 mbox{
24995 \end_layout
24996
24997 \end_inset
24998
24999 veryverylongwords.
25000 \begin_inset ERT
25001 status collapsed
25002
25003 \begin_layout Standard
25004
25005 }
25006 \end_layout
25007
25008 \end_inset
25009
25010
25011 \end_layout
25012
25013 \begin_layout Subsection
25014 Vertical Alignment
25015 \begin_inset LatexCommand label
25016 name "sub:Vertical-Alignment"
25017
25018 \end_inset
25019
25020
25021 \begin_inset LatexCommand index
25022 name "Boxes ! for Vertical Alignment"
25023
25024 \end_inset
25025
25026
25027 \begin_inset LatexCommand index
25028 name "Boxes ! Raiseboxes"
25029
25030 \end_inset
25031
25032
25033 \end_layout
25034
25035 \begin_layout Standard
25036 With the help of the command 
25037 \series bold
25038
25039 \backslash
25040 raisebox
25041 \series default
25042  you can align words, characters or other boxes vertically to the surrounding
25043  text.
25044  
25045 \series bold
25046
25047 \backslash
25048 raisebox
25049 \series default
25050  is used with the following scheme:
25051 \end_layout
25052
25053 \begin_layout Standard
25054
25055 \series bold
25056
25057 \backslash
25058 raisebox{lift}[height][depth]{box content}
25059 \end_layout
25060
25061 \begin_layout Standard
25062 The lift can be a positive value to raise the box or a negative value to
25063  lower the box.
25064 \end_layout
25065
25066 \begin_layout Standard
25067 To align for example the word 
25068 \begin_inset Quotes eld
25069 \end_inset
25070
25071 preventing
25072 \begin_inset Quotes erd
25073 \end_inset
25074
25075  so that the bottom of the 
25076 \begin_inset Quotes eld
25077 \end_inset
25078
25079 deepest
25080 \begin_inset Quotes erd
25081 \end_inset
25082
25083  character 
25084 \begin_inset Quotes eld
25085 \end_inset
25086
25087 p
25088 \begin_inset Quotes erd
25089 \end_inset
25090
25091  is at the baseline, insert the command
25092 \end_layout
25093
25094 \begin_layout Standard
25095
25096 \series bold
25097
25098 \backslash
25099 raisebox{
25100 \backslash
25101 depth}{
25102 \end_layout
25103
25104 \begin_layout Standard
25105 in ERT before the word.
25106  Behind the word insert a closing brace 
25107 \begin_inset Quotes eld
25108 \end_inset
25109
25110
25111 \series bold
25112 }
25113 \series default
25114
25115 \begin_inset Quotes erd
25116 \end_inset
25117
25118  in ERT.
25119 \newline
25120 This is the result:
25121 \end_layout
25122
25123 \begin_layout Standard
25124 This is a text line with the word 
25125 \begin_inset ERT
25126 status collapsed
25127
25128 \begin_layout Standard
25129
25130
25131 \backslash
25132 raisebox{
25133 \backslash
25134 depth}{
25135 \end_layout
25136
25137 \end_inset
25138
25139
25140 \begin_inset Quotes eld
25141 \end_inset
25142
25143 preventing
25144 \begin_inset Quotes erd
25145 \end_inset
25146
25147
25148 \begin_inset ERT
25149 status collapsed
25150
25151 \begin_layout Standard
25152
25153 }
25154 \end_layout
25155
25156 \end_inset
25157
25158  as raised word.
25159 \end_layout
25160
25161 \begin_layout Standard
25162 \begin_inset VSpace bigskip
25163 \end_inset
25164
25165 When you raise or lower characters in a line, the line distance will be
25166  spread:
25167 \end_layout
25168
25169 \begin_layout Standard
25170 This is a text line with the word 
25171 \begin_inset ERT
25172 status collapsed
25173
25174 \begin_layout Standard
25175
25176
25177 \backslash
25178 raisebox{-
25179 \backslash
25180 depth}{
25181 \end_layout
25182
25183 \end_inset
25184
25185
25186 \begin_inset Quotes eld
25187 \end_inset
25188
25189 preventing
25190 \begin_inset Quotes erd
25191 \end_inset
25192
25193
25194 \begin_inset ERT
25195 status collapsed
25196
25197 \begin_layout Standard
25198
25199 }
25200 \end_layout
25201
25202 \end_inset
25203
25204  as lowered word.
25205 \newline
25206 This is a text line with the word 
25207 \begin_inset ERT
25208 status collapsed
25209
25210 \begin_layout Standard
25211
25212
25213 \backslash
25214 raisebox{0.5cm}{
25215 \end_layout
25216
25217 \end_inset
25218
25219
25220 \begin_inset Quotes eld
25221 \end_inset
25222
25223 testing
25224 \begin_inset Quotes erd
25225 \end_inset
25226
25227
25228 \begin_inset ERT
25229 status collapsed
25230
25231 \begin_layout Standard
25232
25233 }
25234 \end_layout
25235
25236 \end_inset
25237
25238  as raised word.
25239 \end_layout
25240
25241 \begin_layout Standard
25242 If you want to prevent this for a certain reason, set the box height to
25243  a zero value.
25244  For example use
25245 \end_layout
25246
25247 \begin_layout Standard
25248
25249 \series bold
25250
25251 \backslash
25252 raisebox{-
25253 \backslash
25254 depth}[0pt]{
25255 \end_layout
25256
25257 \begin_layout Standard
25258 This is a text line with the word 
25259 \begin_inset ERT
25260 status collapsed
25261
25262 \begin_layout Standard
25263
25264
25265 \backslash
25266 raisebox{-
25267 \backslash
25268 depth}[0pt]{
25269 \end_layout
25270
25271 \end_inset
25272
25273
25274 \begin_inset Quotes eld
25275 \end_inset
25276
25277 preventing
25278 \begin_inset Quotes erd
25279 \end_inset
25280
25281
25282 \begin_inset ERT
25283 status collapsed
25284
25285 \begin_layout Standard
25286
25287 }
25288 \end_layout
25289
25290 \end_inset
25291
25292  as lowered word.
25293 \newline
25294 This is a text line with the word 
25295 \begin_inset ERT
25296 status collapsed
25297
25298 \begin_layout Standard
25299
25300
25301 \backslash
25302 raisebox{0.5cm}[0pt]{
25303 \end_layout
25304
25305 \end_inset
25306
25307
25308 \begin_inset Quotes eld
25309 \end_inset
25310
25311 testing
25312 \begin_inset Quotes erd
25313 \end_inset
25314
25315
25316 \begin_inset ERT
25317 status collapsed
25318
25319 \begin_layout Standard
25320
25321 }
25322 \end_layout
25323
25324 \end_inset
25325
25326  as raised word.
25327 \end_layout
25328
25329 \begin_layout Section
25330 Colored Boxes
25331 \begin_inset LatexCommand label
25332 name "sec:Colored-Boxes"
25333
25334 \end_inset
25335
25336
25337 \begin_inset LatexCommand index
25338 name "Boxes ! Color"
25339
25340 \end_inset
25341
25342
25343 \end_layout
25344
25345 \begin_layout Subsection
25346 Color for Text
25347 \begin_inset LatexCommand index
25348 name "Color ! for Text"
25349
25350 \end_inset
25351
25352
25353 \end_layout
25354
25355 \begin_layout Standard
25356 To color the background of text the text must be put into a so called colorbox.
25357  This requires that the LaTeX-package 
25358 \series bold
25359 color
25360 \series default
25361
25362 \begin_inset LatexCommand index
25363 name "LaTeX-packages ! color"
25364
25365 \end_inset
25366
25367  is loaded in the document preamble with the command
25368 \end_layout
25369
25370 \begin_layout Standard
25371
25372 \series bold
25373
25374 \backslash
25375 @ifundef\SpecialChar \textcompwordmark{}
25376 ined{textcolor}
25377 \newline
25378
25379 \begin_inset ERT
25380 status collapsed
25381
25382 \begin_layout Standard
25383
25384
25385 \backslash
25386 hphantom{ }
25387 \end_layout
25388
25389 \end_inset
25390
25391 {
25392 \backslash
25393 usepackage{color}}{}
25394 \end_layout
25395
25396 \begin_layout Standard
25397 The package 
25398 \series bold
25399 color
25400 \series default
25401  will be loaded automatically by LyX when you color text
25402 \begin_inset Foot
25403 status collapsed
25404
25405 \begin_layout Standard
25406 To avoid that it is loaded twice the command 
25407 \series bold
25408
25409 \backslash
25410 @ifundef\SpecialChar \textcompwordmark{}
25411 ined
25412 \series default
25413  is used.
25414 \end_layout
25415
25416 \end_inset
25417
25418 .
25419 \end_layout
25420
25421 \begin_layout Standard
25422 \begin_inset VSpace medskip
25423 \end_inset
25424
25425 Colorboxes are created with the command 
25426 \series bold
25427
25428 \backslash
25429 colorbox
25430 \series default
25431 .
25432  This will be used with the following scheme:
25433 \end_layout
25434
25435 \begin_layout Standard
25436
25437 \series bold
25438
25439 \backslash
25440 colorbox{color}{box content}
25441 \end_layout
25442
25443 \begin_layout Standard
25444 The box content can also be a box and colorboxes can also be within other
25445  boxes.
25446 \end_layout
25447
25448 \begin_layout Standard
25449 The following colors are predefined:
25450 \newline
25451
25452 \family sans
25453 black
25454 \family default
25455
25456 \family sans
25457 blue
25458 \family default
25459
25460 \family sans
25461 cyan
25462 \family default
25463 \series bold
25464
25465 \family sans
25466 \series default
25467 green
25468 \family default
25469
25470 \family sans
25471 magenta
25472 \family default
25473
25474 \family sans
25475 red
25476 \family default
25477
25478 \family sans
25479 white
25480 \family default
25481 , and 
25482 \family sans
25483 yellow
25484 \family default
25485 .
25486 \newline
25487 You can also define your own color as described in section\InsetSpace ~
25488
25489 \begin_inset LatexCommand ref
25490 reference "sec:Colored-Tables"
25491
25492 \end_inset
25493
25494 .
25495 \end_layout
25496
25497 \begin_layout Standard
25498 To have e.\InsetSpace \thinspace{}
25499 g.\InsetSpace ~
25500 a red background for a word, insert the command
25501 \end_layout
25502
25503 \begin_layout Standard
25504
25505 \series bold
25506
25507 \backslash
25508 colorbox{red}{
25509 \end_layout
25510
25511 \begin_layout Standard
25512 before the word in ERT.
25513  Behind the word insert a closing brace 
25514 \begin_inset Quotes eld
25515 \end_inset
25516
25517
25518 \series bold
25519 }
25520 \series default
25521
25522 \begin_inset Quotes erd
25523 \end_inset
25524
25525  in ERT.
25526 \newline
25527 This is the result:
25528 \end_layout
25529
25530 \begin_layout Standard
25531 This is a line where the word 
25532 \begin_inset ERT
25533 status collapsed
25534
25535 \begin_layout Standard
25536
25537
25538 \backslash
25539 colorbox{red}{
25540 \end_layout
25541
25542 \end_inset
25543
25544
25545 \begin_inset Quotes eld
25546 \end_inset
25547
25548 Attention!
25549 \begin_inset Quotes erd
25550 \end_inset
25551
25552
25553 \begin_inset ERT
25554 status collapsed
25555
25556 \begin_layout Standard
25557
25558 }
25559 \end_layout
25560
25561 \end_inset
25562
25563  has a red background.
25564 \end_layout
25565
25566 \begin_layout Standard
25567 \begin_inset VSpace bigskip
25568 \end_inset
25569
25570 If you would have the box frame in a different color, you can use the command
25571  
25572 \series bold
25573
25574 \backslash
25575 fcolorbox
25576 \series default
25577  with the following scheme:
25578 \end_layout
25579
25580 \begin_layout Standard
25581
25582 \series bold
25583
25584 \backslash
25585 fcolorbox{frame color}{box color}{box content}
25586 \end_layout
25587
25588 \begin_layout Standard
25589
25590 \series bold
25591
25592 \backslash
25593 fcolorbox
25594 \series default
25595  is an extension to 
25596 \series bold
25597
25598 \backslash
25599 colorbox
25600 \series default
25601 .
25602  The frame thickness and the space between the frame and the box content
25603  can be adjusted with the lengths 
25604 \series bold
25605
25606 \backslash
25607 fboxrule
25608 \series default
25609  and 
25610 \series bold
25611
25612 \backslash
25613 fboxsep
25614 \series default
25615 , respectively, as described in section\InsetSpace ~
25616
25617 \begin_inset LatexCommand ref
25618 reference "sec:Framed-Boxes"
25619
25620 \end_inset
25621
25622 .
25623 \end_layout
25624
25625 \begin_layout Standard
25626 For the following example the command
25627 \end_layout
25628
25629 \begin_layout Standard
25630
25631 \series bold
25632
25633 \backslash
25634 fcolorbox{cyan}{magenta}{
25635 \end_layout
25636
25637 \begin_layout Standard
25638 was used.
25639 \end_layout
25640
25641 \begin_layout Standard
25642 Here is an example where the frame line thickness was set to 1\InsetSpace \thinspace{}
25643 mm:
25644 \newline
25645
25646 \begin_inset ERT
25647 status collapsed
25648
25649 \begin_layout Standard
25650
25651
25652 \backslash
25653 fboxrule 1mm 
25654 \backslash
25655 fboxsep 1mm
25656 \end_layout
25657
25658 \end_inset
25659
25660
25661 \begin_inset ERT
25662 status collapsed
25663
25664 \begin_layout Standard
25665
25666
25667 \backslash
25668 fcolorbox{cyan}{magenta}{
25669 \end_layout
25670
25671 \end_inset
25672
25673 This is text within a colored, framed box.
25674 \begin_inset ERT
25675 status collapsed
25676
25677 \begin_layout Standard
25678
25679 }
25680 \end_layout
25681
25682 \end_inset
25683
25684
25685 \end_layout
25686
25687 \begin_layout Standard
25688 \begin_inset VSpace bigskip
25689 \end_inset
25690
25691 Of course you can also have colored text inside a colorbox:
25692 \newline
25693
25694 \begin_inset ERT
25695 status collapsed
25696
25697 \begin_layout Standard
25698
25699
25700 \backslash
25701 fcolorbox{cyan}{magenta}{
25702 \end_layout
25703
25704 \end_inset
25705
25706
25707 \color yellow
25708 This is colored text within a colored, framed box.
25709 \color none
25710
25711 \begin_inset ERT
25712 status collapsed
25713
25714 \begin_layout Standard
25715
25716 }
25717 \end_layout
25718
25719 \end_inset
25720
25721
25722 \begin_inset ERT
25723 status collapsed
25724
25725 \begin_layout Standard
25726
25727
25728 \backslash
25729 fboxrule 0.4pt 
25730 \backslash
25731 fboxsep 3pt
25732 \end_layout
25733
25734 \end_inset
25735
25736
25737 \end_layout
25738
25739 \begin_layout Standard
25740
25741 \series bold
25742 \begin_inset VSpace medskip
25743 \end_inset
25744
25745
25746 \end_layout
25747
25748 \begin_layout Standard
25749 \begin_inset Note Greyedout
25750 status open
25751
25752 \begin_layout Standard
25753
25754 \series bold
25755 Note:
25756 \series default
25757  Text in colorboxes cannot have line breaks.
25758  To color multiple text lines or paragraphs, use a box inside a colorbox
25759  as described in the following.
25760 \end_layout
25761
25762 \end_inset
25763
25764
25765 \end_layout
25766
25767 \begin_layout Subsection
25768 Color for Paragraphs
25769 \begin_inset LatexCommand label
25770 name "sub:Color-for-Paragraphs"
25771
25772 \end_inset
25773
25774
25775 \begin_inset LatexCommand index
25776 name "Color ! for Paragraphs"
25777
25778 \end_inset
25779
25780
25781 \end_layout
25782
25783 \begin_layout Standard
25784 To set the background color for more than one text line, put the text into
25785  a minipage.
25786  Before the minipage insert the 
25787 \series bold
25788
25789 \backslash
25790 colorbox
25791 \series default
25792  command
25793 \end_layout
25794
25795 \begin_layout Standard
25796
25797 \series bold
25798
25799 \backslash
25800 colorbox{color}{
25801 \end_layout
25802
25803 \begin_layout Standard
25804 in ERT.
25805  Behind the minipage insert a closing brace 
25806 \begin_inset Quotes eld
25807 \end_inset
25808
25809
25810 \series bold
25811 }
25812 \series default
25813
25814 \begin_inset Quotes erd
25815 \end_inset
25816
25817  in ERT.
25818 \end_layout
25819
25820 \begin_layout Standard
25821 \begin_inset ERT
25822 status collapsed
25823
25824 \begin_layout Standard
25825
25826
25827 \backslash
25828 colorbox{lightgrey}{
25829 \end_layout
25830
25831 \end_inset
25832
25833
25834 \begin_inset Box Frameless
25835 position "t"
25836 hor_pos "c"
25837 has_inner_box 1
25838 inner_pos "t"
25839 use_parbox 0
25840 width "100col%"
25841 special "none"
25842 height "1in"
25843 height_special "totalheight"
25844 status collapsed
25845
25846 \begin_layout Standard
25847 This is text with background color.
25848  This is text with background color.
25849 \end_layout
25850
25851 \begin_layout Standard
25852 \begin_inset VSpace defskip
25853 \end_inset
25854
25855 The text can have footnotes
25856 \begin_inset Foot
25857 status collapsed
25858
25859 \begin_layout Standard
25860 Another example footnote
25861 \end_layout
25862
25863 \end_inset
25864
25865  and can include tables and figures.
25866 \end_layout
25867
25868 \begin_layout Standard
25869 \align center
25870 \begin_inset Tabular
25871 <lyxtabular version="3" rows="3" columns="3">
25872 <features>
25873 <column alignment="center" valignment="top" leftline="true" width="0">
25874 <column alignment="center" valignment="top" leftline="true" width="0">
25875 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
25876 <row topline="true">
25877 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25878 \begin_inset Text
25879
25880 \begin_layout Standard
25881 a
25882 \end_layout
25883
25884 \end_inset
25885 </cell>
25886 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25887 \begin_inset Text
25888
25889 \begin_layout Standard
25890 !
25891 \end_layout
25892
25893 \end_inset
25894 </cell>
25895 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25896 \begin_inset Text
25897
25898 \begin_layout Standard
25899 3
25900 \end_layout
25901
25902 \end_inset
25903 </cell>
25904 </row>
25905 <row topline="true">
25906 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25907 \begin_inset Text
25908
25909 \begin_layout Standard
25910 <
25911 \end_layout
25912
25913 \end_inset
25914 </cell>
25915 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25916 \begin_inset Text
25917
25918 \begin_layout Standard
25919 b2
25920 \begin_inset Quotes erd
25921 \end_inset
25922
25923 |
25924 \end_layout
25925
25926 \end_inset
25927 </cell>
25928 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25929 \begin_inset Text
25930
25931 \begin_layout Standard
25932 >
25933 \end_layout
25934
25935 \end_inset
25936 </cell>
25937 </row>
25938 <row topline="true" bottomline="true">
25939 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25940 \begin_inset Text
25941
25942 \begin_layout Standard
25943 1
25944 \end_layout
25945
25946 \end_inset
25947 </cell>
25948 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25949 \begin_inset Text
25950
25951 \begin_layout Standard
25952 §
25953 \end_layout
25954
25955 \end_inset
25956 </cell>
25957 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25958 \begin_inset Text
25959
25960 \begin_layout Standard
25961 c
25962 \end_layout
25963
25964 \end_inset
25965 </cell>
25966 </row>
25967 </lyxtabular>
25968
25969 \end_inset
25970
25971
25972 \end_layout
25973
25974 \end_inset
25975
25976
25977 \begin_inset ERT
25978 status collapsed
25979
25980 \begin_layout Standard
25981
25982 }
25983 \end_layout
25984
25985 \end_inset
25986
25987
25988 \end_layout
25989
25990 \begin_layout Section
25991 URLs (Uniform Resource Locators)
25992 \begin_inset LatexCommand index
25993 name "URLs"
25994
25995 \end_inset
25996
25997
25998 \end_layout
25999
26000 \begin_layout Standard
26001 Links to web pages or email addresses can be inserted via the menu 
26002 \family sans
26003 Insert\SpecialChar \menuseparator
26004 URL
26005 \family default
26006 .
26007  The appearing URL dialog has two fields; the 
26008 \family sans
26009 URL
26010 \family default
26011  field and the 
26012 \family sans
26013 Name
26014 \family default
26015  field for the URL description, which will be typeset as plain text immediately
26016  before the URL.
26017 \end_layout
26018
26019 \begin_layout Standard
26020 Here is an example URL: 
26021 \begin_inset LatexCommand url
26022 name "LyX's homepage"
26023 target "http://www.lyx.org"
26024
26025 \end_inset
26026
26027
26028 \end_layout
26029
26030 \begin_layout Standard
26031 The option 
26032 \family sans
26033 Generate\InsetSpace ~
26034 hyperlink
26035 \family default
26036  in the URL dialog has only an affect when you export your document to the
26037  format 
26038 \begin_inset Quotes eld
26039 \end_inset
26040
26041
26042 \family sans
26043 LinuxDoc
26044 \family default
26045
26046 \begin_inset Quotes erd
26047 \end_inset
26048
26049 .
26050 \end_layout
26051
26052 \begin_layout Standard
26053 You cannot change the style of the link text.
26054  The text of the 
26055 \family sans
26056 Name
26057 \family default
26058  field will have the default text style of the document while the text of
26059  the 
26060 \family sans
26061 URL
26062 \family default
26063  field will have the style 
26064 \begin_inset Quotes eld
26065 \end_inset
26066
26067
26068 \family sans
26069 Typewriter
26070 \family default
26071
26072 \begin_inset Quotes erd
26073 \end_inset
26074
26075 .
26076 \end_layout
26077
26078 \begin_layout Standard
26079 When you use the LaTeX-package 
26080 \series bold
26081 hyperref
26082 \series default
26083
26084 \begin_inset LatexCommand index
26085 name "LaTeX-packages ! hyperref"
26086
26087 \end_inset
26088
26089  to link cross-references in the output, URLs will automatically become
26090  clickable hyperlinks in DVI and PDF-output.
26091 \end_layout
26092
26093 \begin_layout Standard
26094 \begin_inset Note Greyedout
26095 status open
26096
26097 \begin_layout Standard
26098
26099 \series bold
26100 Note: 
26101 \series default
26102 When you use the following characters: "%", "#", "^", you have to write
26103  them with a preceding backslash, e.\InsetSpace \thinspace{}
26104 g.\InsetSpace ~
26105
26106 \begin_inset Quotes eld
26107 \end_inset
26108
26109
26110 \backslash
26111 #
26112 \begin_inset Quotes erd
26113 \end_inset
26114
26115 .
26116  URLs must not end with a backslash.
26117 \end_layout
26118
26119 \end_inset
26120
26121
26122 \end_layout
26123
26124 \begin_layout Standard
26125 \begin_inset VSpace bigskip
26126 \end_inset
26127
26128 To create real hyperlinks without the force to write the link location to
26129  the text, you can use the command
26130 \end_layout
26131
26132 \begin_layout Standard
26133
26134 \series bold
26135
26136 \backslash
26137 href{link location}{link text}
26138 \end_layout
26139
26140 \begin_layout Standard
26141 in ERT.
26142  To get for example a link to LyX's web page, write the command
26143 \end_layout
26144
26145 \begin_layout Standard
26146
26147 \series bold
26148
26149 \backslash
26150 href{http://www.lyx.org}{
26151 \end_layout
26152
26153 \begin_layout Standard
26154 in ERT.
26155  Insert after the command the link text 
26156 \begin_inset Quotes eld
26157 \end_inset
26158
26159 LyX's homepage
26160 \begin_inset Quotes erd
26161 \end_inset
26162
26163  as normal text followed by a closing brace 
26164 \begin_inset Quotes eld
26165 \end_inset
26166
26167
26168 \series bold
26169 }
26170 \series default
26171
26172 \begin_inset Quotes erd
26173 \end_inset
26174
26175  in ERT.
26176  This is the result: 
26177 \begin_inset ERT
26178 status collapsed
26179
26180 \begin_layout Standard
26181
26182
26183 \backslash
26184 href{http://www.lyx.org}{
26185 \end_layout
26186
26187 \end_inset
26188
26189 LyX's homepage
26190 \begin_inset ERT
26191 status collapsed
26192
26193 \begin_layout Standard
26194
26195 }
26196 \end_layout
26197
26198 \end_inset
26199
26200
26201 \end_layout
26202
26203 \begin_layout Standard
26204 To link to email addresses, add the prefix 
26205 \begin_inset Quotes eld
26206 \end_inset
26207
26208
26209 \family sans
26210 mailto:
26211 \family default
26212
26213 \begin_inset Quotes erd
26214 \end_inset
26215
26216  to the link location:
26217 \newline
26218 Email to 
26219 \begin_inset ERT
26220 status collapsed
26221
26222 \begin_layout Standard
26223
26224
26225 \backslash
26226 href{mailto:lyx-docs@lists.lyx.org?subject=LyX's documentation}{
26227 \end_layout
26228
26229 \end_inset
26230
26231 lyx-docs mailing list
26232 \begin_inset ERT
26233 status collapsed
26234
26235 \begin_layout Standard
26236
26237 }
26238 \end_layout
26239
26240 \end_inset
26241
26242 .
26243 \end_layout
26244
26245 \begin_layout Standard
26246 Using 
26247 \series bold
26248
26249 \backslash
26250 href
26251 \series default
26252  instead of LyX's URL box has the advantage that you can specify the text
26253  style of the link text like for all other text parts.
26254  You can therefore set hyphenation points and forced linebreaks to have
26255  long link text broken at the page margin.
26256  You are furthermore able to change the text style for all URLs in your
26257  document with an option in 
26258 \series bold
26259 hyperref
26260 \series default
26261 's load command and the restrictions mentioned above doesn't apply for 
26262 \series bold
26263
26264 \backslash
26265 href
26266 \series default
26267 .
26268 \end_layout
26269
26270 \begin_layout Standard
26271
26272 \newpage
26273
26274 \end_layout
26275
26276 \begin_layout Chapter
26277 \start_of_appendix
26278 Units available in 
26279 \begin_inset ERT
26280 status collapsed
26281
26282 \begin_layout Standard
26283
26284
26285 \backslash
26286 texorpdfstring{
26287 \end_layout
26288
26289 \end_inset
26290
26291 LyX
26292 \begin_inset ERT
26293 status collapsed
26294
26295 \begin_layout Standard
26296
26297 }{LyX}
26298 \end_layout
26299
26300 \end_inset
26301
26302
26303 \begin_inset LatexCommand index
26304 name "Units"
26305
26306 \end_inset
26307
26308
26309 \begin_inset LatexCommand label
26310 name "cha:Units-available-in"
26311
26312 \end_inset
26313
26314
26315 \begin_inset Note Note
26316 status collapsed
26317
26318 \begin_layout Standard
26319 The command 
26320 \backslash
26321 texorpdfstring is provided by the LaTeX-package hyperref to avoid that ligatures
26322  are displayed wrongly in PDF-bookmarks.
26323  For more information about this, have a look at 
26324 \begin_inset LatexCommand cite
26325 key "hyperref"
26326
26327 \end_inset
26328
26329 .
26330 \end_layout
26331
26332 \end_inset
26333
26334
26335 \end_layout
26336
26337 \begin_layout Standard
26338 To understand the units described in this documentation, Table\InsetSpace ~
26339
26340 \begin_inset LatexCommand ref
26341 reference "tab:Units"
26342
26343 \end_inset
26344
26345  explains all units available in LyX.
26346 \end_layout
26347
26348 \begin_layout Standard
26349 \begin_inset Float table
26350 placement h
26351 wide false
26352 sideways false
26353 status open
26354
26355 \begin_layout Caption
26356 \begin_inset LatexCommand label
26357 name "tab:Units"
26358
26359 \end_inset
26360
26361 Units
26362 \end_layout
26363
26364 \begin_layout Standard
26365 \begin_inset VSpace medskip
26366 \end_inset
26367
26368
26369 \end_layout
26370
26371 \begin_layout Standard
26372 \align center
26373 \begin_inset Tabular
26374 <lyxtabular version="3" rows="20" columns="2">
26375 <features>
26376 <column alignment="center" valignment="top" leftline="true" width="0">
26377 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
26378 <row topline="true" bottomline="true">
26379 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26380 \begin_inset Text
26381
26382 \begin_layout Standard
26383 unit
26384 \end_layout
26385
26386 \end_inset
26387 </cell>
26388 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26389 \begin_inset Text
26390
26391 \begin_layout Standard
26392 name/description
26393 \end_layout
26394
26395 \end_inset
26396 </cell>
26397 </row>
26398 <row topline="true">
26399 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26400 \begin_inset Text
26401
26402 \begin_layout Standard
26403 mm
26404 \end_layout
26405
26406 \end_inset
26407 </cell>
26408 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26409 \begin_inset Text
26410
26411 \begin_layout Standard
26412 millimeter
26413 \end_layout
26414
26415 \end_inset
26416 </cell>
26417 </row>
26418 <row topline="true">
26419 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26420 \begin_inset Text
26421
26422 \begin_layout Standard
26423 cm
26424 \end_layout
26425
26426 \end_inset
26427 </cell>
26428 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26429 \begin_inset Text
26430
26431 \begin_layout Standard
26432 centimeter
26433 \end_layout
26434
26435 \end_inset
26436 </cell>
26437 </row>
26438 <row topline="true">
26439 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26440 \begin_inset Text
26441
26442 \begin_layout Standard
26443 in
26444 \end_layout
26445
26446 \end_inset
26447 </cell>
26448 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26449 \begin_inset Text
26450
26451 \begin_layout Standard
26452 inch
26453 \end_layout
26454
26455 \end_inset
26456 </cell>
26457 </row>
26458 <row topline="true">
26459 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26460 \begin_inset Text
26461
26462 \begin_layout Standard
26463 pt
26464 \end_layout
26465
26466 \end_inset
26467 </cell>
26468 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26469 \begin_inset Text
26470
26471 \begin_layout Standard
26472 point (72.27\InsetSpace \thinspace{}
26473 pt = 1\InsetSpace \thinspace{}
26474 in)
26475 \end_layout
26476
26477 \end_inset
26478 </cell>
26479 </row>
26480 <row topline="true">
26481 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26482 \begin_inset Text
26483
26484 \begin_layout Standard
26485 pc
26486 \end_layout
26487
26488 \end_inset
26489 </cell>
26490 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26491 \begin_inset Text
26492
26493 \begin_layout Standard
26494 pica (1\InsetSpace \thinspace{}
26495 pc = 12\InsetSpace \thinspace{}
26496 pt)
26497 \end_layout
26498
26499 \end_inset
26500 </cell>
26501 </row>
26502 <row topline="true">
26503 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26504 \begin_inset Text
26505
26506 \begin_layout Standard
26507 sp
26508 \end_layout
26509
26510 \end_inset
26511 </cell>
26512 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26513 \begin_inset Text
26514
26515 \begin_layout Standard
26516 scaled point (65536\InsetSpace \thinspace{}
26517 sp = 1\InsetSpace \thinspace{}
26518 pt)
26519 \end_layout
26520
26521 \end_inset
26522 </cell>
26523 </row>
26524 <row topline="true">
26525 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26526 \begin_inset Text
26527
26528 \begin_layout Standard
26529 bp
26530 \end_layout
26531
26532 \end_inset
26533 </cell>
26534 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26535 \begin_inset Text
26536
26537 \begin_layout Standard
26538 big point (72\InsetSpace \thinspace{}
26539 bp = 1\InsetSpace \thinspace{}
26540 in)
26541 \end_layout
26542
26543 \end_inset
26544 </cell>
26545 </row>
26546 <row topline="true">
26547 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26548 \begin_inset Text
26549
26550 \begin_layout Standard
26551 dd
26552 \end_layout
26553
26554 \end_inset
26555 </cell>
26556 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26557 \begin_inset Text
26558
26559 \begin_layout Standard
26560 didot (72\InsetSpace \thinspace{}
26561 dd 
26562 \begin_inset Formula $\approx$
26563 \end_inset
26564
26565  37.6\InsetSpace \thinspace{}
26566 mm)
26567 \end_layout
26568
26569 \end_inset
26570 </cell>
26571 </row>
26572 <row topline="true">
26573 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26574 \begin_inset Text
26575
26576 \begin_layout Standard
26577 cc
26578 \end_layout
26579
26580 \end_inset
26581 </cell>
26582 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26583 \begin_inset Text
26584
26585 \begin_layout Standard
26586 cicero (1\InsetSpace \thinspace{}
26587 cc = 12\InsetSpace \thinspace{}
26588 dd)
26589 \end_layout
26590
26591 \end_inset
26592 </cell>
26593 </row>
26594 <row topline="true">
26595 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26596 \begin_inset Text
26597
26598 \begin_layout Standard
26599 Scale%
26600 \end_layout
26601
26602 \end_inset
26603 </cell>
26604 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26605 \begin_inset Text
26606
26607 \begin_layout Standard
26608 % of original image width
26609 \end_layout
26610
26611 \end_inset
26612 </cell>
26613 </row>
26614 <row topline="true">
26615 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26616 \begin_inset Text
26617
26618 \begin_layout Standard
26619 text%
26620 \end_layout
26621
26622 \end_inset
26623 </cell>
26624 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26625 \begin_inset Text
26626
26627 \begin_layout Standard
26628 % of text width
26629 \end_layout
26630
26631 \end_inset
26632 </cell>
26633 </row>
26634 <row topline="true">
26635 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26636 \begin_inset Text
26637
26638 \begin_layout Standard
26639 col%
26640 \end_layout
26641
26642 \end_inset
26643 </cell>
26644 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26645 \begin_inset Text
26646
26647 \begin_layout Standard
26648 % of column width
26649 \end_layout
26650
26651 \end_inset
26652 </cell>
26653 </row>
26654 <row topline="true">
26655 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26656 \begin_inset Text
26657
26658 \begin_layout Standard
26659 page%
26660 \end_layout
26661
26662 \end_inset
26663 </cell>
26664 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26665 \begin_inset Text
26666
26667 \begin_layout Standard
26668 % of paper width
26669 \end_layout
26670
26671 \end_inset
26672 </cell>
26673 </row>
26674 <row topline="true">
26675 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26676 \begin_inset Text
26677
26678 \begin_layout Standard
26679 line%
26680 \end_layout
26681
26682 \end_inset
26683 </cell>
26684 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26685 \begin_inset Text
26686
26687 \begin_layout Standard
26688 % of line width
26689 \end_layout
26690
26691 \end_inset
26692 </cell>
26693 </row>
26694 <row topline="true">
26695 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26696 \begin_inset Text
26697
26698 \begin_layout Standard
26699 theight%
26700 \end_layout
26701
26702 \end_inset
26703 </cell>
26704 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26705 \begin_inset Text
26706
26707 \begin_layout Standard
26708 % of text height
26709 \end_layout
26710
26711 \end_inset
26712 </cell>
26713 </row>
26714 <row topline="true">
26715 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26716 \begin_inset Text
26717
26718 \begin_layout Standard
26719 pheight%
26720 \end_layout
26721
26722 \end_inset
26723 </cell>
26724 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26725 \begin_inset Text
26726
26727 \begin_layout Standard
26728 % of paper height
26729 \end_layout
26730
26731 \end_inset
26732 </cell>
26733 </row>
26734 <row topline="true">
26735 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26736 \begin_inset Text
26737
26738 \begin_layout Standard
26739 ex
26740 \end_layout
26741
26742 \end_inset
26743 </cell>
26744 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26745 \begin_inset Text
26746
26747 \begin_layout Standard
26748 height of letter 
26749 \emph on
26750 x
26751 \emph default
26752  in current font
26753 \end_layout
26754
26755 \end_inset
26756 </cell>
26757 </row>
26758 <row topline="true">
26759 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26760 \begin_inset Text
26761
26762 \begin_layout Standard
26763 em
26764 \end_layout
26765
26766 \end_inset
26767 </cell>
26768 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26769 \begin_inset Text
26770
26771 \begin_layout Standard
26772 width of letter 
26773 \emph on
26774 M
26775 \emph default
26776  in current font
26777 \end_layout
26778
26779 \end_inset
26780 </cell>
26781 </row>
26782 <row topline="true" bottomline="true">
26783 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26784 \begin_inset Text
26785
26786 \begin_layout Standard
26787 mu
26788 \end_layout
26789
26790 \end_inset
26791 </cell>
26792 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26793 \begin_inset Text
26794
26795 \begin_layout Standard
26796 math unit (1\InsetSpace \thinspace{}
26797 mu = 1/18\InsetSpace \thinspace{}
26798 em)
26799 \end_layout
26800
26801 \end_inset
26802 </cell>
26803 </row>
26804 </lyxtabular>
26805
26806 \end_inset
26807
26808
26809 \end_layout
26810
26811 \end_inset
26812
26813
26814 \end_layout
26815
26816 \begin_layout Chapter
26817 Output File Formats with Graphics
26818 \begin_inset LatexCommand label
26819 name "cha:Output-File-Formats"
26820
26821 \end_inset
26822
26823
26824 \end_layout
26825
26826 \begin_layout Section
26827 DVI
26828 \begin_inset LatexCommand index
26829 name "File Formats ! DVI"
26830
26831 \end_inset
26832
26833
26834 \begin_inset LatexCommand index
26835 name "DVI|see{File Formats}"
26836
26837 \end_inset
26838
26839
26840 \end_layout
26841
26842 \begin_layout Standard
26843 This file type has the extension 
26844 \begin_inset Quotes eld
26845 \end_inset
26846
26847
26848 \family typewriter
26849 .dvi
26850 \family default
26851
26852 \begin_inset Quotes erd
26853 \end_inset
26854
26855 .
26856  It is called 
26857 \begin_inset Quotes eld
26858 \end_inset
26859
26860 device-independent
26861 \begin_inset Quotes erd
26862 \end_inset
26863
26864  (DVI), because it is completely portable; you can move them from one machine
26865  to another without needing to do any sort of conversion.
26866  At the time when this file-format was developed, this was no matter of
26867  course.
26868  DVIs are used for quick previews and as pre-stage for other output formats,
26869  like PostScript.
26870 \end_layout
26871
26872 \begin_layout Standard
26873 \begin_inset Note Greyedout
26874 status open
26875
26876 \begin_layout Standard
26877
26878 \series bold
26879 Note:
26880 \series default
26881  DVI-files doesn't contain images, they will only be a linked.
26882 \end_layout
26883
26884 \end_inset
26885
26886  So don't forget this, if you move your 
26887 \family typewriter
26888 .dvi
26889 \family default
26890  file to another computer.
26891  This property can also slow down your computer when you view the DVI.
26892  Because the DVI-viewer has to convert the image in the background to make
26893  it visible when you scroll in the DVI.
26894  So we recommend to use PDF for files with many images.
26895 \end_layout
26896
26897 \begin_layout Standard
26898 You can export your document to DVI by using the menu 
26899 \family sans
26900 File\SpecialChar \menuseparator
26901 Export\SpecialChar \menuseparator
26902 DVI
26903 \family default
26904 .
26905  You can view your document as PostScript via the 
26906 \family sans
26907 View
26908 \family default
26909  menu or by using the toolbar button 
26910 \begin_inset Graphics
26911         filename ../images/buffer-view_dvi.xpm
26912         scale 85
26913
26914 \end_inset
26915
26916 .
26917 \end_layout
26918
26919 \begin_layout Section
26920 PostScript
26921 \begin_inset LatexCommand label
26922 name "sec:PostScript"
26923
26924 \end_inset
26925
26926
26927 \begin_inset LatexCommand index
26928 name "File Formats ! PostScript\\protect\\pagebreak"
26929
26930 \end_inset
26931
26932
26933 \begin_inset LatexCommand index
26934 name "PostScript|see{File Formats}"
26935
26936 \end_inset
26937
26938
26939 \end_layout
26940
26941 \begin_layout Standard
26942 This file type has the extension 
26943 \begin_inset Quotes eld
26944 \end_inset
26945
26946
26947 \family typewriter
26948 .ps
26949 \family default
26950
26951 \begin_inset Quotes erd
26952 \end_inset
26953
26954 .
26955  PostScript was developed by the company 
26956 \family typewriter
26957 Adobe
26958 \family default
26959  as printer language.
26960  The file contains therefore commands that the printer uses to print the
26961  file.
26962  PostScript can be seen as 
26963 \begin_inset Quotes eld
26964 \end_inset
26965
26966 programming language
26967 \begin_inset Quotes erd
26968 \end_inset
26969
26970 ; you can calculate with it and draw diagrams and images
26971 \begin_inset Foot
26972 status collapsed
26973
26974 \begin_layout Standard
26975 If you are interested to learn more about this, have a look at the LaTeX-package
26976  
26977 \series bold
26978 PSTricks
26979 \series default
26980  
26981 \begin_inset LatexCommand cite
26982 key "pstricks"
26983
26984 \end_inset
26985
26986 .
26987 \end_layout
26988
26989 \end_inset
26990
26991 .
26992  Due to this ability, the files are often bigger than PDFs.
26993 \end_layout
26994
26995 \begin_layout Standard
26996 PostScript can only contain images in the format 
26997 \begin_inset Quotes eld
26998 \end_inset
26999
27000 Encapsulated PostScript
27001 \begin_inset Quotes erd
27002 \end_inset
27003
27004  (EPS, file extension 
27005 \begin_inset Quotes eld
27006 \end_inset
27007
27008
27009 \family typewriter
27010 .eps
27011 \family default
27012
27013 \begin_inset Quotes erd
27014 \end_inset
27015
27016 ).
27017  As LyX allows you to use any known image format in your document, it has
27018  to convert images in the background to EPS.
27019  If you have e.g 50 images in your document, LyX has to do 50 conversions
27020  whenever you view or export your document.
27021  This will slow down your work flow with LyX drastically.
27022  So if you plan to use PostScript, you can insert your images directly as
27023  EPS to avoid this problem.
27024 \end_layout
27025
27026 \begin_layout Standard
27027 You can export your document to PostScript using the menu 
27028 \family sans
27029 File\SpecialChar \menuseparator
27030 Export\SpecialChar \menuseparator
27031 Postscript
27032 \family default
27033 .
27034  You can view your document as PostScript via the 
27035 \family sans
27036 View
27037 \family default
27038  menu or by using the toolbar button 
27039 \begin_inset Graphics
27040         filename ../images/buffer-view_ps.xpm
27041         scale 85
27042
27043 \end_inset
27044
27045 .
27046 \end_layout
27047
27048 \begin_layout Section
27049 PDF
27050 \begin_inset LatexCommand label
27051 name "sec:PDF"
27052
27053 \end_inset
27054
27055
27056 \begin_inset LatexCommand index
27057 name "File Formats ! PDF"
27058
27059 \end_inset
27060
27061
27062 \begin_inset LatexCommand index
27063 name "PDF"
27064
27065 \end_inset
27066
27067
27068 \end_layout
27069
27070 \begin_layout Standard
27071 This file type has the extension 
27072 \begin_inset Quotes eld
27073 \end_inset
27074
27075
27076 \family typewriter
27077 .pdf
27078 \family default
27079
27080 \begin_inset Quotes erd
27081 \end_inset
27082
27083 .
27084  The 
27085 \begin_inset Quotes eld
27086 \end_inset
27087
27088 Portable Document Format
27089 \begin_inset Quotes erd
27090 \end_inset
27091
27092  (PDF) is developed by 
27093 \family typewriter
27094 Adobe
27095 \family default
27096  as derivative from PostScript.
27097  It is more compressed and it uses much less commands than PostScript.
27098  As the name 
27099 \begin_inset Quotes eld
27100 \end_inset
27101
27102 portable
27103 \begin_inset Quotes erd
27104 \end_inset
27105
27106  implies, it can be processed at any computer system and the printed output
27107  looks exactly the same.
27108 \end_layout
27109
27110 \begin_layout Standard
27111 PDF can contain images in its own PDF format, in the format 
27112 \begin_inset Quotes eld
27113 \end_inset
27114
27115 Joint Photographic Experts Group
27116 \begin_inset Quotes erd
27117 \end_inset
27118
27119  (JPG, file extension 
27120 \begin_inset Quotes eld
27121 \end_inset
27122
27123
27124 \family typewriter
27125 .jpg
27126 \family default
27127
27128 \begin_inset Quotes erd
27129 \end_inset
27130
27131  or 
27132 \begin_inset Quotes eld
27133 \end_inset
27134
27135
27136 \family typewriter
27137 .jpeg
27138 \family default
27139
27140 \begin_inset Quotes erd
27141 \end_inset
27142
27143 ), and in the format 
27144 \begin_inset Quotes eld
27145 \end_inset
27146
27147 Portable Network Graphics
27148 \begin_inset Quotes erd
27149 \end_inset
27150
27151  (PNG, file extension 
27152 \begin_inset Quotes eld
27153 \end_inset
27154
27155
27156 \family typewriter
27157 .png
27158 \family default
27159
27160 \begin_inset Quotes erd
27161 \end_inset
27162
27163 ).
27164  You can although use any other image format, because LyX converts them
27165  in the background to one of these formats.
27166  But as described in the section about PostScript, the image conversion
27167  will slow down your work flow.
27168  So it is recommended to use images in one of the three mentioned formats.
27169 \end_layout
27170
27171 \begin_layout Standard
27172 You can export your document to PDF via the menu 
27173 \family sans
27174 File\SpecialChar \menuseparator
27175 Export
27176 \family default
27177  in three different ways:
27178 \end_layout
27179
27180 \begin_layout Description
27181 PDF This uses the program 
27182 \family typewriter
27183 ps2pdf
27184 \family default
27185  that creates a PDF from a PostScript-version of your file.
27186  The PostScript-version is produced by the program 
27187 \family typewriter
27188 dvips
27189 \family default
27190  which uses a DVI-version as intermediate step.
27191  So this export variant consist of three conversions.
27192 \end_layout
27193
27194 \begin_layout Description
27195 PDF\InsetSpace ~
27196 (dvipdfm) This uses the program 
27197 \family typewriter
27198 dvipdfm
27199 \family default
27200  that converts your file in the background to DVI and in a second step to
27201  PDF.
27202 \end_layout
27203
27204 \begin_layout Description
27205 PDF\InsetSpace ~
27206 (pdflatex) This uses the program 
27207 \family typewriter
27208 pdftex
27209 \family default
27210  that converts your file directly to PDF.
27211 \end_layout
27212
27213 \begin_layout Standard
27214 It is recommended to use 
27215 \family sans
27216 PDF\InsetSpace ~
27217 (pdflatex)
27218 \family default
27219  because 
27220 \family typewriter
27221 pdftex
27222 \family default
27223  supports all features of actual PDF-versions, is quick and works stable
27224  without problems.
27225  The program 
27226 \family typewriter
27227 dvipdfm
27228 \family default
27229  is not under development and therefore a bit outdated.
27230 \end_layout
27231
27232 \begin_layout Standard
27233 You can view your document as PDF via the 
27234 \family sans
27235 View
27236 \family default
27237  menu or by using the toolbar button 
27238 \begin_inset Graphics
27239         filename ../images/buffer-view_pdf2.xpm
27240         scale 85
27241
27242 \end_inset
27243
27244  
27245 \family sans
27246 (
27247 \family default
27248 that uses 
27249 \family sans
27250 PDF\InsetSpace ~
27251 (pdflatex)
27252 \family default
27253 ).
27254 \end_layout
27255
27256 \begin_layout Chapter
27257 Explanation of Equation\InsetSpace ~
27258
27259 \begin_inset LatexCommand eqref
27260 reference "eq:Wgn"
27261
27262 \end_inset
27263
27264
27265 \begin_inset LatexCommand label
27266 name "cha:Explanation-of-Equation"
27267
27268 \end_inset
27269
27270
27271 \end_layout
27272
27273 \begin_layout Standard
27274 The total width of 
27275 \emph on
27276 n
27277 \emph default
27278  table cells 
27279 \begin_inset Formula $W_{\mathrm{tot\, n}}$
27280 \end_inset
27281
27282  can be calculated to
27283 \end_layout
27284
27285 \begin_layout Standard
27286 \begin_inset Formula \begin{equation}
27287 W_{\mathrm{tot}\, n}=n·(W_{g\, n}+2·\backslash\mbox{tabcolsep})+(n+1)·\backslash\mbox{arrayrulewidth}\label{eq:Wtot_n}\end{equation}
27288
27289 \end_inset
27290
27291
27292 \end_layout
27293
27294 \begin_layout Standard
27295 Where 
27296 \begin_inset Formula $W_{g\, n}$
27297 \end_inset
27298
27299  is the given width of all cells.
27300  
27301 \series bold
27302
27303 \backslash
27304 tabcolsep
27305 \series default
27306  is the LaTeX-length between the cell text and the cell border, its default
27307  value is 6\InsetSpace \thinspace{}
27308 pt.
27309  
27310 \series bold
27311
27312 \backslash
27313 arrayrulewidth
27314 \series default
27315  is the thickness of the cell border line, the default is 0.4\InsetSpace \thinspace{}
27316 pt.
27317 \end_layout
27318
27319 \begin_layout Standard
27320 Following equation\InsetSpace ~
27321
27322 \begin_inset LatexCommand eqref
27323 reference "eq:Wtot_n"
27324
27325 \end_inset
27326
27327 , the total width of a multicolumn 
27328 \begin_inset Formula $W_{\mathrm{tot\, mult}}$
27329 \end_inset
27330
27331  is
27332 \end_layout
27333
27334 \begin_layout Standard
27335 \begin_inset Formula \begin{equation}
27336 W_{\mathrm{tot\, mult}}=W_{g\,\mathrm{mult}}+2·\backslash\mbox{tabcolsep}+2·\backslash\mbox{arrayrulewidth}\label{eq:Wtot_mult}\end{equation}
27337
27338 \end_inset
27339
27340
27341 \end_layout
27342
27343 \begin_layout Standard
27344 By setting equation\InsetSpace ~
27345
27346 \begin_inset LatexCommand eqref
27347 reference "eq:Wtot_n"
27348
27349 \end_inset
27350
27351  and 
27352 \begin_inset LatexCommand eqref
27353 reference "eq:Wtot_mult"
27354
27355 \end_inset
27356
27357  equal we can calculate the needed given width 
27358 \begin_inset Formula $W_{g\, n}$
27359 \end_inset
27360
27361  when 
27362 \emph on
27363 n
27364 \emph default
27365  columns are spanned, so that each column has a total width of 
27366 \begin_inset Formula $W_{\mathrm{tot\, mult}}/n$
27367 \end_inset
27368
27369 :
27370 \end_layout
27371
27372 \begin_layout Standard
27373 \begin_inset Formula \begin{equation}
27374 W_{g\, n}=(W_{g\,\mathrm{mult}}+(1-n)·(2·\backslash\mbox{tabcolsep}+\backslash\mbox{arrayrulewidth}))/n\end{equation}
27375
27376 \end_inset
27377
27378
27379 \end_layout
27380
27381 \begin_layout Bibliography
27382 \begin_inset LatexCommand bibitem
27383 key "latexcompanion"
27384
27385 \end_inset
27386
27387 Frank Mittelbach and Michel Goossens: 
27388 \emph on
27389 The LaTeX Companion Second Edition.
27390  
27391 \emph default
27392 Addison-Wesley, 2004
27393 \end_layout
27394
27395 \begin_layout Bibliography
27396 \begin_inset LatexCommand bibitem
27397 key "latexguide"
27398
27399 \end_inset
27400
27401 Helmut Kopka and Patrick W.
27402  Daly: 
27403 \emph on
27404 A Guide to LaTeX Fourth Edition.
27405  
27406 \emph default
27407 Addison-Wesley, 2003
27408 \end_layout
27409
27410 \begin_layout Bibliography
27411 \begin_inset LatexCommand bibitem
27412 key "latexbook"
27413
27414 \end_inset
27415
27416 Leslie Lamport: 
27417 \emph on
27418 LaTeX: A Document Preparation System.
27419  
27420 \emph default
27421 Addison-Wesley, second edition, 1994
27422 \end_layout
27423
27424 \begin_layout Bibliography
27425 \begin_inset LatexCommand bibitem
27426 key "booktabs"
27427
27428 \end_inset
27429
27430
27431 \begin_inset ERT
27432 status collapsed
27433
27434 \begin_layout Standard
27435
27436
27437 \backslash
27438 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/booktabs/booktabs.pdf}
27439 {
27440 \end_layout
27441
27442 \end_inset
27443
27444 Documentation
27445 \begin_inset ERT
27446 status collapsed
27447
27448 \begin_layout Standard
27449
27450 }
27451 \end_layout
27452
27453 \end_inset
27454
27455  of the LaTeX-package 
27456 \series bold
27457 booktabs
27458 \series default
27459
27460 \begin_inset LatexCommand index
27461 name "LaTeX-packages ! booktabs"
27462
27463 \end_inset
27464
27465
27466 \end_layout
27467
27468 \begin_layout Bibliography
27469 \begin_inset LatexCommand bibitem
27470 key "caption"
27471
27472 \end_inset
27473
27474
27475 \begin_inset ERT
27476 status collapsed
27477
27478 \begin_layout Standard
27479
27480
27481 \backslash
27482 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/caption/caption.pdf}{
27483 \end_layout
27484
27485 \end_inset
27486
27487 Documentation
27488 \begin_inset ERT
27489 status collapsed
27490
27491 \begin_layout Standard
27492
27493 }
27494 \end_layout
27495
27496 \end_inset
27497
27498  of the LaTeX-package 
27499 \series bold
27500 caption
27501 \series default
27502
27503 \begin_inset LatexCommand index
27504 name "LaTeX-packages ! caption"
27505
27506 \end_inset
27507
27508
27509 \end_layout
27510
27511 \begin_layout Bibliography
27512 \begin_inset LatexCommand bibitem
27513 key "caption-de"
27514
27515 \end_inset
27516
27517 German 
27518 \begin_inset ERT
27519 status collapsed
27520
27521 \begin_layout Standard
27522
27523
27524 \backslash
27525 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/caption/anleitung.pdf}
27526 {
27527 \end_layout
27528
27529 \end_inset
27530
27531 documentation
27532 \begin_inset ERT
27533 status collapsed
27534
27535 \begin_layout Standard
27536
27537 }
27538 \end_layout
27539
27540 \end_inset
27541
27542  of the LaTeX-package 
27543 \series bold
27544 caption
27545 \end_layout
27546
27547 \begin_layout Bibliography
27548 \begin_inset LatexCommand bibitem
27549 key "endfloat"
27550
27551 \end_inset
27552
27553
27554 \begin_inset ERT
27555 status collapsed
27556
27557 \begin_layout Standard
27558
27559
27560 \backslash
27561 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/endfloat/endfloat.pdf}
27562 {
27563 \end_layout
27564
27565 \end_inset
27566
27567 Documentation
27568 \begin_inset ERT
27569 status collapsed
27570
27571 \begin_layout Standard
27572
27573 }
27574 \end_layout
27575
27576 \end_inset
27577
27578  of the LaTeX-package 
27579 \series bold
27580 endf\SpecialChar \textcompwordmark{}
27581 loat
27582 \series default
27583
27584 \begin_inset LatexCommand index
27585 name "LaTeX-packages ! endfloat"
27586
27587 \end_inset
27588
27589
27590 \end_layout
27591
27592 \begin_layout Bibliography
27593 \begin_inset LatexCommand bibitem
27594 key "floatflt"
27595
27596 \end_inset
27597
27598
27599 \begin_inset ERT
27600 status collapsed
27601
27602 \begin_layout Standard
27603
27604
27605 \backslash
27606 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/floatflt/floatflt.pdf}
27607 {
27608 \end_layout
27609
27610 \end_inset
27611
27612 Documentation
27613 \begin_inset ERT
27614 status collapsed
27615
27616 \begin_layout Standard
27617
27618 }
27619 \end_layout
27620
27621 \end_inset
27622
27623  of the LaTeX-package 
27624 \series bold
27625 floatf\SpecialChar \textcompwordmark{}
27626 lt
27627 \series default
27628
27629 \begin_inset LatexCommand index
27630 name "LaTeX-packages ! floatflt"
27631
27632 \end_inset
27633
27634
27635 \end_layout
27636
27637 \begin_layout Bibliography
27638 \begin_inset LatexCommand bibitem
27639 key "footmisc"
27640
27641 \end_inset
27642
27643
27644 \begin_inset ERT
27645 status collapsed
27646
27647 \begin_layout Standard
27648
27649
27650 \backslash
27651 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/footmisc/footmisc.pdf}
27652 {
27653 \end_layout
27654
27655 \end_inset
27656
27657 Documentation
27658 \begin_inset ERT
27659 status collapsed
27660
27661 \begin_layout Standard
27662
27663 }
27664 \end_layout
27665
27666 \end_inset
27667
27668  of the LaTeX-package 
27669 \series bold
27670 footmisc
27671 \series default
27672
27673 \begin_inset LatexCommand index
27674 name "LaTeX-packages ! footmisc"
27675
27676 \end_inset
27677
27678
27679 \end_layout
27680
27681 \begin_layout Bibliography
27682 \begin_inset LatexCommand bibitem
27683 key "hypcap"
27684
27685 \end_inset
27686
27687
27688 \begin_inset ERT
27689 status collapsed
27690
27691 \begin_layout Standard
27692
27693
27694 \backslash
27695 href{http://www.ctan.org/tex-archive/macros/latex/contrib/oberdiek/hypcap.pdf}{
27696 \end_layout
27697
27698 \end_inset
27699
27700 Documentation
27701 \begin_inset ERT
27702 status collapsed
27703
27704 \begin_layout Standard
27705
27706 }
27707 \end_layout
27708
27709 \end_inset
27710
27711  of the LaTeX-package 
27712 \series bold
27713 hypcap
27714 \series default
27715
27716 \begin_inset LatexCommand index
27717 name "LaTeX-packages ! hyperref"
27718
27719 \end_inset
27720
27721
27722 \end_layout
27723
27724 \begin_layout Bibliography
27725 \begin_inset LatexCommand bibitem
27726 key "hyperref"
27727
27728 \end_inset
27729
27730
27731 \begin_inset ERT
27732 status collapsed
27733
27734 \begin_layout Standard
27735
27736
27737 \backslash
27738 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/hyperref/hyperref.pdf}
27739 {
27740 \end_layout
27741
27742 \end_inset
27743
27744 Documentation
27745 \begin_inset ERT
27746 status collapsed
27747
27748 \begin_layout Standard
27749
27750 }
27751 \end_layout
27752
27753 \end_inset
27754
27755  of the LaTeX-package 
27756 \series bold
27757 hyperref
27758 \series default
27759
27760 \begin_inset LatexCommand index
27761 name "LaTeX-packages ! hyperref"
27762
27763 \end_inset
27764
27765
27766 \end_layout
27767
27768 \begin_layout Bibliography
27769 \begin_inset LatexCommand bibitem
27770 key "koma-script"
27771
27772 \end_inset
27773
27774
27775 \begin_inset ERT
27776 status collapsed
27777
27778 \begin_layout Standard
27779
27780
27781 \backslash
27782 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/koma-script/scrguien.p
27783 df}{
27784 \end_layout
27785
27786 \end_inset
27787
27788 Documentation
27789 \begin_inset ERT
27790 status collapsed
27791
27792 \begin_layout Standard
27793
27794 }
27795 \end_layout
27796
27797 \end_inset
27798
27799  of the LaTeX-package 
27800 \series bold
27801 koma-script
27802 \series default
27803
27804 \begin_inset LatexCommand index
27805 name "LaTeX-packages ! koma-script"
27806
27807 \end_inset
27808
27809
27810 \end_layout
27811
27812 \begin_layout Bibliography
27813 \begin_inset LatexCommand bibitem
27814 key "koma-script-de"
27815
27816 \end_inset
27817
27818 German 
27819 \begin_inset ERT
27820 status collapsed
27821
27822 \begin_layout Standard
27823
27824
27825 \backslash
27826 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/koma-script/scrguide.p
27827 df}{
27828 \end_layout
27829
27830 \end_inset
27831
27832 documentation
27833 \begin_inset ERT
27834 status collapsed
27835
27836 \begin_layout Standard
27837
27838 }
27839 \end_layout
27840
27841 \end_inset
27842
27843  of the LaTeX-package 
27844 \series bold
27845 koma-script
27846 \series default
27847
27848 \begin_inset LatexCommand index
27849 name "LaTeX-packages ! koma-script"
27850
27851 \end_inset
27852
27853
27854 \end_layout
27855
27856 \begin_layout Bibliography
27857 \begin_inset LatexCommand bibitem
27858 key "marginnote"
27859
27860 \end_inset
27861
27862
27863 \begin_inset ERT
27864 status collapsed
27865
27866 \begin_layout Standard
27867
27868
27869 \backslash
27870 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/marginnote/marginnote.
27871 pdf}{
27872 \end_layout
27873
27874 \end_inset
27875
27876 Documentation
27877 \begin_inset ERT
27878 status collapsed
27879
27880 \begin_layout Standard
27881
27882 }
27883 \end_layout
27884
27885 \end_inset
27886
27887  of the LaTeX-package 
27888 \series bold
27889 marginnote
27890 \series default
27891
27892 \begin_inset LatexCommand index
27893 name "LaTeX-packages ! marginnote"
27894
27895 \end_inset
27896
27897
27898 \end_layout
27899
27900 \begin_layout Bibliography
27901 \begin_inset LatexCommand bibitem
27902 key "pstricks"
27903
27904 \end_inset
27905
27906
27907 \begin_inset ERT
27908 status collapsed
27909
27910 \begin_layout Standard
27911
27912
27913 \backslash
27914 href{http://tug.org/PSTricks/main.cgi/}{
27915 \end_layout
27916
27917 \end_inset
27918
27919 Web page
27920 \begin_inset ERT
27921 status collapsed
27922
27923 \begin_layout Standard
27924
27925 }
27926 \end_layout
27927
27928 \end_inset
27929
27930  of the LaTeX-package 
27931 \series bold
27932 PSTricks
27933 \series default
27934
27935 \begin_inset LatexCommand index
27936 name "LaTeX-packages ! PSTricks"
27937
27938 \end_inset
27939
27940
27941 \end_layout
27942
27943 \begin_layout Bibliography
27944 \begin_inset LatexCommand bibitem
27945 key "sidecap"
27946
27947 \end_inset
27948
27949
27950 \begin_inset ERT
27951 status collapsed
27952
27953 \begin_layout Standard
27954
27955
27956 \backslash
27957 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/sidecap/sidecap.pdf}{
27958 \end_layout
27959
27960 \end_inset
27961
27962 Documentation
27963 \begin_inset ERT
27964 status collapsed
27965
27966 \begin_layout Standard
27967
27968 }
27969 \end_layout
27970
27971 \end_inset
27972
27973  of the LaTeX-package 
27974 \series bold
27975 sidecap
27976 \series default
27977
27978 \begin_inset LatexCommand index
27979 name "LaTeX-packages ! sidecap"
27980
27981 \end_inset
27982
27983
27984 \end_layout
27985
27986 \begin_layout Bibliography
27987 \begin_inset LatexCommand bibitem
27988 key "NewInLyX15"
27989
27990 \end_inset
27991
27992
27993 \begin_inset ERT
27994 status collapsed
27995
27996 \begin_layout Standard
27997
27998
27999 \backslash
28000 href{http://wiki.lyx.org/LyX/NewInLyX15}{
28001 \end_layout
28002
28003 \end_inset
28004
28005 Wiki page
28006 \begin_inset ERT
28007 status collapsed
28008
28009 \begin_layout Standard
28010
28011 }
28012 \end_layout
28013
28014 \end_inset
28015
28016  about new LyX-features planned for the release 
28017 \family sans
28018 LyX 1.5
28019 \family default
28020 .
28021 \end_layout
28022
28023 \begin_layout Standard
28024 \begin_inset LatexCommand printindex
28025
28026 \end_inset
28027
28028
28029 \end_layout
28030
28031 \begin_layout Standard
28032 \begin_inset FloatList figure
28033
28034 \end_inset
28035
28036
28037 \end_layout
28038
28039 \begin_layout Standard
28040 \begin_inset FloatList table
28041
28042 \end_inset
28043
28044
28045 \end_layout
28046
28047 \end_body
28048 \end_document