]> git.lyx.org Git - lyx.git/blob - lib/doc/EmbeddedObjects.lyx
EmbeddeObjects: Spanish updates again
[lyx.git] / lib / doc / EmbeddedObjects.lyx
1 #LyX 1.5.0svn created this file. For more info see http://www.lyx.org/
2 \lyxformat 258
3 \begin_document
4 \begin_header
5 \textclass scrbook
6 \begin_preamble
7 % if pdflatex is used
8 \usepackage{ifpdf}
9 \ifpdf
10
11 % set fonts for nicer pdf view
12 \IfFileExists{lmodern.sty}
13  {\usepackage{lmodern}} % if it exists
14  {% if it exists not
15   \usepackage[scaled=0.92]{helvet}
16   \usepackage{mathptmx}
17   \usepackage{courier}
18  } % end if it exists not
19
20 % link all cross references and URLs
21 % in pdf output
22  \usepackage[colorlinks=true, bookmarks, bookmarksnumbered, bookmarksopen, bookmarksopenlevel=1,
23   linkcolor=black, citecolor=black, urlcolor=blue, filecolor=blue,
24   pdfpagelayout=OneColumn, pdfnewwindow=true,
25   pdfstartview=XYZ, plainpages=false, pdfpagelabels,
26   pdfauthor={LyX Team}, pdftex,
27   pdftitle={LyX's Figure, Table, Floats, Notes, and Boxes manual},
28   pdfsubject={LyX-documentation about figures, tables, floats, notes, and boxes},
29   pdfkeywords={LyX, Tables, Figures, Floats, Boxes, Notes}]{hyperref}
30  
31 \else % if dvi or ps is produced
32
33  % link all cross references and URLs in DVI output
34  \usepackage[ps2pdf, colorlinks=true,
35   linkcolor=black, citecolor=black, urlcolor=blue, filecolor=blue]{hyperref}
36
37 \fi % end if pdflatex is used
38
39 % that links to image floats jumps
40 % to the beginning of the float and 
41 % not to its caption
42 \usepackage[figure]{hypcap}
43
44 % the pages of the TOC are numbered roman
45 % and a PDF-bookmark for the TOC is added
46 \pagenumbering{roman}
47 \let\myTOC\tableofcontents
48 \renewcommand{\tableofcontents}{%
49  \pdfbookmark[1]{Contents}{}
50  \myTOC
51  \clearpage
52  \pagenumbering{arabic}}
53
54 % provides caption formatting
55 \usepackage[labelfont={bf,sf}, tableposition=top]{caption}
56
57 % provides commands to set caption
58 % beside tables/images
59 \usepackage{sidecap}
60
61 \newcommand{\TabBesBeg}{%
62  \let\MyTable\table
63  \let\MyEndtable\endtable
64  \renewenvironment{table}{\begin{SCtable}}{\end{SCtable}}}
65
66 \newcommand{\TabBesEnd}{%
67  \let\table\MyTable
68  \let\endtable\MyEndtable}
69
70 \newcommand{\FigBesBeg}{%
71  \let\MyFigure\figure
72  \let\MyEndfigure\endfigure
73  \renewenvironment{figure}{\begin{SCfigure}}{\end{SCfigure}}}
74
75 \newcommand{\FigBesEnd}{%
76  \let\figure\MyFigure
77  \let\endfigure\MyEndfigure}
78
79 % enables calculation of values,
80 \usepackage{calc}
81
82 % provides special table cell alignments
83 \usepackage{dcolumn}
84
85 % increase the bottom float placement fraction
86 \renewcommand{\bottomfraction}{0.5}
87
88 % avoids that floats are placed before their
89 % corresponding section starts
90 \let\mySection\section\renewcommand{\section}{\suppressfloats[t]\mySection}
91
92 % speed up the longtable calculation
93 \setcounter{LTchunksize}{100}
94
95 % define a new reference format
96 \newrefformat{fig}
97  {Figure~float~\ref{#1} printed on page~\pageref{#1}}
98
99 % used for colored tables
100 \@ifundefined{textcolor}
101  {\usepackage{color}}{}
102 \usepackage{colortbl}
103 \definecolor{darkgreen}{cmyk}{0.5, 0, 1, 0.5}
104 \definecolor{lightgrey}{gray}{0.8}
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{176}{\ifmmode^\circ\else\textdegree\fi}
134 \DeclareInputText{183}{\ifmmode\cdot\else\textperiodcentered\fi}
135
136 % insert additional vertical space of
137 % 1.5 mm between footnotes
138 \let\myFoot\footnote
139 \renewcommand{\footnote}[1]{\myFoot{#1\vspace{1.5mm}}}
140
141 % enable algorithm floats to be referenced
142 \newfloat{Xalgorithm}{tbp}{loa}
143 \floatname{Xalgorithm}{Algorithm}
144 \newcommand{\theHalgorithm}{\theHXalgorithm}
145 \renewenvironment{algorithm}[1][tbp]
146  {\begin{Xalgorithm}[#1]}{\end{Xalgorithm}}
147
148 % number algorithm floats within chapters
149 \numberwithin{Xalgorithm}{chapter}
150
151 % redefine the greyed out note
152 \renewenvironment{lyxgreyedout}
153  {\textcolor{blue}\bgroup}{\egroup}
154
155 % ------------------------------------
156 % used to check for needed LaTeX packages
157 \usepackage{ifthen}
158
159 % check for package arydshln
160 % used for tables with dashed lines
161 \newboolean{arydshln}
162 \IfFileExists{arydshln.sty}
163  {\usepackage{arydshln}
164   \setboolean{arydshln}{true}}
165  {\setboolean{arydshln}{false}}
166
167 % check for package marginnote
168 % used for margin notes
169 \newboolean{marginnote}
170 \IfFileExists{marginnote.sty}
171  {\usepackage{marginnote}
172   \let\marginpar\marginnote
173   \setboolean{marginnote}{true}}
174  {\setboolean{marginnote}{false}}
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
264 \end_layout
265
266 \end_inset
267
268
269 \newline
270
271 \newline
272
273 \family sans
274 Version 1.5.0-
275 \family default
276 1
277 \end_layout
278
279 \begin_layout Standard
280 \begin_inset LatexCommand tableofcontents
281
282 \end_inset
283
284
285 \end_layout
286
287 \begin_layout Standard
288 \begin_inset Note Note
289 status open
290
291 \begin_layout Standard
292 To export all parts of this document to PDF, PS, or DVI the LaTeX-packages
293  
294 \series bold
295 arydshln
296 \series default
297  and 
298 \series bold
299 marginnote
300 \series default
301  must be installed.
302  If they are not installed you can export the document anyway but the sections
303  where the packages are required won't appear in the output.
304 \end_layout
305
306 \begin_layout Standard
307 The latest PDF-version of this document can be found here:
308 \newline
309
310 \series bold
311 http://wiki.lyx.org/LyX/DocumentationDevelopment#EmbeddedObjects
312 \end_layout
313
314 \end_inset
315
316
317 \end_layout
318
319 \begin_layout Chapter
320 Figures
321 \begin_inset LatexCommand label
322 name "cha:Figures"
323
324 \end_inset
325
326
327 \begin_inset LatexCommand index
328 name "Figure"
329
330 \end_inset
331
332
333 \end_layout
334
335 \begin_layout Section
336 Graphics Dialog
337 \begin_inset LatexCommand index
338 name "Figure ! Graphics Dialog"
339
340 \end_inset
341
342
343 \end_layout
344
345 \begin_layout Standard
346 To insert an image into your document, place the cursor at the text position
347  you want and click on the toolbar icon 
348 \begin_inset Graphics
349         filename ../images/dialog-show-new-inset_graphics.xpm
350         scale 85
351
352 \end_inset
353
354  or use the menu 
355 \family sans
356 Insert\SpecialChar \menuseparator
357 Graphics
358 \family default
359 .
360  Then a dialog will appear to choose the file to load.
361  The image will appear in the output exactly at the position where it is
362  in the text.
363 \end_layout
364
365 \begin_layout Standard
366 The graphics dialog can be called at any time by right-clicking on an image.
367  This dialog has three tabs:
368 \end_layout
369
370 \begin_layout Description
371
372 \family sans
373 Graphics
374 \family default
375  Here you can choose an image file and adjust its appearance in the output.
376  The available units for the image size are explained in appendix\InsetSpace ~
377
378 \begin_inset LatexCommand ref
379 reference "cha:Units-available-in"
380
381 \end_inset
382
383 .
384 \newline
385 You can rotate images counter-clockwise by setting a rotation angle and
386  a rotation origin.
387  The image will also be rotated inside LyX.
388 \end_layout
389
390 \begin_layout Description
391
392 \family sans
393 Clipping
394 \family default
395  Alternatively to the usage of scaling units it is possible to set image
396  coordinates to adjust the height and width of the image in the output.
397  The coordinates can also be calculated automatically by pressing the button
398  
399 \family sans
400 Get\InsetSpace ~
401 from\InsetSpace ~
402 File
403 \family default
404 .
405  The option 
406 \family sans
407 Clip\InsetSpace ~
408 to\InsetSpace ~
409 bounding\InsetSpace ~
410 box
411 \family default
412  will only print the image region within the given coordinates.
413  Normally you don't need to take care about image coordinates and can ignore
414  this tab.
415 \end_layout
416
417 \begin_layout Description
418
419 \family sans
420 Extra\InsetSpace ~
421 options
422 \family default
423  In this tab you can modify the appearance of the image within LyX and set
424  the image to be a subfigure of a figure float with an own caption.
425  Subfigures are explained in section\InsetSpace ~
426
427 \begin_inset LatexCommand ref
428 reference "sec:Figure-Floats"
429
430 \end_inset
431
432 .
433 \newline
434  LaTeX experts can also specify on this tab additional LaTeX options.
435 \newline
436  The
437  option 
438 \family sans
439 Draft\InsetSpace ~
440 mode
441 \family default
442  makes the image appear in the output only as a frame with the size of the
443  image.
444 \newline
445 The 
446 \family sans
447 Don't\InsetSpace ~
448 unzip\InsetSpace ~
449 on\InsetSpace ~
450 export
451 \family default
452  option only affects zipped EPS-graphics, e.\InsetSpace \thinspace{}
453 g.\InsetSpace ~
454
455 \emph on
456 x.eps.gz
457 \emph default
458 .
459  When the option is used the images will not be unzipped on export, since
460  LaTeX can handle them as they are.
461 \newline
462 Zipped EPS-graphics are useful to save
463  disk space when you choose PostScript as output format, see appendix\InsetSpace ~
464
465 \begin_inset LatexCommand ref
466 reference "sec:PostScript"
467
468 \end_inset
469
470 .
471  To zip EPS-graphics, use the following commands in a UNIX-shell or a Windows
472  console:
473 \newline
474
475 \series bold
476 gzip x.eps
477 \series default
478
479 \newline
480
481 \series bold
482 zgrep %%Bounding x.eps.gz > x.eps.bb
483 \series default
484
485 \newline
486 The second command creates the bounding box file 
487 \begin_inset Quotes eld
488 \end_inset
489
490 x.eps.bb
491 \begin_inset Quotes erd
492 \end_inset
493
494  that is needed by LaTeX for zipped graphics.
495 \end_layout
496
497 \begin_layout Standard
498
499 \newpage
500 This is an example image in EPS format
501 \begin_inset Foot
502 status collapsed
503
504 \begin_layout Standard
505 Image formats are explained in section\InsetSpace ~
506
507 \begin_inset LatexCommand ref
508 reference "sec:Image-Formats"
509
510 \end_inset
511
512 .
513 \end_layout
514
515 \end_inset
516
517  within a separate, horizontally centered paragraph:
518 \end_layout
519
520 \begin_layout Standard
521 \align center
522 \begin_inset Graphics
523         filename mobius.eps
524         display color
525         scale 70
526         rotateOrigin center
527
528 \end_inset
529
530
531 \end_layout
532
533 \begin_layout Standard
534 This is the same image like the one above but in draft mode:
535 \end_layout
536
537 \begin_layout Standard
538 \align center
539 \begin_inset Graphics
540         filename mobius.eps
541         display color
542         scale 70
543         draft
544         rotateOrigin center
545
546 \end_inset
547
548
549 \end_layout
550
551 \begin_layout Section
552 Figure Floats
553 \begin_inset LatexCommand label
554 name "sec:Figure-Floats"
555
556 \end_inset
557
558
559 \begin_inset LatexCommand index
560 name "Floats ! Figure Floats"
561
562 \end_inset
563
564
565 \begin_inset LatexCommand index
566 name "Figure ! Floats"
567
568 \end_inset
569
570
571 \end_layout
572
573 \begin_layout Standard
574 For general explanations about floats, have a look at section\InsetSpace ~
575
576 \begin_inset LatexCommand ref
577 reference "sec:FloatIntroduction"
578
579 \end_inset
580
581 .
582 \end_layout
583
584 \begin_layout Standard
585 The toolbar button 
586 \begin_inset Graphics
587         filename ../images/float-insert_figure.xpm
588         scale 85
589
590 \end_inset
591
592  and the menu 
593 \family sans
594 Insert\SpecialChar \menuseparator
595 Float\SpecialChar \menuseparator
596 Figure 
597 \family default
598 inserts a float with the label 
599 \begin_inset Quotes eld
600 \end_inset
601
602
603 \series bold
604 Figure\InsetSpace ~
605 #:
606 \series default
607
608 \begin_inset Quotes erd
609 \end_inset
610
611 .
612  Set the cursor behind this label, press Enter and insert the image as described
613  above to get the caption printed below the image.
614  This was done for Figure\InsetSpace ~
615
616 \begin_inset LatexCommand ref
617 reference "fig:kill-plat"
618
619 \end_inset
620
621 .
622  If you want the caption to be above the image, set the cursor at the end
623  of the caption, press enter and insert the image.
624  This was done in Figure\InsetSpace ~
625
626 \begin_inset LatexCommand ref
627 reference "fig:escher"
628
629 \end_inset
630
631 .
632  More about the caption placement is described in section\InsetSpace ~
633
634 \begin_inset LatexCommand ref
635 reference "sec:Caption-Placement"
636
637 \end_inset
638
639 .
640 \end_layout
641
642 \begin_layout Standard
643 \begin_inset Float figure
644 wide false
645 sideways false
646 status open
647
648 \begin_layout Standard
649 \align center
650 \begin_inset Graphics
651         filename platypus.eps
652         display color
653         width 50col%
654         rotateOrigin center
655
656 \end_inset
657
658
659 \end_layout
660
661 \begin_layout Standard
662 \begin_inset Caption
663
664 \begin_layout Standard
665 \begin_inset LatexCommand label
666 name "fig:kill-plat"
667
668 \end_inset
669
670 A severely distorted platypus in a float.
671 \end_layout
672
673 \end_inset
674
675
676 \end_layout
677
678 \end_inset
679
680
681 \end_layout
682
683 \begin_layout Standard
684 \begin_inset Float figure
685 wide false
686 sideways false
687 status open
688
689 \begin_layout Standard
690 \begin_inset Caption
691
692 \begin_layout Standard
693 \begin_inset LatexCommand label
694 name "fig:escher"
695
696 \end_inset
697
698 M.C.
699  Escher on acid.
700 \end_layout
701
702 \end_inset
703
704
705 \end_layout
706
707 \begin_layout Standard
708 \align center
709 \begin_inset Graphics
710         filename escher-lsd.eps
711         display color
712         scale 80
713         rotateOrigin center
714
715 \end_inset
716
717
718 \end_layout
719
720 \end_inset
721
722
723 \end_layout
724
725 \begin_layout Standard
726 \begin_inset LatexCommand index
727 name "References ! to Figures"
728
729 \end_inset
730
731 Figure\InsetSpace ~
732
733 \begin_inset LatexCommand ref
734 reference "fig:kill-plat"
735
736 \end_inset
737
738  and 
739 \begin_inset LatexCommand ref
740 reference "fig:escher"
741
742 \end_inset
743
744  are an example of cross-referenced figures.
745  Figures can be cross-referenced in the text by referencing their label.
746  To do this insert a label in the caption using the menu 
747 \family sans
748 Insert\SpecialChar \menuseparator
749 Label
750 \family default
751  or the toolbar button 
752 \begin_inset Graphics
753         filename ../images/label-insert.xpm
754         scale 85
755
756 \end_inset
757
758 .
759  You can now refer to the label using the menu 
760 \family sans
761 Insert\SpecialChar \menuseparator
762 Cross\InsetSpace ~
763 reference
764 \family default
765  or the toolbar button 
766 \begin_inset Graphics
767         filename ../images/dialog-show-new-inset_ref.xpm
768         scale 85
769
770 \end_inset
771
772 .
773  It is important to use references to floats, rather than using vague references
774  like 
775 \begin_inset Quotes eld
776 \end_inset
777
778 the figure above
779 \begin_inset Quotes erd
780 \end_inset
781
782 , because as LaTeX will reposition the floats in the final document, it
783  might not be 
784 \begin_inset Quotes eld
785 \end_inset
786
787 above
788 \begin_inset Quotes erd
789 \end_inset
790
791  at all.
792 \end_layout
793
794 \begin_layout Standard
795 Normally only one image is inserted to a figure float, but sometimes you
796  might want to use two images with separate subcaptions.
797  This can be set in the tab
798 \family sans
799  Extra\InsetSpace ~
800 options
801 \family default
802  of the graphics dialog.
803  Choose there the option 
804 \family sans
805 Subfigure
806 \family default
807  and enter the subcaption for the image in the caption field.
808  Note that only the main caption of the float is added to the List of Figures.
809 \end_layout
810
811 \begin_layout Standard
812 Figure\InsetSpace ~
813
814 \begin_inset LatexCommand ref
815 reference "fig:Two-distorted-images"
816
817 \end_inset
818
819  is an example of a figure float with two images set side by side.
820  You can also set the images one below the other.
821 \end_layout
822
823 \begin_layout Standard
824 \begin_inset Float figure
825 wide false
826 sideways false
827 status open
828
829 \begin_layout Standard
830
831 \hfill
832
833 \begin_inset Graphics
834         filename escher-lsd.eps
835         width 45col%
836         subcaption
837         subcaptionText "Undefinable structure"
838
839 \end_inset
840
841
842 \hfill
843
844 \begin_inset Graphics
845         filename platypus.eps
846         lyxscale 60
847         width 45col%
848         subcaption
849         subcaptionText "Platypus"
850
851 \end_inset
852
853
854 \hfill
855
856 \end_layout
857
858 \begin_layout Standard
859 \begin_inset Caption
860
861 \begin_layout Standard
862 \begin_inset LatexCommand label
863 name "fig:Two-distorted-images"
864
865 \end_inset
866
867 Two distorted images.
868 \end_layout
869
870 \end_inset
871
872
873 \end_layout
874
875 \end_inset
876
877
878 \end_layout
879
880 \begin_layout Section
881 Image Formats
882 \begin_inset LatexCommand label
883 name "sec:Image-Formats"
884
885 \end_inset
886
887
888 \begin_inset LatexCommand index
889 name "Image Formats"
890
891 \end_inset
892
893
894 \begin_inset LatexCommand index
895 name "Figure ! Image Formats"
896
897 \end_inset
898
899
900 \end_layout
901
902 \begin_layout Standard
903 You can insert images in any known file format.
904  But as explained in appendix\InsetSpace ~
905
906 \begin_inset LatexCommand ref
907 reference "cha:Output-File-Formats"
908
909 \end_inset
910
911 , every output document format allows only a few image formats.
912  LyX uses therefore the program 
913 \family typewriter
914 Imagemagick
915 \family default
916  in the background to convert the images to the right format.
917  To increase your work flow by avoiding these conversions in the background,
918  you can use only the image formats that can directly be embedded in the
919  output file format.
920  The output file formats are explained in appendix\InsetSpace ~
921
922 \begin_inset LatexCommand ref
923 reference "cha:Output-File-Formats"
924
925 \end_inset
926
927 .
928 \end_layout
929
930 \begin_layout Standard
931 Similar to fonts there are two types of image formats:
932 \end_layout
933
934 \begin_layout Description
935 Bitmap\InsetSpace ~
936 images consist of pixel values, often in a compressed form.
937  They are therefore not fully scalable and look pixeled in large zooms.
938  Well-known bitmap image formats are 
939 \begin_inset Quotes eld
940 \end_inset
941
942 Graphics Interchange Format
943 \begin_inset Quotes erd
944 \end_inset
945
946  (GIF, file extension 
947 \begin_inset Quotes eld
948 \end_inset
949
950
951 \family typewriter
952 .gif
953 \family default
954
955 \begin_inset Quotes erd
956 \end_inset
957
958 )
959 \begin_inset LatexCommand index
960 name "GIF|see{Image formats}"
961
962 \end_inset
963
964
965 \begin_inset Quotes eld
966 \end_inset
967
968 Portable Network Graphics
969 \begin_inset Quotes erd
970 \end_inset
971
972  (PNG, file extension 
973 \begin_inset Quotes eld
974 \end_inset
975
976
977 \family typewriter
978 .png
979 \family default
980
981 \begin_inset Quotes erd
982 \end_inset
983
984 )
985 \begin_inset LatexCommand index
986 name "PNG|see{Image formats}"
987
988 \end_inset
989
990 , and 
991 \begin_inset Quotes eld
992 \end_inset
993
994 Joint Photographic Experts Group
995 \begin_inset Quotes erd
996 \end_inset
997
998  (JPG, file extension 
999 \begin_inset Quotes eld
1000 \end_inset
1001
1002
1003 \family typewriter
1004 .jpg
1005 \family default
1006
1007 \begin_inset Quotes erd
1008 \end_inset
1009
1010  or 
1011 \begin_inset Quotes eld
1012 \end_inset
1013
1014
1015 \family typewriter
1016 .jpeg
1017 \family default
1018
1019 \begin_inset Quotes erd
1020 \end_inset
1021
1022 )
1023 \begin_inset LatexCommand index
1024 name "JPG|see{Image formats}"
1025
1026 \end_inset
1027
1028 .
1029 \end_layout
1030
1031 \begin_layout Description
1032 Vector\InsetSpace ~
1033 images consist of vectors and can therefore be scaled to any size
1034  without data loss.
1035  The scaling ability is necessary if you want to create presentations, because
1036  presentations are always scaled by the video projector.
1037  Scaling is also useful for online documents to let the user zoom into diagrams.
1038 \newline
1039 W
1040 ell-known scalable image formats are 
1041 \begin_inset Quotes eld
1042 \end_inset
1043
1044 Scalable Vector Graphics
1045 \begin_inset Quotes erd
1046 \end_inset
1047
1048  (SVG, file extension 
1049 \begin_inset Quotes eld
1050 \end_inset
1051
1052
1053 \family typewriter
1054 .svg
1055 \family default
1056
1057 \begin_inset Quotes erd
1058 \end_inset
1059
1060 )
1061 \begin_inset LatexCommand index
1062 name "SVG|see{Image formats}"
1063
1064 \end_inset
1065
1066
1067 \begin_inset Quotes eld
1068 \end_inset
1069
1070 Encapsulated PostScript
1071 \begin_inset Quotes erd
1072 \end_inset
1073
1074  (EPS, file extension 
1075 \begin_inset Quotes eld
1076 \end_inset
1077
1078
1079 \family typewriter
1080 .eps
1081 \family default
1082
1083 \begin_inset Quotes erd
1084 \end_inset
1085
1086 )
1087 \begin_inset LatexCommand index
1088 name "EPS|see{Image formats}"
1089
1090 \end_inset
1091
1092
1093 \begin_inset Quotes eld
1094 \end_inset
1095
1096 Portable Document Format
1097 \begin_inset Quotes erd
1098 \end_inset
1099
1100  (PDF, file extension 
1101 \begin_inset Quotes eld
1102 \end_inset
1103
1104
1105 \family typewriter
1106 .pdf
1107 \family default
1108
1109 \begin_inset Quotes erd
1110 \end_inset
1111
1112 )
1113 \begin_inset LatexCommand index
1114 name "PDF"
1115
1116 \end_inset
1117
1118 , and 
1119 \begin_inset Quotes eld
1120 \end_inset
1121
1122 Windows Metafile
1123 \begin_inset Quotes erd
1124 \end_inset
1125
1126  (WMF, file extension 
1127 \begin_inset Quotes eld
1128 \end_inset
1129
1130
1131 \family typewriter
1132 .wmf
1133 \family default
1134
1135 \begin_inset Quotes erd
1136 \end_inset
1137
1138 )
1139 \begin_inset LatexCommand index
1140 name "SVG|see{Image formats}"
1141
1142 \end_inset
1143
1144 .
1145  We wrote 
1146 \begin_inset Quotes eld
1147 \end_inset
1148
1149 can be
1150 \begin_inset Quotes erd
1151 \end_inset
1152
1153 , because you can convert any bitmap image to a PDF or EPS-image and the
1154  result will still be a bitmap image.
1155  In this cases only a header with the image properties is added to the original
1156  image
1157 \begin_inset Foot
1158 status open
1159
1160 \begin_layout Standard
1161 In the case of PDF, the original image is additionally compressed.
1162 \end_layout
1163
1164 \end_inset
1165
1166 .
1167  The PDF-files generated by 
1168 \family typewriter
1169 Adobe Photoshop
1170 \family default
1171  are for example bitmap images.
1172 \end_layout
1173
1174 \begin_layout Standard
1175 Normally it is not possible to convert a bitmap image into a scalable one,
1176  only vice versa.
1177  Only the image formats PDF and EPS can directly be embedded to PDF and
1178  PostScript output files, respectively.
1179  SVG and WMF-images are currently recalculated to bitmaps when the output
1180  file is generated because there is currently no adequate WMF/SVG
1181 \begin_inset Formula $\to$
1182 \end_inset
1183
1184 PDF/EPS converter available.
1185 \end_layout
1186
1187 \begin_layout Chapter
1188 Tables
1189 \begin_inset LatexCommand label
1190 name "cha:Tables"
1191
1192 \end_inset
1193
1194
1195 \begin_inset LatexCommand index
1196 name "Table"
1197
1198 \end_inset
1199
1200
1201 \end_layout
1202
1203 \begin_layout Section
1204 Introduction
1205 \begin_inset LatexCommand index
1206 name "Table ! Introduction"
1207
1208 \end_inset
1209
1210
1211 \end_layout
1212
1213 \begin_layout Standard
1214 You can insert a table using either the toolbar button 
1215 \begin_inset Graphics
1216         filename ../images/tabular-insert.xpm
1217         scale 85
1218
1219 \end_inset
1220
1221  or the menu 
1222 \family sans
1223 Insert\SpecialChar \menuseparator
1224 Table
1225 \family default
1226 .
1227  The toolbar button offers you a graphical selection: Move the mouse to
1228  set the column/row number of the table that should be created and then
1229  press a mouse button.
1230  When you use the menu to create a table, a dialog will appear, asking you
1231  for the number of rows and columns.
1232 \newline
1233  The default table has lines around any
1234  cell and the first row appears separated from the rest of the table.
1235  This separation occurs due to a double line: The cells of the first row
1236  have a line below them and the cells of the second row have a line above
1237  them.
1238  Here is an example table:
1239 \end_layout
1240
1241 \begin_layout Standard
1242 \align center
1243 \begin_inset Tabular
1244 <lyxtabular version="3" rows="4" columns="4">
1245 <features>
1246 <column alignment="center" valignment="top" leftline="true" width="0">
1247 <column alignment="center" valignment="top" leftline="true" width="0">
1248 <column alignment="center" valignment="top" leftline="true" width="0">
1249 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
1250 <row topline="true" bottomline="true">
1251 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1252 \begin_inset Text
1253
1254 \begin_layout Standard
1255
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 \family roman
1266 \series medium
1267 \shape up
1268 \size normal
1269 \emph off
1270 \bar no
1271 \noun off
1272 \color none
1273 1
1274 \end_layout
1275
1276 \end_inset
1277 </cell>
1278 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1279 \begin_inset Text
1280
1281 \begin_layout Standard
1282 2
1283 \end_layout
1284
1285 \end_inset
1286 </cell>
1287 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1288 \begin_inset Text
1289
1290 \begin_layout Standard
1291 3
1292 \end_layout
1293
1294 \end_inset
1295 </cell>
1296 </row>
1297 <row topline="true">
1298 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1299 \begin_inset Text
1300
1301 \begin_layout Standard
1302
1303 \family roman
1304 \series medium
1305 \shape up
1306 \size normal
1307 \emph off
1308 \bar no
1309 \noun off
1310 \color none
1311 A
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" usebox="none">
1326 \begin_inset Text
1327
1328 \begin_layout Standard
1329
1330 \end_layout
1331
1332 \end_inset
1333 </cell>
1334 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1335 \begin_inset Text
1336
1337 \begin_layout Standard
1338
1339 \end_layout
1340
1341 \end_inset
1342 </cell>
1343 </row>
1344 <row topline="true">
1345 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1346 \begin_inset Text
1347
1348 \begin_layout Standard
1349
1350 \family roman
1351 \series medium
1352 \shape up
1353 \size normal
1354 \emph off
1355 \bar no
1356 \noun off
1357 \color none
1358 B
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" usebox="none">
1373 \begin_inset Text
1374
1375 \begin_layout Standard
1376
1377 \end_layout
1378
1379 \end_inset
1380 </cell>
1381 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1382 \begin_inset Text
1383
1384 \begin_layout Standard
1385
1386 \end_layout
1387
1388 \end_inset
1389 </cell>
1390 </row>
1391 <row topline="true" bottomline="true">
1392 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1393 \begin_inset Text
1394
1395 \begin_layout Standard
1396
1397 \family roman
1398 \series medium
1399 \shape up
1400 \size normal
1401 \emph off
1402 \bar no
1403 \noun off
1404 \color none
1405 C
1406 \end_layout
1407
1408 \end_inset
1409 </cell>
1410 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1411 \begin_inset Text
1412
1413 \begin_layout Standard
1414
1415 \end_layout
1416
1417 \end_inset
1418 </cell>
1419 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1420 \begin_inset Text
1421
1422 \begin_layout Standard
1423
1424 \end_layout
1425
1426 \end_inset
1427 </cell>
1428 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1429 \begin_inset Text
1430
1431 \begin_layout Standard
1432
1433 \end_layout
1434
1435 \end_inset
1436 </cell>
1437 </row>
1438 </lyxtabular>
1439
1440 \end_inset
1441
1442
1443 \end_layout
1444
1445 \begin_layout Section
1446 Table Dialog
1447 \begin_inset LatexCommand index
1448 name "Table ! Dialog"
1449
1450 \end_inset
1451
1452
1453 \end_layout
1454
1455 \begin_layout Standard
1456 You can alter a table by clicking on it with the right mouse button, which
1457  brings up the table dialog.
1458  Here you can adjust the settings of that cell and row/column respectively
1459  where the cursor is currently placed.
1460  Most of the dialog options also work on selections.
1461  This means if you select more cells, columns or rows, the action is done
1462  for the whole selection.
1463  Note that there is a difference between selecting the 
1464 \emph on
1465 contents
1466 \emph default
1467  of the cell, and the cell itself.
1468  You can alter tables with the following tabs of the table dialog:
1469 \end_layout
1470
1471 \begin_layout Description
1472
1473 \family sans
1474 Table\InsetSpace ~
1475 Settings
1476 \family default
1477  Here you can set the horizontal alignment for the current row and the width
1478  of the current column.
1479  When you have set a width you can also adjust the vertical alignment of
1480  the current column.
1481  A given width will allow the cell to have line breaks and multiple paragraphs
1482  of text, see section\InsetSpace ~
1483
1484 \begin_inset LatexCommand ref
1485 reference "sub:Multiple-Lines-in"
1486
1487 \end_inset
1488
1489 .
1490  If you set no width, the column is as wide as their widest cell content
1491  is.
1492 \newline
1493 Furthermore, you can mark one or multiple cells of one row as a multicolumn
1494  cell, see section\InsetSpace ~
1495
1496 \begin_inset LatexCommand ref
1497 reference "sub:Multicolumns"
1498
1499 \end_inset
1500
1501 .
1502 \newline
1503 The rotate check boxes rotates the current cell, a selection, or the whole
1504  table counter-clockwise by 90°.
1505  The rotation is not shown within LyX, only in the output.
1506 \newline
1507
1508 \begin_inset Note Greyedout
1509 status open
1510
1511 \begin_layout Standard
1512
1513 \series bold
1514 Note:
1515 \series default
1516  Not all DVI-viewers are able to display rotations.
1517 \end_layout
1518
1519 \end_inset
1520
1521
1522 \newline
1523 It is also possible to enter a LaTeX-argument which is needed for special
1524  table formattings, see section\InsetSpace ~
1525
1526 \begin_inset LatexCommand ref
1527 reference "sub:Multicolumn-Calculations"
1528
1529 \end_inset
1530
1531  and 
1532 \begin_inset LatexCommand ref
1533 reference "sec:Colored-Tables"
1534
1535 \end_inset
1536
1537 .
1538 \end_layout
1539
1540 \begin_layout Description
1541
1542 \family sans
1543 Borders
1544 \family default
1545  In this tab you can add and delete border lines for the current row/column.
1546 \newline
1547 Using
1548  the style option 
1549 \family sans
1550 Formal
1551 \family default
1552  will convert the table to a formal table as described in section\InsetSpace ~
1553
1554 \begin_inset LatexCommand ref
1555 reference "sec:Formal-Tables"
1556
1557 \end_inset
1558
1559 .
1560 \newline
1561 You can also add here space to table rows as decribed in section\InsetSpace ~
1562
1563 \begin_inset LatexCommand ref
1564 reference "sub:Row-Spacing"
1565
1566 \end_inset
1567
1568 .
1569 \end_layout
1570
1571 \begin_layout Description
1572
1573 \family sans
1574 Longtable
1575 \family default
1576  This tab is to make a table a so called 
1577 \begin_inset Quotes eld
1578 \end_inset
1579
1580
1581 \emph on
1582 longtable
1583 \emph default
1584
1585 \begin_inset Quotes erd
1586 \end_inset
1587
1588  that can run over several pages.
1589  Section\InsetSpace ~
1590
1591 \begin_inset LatexCommand ref
1592 reference "sec:Longtables"
1593
1594 \end_inset
1595
1596  and 
1597 \begin_inset LatexCommand ref
1598 reference "sec:Special-Longtable-Issues"
1599
1600 \end_inset
1601
1602  describe the longtable features in detail.
1603 \end_layout
1604
1605 \begin_layout Standard
1606 When the table toolbar is opened, you can move the cursor with the arrow
1607  keys from cell to cell and the property of the current cell will immediately
1608  be displayed in the dialog.
1609 \end_layout
1610
1611 \begin_layout Section
1612 Table Toolbar
1613 \begin_inset LatexCommand index
1614 name "Table ! Toolbar"
1615
1616 \end_inset
1617
1618
1619 \end_layout
1620
1621 \begin_layout Standard
1622 The table toolbar is an alternative to the table dialog to be able to alter
1623  tables faster.
1624  It should normally appear at the bottom of LyX's main window when the cursor
1625  is inside a table.
1626  You can alternatively switch it on to appear always, by right-clicking
1627  in LyX's main menu bar.
1628 \end_layout
1629
1630 \begin_layout Standard
1631 The toolbar has the following icons:
1632 \end_layout
1633
1634 \begin_layout Labeling
1635 \labelwidthstring 00.00.0000
1636 \begin_inset Graphics
1637         filename ../images/tabular-feature_append-row.xpm
1638
1639 \end_inset
1640
1641  adds a row below the current cell or selection
1642 \end_layout
1643
1644 \begin_layout Labeling
1645 \labelwidthstring 00.00.0000
1646 \begin_inset Graphics
1647         filename ../images/tabular-feature_append-column.xpm
1648
1649 \end_inset
1650
1651  adds a column right beside the current cell or selection
1652 \end_layout
1653
1654 \begin_layout Labeling
1655 \labelwidthstring 00.00.0000
1656 \begin_inset Graphics
1657         filename ../images/tabular-feature_delete-row.xpm
1658
1659 \end_inset
1660
1661  deletes the current row or selection
1662 \end_layout
1663
1664 \begin_layout Labeling
1665 \labelwidthstring 00.00.0000
1666 \begin_inset Graphics
1667         filename ../images/tabular-feature_delete-column.xpm
1668
1669 \end_inset
1670
1671  deletes the current column or selection
1672 \end_layout
1673
1674 \begin_layout Labeling
1675 \labelwidthstring 00.00.0000
1676 \begin_inset Graphics
1677         filename ../images/tabular-feature_toggle-line-top.xpm
1678
1679 \end_inset
1680
1681  adds a line at the top of the current cell / row or of a selection
1682 \end_layout
1683
1684 \begin_layout Labeling
1685 \labelwidthstring 00.00.0000
1686 \begin_inset Graphics
1687         filename ../images/tabular-feature_toggle-line-bottom.xpm
1688
1689 \end_inset
1690
1691  adds a line at the bottom of the current cell / row or of a selection
1692 \end_layout
1693
1694 \begin_layout Labeling
1695 \labelwidthstring 00.00.0000
1696 \begin_inset Graphics
1697         filename ../images/tabular-feature_toggle-line-left.xpm
1698
1699 \end_inset
1700
1701  adds a line at the left side of the current cell / row or of a selection
1702 \end_layout
1703
1704 \begin_layout Labeling
1705 \labelwidthstring 00.00.0000
1706 \begin_inset Graphics
1707         filename ../images/tabular-feature_toggle-line-right.xpm
1708
1709 \end_inset
1710
1711  adds a line at the right side of the current cell / row or of a selection
1712 \end_layout
1713
1714 \begin_layout Labeling
1715 \labelwidthstring 00.00.0000
1716 \begin_inset Graphics
1717         filename ../images/tabular-feature_set-all-lines.xpm
1718
1719 \end_inset
1720
1721  adds lines around the current or selected cells - if the current cell no
1722  multicolumn this also affects the current row and column
1723 \end_layout
1724
1725 \begin_layout Labeling
1726 \labelwidthstring 00.00.0000
1727 \begin_inset Graphics
1728         filename ../images/tabular-feature_unset-all-lines.xpm
1729
1730 \end_inset
1731
1732  deletes all lines of the current or selected cells - if the current cell
1733  no multicolumn this also affects the current row and column
1734 \end_layout
1735
1736 \begin_layout Labeling
1737 \labelwidthstring 00.00.0000
1738 \begin_inset Graphics
1739         filename ../images/tabular-feature_align-left.xpm
1740
1741 \end_inset
1742
1743  left-aligns the content of the current cell / column
1744 \end_layout
1745
1746 \begin_layout Labeling
1747 \labelwidthstring 00.00.0000
1748 \begin_inset Graphics
1749         filename ../images/tabular-feature_align-center.xpm
1750
1751 \end_inset
1752
1753  centers the content of the current cell / column horizontally
1754 \end_layout
1755
1756 \begin_layout Labeling
1757 \labelwidthstring 00.00.0000
1758 \begin_inset Graphics
1759         filename ../images/tabular-feature_align-right.xpm
1760
1761 \end_inset
1762
1763  right-aligns the content of the current cell / column
1764 \end_layout
1765
1766 \begin_layout Labeling
1767 \labelwidthstring 00.00.0000
1768 \begin_inset Graphics
1769         filename ../images/tabular-feature_valign-top.xpm
1770
1771 \end_inset
1772
1773  aligns the content of the current cell vertically to the top
1774 \end_layout
1775
1776 \begin_layout Labeling
1777 \labelwidthstring 00.00.0000
1778 \begin_inset Graphics
1779         filename ../images/tabular-feature_valign-middle.xpm
1780
1781 \end_inset
1782
1783  centers the content of the current cell vertically
1784 \end_layout
1785
1786 \begin_layout Labeling
1787 \labelwidthstring 00.00.0000
1788 \begin_inset Graphics
1789         filename ../images/tabular-feature_valign-bottom.xpm
1790
1791 \end_inset
1792
1793  aligns the content of the current cell vertically to the bottom
1794 \end_layout
1795
1796 \begin_layout Labeling
1797 \labelwidthstring 00.00.0000
1798 \begin_inset Graphics
1799         filename ../images/tabular-feature_set-rotate-cell.xpm
1800
1801 \end_inset
1802
1803  rotates the current cell or selection counter-clockwise by 90°
1804 \end_layout
1805
1806 \begin_layout Labeling
1807 \labelwidthstring 00.00.0000
1808 \begin_inset Graphics
1809         filename ../images/tabular-feature_set-rotate-tabular.xpm
1810
1811 \end_inset
1812
1813  rotates the whole table counter-clockwise by 90°
1814 \end_layout
1815
1816 \begin_layout Labeling
1817 \labelwidthstring 00.00.0000
1818 \begin_inset Graphics
1819         filename ../images/tabular-feature_multicolumn.xpm
1820
1821 \end_inset
1822
1823  sets the current cell or selection as a multicolumn
1824 \end_layout
1825
1826 \begin_layout Section
1827 Edit Table Menu
1828 \begin_inset LatexCommand index
1829 name "Table ! Edit Menu"
1830
1831 \end_inset
1832
1833
1834 \end_layout
1835
1836 \begin_layout Standard
1837 Additionally to the table dialog and toolbar, the menu 
1838 \family sans
1839 Edit\SpecialChar \menuseparator
1840 Table
1841 \family default
1842  allows you to add and delete border lines for the current row/column and
1843  to set the current selection as multicolumn.
1844  The menu is only available when the cursor is inside a table.
1845 \end_layout
1846
1847 \begin_layout Section
1848 Table Floats
1849 \begin_inset LatexCommand label
1850 name "sec:Table-Floats"
1851
1852 \end_inset
1853
1854
1855 \begin_inset LatexCommand index
1856 name "Floats ! Tables"
1857
1858 \end_inset
1859
1860
1861 \begin_inset LatexCommand index
1862 name "Table ! Floats"
1863
1864 \end_inset
1865
1866
1867 \end_layout
1868
1869 \begin_layout Standard
1870 For general explanations about floats, have a look at section\InsetSpace ~
1871
1872 \begin_inset LatexCommand ref
1873 reference "sec:FloatIntroduction"
1874
1875 \end_inset
1876
1877 .
1878 \end_layout
1879
1880 \begin_layout Standard
1881 \begin_inset Float table
1882 placement h
1883 wide false
1884 sideways false
1885 status open
1886
1887 \begin_layout Standard
1888 \begin_inset Caption
1889
1890 \begin_layout Standard
1891 \begin_inset LatexCommand label
1892 name "tab:a table float"
1893
1894 \end_inset
1895
1896 A table float.
1897 \end_layout
1898
1899 \end_inset
1900
1901
1902 \end_layout
1903
1904 \begin_layout Standard
1905 \align center
1906 \begin_inset Tabular
1907 <lyxtabular version="3" rows="3" columns="3">
1908 <features>
1909 <column alignment="center" valignment="top" leftline="true" width="0pt">
1910 <column alignment="center" valignment="top" leftline="true" width="0pt">
1911 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0pt">
1912 <row topline="true" bottomline="true">
1913 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1914 \begin_inset Text
1915
1916 \begin_layout Standard
1917
1918 \family roman
1919 \series medium
1920 \shape up
1921 \size normal
1922 \emph off
1923 \bar no
1924 \noun off
1925 \color none
1926 1
1927 \end_layout
1928
1929 \end_inset
1930 </cell>
1931 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1932 \begin_inset Text
1933
1934 \begin_layout Standard
1935
1936 \family roman
1937 \series medium
1938 \shape up
1939 \size normal
1940 \emph off
1941 \bar no
1942 \noun off
1943 \color none
1944 2
1945 \end_layout
1946
1947 \end_inset
1948 </cell>
1949 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1950 \begin_inset Text
1951
1952 \begin_layout Standard
1953
1954 \family roman
1955 \series medium
1956 \shape up
1957 \size normal
1958 \emph off
1959 \bar no
1960 \noun off
1961 \color none
1962 3
1963 \end_layout
1964
1965 \end_inset
1966 </cell>
1967 </row>
1968 <row topline="true">
1969 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1970 \begin_inset Text
1971
1972 \begin_layout Standard
1973
1974 \family roman
1975 \series medium
1976 \shape up
1977 \size normal
1978 \emph off
1979 \bar no
1980 \noun off
1981 \color none
1982 Joe
1983 \end_layout
1984
1985 \end_inset
1986 </cell>
1987 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1988 \begin_inset Text
1989
1990 \begin_layout Standard
1991
1992 \family roman
1993 \series medium
1994 \shape up
1995 \size normal
1996 \emph off
1997 \bar no
1998 \noun off
1999 \color none
2000 Mary
2001 \end_layout
2002
2003 \end_inset
2004 </cell>
2005 <cell alignment="center" valignment="top" topline="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 Ted
2019 \end_layout
2020
2021 \end_inset
2022 </cell>
2023 </row>
2024 <row topline="true" bottomline="true">
2025 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2026 \begin_inset Text
2027
2028 \begin_layout Standard
2029
2030 \family roman
2031 \series medium
2032 \shape up
2033 \size normal
2034 \emph off
2035 \bar no
2036 \noun off
2037 \color none
2038 \begin_inset Formula $\int x^{2}dx$
2039 \end_inset
2040
2041
2042 \end_layout
2043
2044 \end_inset
2045 </cell>
2046 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2047 \begin_inset Text
2048
2049 \begin_layout Standard
2050
2051 \family roman
2052 \series medium
2053 \shape up
2054 \size normal
2055 \emph off
2056 \bar no
2057 \noun off
2058 \color none
2059 \begin_inset Formula $\left[\begin{array}{cc}
2060 a & b\\
2061 c & d\end{array}\right]$
2062 \end_inset
2063
2064
2065 \end_layout
2066
2067 \end_inset
2068 </cell>
2069 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2070 \begin_inset Text
2071
2072 \begin_layout Standard
2073
2074 \family roman
2075 \series medium
2076 \shape up
2077 \size normal
2078 \emph off
2079 \bar no
2080 \noun off
2081 \color none
2082 \begin_inset Formula $1+1=2$
2083 \end_inset
2084
2085
2086 \end_layout
2087
2088 \end_inset
2089 </cell>
2090 </row>
2091 </lyxtabular>
2092
2093 \end_inset
2094
2095
2096 \end_layout
2097
2098 \end_inset
2099
2100
2101 \end_layout
2102
2103 \begin_layout Standard
2104 Table floats can be inserted using the menu 
2105 \family sans
2106 Insert\SpecialChar \menuseparator
2107 Float\SpecialChar \menuseparator
2108 Table
2109 \family default
2110  or the toolbar button 
2111 \begin_inset Graphics
2112         filename ../images/float-insert_table.xpm
2113         scale 85
2114
2115 \end_inset
2116
2117 .
2118 \end_layout
2119
2120 \begin_layout Standard
2121 The float appears as a collapsible box with the label 
2122 \begin_inset Quotes eld
2123 \end_inset
2124
2125
2126 \series bold
2127 Table\InsetSpace ~
2128 #:
2129 \series default
2130
2131 \begin_inset Quotes erd
2132 \end_inset
2133
2134  inside it.
2135  The text following the label is the caption of the table.
2136  To insert a table to the the float set the cursor at the end of the caption
2137  text, press enter and insert the table.
2138  The caption is now printed above the table.
2139 \end_layout
2140
2141 \begin_layout Standard
2142 Table\InsetSpace ~
2143
2144 \begin_inset LatexCommand ref
2145 reference "tab:a table float"
2146
2147 \end_inset
2148
2149  is an example table within a table float.
2150 \end_layout
2151
2152 \begin_layout Standard
2153 Having the caption above the table is the common rule that is unfortunately
2154  not supported in LaTeX's standard classes.
2155  That means if you are using the document classes 
2156 \family sans
2157 article
2158 \family default
2159
2160 \family sans
2161 book
2162 \family default
2163
2164 \family sans
2165 letter
2166 \family default
2167 , or 
2168 \family sans
2169 report
2170 \family default
2171  there will be no space between the caption and the table.
2172  To insert the needed space, add the following option to the load command
2173  of the LaTeX-package 
2174 \series bold
2175 caption
2176 \series default
2177
2178 \begin_inset LatexCommand index
2179 name "LaTeX-packages ! caption"
2180
2181 \end_inset
2182
2183  in your document preamble
2184 \begin_inset Foot
2185 status collapsed
2186
2187 \begin_layout Standard
2188 For more information have a look at section\InsetSpace ~
2189
2190 \begin_inset LatexCommand ref
2191 reference "sec:Caption-Placement"
2192
2193 \end_inset
2194
2195 .
2196 \end_layout
2197
2198 \end_inset
2199
2200 :
2201 \end_layout
2202
2203 \begin_layout Standard
2204
2205 \series bold
2206 tableposition=top
2207 \end_layout
2208
2209 \begin_layout Standard
2210 The package 
2211 \series bold
2212 caption
2213 \series default
2214 , which is described in section\InsetSpace ~
2215
2216 \begin_inset LatexCommand ref
2217 reference "sec:Caption-Formatting"
2218
2219 \end_inset
2220
2221 , is used to adjust the caption format.
2222 \end_layout
2223
2224 \begin_layout Standard
2225 \begin_inset LatexCommand index
2226 name "References ! to Tables"
2227
2228 \end_inset
2229
2230 Tables can be cross-referenced in the text by referencing their label.
2231  To do this insert a label in the caption using the menu 
2232 \family sans
2233 Insert\SpecialChar \menuseparator
2234 Label
2235 \family default
2236  or the toolbar button 
2237 \begin_inset Graphics
2238         filename ../images/label-insert.xpm
2239         scale 85
2240
2241 \end_inset
2242
2243 .
2244  You can now refer to the label using the menu 
2245 \family sans
2246 Insert\SpecialChar \menuseparator
2247 Cross\InsetSpace ~
2248 reference
2249 \family default
2250  or the toolbar button 
2251 \begin_inset Graphics
2252         filename ../images/dialog-show-new-inset_ref.xpm
2253         scale 85
2254
2255 \end_inset
2256
2257 .
2258 \end_layout
2259
2260 \begin_layout Standard
2261
2262 \end_layout
2263
2264 \begin_layout Section
2265 Longtables
2266 \begin_inset LatexCommand label
2267 name "sec:Longtables"
2268
2269 \end_inset
2270
2271
2272 \begin_inset LatexCommand index
2273 name "Longtables"
2274
2275 \end_inset
2276
2277
2278 \begin_inset LatexCommand index
2279 name "Table ! Longtables"
2280
2281 \end_inset
2282
2283
2284 \end_layout
2285
2286 \begin_layout Standard
2287 If the table is too long to fit on one page, you can use the option 
2288 \family sans
2289 Use\InsetSpace ~
2290 long\InsetSpace ~
2291 table
2292 \family default
2293  in the tab 
2294 \family sans
2295 Longtable
2296 \family default
2297  of the table dialog to split the table automatically over more pages.
2298  Doing this enables some check boxes and you can now define:
2299 \end_layout
2300
2301 \begin_layout Description
2302
2303 \family sans
2304 Header
2305 \family default
2306 : The current row and all rows above, that don't have any special options
2307  defined, are defined to be the header rows of all pages of the longtable;
2308  except for the first page, if 
2309 \family sans
2310 First\InsetSpace ~
2311 header
2312 \family default
2313  is defined.
2314  This therefore called the main header.
2315 \end_layout
2316
2317 \begin_layout Description
2318
2319 \family sans
2320 First\InsetSpace ~
2321 header
2322 \family default
2323 : The current row and all rows above, that don't have any special options
2324  defined, are defined to be the header rows of the first page of the longtable.
2325 \end_layout
2326
2327 \begin_layout Description
2328
2329 \family sans
2330 Footer
2331 \family default
2332 : The current row and all rows below, that don't have any special options
2333  defined, are defined to be the footer rows of all pages of the longtable;
2334  except for the last page, if 
2335 \family sans
2336 Last\InsetSpace ~
2337 footer
2338 \family default
2339  is defined.
2340 \end_layout
2341
2342 \begin_layout Description
2343
2344 \family sans
2345 Last\InsetSpace ~
2346 footer
2347 \family default
2348 : The current row and all rows below, that don't have any special options
2349  defined, are defined to be the footer rows of the last page of the longtable.
2350 \end_layout
2351
2352 \begin_layout Standard
2353 You can also specify a row where the table is splitted.
2354  If you set more than one option in the same table row, you should be aware
2355  of the fact that only the first one is used in the given table row.
2356  The others will then be defined as 
2357 \emph on
2358 empty
2359 \emph default
2360 .
2361  In this context, first means first in this order: 
2362 \family sans
2363 Footer, Last\InsetSpace ~
2364 footer,
2365 \family default
2366  
2367 \family sans
2368 Header,
2369 \family default
2370  
2371 \family sans
2372 First\InsetSpace ~
2373 header.
2374
2375 \family default
2376 \emph on
2377  
2378 \emph default
2379 See the following longtable to see how it works:
2380 \end_layout
2381
2382 \begin_layout Standard
2383 \align center
2384 \begin_inset Tabular
2385 <lyxtabular version="3" rows="69" columns="3">
2386 <features islongtable="true">
2387 <column alignment="left" valignment="top" leftline="true" width="0cm">
2388 <column alignment="left" valignment="top" width="0pt">
2389 <column alignment="right" valignment="top" leftline="true" rightline="true" width="0pt">
2390 <row topline="true" bottomline="true" endfirsthead="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 (ignore the names)
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" endfirsthead="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" endhead="true">
2455 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2456 \begin_inset Text
2457
2458 \begin_layout Standard
2459
2460 \series bold
2461 Example Phone List
2462 \end_layout
2463
2464 \end_inset
2465 </cell>
2466 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
2467 \begin_inset Text
2468
2469 \begin_layout Standard
2470
2471 \end_layout
2472
2473 \end_inset
2474 </cell>
2475 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2476 \begin_inset Text
2477
2478 \begin_layout Standard
2479
2480 \end_layout
2481
2482 \end_inset
2483 </cell>
2484 </row>
2485 <row topline="true" bottomline="true" endhead="true">
2486 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
2487 \begin_inset Text
2488
2489 \begin_layout Standard
2490
2491 \series bold
2492 NAME
2493 \end_layout
2494
2495 \end_inset
2496 </cell>
2497 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
2498 \begin_inset Text
2499
2500 \begin_layout Standard
2501
2502 \end_layout
2503
2504 \end_inset
2505 </cell>
2506 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
2507 \begin_inset Text
2508
2509 \begin_layout Standard
2510
2511 \series bold
2512 TEL.
2513 \end_layout
2514
2515 \end_inset
2516 </cell>
2517 </row>
2518 <row topline="true" bottomline="true" endfoot="true">
2519 <cell multicolumn="1" alignment="right" valignment="top" topline="true" usebox="none">
2520 \begin_inset Text
2521
2522 \begin_layout Standard
2523  continued on next page
2524 \end_layout
2525
2526 \end_inset
2527 </cell>
2528 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
2529 \begin_inset Text
2530
2531 \begin_layout Standard
2532
2533 \end_layout
2534
2535 \end_inset
2536 </cell>
2537 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2538 \begin_inset Text
2539
2540 \begin_layout Standard
2541
2542 \end_layout
2543
2544 \end_inset
2545 </cell>
2546 </row>
2547 <row>
2548 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2549 \begin_inset Text
2550
2551 \begin_layout Standard
2552
2553 \series bold
2554 Annovi
2555 \end_layout
2556
2557 \end_inset
2558 </cell>
2559 <cell alignment="center" valignment="top" topline="true" usebox="none">
2560 \begin_inset Text
2561
2562 \begin_layout Standard
2563 Silvia
2564 \end_layout
2565
2566 \end_inset
2567 </cell>
2568 <cell alignment="right" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2569 \begin_inset Text
2570
2571 \begin_layout Standard
2572 111
2573 \end_layout
2574
2575 \end_inset
2576 </cell>
2577 </row>
2578 <row>
2579 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2580 \begin_inset Text
2581
2582 \begin_layout Standard
2583
2584 \series bold
2585 Bertoli
2586 \end_layout
2587
2588 \end_inset
2589 </cell>
2590 <cell alignment="center" valignment="top" topline="true" usebox="none">
2591 \begin_inset Text
2592
2593 \begin_layout Standard
2594 Stefano
2595 \end_layout
2596
2597 \end_inset
2598 </cell>
2599 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2600 \begin_inset Text
2601
2602 \begin_layout Standard
2603 111
2604 \end_layout
2605
2606 \end_inset
2607 </cell>
2608 </row>
2609 <row>
2610 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2611 \begin_inset Text
2612
2613 \begin_layout Standard
2614
2615 \series bold
2616 Bozzi
2617 \end_layout
2618
2619 \end_inset
2620 </cell>
2621 <cell alignment="center" valignment="top" topline="true" usebox="none">
2622 \begin_inset Text
2623
2624 \begin_layout Standard
2625 Walter
2626 \end_layout
2627
2628 \end_inset
2629 </cell>
2630 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2631 \begin_inset Text
2632
2633 \begin_layout Standard
2634 111
2635 \end_layout
2636
2637 \end_inset
2638 </cell>
2639 </row>
2640 <row>
2641 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2642 \begin_inset Text
2643
2644 \begin_layout Standard
2645
2646 \series bold
2647 Cachia
2648 \end_layout
2649
2650 \end_inset
2651 </cell>
2652 <cell alignment="center" valignment="top" topline="true" usebox="none">
2653 \begin_inset Text
2654
2655 \begin_layout Standard
2656 Maria
2657 \end_layout
2658
2659 \end_inset
2660 </cell>
2661 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2662 \begin_inset Text
2663
2664 \begin_layout Standard
2665 111
2666 \end_layout
2667
2668 \end_inset
2669 </cell>
2670 </row>
2671 <row>
2672 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2673 \begin_inset Text
2674
2675 \begin_layout Standard
2676
2677 \series bold
2678 Cachia
2679 \end_layout
2680
2681 \end_inset
2682 </cell>
2683 <cell alignment="center" valignment="top" topline="true" usebox="none">
2684 \begin_inset Text
2685
2686 \begin_layout Standard
2687 Maurizio
2688 \end_layout
2689
2690 \end_inset
2691 </cell>
2692 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2693 \begin_inset Text
2694
2695 \begin_layout Standard
2696 111
2697 \end_layout
2698
2699 \end_inset
2700 </cell>
2701 </row>
2702 <row>
2703 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2704 \begin_inset Text
2705
2706 \begin_layout Standard
2707
2708 \series bold
2709 Cinquemani
2710 \end_layout
2711
2712 \end_inset
2713 </cell>
2714 <cell alignment="center" valignment="top" topline="true" usebox="none">
2715 \begin_inset Text
2716
2717 \begin_layout Standard
2718 Giusi
2719 \end_layout
2720
2721 \end_inset
2722 </cell>
2723 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2724 \begin_inset Text
2725
2726 \begin_layout Standard
2727 111
2728 \end_layout
2729
2730 \end_inset
2731 </cell>
2732 </row>
2733 <row>
2734 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2735 \begin_inset Text
2736
2737 \begin_layout Standard
2738
2739 \series bold
2740 Colin
2741 \end_layout
2742
2743 \end_inset
2744 </cell>
2745 <cell alignment="center" valignment="top" topline="true" usebox="none">
2746 \begin_inset Text
2747
2748 \begin_layout Standard
2749 Bernard
2750 \end_layout
2751
2752 \end_inset
2753 </cell>
2754 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2755 \begin_inset Text
2756
2757 \begin_layout Standard
2758 111
2759 \end_layout
2760
2761 \end_inset
2762 </cell>
2763 </row>
2764 <row>
2765 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2766 \begin_inset Text
2767
2768 \begin_layout Standard
2769
2770 \series bold
2771 Concli
2772 \end_layout
2773
2774 \end_inset
2775 </cell>
2776 <cell alignment="center" valignment="top" topline="true" usebox="none">
2777 \begin_inset Text
2778
2779 \begin_layout Standard
2780 Gianfranco
2781 \end_layout
2782
2783 \end_inset
2784 </cell>
2785 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2786 \begin_inset Text
2787
2788 \begin_layout Standard
2789 111
2790 \end_layout
2791
2792 \end_inset
2793 </cell>
2794 </row>
2795 <row>
2796 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2797 \begin_inset Text
2798
2799 \begin_layout Standard
2800
2801 \series bold
2802 Dal Bosco
2803 \end_layout
2804
2805 \end_inset
2806 </cell>
2807 <cell alignment="center" valignment="top" topline="true" usebox="none">
2808 \begin_inset Text
2809
2810 \begin_layout Standard
2811 Carolina
2812 \end_layout
2813
2814 \end_inset
2815 </cell>
2816 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2817 \begin_inset Text
2818
2819 \begin_layout Standard
2820 111
2821 \end_layout
2822
2823 \end_inset
2824 </cell>
2825 </row>
2826 <row>
2827 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2828 \begin_inset Text
2829
2830 \begin_layout Standard
2831
2832 \series bold
2833 Dalpiaz
2834 \end_layout
2835
2836 \end_inset
2837 </cell>
2838 <cell alignment="center" valignment="top" topline="true" usebox="none">
2839 \begin_inset Text
2840
2841 \begin_layout Standard
2842 Annamaria
2843 \end_layout
2844
2845 \end_inset
2846 </cell>
2847 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2848 \begin_inset Text
2849
2850 \begin_layout Standard
2851 111
2852 \end_layout
2853
2854 \end_inset
2855 </cell>
2856 </row>
2857 <row>
2858 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2859 \begin_inset Text
2860
2861 \begin_layout Standard
2862
2863 \series bold
2864 Feliciello
2865 \end_layout
2866
2867 \end_inset
2868 </cell>
2869 <cell alignment="center" valignment="top" topline="true" usebox="none">
2870 \begin_inset Text
2871
2872 \begin_layout Standard
2873 Domenico
2874 \end_layout
2875
2876 \end_inset
2877 </cell>
2878 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2879 \begin_inset Text
2880
2881 \begin_layout Standard
2882 111
2883 \end_layout
2884
2885 \end_inset
2886 </cell>
2887 </row>
2888 <row>
2889 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2890 \begin_inset Text
2891
2892 \begin_layout Standard
2893
2894 \series bold
2895 Focarelli
2896 \end_layout
2897
2898 \end_inset
2899 </cell>
2900 <cell alignment="center" valignment="top" topline="true" usebox="none">
2901 \begin_inset Text
2902
2903 \begin_layout Standard
2904 Paola
2905 \end_layout
2906
2907 \end_inset
2908 </cell>
2909 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2910 \begin_inset Text
2911
2912 \begin_layout Standard
2913 111
2914 \end_layout
2915
2916 \end_inset
2917 </cell>
2918 </row>
2919 <row>
2920 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2921 \begin_inset Text
2922
2923 \begin_layout Standard
2924
2925 \series bold
2926 Galletti
2927 \end_layout
2928
2929 \end_inset
2930 </cell>
2931 <cell alignment="center" valignment="top" topline="true" usebox="none">
2932 \begin_inset Text
2933
2934 \begin_layout Standard
2935 Oreste
2936 \end_layout
2937
2938 \end_inset
2939 </cell>
2940 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2941 \begin_inset Text
2942
2943 \begin_layout Standard
2944 111
2945 \end_layout
2946
2947 \end_inset
2948 </cell>
2949 </row>
2950 <row>
2951 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2952 \begin_inset Text
2953
2954 \begin_layout Standard
2955
2956 \series bold
2957 Gasparini
2958 \end_layout
2959
2960 \end_inset
2961 </cell>
2962 <cell alignment="center" valignment="top" topline="true" usebox="none">
2963 \begin_inset Text
2964
2965 \begin_layout Standard
2966 Franca
2967 \end_layout
2968
2969 \end_inset
2970 </cell>
2971 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2972 \begin_inset Text
2973
2974 \begin_layout Standard
2975 111
2976 \end_layout
2977
2978 \end_inset
2979 </cell>
2980 </row>
2981 <row>
2982 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2983 \begin_inset Text
2984
2985 \begin_layout Standard
2986
2987 \series bold
2988 Rizzardi
2989 \end_layout
2990
2991 \end_inset
2992 </cell>
2993 <cell alignment="center" valignment="top" topline="true" usebox="none">
2994 \begin_inset Text
2995
2996 \begin_layout Standard
2997 Paola
2998 \end_layout
2999
3000 \end_inset
3001 </cell>
3002 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3003 \begin_inset Text
3004
3005 \begin_layout Standard
3006 111
3007 \end_layout
3008
3009 \end_inset
3010 </cell>
3011 </row>
3012 <row>
3013 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3014 \begin_inset Text
3015
3016 \begin_layout Standard
3017
3018 \series bold
3019 Lassini
3020 \end_layout
3021
3022 \end_inset
3023 </cell>
3024 <cell alignment="center" valignment="top" topline="true" usebox="none">
3025 \begin_inset Text
3026
3027 \begin_layout Standard
3028 Giancarlo
3029 \end_layout
3030
3031 \end_inset
3032 </cell>
3033 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3034 \begin_inset Text
3035
3036 \begin_layout Standard
3037 111
3038 \end_layout
3039
3040 \end_inset
3041 </cell>
3042 </row>
3043 <row>
3044 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3045 \begin_inset Text
3046
3047 \begin_layout Standard
3048
3049 \series bold
3050 Malfatti
3051 \end_layout
3052
3053 \end_inset
3054 </cell>
3055 <cell alignment="center" valignment="top" topline="true" usebox="none">
3056 \begin_inset Text
3057
3058 \begin_layout Standard
3059 Luciano
3060 \end_layout
3061
3062 \end_inset
3063 </cell>
3064 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3065 \begin_inset Text
3066
3067 \begin_layout Standard
3068 111
3069 \end_layout
3070
3071 \end_inset
3072 </cell>
3073 </row>
3074 <row>
3075 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3076 \begin_inset Text
3077
3078 \begin_layout Standard
3079
3080 \series bold
3081 Malfatti
3082 \end_layout
3083
3084 \end_inset
3085 </cell>
3086 <cell alignment="center" valignment="top" topline="true" usebox="none">
3087 \begin_inset Text
3088
3089 \begin_layout Standard
3090 Valeriano
3091 \end_layout
3092
3093 \end_inset
3094 </cell>
3095 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3096 \begin_inset Text
3097
3098 \begin_layout Standard
3099 111
3100 \end_layout
3101
3102 \end_inset
3103 </cell>
3104 </row>
3105 <row>
3106 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3107 \begin_inset Text
3108
3109 \begin_layout Standard
3110
3111 \series bold
3112 Meneguzzo
3113 \end_layout
3114
3115 \end_inset
3116 </cell>
3117 <cell alignment="center" valignment="top" topline="true" usebox="none">
3118 \begin_inset Text
3119
3120 \begin_layout Standard
3121 Roberto
3122 \end_layout
3123
3124 \end_inset
3125 </cell>
3126 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3127 \begin_inset Text
3128
3129 \begin_layout Standard
3130 111
3131 \end_layout
3132
3133 \end_inset
3134 </cell>
3135 </row>
3136 <row>
3137 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3138 \begin_inset Text
3139
3140 \begin_layout Standard
3141
3142 \series bold
3143 Mezzadra
3144 \end_layout
3145
3146 \end_inset
3147 </cell>
3148 <cell alignment="center" valignment="top" topline="true" usebox="none">
3149 \begin_inset Text
3150
3151 \begin_layout Standard
3152 Roberto
3153 \end_layout
3154
3155 \end_inset
3156 </cell>
3157 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3158 \begin_inset Text
3159
3160 \begin_layout Standard
3161 111
3162 \end_layout
3163
3164 \end_inset
3165 </cell>
3166 </row>
3167 <row>
3168 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3169 \begin_inset Text
3170
3171 \begin_layout Standard
3172
3173 \series bold
3174 Pirpamer
3175 \end_layout
3176
3177 \end_inset
3178 </cell>
3179 <cell alignment="center" valignment="top" topline="true" usebox="none">
3180 \begin_inset Text
3181
3182 \begin_layout Standard
3183 Erich
3184 \end_layout
3185
3186 \end_inset
3187 </cell>
3188 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3189 \begin_inset Text
3190
3191 \begin_layout Standard
3192 111
3193 \end_layout
3194
3195 \end_inset
3196 </cell>
3197 </row>
3198 <row>
3199 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3200 \begin_inset Text
3201
3202 \begin_layout Standard
3203
3204 \series bold
3205 Pochiesa
3206 \end_layout
3207
3208 \end_inset
3209 </cell>
3210 <cell alignment="center" valignment="top" topline="true" usebox="none">
3211 \begin_inset Text
3212
3213 \begin_layout Standard
3214 Paolo
3215 \end_layout
3216
3217 \end_inset
3218 </cell>
3219 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3220 \begin_inset Text
3221
3222 \begin_layout Standard
3223 111, 222
3224 \end_layout
3225
3226 \end_inset
3227 </cell>
3228 </row>
3229 <row>
3230 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3231 \begin_inset Text
3232
3233 \begin_layout Standard
3234
3235 \series bold
3236 Radina
3237 \end_layout
3238
3239 \end_inset
3240 </cell>
3241 <cell alignment="center" valignment="top" topline="true" usebox="none">
3242 \begin_inset Text
3243
3244 \begin_layout Standard
3245 Claudio
3246 \end_layout
3247
3248 \end_inset
3249 </cell>
3250 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3251 \begin_inset Text
3252
3253 \begin_layout Standard
3254 111
3255 \end_layout
3256
3257 \end_inset
3258 </cell>
3259 </row>
3260 <row>
3261 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3262 \begin_inset Text
3263
3264 \begin_layout Standard
3265
3266 \series bold
3267 Stuffer
3268 \end_layout
3269
3270 \end_inset
3271 </cell>
3272 <cell alignment="center" valignment="top" topline="true" usebox="none">
3273 \begin_inset Text
3274
3275 \begin_layout Standard
3276 Oskar
3277 \end_layout
3278
3279 \end_inset
3280 </cell>
3281 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3282 \begin_inset Text
3283
3284 \begin_layout Standard
3285 111
3286 \end_layout
3287
3288 \end_inset
3289 </cell>
3290 </row>
3291 <row>
3292 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3293 \begin_inset Text
3294
3295 \begin_layout Standard
3296
3297 \series bold
3298 Tacchelli
3299 \end_layout
3300
3301 \end_inset
3302 </cell>
3303 <cell alignment="center" valignment="top" topline="true" usebox="none">
3304 \begin_inset Text
3305
3306 \begin_layout Standard
3307 Ugo
3308 \end_layout
3309
3310 \end_inset
3311 </cell>
3312 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3313 \begin_inset Text
3314
3315 \begin_layout Standard
3316 111
3317 \end_layout
3318
3319 \end_inset
3320 </cell>
3321 </row>
3322 <row>
3323 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3324 \begin_inset Text
3325
3326 \begin_layout Standard
3327
3328 \series bold
3329 Tezzele
3330 \end_layout
3331
3332 \end_inset
3333 </cell>
3334 <cell alignment="center" valignment="top" topline="true" usebox="none">
3335 \begin_inset Text
3336
3337 \begin_layout Standard
3338 Margit
3339 \end_layout
3340
3341 \end_inset
3342 </cell>
3343 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3344 \begin_inset Text
3345
3346 \begin_layout Standard
3347 111
3348 \end_layout
3349
3350 \end_inset
3351 </cell>
3352 </row>
3353 <row>
3354 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3355 \begin_inset Text
3356
3357 \begin_layout Standard
3358
3359 \series bold
3360 Unterkalmsteiner
3361 \end_layout
3362
3363 \end_inset
3364 </cell>
3365 <cell alignment="center" valignment="top" topline="true" usebox="none">
3366 \begin_inset Text
3367
3368 \begin_layout Standard
3369 Frieda
3370 \end_layout
3371
3372 \end_inset
3373 </cell>
3374 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3375 \begin_inset Text
3376
3377 \begin_layout Standard
3378 111
3379 \end_layout
3380
3381 \end_inset
3382 </cell>
3383 </row>
3384 <row>
3385 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3386 \begin_inset Text
3387
3388 \begin_layout Standard
3389
3390 \series bold
3391 Vieider
3392 \end_layout
3393
3394 \end_inset
3395 </cell>
3396 <cell alignment="center" valignment="top" topline="true" usebox="none">
3397 \begin_inset Text
3398
3399 \begin_layout Standard
3400 Hilde
3401 \end_layout
3402
3403 \end_inset
3404 </cell>
3405 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3406 \begin_inset Text
3407
3408 \begin_layout Standard
3409 111
3410 \end_layout
3411
3412 \end_inset
3413 </cell>
3414 </row>
3415 <row>
3416 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3417 \begin_inset Text
3418
3419 \begin_layout Standard
3420
3421 \series bold
3422 Vigna
3423 \end_layout
3424
3425 \end_inset
3426 </cell>
3427 <cell alignment="center" valignment="top" topline="true" usebox="none">
3428 \begin_inset Text
3429
3430 \begin_layout Standard
3431 Jürgen
3432 \end_layout
3433
3434 \end_inset
3435 </cell>
3436 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3437 \begin_inset Text
3438
3439 \begin_layout Standard
3440 111
3441 \end_layout
3442
3443 \end_inset
3444 </cell>
3445 </row>
3446 <row>
3447 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3448 \begin_inset Text
3449
3450 \begin_layout Standard
3451
3452 \series bold
3453 Weber
3454 \end_layout
3455
3456 \end_inset
3457 </cell>
3458 <cell alignment="center" valignment="top" topline="true" usebox="none">
3459 \begin_inset Text
3460
3461 \begin_layout Standard
3462 Maurizio
3463 \end_layout
3464
3465 \end_inset
3466 </cell>
3467 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3468 \begin_inset Text
3469
3470 \begin_layout Standard
3471 111
3472 \end_layout
3473
3474 \end_inset
3475 </cell>
3476 </row>
3477 <row bottomline="true">
3478 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3479 \begin_inset Text
3480
3481 \begin_layout Standard
3482
3483 \series bold
3484 Winkler
3485 \end_layout
3486
3487 \end_inset
3488 </cell>
3489 <cell alignment="center" valignment="top" topline="true" usebox="none">
3490 \begin_inset Text
3491
3492 \begin_layout Standard
3493 Franz
3494 \end_layout
3495
3496 \end_inset
3497 </cell>
3498 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3499 \begin_inset Text
3500
3501 \begin_layout Standard
3502 111
3503 \end_layout
3504
3505 \end_inset
3506 </cell>
3507 </row>
3508 <row bottomline="true">
3509 <cell multicolumn="1" alignment="left" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
3510 \begin_inset Text
3511
3512 \begin_layout Standard
3513  
3514 \end_layout
3515
3516 \end_inset
3517 </cell>
3518 <cell multicolumn="2" alignment="center" valignment="top" topline="true" usebox="none">
3519 \begin_inset Text
3520
3521 \begin_layout Standard
3522
3523 \end_layout
3524
3525 \end_inset
3526 </cell>
3527 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3528 \begin_inset Text
3529
3530 \begin_layout Standard
3531
3532 \end_layout
3533
3534 \end_inset
3535 </cell>
3536 </row>
3537 <row>
3538 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3539 \begin_inset Text
3540
3541 \begin_layout Standard
3542
3543 \series bold
3544 Annovi
3545 \end_layout
3546
3547 \end_inset
3548 </cell>
3549 <cell alignment="center" valignment="top" topline="true" usebox="none">
3550 \begin_inset Text
3551
3552 \begin_layout Standard
3553 Silvia
3554 \end_layout
3555
3556 \end_inset
3557 </cell>
3558 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3559 \begin_inset Text
3560
3561 \begin_layout Standard
3562 555
3563 \end_layout
3564
3565 \end_inset
3566 </cell>
3567 </row>
3568 <row>
3569 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3570 \begin_inset Text
3571
3572 \begin_layout Standard
3573
3574 \series bold
3575 Bertoli
3576 \end_layout
3577
3578 \end_inset
3579 </cell>
3580 <cell alignment="center" valignment="top" topline="true" usebox="none">
3581 \begin_inset Text
3582
3583 \begin_layout Standard
3584 Stefano
3585 \end_layout
3586
3587 \end_inset
3588 </cell>
3589 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3590 \begin_inset Text
3591
3592 \begin_layout Standard
3593 555
3594 \end_layout
3595
3596 \end_inset
3597 </cell>
3598 </row>
3599 <row>
3600 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3601 \begin_inset Text
3602
3603 \begin_layout Standard
3604
3605 \series bold
3606 Bozzi
3607 \end_layout
3608
3609 \end_inset
3610 </cell>
3611 <cell alignment="center" valignment="top" topline="true" usebox="none">
3612 \begin_inset Text
3613
3614 \begin_layout Standard
3615 Walter
3616 \end_layout
3617
3618 \end_inset
3619 </cell>
3620 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3621 \begin_inset Text
3622
3623 \begin_layout Standard
3624 555
3625 \end_layout
3626
3627 \end_inset
3628 </cell>
3629 </row>
3630 <row>
3631 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3632 \begin_inset Text
3633
3634 \begin_layout Standard
3635
3636 \series bold
3637 Cachia
3638 \end_layout
3639
3640 \end_inset
3641 </cell>
3642 <cell alignment="center" valignment="top" topline="true" usebox="none">
3643 \begin_inset Text
3644
3645 \begin_layout Standard
3646 Maria
3647 \end_layout
3648
3649 \end_inset
3650 </cell>
3651 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3652 \begin_inset Text
3653
3654 \begin_layout Standard
3655 555
3656 \end_layout
3657
3658 \end_inset
3659 </cell>
3660 </row>
3661 <row>
3662 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3663 \begin_inset Text
3664
3665 \begin_layout Standard
3666
3667 \series bold
3668 Cachia
3669 \end_layout
3670
3671 \end_inset
3672 </cell>
3673 <cell alignment="center" valignment="top" topline="true" usebox="none">
3674 \begin_inset Text
3675
3676 \begin_layout Standard
3677 Maurizio
3678 \end_layout
3679
3680 \end_inset
3681 </cell>
3682 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3683 \begin_inset Text
3684
3685 \begin_layout Standard
3686 555
3687 \end_layout
3688
3689 \end_inset
3690 </cell>
3691 </row>
3692 <row>
3693 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3694 \begin_inset Text
3695
3696 \begin_layout Standard
3697
3698 \series bold
3699 Cinquemani
3700 \end_layout
3701
3702 \end_inset
3703 </cell>
3704 <cell alignment="center" valignment="top" topline="true" usebox="none">
3705 \begin_inset Text
3706
3707 \begin_layout Standard
3708 Giusi
3709 \end_layout
3710
3711 \end_inset
3712 </cell>
3713 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3714 \begin_inset Text
3715
3716 \begin_layout Standard
3717 555
3718 \end_layout
3719
3720 \end_inset
3721 </cell>
3722 </row>
3723 <row>
3724 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3725 \begin_inset Text
3726
3727 \begin_layout Standard
3728
3729 \series bold
3730 Colin
3731 \end_layout
3732
3733 \end_inset
3734 </cell>
3735 <cell alignment="center" valignment="top" topline="true" usebox="none">
3736 \begin_inset Text
3737
3738 \begin_layout Standard
3739 Bernard
3740 \end_layout
3741
3742 \end_inset
3743 </cell>
3744 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3745 \begin_inset Text
3746
3747 \begin_layout Standard
3748 555
3749 \end_layout
3750
3751 \end_inset
3752 </cell>
3753 </row>
3754 <row>
3755 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3756 \begin_inset Text
3757
3758 \begin_layout Standard
3759
3760 \series bold
3761 Concli
3762 \end_layout
3763
3764 \end_inset
3765 </cell>
3766 <cell alignment="center" valignment="top" topline="true" usebox="none">
3767 \begin_inset Text
3768
3769 \begin_layout Standard
3770 Gianfranco
3771 \end_layout
3772
3773 \end_inset
3774 </cell>
3775 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3776 \begin_inset Text
3777
3778 \begin_layout Standard
3779 555
3780 \end_layout
3781
3782 \end_inset
3783 </cell>
3784 </row>
3785 <row>
3786 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3787 \begin_inset Text
3788
3789 \begin_layout Standard
3790
3791 \series bold
3792 Dal Bosco
3793 \end_layout
3794
3795 \end_inset
3796 </cell>
3797 <cell alignment="center" valignment="top" topline="true" usebox="none">
3798 \begin_inset Text
3799
3800 \begin_layout Standard
3801 Carolina
3802 \end_layout
3803
3804 \end_inset
3805 </cell>
3806 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3807 \begin_inset Text
3808
3809 \begin_layout Standard
3810 555
3811 \end_layout
3812
3813 \end_inset
3814 </cell>
3815 </row>
3816 <row>
3817 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3818 \begin_inset Text
3819
3820 \begin_layout Standard
3821
3822 \series bold
3823 Dalpiaz
3824 \end_layout
3825
3826 \end_inset
3827 </cell>
3828 <cell alignment="center" valignment="top" topline="true" usebox="none">
3829 \begin_inset Text
3830
3831 \begin_layout Standard
3832 Annamaria
3833 \end_layout
3834
3835 \end_inset
3836 </cell>
3837 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3838 \begin_inset Text
3839
3840 \begin_layout Standard
3841 555
3842 \end_layout
3843
3844 \end_inset
3845 </cell>
3846 </row>
3847 <row>
3848 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3849 \begin_inset Text
3850
3851 \begin_layout Standard
3852
3853 \series bold
3854 Feliciello
3855 \end_layout
3856
3857 \end_inset
3858 </cell>
3859 <cell alignment="center" valignment="top" topline="true" usebox="none">
3860 \begin_inset Text
3861
3862 \begin_layout Standard
3863 Domenico
3864 \end_layout
3865
3866 \end_inset
3867 </cell>
3868 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3869 \begin_inset Text
3870
3871 \begin_layout Standard
3872 555
3873 \end_layout
3874
3875 \end_inset
3876 </cell>
3877 </row>
3878 <row>
3879 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3880 \begin_inset Text
3881
3882 \begin_layout Standard
3883
3884 \series bold
3885 Focarelli
3886 \end_layout
3887
3888 \end_inset
3889 </cell>
3890 <cell alignment="center" valignment="top" topline="true" usebox="none">
3891 \begin_inset Text
3892
3893 \begin_layout Standard
3894 Paola
3895 \end_layout
3896
3897 \end_inset
3898 </cell>
3899 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3900 \begin_inset Text
3901
3902 \begin_layout Standard
3903 555
3904 \end_layout
3905
3906 \end_inset
3907 </cell>
3908 </row>
3909 <row>
3910 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3911 \begin_inset Text
3912
3913 \begin_layout Standard
3914
3915 \series bold
3916 Galletti
3917 \end_layout
3918
3919 \end_inset
3920 </cell>
3921 <cell alignment="center" valignment="top" topline="true" usebox="none">
3922 \begin_inset Text
3923
3924 \begin_layout Standard
3925 Oreste
3926 \end_layout
3927
3928 \end_inset
3929 </cell>
3930 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3931 \begin_inset Text
3932
3933 \begin_layout Standard
3934 555
3935 \end_layout
3936
3937 \end_inset
3938 </cell>
3939 </row>
3940 <row>
3941 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3942 \begin_inset Text
3943
3944 \begin_layout Standard
3945
3946 \series bold
3947 Gasparini
3948 \end_layout
3949
3950 \end_inset
3951 </cell>
3952 <cell alignment="center" valignment="top" topline="true" usebox="none">
3953 \begin_inset Text
3954
3955 \begin_layout Standard
3956 Franca
3957 \end_layout
3958
3959 \end_inset
3960 </cell>
3961 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3962 \begin_inset Text
3963
3964 \begin_layout Standard
3965 555
3966 \end_layout
3967
3968 \end_inset
3969 </cell>
3970 </row>
3971 <row>
3972 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
3973 \begin_inset Text
3974
3975 \begin_layout Standard
3976
3977 \series bold
3978 Rizzardi
3979 \end_layout
3980
3981 \end_inset
3982 </cell>
3983 <cell alignment="center" valignment="top" topline="true" usebox="none">
3984 \begin_inset Text
3985
3986 \begin_layout Standard
3987 Paola
3988 \end_layout
3989
3990 \end_inset
3991 </cell>
3992 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3993 \begin_inset Text
3994
3995 \begin_layout Standard
3996 555
3997 \end_layout
3998
3999 \end_inset
4000 </cell>
4001 </row>
4002 <row>
4003 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4004 \begin_inset Text
4005
4006 \begin_layout Standard
4007
4008 \series bold
4009 Lassini
4010 \end_layout
4011
4012 \end_inset
4013 </cell>
4014 <cell alignment="center" valignment="top" topline="true" usebox="none">
4015 \begin_inset Text
4016
4017 \begin_layout Standard
4018 Giancarlo
4019 \end_layout
4020
4021 \end_inset
4022 </cell>
4023 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4024 \begin_inset Text
4025
4026 \begin_layout Standard
4027 555
4028 \end_layout
4029
4030 \end_inset
4031 </cell>
4032 </row>
4033 <row>
4034 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4035 \begin_inset Text
4036
4037 \begin_layout Standard
4038
4039 \series bold
4040 Malfatti
4041 \end_layout
4042
4043 \end_inset
4044 </cell>
4045 <cell alignment="center" valignment="top" topline="true" usebox="none">
4046 \begin_inset Text
4047
4048 \begin_layout Standard
4049 Luciano
4050 \end_layout
4051
4052 \end_inset
4053 </cell>
4054 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4055 \begin_inset Text
4056
4057 \begin_layout Standard
4058 555
4059 \end_layout
4060
4061 \end_inset
4062 </cell>
4063 </row>
4064 <row>
4065 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4066 \begin_inset Text
4067
4068 \begin_layout Standard
4069
4070 \series bold
4071 Malfatti
4072 \end_layout
4073
4074 \end_inset
4075 </cell>
4076 <cell alignment="center" valignment="top" topline="true" usebox="none">
4077 \begin_inset Text
4078
4079 \begin_layout Standard
4080 Valeriano
4081 \end_layout
4082
4083 \end_inset
4084 </cell>
4085 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4086 \begin_inset Text
4087
4088 \begin_layout Standard
4089 555
4090 \end_layout
4091
4092 \end_inset
4093 </cell>
4094 </row>
4095 <row>
4096 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4097 \begin_inset Text
4098
4099 \begin_layout Standard
4100
4101 \series bold
4102 Meneguzzo
4103 \end_layout
4104
4105 \end_inset
4106 </cell>
4107 <cell alignment="center" valignment="top" topline="true" usebox="none">
4108 \begin_inset Text
4109
4110 \begin_layout Standard
4111 Roberto
4112 \end_layout
4113
4114 \end_inset
4115 </cell>
4116 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4117 \begin_inset Text
4118
4119 \begin_layout Standard
4120 555
4121 \end_layout
4122
4123 \end_inset
4124 </cell>
4125 </row>
4126 <row>
4127 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4128 \begin_inset Text
4129
4130 \begin_layout Standard
4131
4132 \series bold
4133 Mezzadra
4134 \end_layout
4135
4136 \end_inset
4137 </cell>
4138 <cell alignment="center" valignment="top" topline="true" usebox="none">
4139 \begin_inset Text
4140
4141 \begin_layout Standard
4142 Roberto
4143 \end_layout
4144
4145 \end_inset
4146 </cell>
4147 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4148 \begin_inset Text
4149
4150 \begin_layout Standard
4151 555
4152 \end_layout
4153
4154 \end_inset
4155 </cell>
4156 </row>
4157 <row>
4158 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4159 \begin_inset Text
4160
4161 \begin_layout Standard
4162
4163 \series bold
4164 Pirpamer
4165 \end_layout
4166
4167 \end_inset
4168 </cell>
4169 <cell alignment="center" valignment="top" topline="true" usebox="none">
4170 \begin_inset Text
4171
4172 \begin_layout Standard
4173 Erich
4174 \end_layout
4175
4176 \end_inset
4177 </cell>
4178 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4179 \begin_inset Text
4180
4181 \begin_layout Standard
4182 555
4183 \end_layout
4184
4185 \end_inset
4186 </cell>
4187 </row>
4188 <row>
4189 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4190 \begin_inset Text
4191
4192 \begin_layout Standard
4193
4194 \series bold
4195 Pochiesa
4196 \end_layout
4197
4198 \end_inset
4199 </cell>
4200 <cell alignment="center" valignment="top" topline="true" usebox="none">
4201 \begin_inset Text
4202
4203 \begin_layout Standard
4204 Paolo
4205 \end_layout
4206
4207 \end_inset
4208 </cell>
4209 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4210 \begin_inset Text
4211
4212 \begin_layout Standard
4213 555, 222
4214 \end_layout
4215
4216 \end_inset
4217 </cell>
4218 </row>
4219 <row>
4220 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4221 \begin_inset Text
4222
4223 \begin_layout Standard
4224
4225 \series bold
4226 Radina
4227 \end_layout
4228
4229 \end_inset
4230 </cell>
4231 <cell alignment="center" valignment="top" topline="true" usebox="none">
4232 \begin_inset Text
4233
4234 \begin_layout Standard
4235 Claudio
4236 \end_layout
4237
4238 \end_inset
4239 </cell>
4240 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4241 \begin_inset Text
4242
4243 \begin_layout Standard
4244 555
4245 \end_layout
4246
4247 \end_inset
4248 </cell>
4249 </row>
4250 <row>
4251 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4252 \begin_inset Text
4253
4254 \begin_layout Standard
4255
4256 \series bold
4257 Stuffer
4258 \end_layout
4259
4260 \end_inset
4261 </cell>
4262 <cell alignment="center" valignment="top" topline="true" usebox="none">
4263 \begin_inset Text
4264
4265 \begin_layout Standard
4266 Oskar
4267 \end_layout
4268
4269 \end_inset
4270 </cell>
4271 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4272 \begin_inset Text
4273
4274 \begin_layout Standard
4275 555
4276 \end_layout
4277
4278 \end_inset
4279 </cell>
4280 </row>
4281 <row>
4282 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4283 \begin_inset Text
4284
4285 \begin_layout Standard
4286
4287 \series bold
4288 Tacchelli
4289 \end_layout
4290
4291 \end_inset
4292 </cell>
4293 <cell alignment="center" valignment="top" topline="true" usebox="none">
4294 \begin_inset Text
4295
4296 \begin_layout Standard
4297 Ugo
4298 \end_layout
4299
4300 \end_inset
4301 </cell>
4302 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4303 \begin_inset Text
4304
4305 \begin_layout Standard
4306 555
4307 \end_layout
4308
4309 \end_inset
4310 </cell>
4311 </row>
4312 <row>
4313 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4314 \begin_inset Text
4315
4316 \begin_layout Standard
4317
4318 \series bold
4319 Tezzele
4320 \end_layout
4321
4322 \end_inset
4323 </cell>
4324 <cell alignment="center" valignment="top" topline="true" usebox="none">
4325 \begin_inset Text
4326
4327 \begin_layout Standard
4328 Margit
4329 \end_layout
4330
4331 \end_inset
4332 </cell>
4333 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4334 \begin_inset Text
4335
4336 \begin_layout Standard
4337 555
4338 \end_layout
4339
4340 \end_inset
4341 </cell>
4342 </row>
4343 <row>
4344 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4345 \begin_inset Text
4346
4347 \begin_layout Standard
4348
4349 \series bold
4350 Unterkalmsteiner
4351 \end_layout
4352
4353 \end_inset
4354 </cell>
4355 <cell alignment="center" valignment="top" topline="true" usebox="none">
4356 \begin_inset Text
4357
4358 \begin_layout Standard
4359 Frieda
4360 \end_layout
4361
4362 \end_inset
4363 </cell>
4364 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4365 \begin_inset Text
4366
4367 \begin_layout Standard
4368 555
4369 \end_layout
4370
4371 \end_inset
4372 </cell>
4373 </row>
4374 <row>
4375 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4376 \begin_inset Text
4377
4378 \begin_layout Standard
4379
4380 \series bold
4381 Vieider
4382 \end_layout
4383
4384 \end_inset
4385 </cell>
4386 <cell alignment="center" valignment="top" topline="true" usebox="none">
4387 \begin_inset Text
4388
4389 \begin_layout Standard
4390 Hilde
4391 \end_layout
4392
4393 \end_inset
4394 </cell>
4395 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4396 \begin_inset Text
4397
4398 \begin_layout Standard
4399 555
4400 \end_layout
4401
4402 \end_inset
4403 </cell>
4404 </row>
4405 <row>
4406 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4407 \begin_inset Text
4408
4409 \begin_layout Standard
4410
4411 \series bold
4412 Vigna
4413 \end_layout
4414
4415 \end_inset
4416 </cell>
4417 <cell alignment="center" valignment="top" topline="true" usebox="none">
4418 \begin_inset Text
4419
4420 \begin_layout Standard
4421 Jürgen
4422 \end_layout
4423
4424 \end_inset
4425 </cell>
4426 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4427 \begin_inset Text
4428
4429 \begin_layout Standard
4430 999
4431 \end_layout
4432
4433 \end_inset
4434 </cell>
4435 </row>
4436 <row>
4437 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4438 \begin_inset Text
4439
4440 \begin_layout Standard
4441
4442 \series bold
4443 Weber
4444 \end_layout
4445
4446 \end_inset
4447 </cell>
4448 <cell alignment="center" valignment="top" topline="true" usebox="none">
4449 \begin_inset Text
4450
4451 \begin_layout Standard
4452 Maurizio
4453 \end_layout
4454
4455 \end_inset
4456 </cell>
4457 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4458 \begin_inset Text
4459
4460 \begin_layout Standard
4461 555
4462 \end_layout
4463
4464 \end_inset
4465 </cell>
4466 </row>
4467 <row bottomline="true">
4468 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
4469 \begin_inset Text
4470
4471 \begin_layout Standard
4472
4473 \series bold
4474 Winkler
4475 \end_layout
4476
4477 \end_inset
4478 </cell>
4479 <cell alignment="center" valignment="top" topline="true" usebox="none">
4480 \begin_inset Text
4481
4482 \begin_layout Standard
4483 Franz
4484 \end_layout
4485
4486 \end_inset
4487 </cell>
4488 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4489 \begin_inset Text
4490
4491 \begin_layout Standard
4492 555
4493 \end_layout
4494
4495 \end_inset
4496 </cell>
4497 </row>
4498 <row bottomline="true" endlastfoot="true">
4499 <cell multicolumn="1" alignment="right" valignment="top" usebox="none">
4500 \begin_inset Text
4501
4502 \begin_layout Standard
4503 end
4504 \end_layout
4505
4506 \end_inset
4507 </cell>
4508 <cell multicolumn="2" alignment="center" valignment="top" topline="true" usebox="none">
4509 \begin_inset Text
4510
4511 \begin_layout Standard
4512
4513 \end_layout
4514
4515 \end_inset
4516 </cell>
4517 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4518 \begin_inset Text
4519
4520 \begin_layout Standard
4521
4522 \end_layout
4523
4524 \end_inset
4525 </cell>
4526 </row>
4527 </lyxtabular>
4528
4529 \end_inset
4530
4531
4532 \begin_inset ERT
4533 status collapsed
4534
4535 \begin_layout Standard
4536
4537
4538 \backslash
4539 addtocounter{table}{-1}
4540 \end_layout
4541
4542 \end_inset
4543
4544
4545 \begin_inset Note Note
4546 status collapsed
4547
4548 \begin_layout Standard
4549 See greyed-out note in section 2.6.2 for an explanation of this command.
4550 \end_layout
4551
4552 \end_inset
4553
4554
4555 \end_layout
4556
4557 \begin_layout Subsection
4558 Footnotes in Longtables
4559 \begin_inset LatexCommand label
4560 name "sub:Footnotes-in-Longtables"
4561
4562 \end_inset
4563
4564
4565 \begin_inset LatexCommand index
4566 name "Longtables ! Footnotes"
4567
4568 \end_inset
4569
4570
4571 \end_layout
4572
4573 \begin_layout Standard
4574 Footnotes can be inserted to every longtable cell.
4575  They appear at the bottom of the page where the table cell with the footnote
4576  appears.
4577  Table\InsetSpace ~
4578
4579 \begin_inset LatexCommand ref
4580 reference "tab:DiffCaptions"
4581
4582 \end_inset
4583
4584  has for example a footnote.
4585 \end_layout
4586
4587 \begin_layout Subsection
4588 Longtable Captions
4589 \begin_inset LatexCommand index
4590 name "Longtables ! Captions"
4591
4592 \end_inset
4593
4594
4595 \end_layout
4596
4597 \begin_layout Standard
4598 A longtable cannot be put into a table float because floats can only be
4599  on one page.
4600  Therefore the caption layout cannot be used for longtables.
4601 \end_layout
4602
4603 \begin_layout Standard
4604 To add a caption, a dirty hack is needed:
4605 \end_layout
4606
4607 \begin_layout Enumerate
4608 Create a longtable
4609 \end_layout
4610
4611 \begin_layout Enumerate
4612 Mark the first row an disable its upper line
4613 \end_layout
4614
4615 \begin_layout Enumerate
4616 Insert the following command as ERT into the first table cell:
4617 \newline
4618
4619 \series bold
4620
4621 \backslash
4622 caption[short title]{full title}
4623 \backslash
4624
4625 \backslash
4626 %
4627 \end_layout
4628
4629 \begin_layout Enumerate
4630 Insert a 
4631 \begin_inset Quotes eld
4632 \end_inset
4633
4634
4635 \series bold
4636 %
4637 \series default
4638
4639 \begin_inset Quotes erd
4640 \end_inset
4641
4642  as ERT into every cell of the first row
4643 \end_layout
4644
4645 \begin_layout Standard
4646 The 
4647 \series bold
4648
4649 \backslash
4650 caption
4651 \series default
4652  command is used like for normal captions, the short title that will appear
4653  in the LOT instead of the full title is optional.
4654  The 
4655 \series bold
4656 %
4657 \series default
4658  in the table cells omits the vertical line between the the cells.
4659  The first table row is now only a dummy row for the caption, the actual
4660  table starts with the second row.
4661 \end_layout
4662
4663 \begin_layout Standard
4664 Here is a short longtable to see how it works:
4665 \end_layout
4666
4667 \begin_layout Standard
4668 \begin_inset Tabular
4669 <lyxtabular version="3" rows="6" columns="5">
4670 <features islongtable="true">
4671 <column alignment="center" valignment="top" leftline="true" width="0">
4672 <column alignment="center" valignment="top" leftline="true" width="0">
4673 <column alignment="center" valignment="top" leftline="true" width="0">
4674 <column alignment="center" valignment="top" leftline="true" width="0">
4675 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
4676 <row>
4677 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4678 \begin_inset Text
4679
4680 \begin_layout Standard
4681 \begin_inset ERT
4682 status collapsed
4683
4684 \begin_layout Standard
4685
4686
4687 \backslash
4688 caption[Longtable]{Longtable with caption}
4689 \backslash
4690
4691 \backslash
4692 %
4693 \end_layout
4694
4695 \end_inset
4696
4697
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 \begin_inset ERT
4707 status collapsed
4708
4709 \begin_layout Standard
4710
4711 %
4712 \end_layout
4713
4714 \end_inset
4715
4716
4717 \end_layout
4718
4719 \end_inset
4720 </cell>
4721 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4722 \begin_inset Text
4723
4724 \begin_layout Standard
4725 \begin_inset ERT
4726 status collapsed
4727
4728 \begin_layout Standard
4729
4730 %
4731 \end_layout
4732
4733 \end_inset
4734
4735
4736 \end_layout
4737
4738 \end_inset
4739 </cell>
4740 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4741 \begin_inset Text
4742
4743 \begin_layout Standard
4744 \begin_inset ERT
4745 status collapsed
4746
4747 \begin_layout Standard
4748
4749 %
4750 \end_layout
4751
4752 \end_inset
4753
4754
4755 \end_layout
4756
4757 \end_inset
4758 </cell>
4759 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4760 \begin_inset Text
4761
4762 \begin_layout Standard
4763 \begin_inset ERT
4764 status collapsed
4765
4766 \begin_layout Standard
4767
4768 %
4769 \end_layout
4770
4771 \end_inset
4772
4773
4774 \end_layout
4775
4776 \end_inset
4777 </cell>
4778 </row>
4779 <row topline="true">
4780 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4781 \begin_inset Text
4782
4783 \begin_layout Standard
4784 1
4785 \end_layout
4786
4787 \end_inset
4788 </cell>
4789 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4790 \begin_inset Text
4791
4792 \begin_layout Standard
4793 2
4794 \end_layout
4795
4796 \end_inset
4797 </cell>
4798 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4799 \begin_inset Text
4800
4801 \begin_layout Standard
4802 3
4803 \end_layout
4804
4805 \end_inset
4806 </cell>
4807 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4808 \begin_inset Text
4809
4810 \begin_layout Standard
4811 4
4812 \end_layout
4813
4814 \end_inset
4815 </cell>
4816 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4817 \begin_inset Text
4818
4819 \begin_layout Standard
4820 5
4821 \end_layout
4822
4823 \end_inset
4824 </cell>
4825 </row>
4826 <row topline="true">
4827 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4828 \begin_inset Text
4829
4830 \begin_layout Standard
4831 asd
4832 \end_layout
4833
4834 \end_inset
4835 </cell>
4836 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4837 \begin_inset Text
4838
4839 \begin_layout Standard
4840 s
4841 \end_layout
4842
4843 \end_inset
4844 </cell>
4845 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4846 \begin_inset Text
4847
4848 \begin_layout Standard
4849 s
4850 \end_layout
4851
4852 \end_inset
4853 </cell>
4854 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4855 \begin_inset Text
4856
4857 \begin_layout Standard
4858 s
4859 \end_layout
4860
4861 \end_inset
4862 </cell>
4863 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4864 \begin_inset Text
4865
4866 \begin_layout Standard
4867 asd
4868 \end_layout
4869
4870 \end_inset
4871 </cell>
4872 </row>
4873 <row topline="true">
4874 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4875 \begin_inset Text
4876
4877 \begin_layout Standard
4878 asd
4879 \end_layout
4880
4881 \end_inset
4882 </cell>
4883 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4884 \begin_inset Text
4885
4886 \begin_layout Standard
4887 s
4888 \end_layout
4889
4890 \end_inset
4891 </cell>
4892 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4893 \begin_inset Text
4894
4895 \begin_layout Standard
4896 s
4897 \end_layout
4898
4899 \end_inset
4900 </cell>
4901 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4902 \begin_inset Text
4903
4904 \begin_layout Standard
4905 s
4906 \end_layout
4907
4908 \end_inset
4909 </cell>
4910 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4911 \begin_inset Text
4912
4913 \begin_layout Standard
4914 asd
4915 \end_layout
4916
4917 \end_inset
4918 </cell>
4919 </row>
4920 <row topline="true">
4921 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4922 \begin_inset Text
4923
4924 \begin_layout Standard
4925 asd
4926 \end_layout
4927
4928 \end_inset
4929 </cell>
4930 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4931 \begin_inset Text
4932
4933 \begin_layout Standard
4934 s
4935 \end_layout
4936
4937 \end_inset
4938 </cell>
4939 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4940 \begin_inset Text
4941
4942 \begin_layout Standard
4943 s
4944 \end_layout
4945
4946 \end_inset
4947 </cell>
4948 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4949 \begin_inset Text
4950
4951 \begin_layout Standard
4952 s
4953 \end_layout
4954
4955 \end_inset
4956 </cell>
4957 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4958 \begin_inset Text
4959
4960 \begin_layout Standard
4961 asd
4962 \end_layout
4963
4964 \end_inset
4965 </cell>
4966 </row>
4967 <row topline="true" bottomline="true">
4968 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4969 \begin_inset Text
4970
4971 \begin_layout Standard
4972 asd
4973 \end_layout
4974
4975 \end_inset
4976 </cell>
4977 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4978 \begin_inset Text
4979
4980 \begin_layout Standard
4981 asd
4982 \end_layout
4983
4984 \end_inset
4985 </cell>
4986 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4987 \begin_inset Text
4988
4989 \begin_layout Standard
4990 asd
4991 \end_layout
4992
4993 \end_inset
4994 </cell>
4995 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4996 \begin_inset Text
4997
4998 \begin_layout Standard
4999 asd
5000 \end_layout
5001
5002 \end_inset
5003 </cell>
5004 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5005 \begin_inset Text
5006
5007 \begin_layout Standard
5008 asd
5009 \end_layout
5010
5011 \end_inset
5012 </cell>
5013 </row>
5014 </lyxtabular>
5015
5016 \end_inset
5017
5018
5019 \end_layout
5020
5021 \begin_layout Standard
5022 \begin_inset VSpace medskip
5023 \end_inset
5024
5025
5026 \begin_inset Note Greyedout
5027 status open
5028
5029 \begin_layout Standard
5030
5031 \series bold
5032 Note:
5033 \series default
5034  The table number is increased for every longtable, also if you didn't set
5035  a caption for it.
5036  For this reason you could have the case that e.g.
5037  Table\InsetSpace ~
5038 2.4 follows on Table\InsetSpace ~
5039 2.1 in the list of tables if there are two longtables
5040  without captions.
5041  To avoid this you can add the following command in ERT behind every longtable
5042  without a caption:
5043 \end_layout
5044
5045 \begin_layout Standard
5046
5047 \series bold
5048
5049 \backslash
5050 addtocounter{table}{-1}
5051 \end_layout
5052
5053 \end_inset
5054
5055
5056 \end_layout
5057
5058 \begin_layout Standard
5059 \begin_inset Note Greyedout
5060 status open
5061
5062 \begin_layout Standard
5063
5064 \series bold
5065 Note:
5066 \series default
5067  If you are using the LaTeX-package 
5068 \series bold
5069 hyperref
5070 \series default
5071
5072 \begin_inset LatexCommand index
5073 name "LaTeX-packages ! hyperref"
5074
5075 \end_inset
5076
5077  to link cross-references, the link to a longtable caption will always point
5078  to the beginning of the document.
5079 \end_layout
5080
5081 \end_inset
5082
5083
5084 \end_layout
5085
5086 \begin_layout Subsubsection
5087 References to Longtables
5088 \begin_inset LatexCommand index
5089 name "Longtables ! References"
5090
5091 \end_inset
5092
5093
5094 \end_layout
5095
5096 \begin_layout Standard
5097 \begin_inset Tabular
5098 <lyxtabular version="3" rows="6" columns="5">
5099 <features islongtable="true">
5100 <column alignment="center" valignment="top" leftline="true" width="0">
5101 <column alignment="center" valignment="top" leftline="true" width="0">
5102 <column alignment="center" valignment="top" leftline="true" width="0">
5103 <column alignment="center" valignment="top" leftline="true" width="0">
5104 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
5105 <row>
5106 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5107 \begin_inset Text
5108
5109 \begin_layout Standard
5110 \begin_inset ERT
5111 status collapsed
5112
5113 \begin_layout Standard
5114
5115
5116 \backslash
5117 caption{Referenced longtable
5118 \end_layout
5119
5120 \end_inset
5121
5122
5123 \begin_inset LatexCommand label
5124 name "tab:RefExample"
5125
5126 \end_inset
5127
5128
5129 \begin_inset ERT
5130 status collapsed
5131
5132 \begin_layout Standard
5133
5134 }
5135 \backslash
5136
5137 \backslash
5138 %
5139 \end_layout
5140
5141 \end_inset
5142
5143
5144 \end_layout
5145
5146 \end_inset
5147 </cell>
5148 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5149 \begin_inset Text
5150
5151 \begin_layout Standard
5152 \begin_inset ERT
5153 status collapsed
5154
5155 \begin_layout Standard
5156
5157 %
5158 \end_layout
5159
5160 \end_inset
5161
5162
5163 \end_layout
5164
5165 \end_inset
5166 </cell>
5167 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5168 \begin_inset Text
5169
5170 \begin_layout Standard
5171 \begin_inset ERT
5172 status collapsed
5173
5174 \begin_layout Standard
5175
5176 %
5177 \end_layout
5178
5179 \end_inset
5180
5181
5182 \end_layout
5183
5184 \end_inset
5185 </cell>
5186 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5187 \begin_inset Text
5188
5189 \begin_layout Standard
5190 \begin_inset ERT
5191 status collapsed
5192
5193 \begin_layout Standard
5194
5195 %
5196 \end_layout
5197
5198 \end_inset
5199
5200
5201 \end_layout
5202
5203 \end_inset
5204 </cell>
5205 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5206 \begin_inset Text
5207
5208 \begin_layout Standard
5209 \begin_inset ERT
5210 status collapsed
5211
5212 \begin_layout Standard
5213
5214 %
5215 \end_layout
5216
5217 \end_inset
5218
5219
5220 \end_layout
5221
5222 \end_inset
5223 </cell>
5224 </row>
5225 <row topline="true">
5226 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5227 \begin_inset Text
5228
5229 \begin_layout Standard
5230 1
5231 \end_layout
5232
5233 \end_inset
5234 </cell>
5235 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5236 \begin_inset Text
5237
5238 \begin_layout Standard
5239 2
5240 \end_layout
5241
5242 \end_inset
5243 </cell>
5244 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5245 \begin_inset Text
5246
5247 \begin_layout Standard
5248 3
5249 \end_layout
5250
5251 \end_inset
5252 </cell>
5253 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5254 \begin_inset Text
5255
5256 \begin_layout Standard
5257 4
5258 \end_layout
5259
5260 \end_inset
5261 </cell>
5262 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5263 \begin_inset Text
5264
5265 \begin_layout Standard
5266 5
5267 \end_layout
5268
5269 \end_inset
5270 </cell>
5271 </row>
5272 <row topline="true">
5273 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5274 \begin_inset Text
5275
5276 \begin_layout Standard
5277 asd
5278 \end_layout
5279
5280 \end_inset
5281 </cell>
5282 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5283 \begin_inset Text
5284
5285 \begin_layout Standard
5286 s
5287 \end_layout
5288
5289 \end_inset
5290 </cell>
5291 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5292 \begin_inset Text
5293
5294 \begin_layout Standard
5295 s
5296 \end_layout
5297
5298 \end_inset
5299 </cell>
5300 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5301 \begin_inset Text
5302
5303 \begin_layout Standard
5304 s
5305 \end_layout
5306
5307 \end_inset
5308 </cell>
5309 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5310 \begin_inset Text
5311
5312 \begin_layout Standard
5313 asd
5314 \end_layout
5315
5316 \end_inset
5317 </cell>
5318 </row>
5319 <row topline="true">
5320 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5321 \begin_inset Text
5322
5323 \begin_layout Standard
5324 asd
5325 \end_layout
5326
5327 \end_inset
5328 </cell>
5329 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5330 \begin_inset Text
5331
5332 \begin_layout Standard
5333 s
5334 \end_layout
5335
5336 \end_inset
5337 </cell>
5338 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5339 \begin_inset Text
5340
5341 \begin_layout Standard
5342 s
5343 \end_layout
5344
5345 \end_inset
5346 </cell>
5347 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5348 \begin_inset Text
5349
5350 \begin_layout Standard
5351 s
5352 \end_layout
5353
5354 \end_inset
5355 </cell>
5356 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5357 \begin_inset Text
5358
5359 \begin_layout Standard
5360 asd
5361 \end_layout
5362
5363 \end_inset
5364 </cell>
5365 </row>
5366 <row topline="true">
5367 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5368 \begin_inset Text
5369
5370 \begin_layout Standard
5371 asd
5372 \end_layout
5373
5374 \end_inset
5375 </cell>
5376 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5377 \begin_inset Text
5378
5379 \begin_layout Standard
5380 s
5381 \end_layout
5382
5383 \end_inset
5384 </cell>
5385 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5386 \begin_inset Text
5387
5388 \begin_layout Standard
5389 s
5390 \end_layout
5391
5392 \end_inset
5393 </cell>
5394 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5395 \begin_inset Text
5396
5397 \begin_layout Standard
5398 s
5399 \end_layout
5400
5401 \end_inset
5402 </cell>
5403 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5404 \begin_inset Text
5405
5406 \begin_layout Standard
5407 asd
5408 \end_layout
5409
5410 \end_inset
5411 </cell>
5412 </row>
5413 <row topline="true" bottomline="true">
5414 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5415 \begin_inset Text
5416
5417 \begin_layout Standard
5418 asd
5419 \end_layout
5420
5421 \end_inset
5422 </cell>
5423 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5424 \begin_inset Text
5425
5426 \begin_layout Standard
5427 sad
5428 \end_layout
5429
5430 \end_inset
5431 </cell>
5432 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5433 \begin_inset Text
5434
5435 \begin_layout Standard
5436 asd
5437 \end_layout
5438
5439 \end_inset
5440 </cell>
5441 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5442 \begin_inset Text
5443
5444 \begin_layout Standard
5445 asd
5446 \end_layout
5447
5448 \end_inset
5449 </cell>
5450 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5451 \begin_inset Text
5452
5453 \begin_layout Standard
5454 asd
5455 \end_layout
5456
5457 \end_inset
5458 </cell>
5459 </row>
5460 </lyxtabular>
5461
5462 \end_inset
5463
5464
5465 \end_layout
5466
5467 \begin_layout Standard
5468 To reference a longtable, insert a label into the 
5469 \series bold
5470
5471 \backslash
5472 caption
5473 \series default
5474  command.
5475  This is done by splitting the ERT of the caption command.
5476  The part of the caption command before the last closing brace
5477 \end_layout
5478
5479 \begin_layout Standard
5480
5481 \series bold
5482
5483 \backslash
5484 caption[short title]{full title
5485 \end_layout
5486
5487 \begin_layout Standard
5488 is in the first ERT box, the label is inserted behind it.
5489  Note that you have to add the label prefix 
5490 \begin_inset Quotes eld
5491 \end_inset
5492
5493
5494 \emph on
5495 tab:
5496 \emph default
5497
5498 \begin_inset Quotes eld
5499 \end_inset
5500
5501  manually in the label field.
5502  The second ERT box contains the rest of the 
5503 \backslash
5504 caption command
5505 \end_layout
5506
5507 \begin_layout Standard
5508
5509 \series bold
5510 }
5511 \backslash
5512
5513 \backslash
5514 %
5515 \end_layout
5516
5517 \begin_layout Standard
5518 and is inserted behind the label box, see Table\InsetSpace ~
5519
5520 \begin_inset LatexCommand ref
5521 reference "tab:RefExample"
5522
5523 \end_inset
5524
5525 .
5526 \end_layout
5527
5528 \begin_layout Standard
5529 The caption layout can be set together with all other caption of your document
5530  using the LaTeX-package 
5531 \series bold
5532 caption
5533 \series default
5534
5535 \begin_inset LatexCommand index
5536 name "LaTeX-packages ! caption"
5537
5538 \end_inset
5539
5540 , see section\InsetSpace ~
5541
5542 \begin_inset LatexCommand ref
5543 reference "sec:Caption-Formatting"
5544
5545 \end_inset
5546
5547 .
5548 \end_layout
5549
5550 \begin_layout Subsubsection
5551 Caption Width
5552 \begin_inset LatexCommand index
5553 name "Longtables ! Caption Width"
5554
5555 \end_inset
5556
5557
5558 \end_layout
5559
5560 \begin_layout Standard
5561 The maximal width of of caption lines is defined by the length 
5562 \series bold
5563
5564 \backslash
5565 LTcapwidth
5566 \series default
5567 .
5568  It default value is 4\InsetSpace \thinspace{}
5569 in.
5570  To change it add the following command to your document preamble or as
5571  ERT into your document before the longtable that should be affected
5572 \end_layout
5573
5574 \begin_layout Standard
5575
5576 \series bold
5577
5578 \backslash
5579 setlength{
5580 \backslash
5581 LTcapwidth}{width}
5582 \end_layout
5583
5584 \begin_layout Standard
5585 where the width could have one of the units listed in appendix\InsetSpace ~
5586
5587 \begin_inset LatexCommand ref
5588 reference "cha:Units-available-in"
5589
5590 \end_inset
5591
5592 .
5593 \end_layout
5594
5595 \begin_layout Standard
5596 The following tables show the difference:
5597 \end_layout
5598
5599 \begin_layout Standard
5600 \begin_inset Tabular
5601 <lyxtabular version="3" rows="6" columns="5">
5602 <features islongtable="true">
5603 <column alignment="center" valignment="top" leftline="true" width="0">
5604 <column alignment="center" valignment="top" leftline="true" width="0">
5605 <column alignment="center" valignment="top" leftline="true" width="0">
5606 <column alignment="center" valignment="top" leftline="true" width="0">
5607 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
5608 <row>
5609 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5610 \begin_inset Text
5611
5612 \begin_layout Standard
5613 \begin_inset ERT
5614 status collapsed
5615
5616 \begin_layout Standard
5617
5618
5619 \backslash
5620 caption[caption with default width]{long full title with default width
5621 \end_layout
5622
5623 \begin_layout Standard
5624
5625 long full title with default width long full title with default width}
5626 \backslash
5627
5628 \backslash
5629 %
5630 \end_layout
5631
5632 \end_inset
5633
5634
5635 \end_layout
5636
5637 \end_inset
5638 </cell>
5639 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5640 \begin_inset Text
5641
5642 \begin_layout Standard
5643 \begin_inset ERT
5644 status collapsed
5645
5646 \begin_layout Standard
5647
5648 %
5649 \end_layout
5650
5651 \end_inset
5652
5653
5654 \end_layout
5655
5656 \end_inset
5657 </cell>
5658 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5659 \begin_inset Text
5660
5661 \begin_layout Standard
5662 \begin_inset ERT
5663 status collapsed
5664
5665 \begin_layout Standard
5666
5667 %
5668 \end_layout
5669
5670 \end_inset
5671
5672
5673 \end_layout
5674
5675 \end_inset
5676 </cell>
5677 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5678 \begin_inset Text
5679
5680 \begin_layout Standard
5681 \begin_inset ERT
5682 status collapsed
5683
5684 \begin_layout Standard
5685
5686 %
5687 \end_layout
5688
5689 \end_inset
5690
5691
5692 \end_layout
5693
5694 \end_inset
5695 </cell>
5696 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5697 \begin_inset Text
5698
5699 \begin_layout Standard
5700 \begin_inset ERT
5701 status collapsed
5702
5703 \begin_layout Standard
5704
5705 %
5706 \end_layout
5707
5708 \end_inset
5709
5710
5711 \end_layout
5712
5713 \end_inset
5714 </cell>
5715 </row>
5716 <row topline="true">
5717 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5718 \begin_inset Text
5719
5720 \begin_layout Standard
5721 1
5722 \end_layout
5723
5724 \end_inset
5725 </cell>
5726 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5727 \begin_inset Text
5728
5729 \begin_layout Standard
5730 2
5731 \end_layout
5732
5733 \end_inset
5734 </cell>
5735 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5736 \begin_inset Text
5737
5738 \begin_layout Standard
5739 3
5740 \end_layout
5741
5742 \end_inset
5743 </cell>
5744 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5745 \begin_inset Text
5746
5747 \begin_layout Standard
5748 4
5749 \end_layout
5750
5751 \end_inset
5752 </cell>
5753 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5754 \begin_inset Text
5755
5756 \begin_layout Standard
5757 5
5758 \end_layout
5759
5760 \end_inset
5761 </cell>
5762 </row>
5763 <row topline="true">
5764 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5765 \begin_inset Text
5766
5767 \begin_layout Standard
5768 asd
5769 \end_layout
5770
5771 \end_inset
5772 </cell>
5773 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5774 \begin_inset Text
5775
5776 \begin_layout Standard
5777 s
5778 \end_layout
5779
5780 \end_inset
5781 </cell>
5782 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5783 \begin_inset Text
5784
5785 \begin_layout Standard
5786 s
5787 \end_layout
5788
5789 \end_inset
5790 </cell>
5791 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5792 \begin_inset Text
5793
5794 \begin_layout Standard
5795 s
5796 \end_layout
5797
5798 \end_inset
5799 </cell>
5800 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5801 \begin_inset Text
5802
5803 \begin_layout Standard
5804 asd
5805 \end_layout
5806
5807 \end_inset
5808 </cell>
5809 </row>
5810 <row topline="true">
5811 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5812 \begin_inset Text
5813
5814 \begin_layout Standard
5815 asd
5816 \end_layout
5817
5818 \end_inset
5819 </cell>
5820 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5821 \begin_inset Text
5822
5823 \begin_layout Standard
5824 s
5825 \end_layout
5826
5827 \end_inset
5828 </cell>
5829 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5830 \begin_inset Text
5831
5832 \begin_layout Standard
5833 s
5834 \end_layout
5835
5836 \end_inset
5837 </cell>
5838 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5839 \begin_inset Text
5840
5841 \begin_layout Standard
5842 s
5843 \end_layout
5844
5845 \end_inset
5846 </cell>
5847 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5848 \begin_inset Text
5849
5850 \begin_layout Standard
5851 asd
5852 \end_layout
5853
5854 \end_inset
5855 </cell>
5856 </row>
5857 <row topline="true">
5858 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5859 \begin_inset Text
5860
5861 \begin_layout Standard
5862 asd
5863 \end_layout
5864
5865 \end_inset
5866 </cell>
5867 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5868 \begin_inset Text
5869
5870 \begin_layout Standard
5871 s
5872 \end_layout
5873
5874 \end_inset
5875 </cell>
5876 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5877 \begin_inset Text
5878
5879 \begin_layout Standard
5880 s
5881 \end_layout
5882
5883 \end_inset
5884 </cell>
5885 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5886 \begin_inset Text
5887
5888 \begin_layout Standard
5889 s
5890 \end_layout
5891
5892 \end_inset
5893 </cell>
5894 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5895 \begin_inset Text
5896
5897 \begin_layout Standard
5898 asd
5899 \end_layout
5900
5901 \end_inset
5902 </cell>
5903 </row>
5904 <row topline="true" bottomline="true">
5905 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5906 \begin_inset Text
5907
5908 \begin_layout Standard
5909 asd
5910 \end_layout
5911
5912 \end_inset
5913 </cell>
5914 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5915 \begin_inset Text
5916
5917 \begin_layout Standard
5918 sad
5919 \end_layout
5920
5921 \end_inset
5922 </cell>
5923 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5924 \begin_inset Text
5925
5926 \begin_layout Standard
5927 asd
5928 \end_layout
5929
5930 \end_inset
5931 </cell>
5932 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5933 \begin_inset Text
5934
5935 \begin_layout Standard
5936 asd
5937 \end_layout
5938
5939 \end_inset
5940 </cell>
5941 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5942 \begin_inset Text
5943
5944 \begin_layout Standard
5945 asd
5946 \end_layout
5947
5948 \end_inset
5949 </cell>
5950 </row>
5951 </lyxtabular>
5952
5953 \end_inset
5954
5955
5956 \end_layout
5957
5958 \begin_layout Standard
5959 \begin_inset ERT
5960 status collapsed
5961
5962 \begin_layout Standard
5963
5964
5965 \backslash
5966 setlength{
5967 \backslash
5968 LTcapwidth}{5cm}
5969 \end_layout
5970
5971 \end_inset
5972
5973
5974 \begin_inset Tabular
5975 <lyxtabular version="3" rows="6" columns="5">
5976 <features islongtable="true">
5977 <column alignment="center" valignment="top" leftline="true" width="0">
5978 <column alignment="center" valignment="top" leftline="true" width="0">
5979 <column alignment="center" valignment="top" leftline="true" width="0">
5980 <column alignment="center" valignment="top" leftline="true" width="0">
5981 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
5982 <row>
5983 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5984 \begin_inset Text
5985
5986 \begin_layout Standard
5987 \begin_inset ERT
5988 status collapsed
5989
5990 \begin_layout Standard
5991
5992
5993 \backslash
5994 caption[caption with width
5995 \backslash
5996 ,=
5997 \backslash
5998 ,5
5999 \backslash
6000 ,cm]{long full title with width set to 5
6001 \backslash
6002 ,cm
6003 \end_layout
6004
6005 \begin_layout Standard
6006
6007 long full title with width set to 5
6008 \backslash
6009 ,cm long full title with width set to 5
6010 \backslash
6011 ,cm}
6012 \backslash
6013
6014 \backslash
6015 %
6016 \end_layout
6017
6018 \end_inset
6019
6020
6021 \end_layout
6022
6023 \end_inset
6024 </cell>
6025 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6026 \begin_inset Text
6027
6028 \begin_layout Standard
6029 \begin_inset ERT
6030 status collapsed
6031
6032 \begin_layout Standard
6033
6034 %
6035 \end_layout
6036
6037 \end_inset
6038
6039
6040 \end_layout
6041
6042 \end_inset
6043 </cell>
6044 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6045 \begin_inset Text
6046
6047 \begin_layout Standard
6048 \begin_inset ERT
6049 status collapsed
6050
6051 \begin_layout Standard
6052
6053 %
6054 \end_layout
6055
6056 \end_inset
6057
6058
6059 \end_layout
6060
6061 \end_inset
6062 </cell>
6063 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6064 \begin_inset Text
6065
6066 \begin_layout Standard
6067 \begin_inset ERT
6068 status collapsed
6069
6070 \begin_layout Standard
6071
6072 %
6073 \end_layout
6074
6075 \end_inset
6076
6077
6078 \end_layout
6079
6080 \end_inset
6081 </cell>
6082 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6083 \begin_inset Text
6084
6085 \begin_layout Standard
6086 \begin_inset ERT
6087 status collapsed
6088
6089 \begin_layout Standard
6090
6091 %
6092 \end_layout
6093
6094 \end_inset
6095
6096
6097 \end_layout
6098
6099 \end_inset
6100 </cell>
6101 </row>
6102 <row topline="true">
6103 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6104 \begin_inset Text
6105
6106 \begin_layout Standard
6107 1
6108 \end_layout
6109
6110 \end_inset
6111 </cell>
6112 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6113 \begin_inset Text
6114
6115 \begin_layout Standard
6116 2
6117 \end_layout
6118
6119 \end_inset
6120 </cell>
6121 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6122 \begin_inset Text
6123
6124 \begin_layout Standard
6125 3
6126 \end_layout
6127
6128 \end_inset
6129 </cell>
6130 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6131 \begin_inset Text
6132
6133 \begin_layout Standard
6134 4
6135 \end_layout
6136
6137 \end_inset
6138 </cell>
6139 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6140 \begin_inset Text
6141
6142 \begin_layout Standard
6143 5
6144 \end_layout
6145
6146 \end_inset
6147 </cell>
6148 </row>
6149 <row topline="true">
6150 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6151 \begin_inset Text
6152
6153 \begin_layout Standard
6154 asd
6155 \end_layout
6156
6157 \end_inset
6158 </cell>
6159 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6160 \begin_inset Text
6161
6162 \begin_layout Standard
6163 s
6164 \end_layout
6165
6166 \end_inset
6167 </cell>
6168 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6169 \begin_inset Text
6170
6171 \begin_layout Standard
6172 s
6173 \end_layout
6174
6175 \end_inset
6176 </cell>
6177 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6178 \begin_inset Text
6179
6180 \begin_layout Standard
6181 s
6182 \end_layout
6183
6184 \end_inset
6185 </cell>
6186 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6187 \begin_inset Text
6188
6189 \begin_layout Standard
6190 asd
6191 \end_layout
6192
6193 \end_inset
6194 </cell>
6195 </row>
6196 <row topline="true">
6197 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6198 \begin_inset Text
6199
6200 \begin_layout Standard
6201 asd
6202 \end_layout
6203
6204 \end_inset
6205 </cell>
6206 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6207 \begin_inset Text
6208
6209 \begin_layout Standard
6210 s
6211 \end_layout
6212
6213 \end_inset
6214 </cell>
6215 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6216 \begin_inset Text
6217
6218 \begin_layout Standard
6219 s
6220 \end_layout
6221
6222 \end_inset
6223 </cell>
6224 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6225 \begin_inset Text
6226
6227 \begin_layout Standard
6228 s
6229 \end_layout
6230
6231 \end_inset
6232 </cell>
6233 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6234 \begin_inset Text
6235
6236 \begin_layout Standard
6237 asd
6238 \end_layout
6239
6240 \end_inset
6241 </cell>
6242 </row>
6243 <row topline="true">
6244 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6245 \begin_inset Text
6246
6247 \begin_layout Standard
6248 asd
6249 \end_layout
6250
6251 \end_inset
6252 </cell>
6253 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6254 \begin_inset Text
6255
6256 \begin_layout Standard
6257 s
6258 \end_layout
6259
6260 \end_inset
6261 </cell>
6262 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6263 \begin_inset Text
6264
6265 \begin_layout Standard
6266 s
6267 \end_layout
6268
6269 \end_inset
6270 </cell>
6271 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6272 \begin_inset Text
6273
6274 \begin_layout Standard
6275 s
6276 \end_layout
6277
6278 \end_inset
6279 </cell>
6280 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6281 \begin_inset Text
6282
6283 \begin_layout Standard
6284 asd
6285 \end_layout
6286
6287 \end_inset
6288 </cell>
6289 </row>
6290 <row topline="true" bottomline="true">
6291 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6292 \begin_inset Text
6293
6294 \begin_layout Standard
6295 asd
6296 \end_layout
6297
6298 \end_inset
6299 </cell>
6300 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6301 \begin_inset Text
6302
6303 \begin_layout Standard
6304 sad
6305 \end_layout
6306
6307 \end_inset
6308 </cell>
6309 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6310 \begin_inset Text
6311
6312 \begin_layout Standard
6313 asd
6314 \end_layout
6315
6316 \end_inset
6317 </cell>
6318 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6319 \begin_inset Text
6320
6321 \begin_layout Standard
6322 asd
6323 \end_layout
6324
6325 \end_inset
6326 </cell>
6327 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6328 \begin_inset Text
6329
6330 \begin_layout Standard
6331 asd
6332 \end_layout
6333
6334 \end_inset
6335 </cell>
6336 </row>
6337 </lyxtabular>
6338
6339 \end_inset
6340
6341
6342 \begin_inset ERT
6343 status collapsed
6344
6345 \begin_layout Standard
6346
6347
6348 \backslash
6349 setlength{
6350 \backslash
6351 LTcapwidth}{4in}
6352 \end_layout
6353
6354 \end_inset
6355
6356
6357 \end_layout
6358
6359 \begin_layout Standard
6360
6361 \end_layout
6362
6363 \begin_layout Subsubsection
6364 Different Captions for Table Pages
6365 \begin_inset LatexCommand index
6366 name "Longtables ! Different Captions for Pages"
6367
6368 \end_inset
6369
6370
6371 \end_layout
6372
6373 \begin_layout Standard
6374 When the other captions should differ from the one of the first table page,
6375  insert the 
6376 \series bold
6377
6378 \backslash
6379 caption
6380 \series default
6381  command with a non-empty short title in a dummy caption row marked as first
6382  header.
6383  The caption used for the other table pages is inserted as 
6384 \series bold
6385
6386 \backslash
6387 caption
6388 \series default
6389  command without a short title in a dummy caption row that is marked as
6390  main header.
6391  When this caption shouldn't include the table number, use the command 
6392 \series bold
6393
6394 \backslash
6395 caption*
6396 \series default
6397  instead of 
6398 \series bold
6399
6400 \backslash
6401 caption
6402 \series default
6403 .
6404  The label to reference the table is inserted into the caption of the first
6405  header.
6406  Table\InsetSpace ~
6407
6408 \begin_inset LatexCommand ref
6409 reference "tab:DiffCaptions"
6410
6411 \end_inset
6412
6413  is an example for a longtable with different heading where the second caption
6414  doesn't include the table number.
6415 \end_layout
6416
6417 \begin_layout Standard
6418 \align center
6419 \begin_inset Tabular
6420 <lyxtabular version="3" rows="60" columns="3">
6421 <features islongtable="true">
6422 <column alignment="left" valignment="top" leftline="true" width="0cm">
6423 <column alignment="left" valignment="top" rightline="true" width="0pt">
6424 <column alignment="right" valignment="top" rightline="true" width="0pt">
6425 <row endfirsthead="true">
6426 <cell alignment="right" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
6427 \begin_inset Text
6428
6429 \begin_layout Standard
6430 \begin_inset ERT
6431 status collapsed
6432
6433 \begin_layout Standard
6434
6435
6436 \backslash
6437 caption[Example Phone List]{Example Phone List 
6438 \end_layout
6439
6440 \end_inset
6441
6442
6443 \begin_inset LatexCommand label
6444 name "tab:DiffCaptions"
6445
6446 \end_inset
6447
6448
6449 \begin_inset ERT
6450 status collapsed
6451
6452 \begin_layout Standard
6453
6454 }
6455 \backslash
6456
6457 \backslash
6458 %
6459 \end_layout
6460
6461 \end_inset
6462
6463
6464 \end_layout
6465
6466 \end_inset
6467 </cell>
6468 <cell alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
6469 \begin_inset Text
6470
6471 \begin_layout Standard
6472 \begin_inset ERT
6473 status collapsed
6474
6475 \begin_layout Standard
6476
6477 %
6478 \end_layout
6479
6480 \end_inset
6481
6482
6483 \end_layout
6484
6485 \end_inset
6486 </cell>
6487 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6488 \begin_inset Text
6489
6490 \begin_layout Standard
6491 \begin_inset ERT
6492 status collapsed
6493
6494 \begin_layout Standard
6495
6496 %
6497 \end_layout
6498
6499 \end_inset
6500
6501
6502 \end_layout
6503
6504 \end_inset
6505 </cell>
6506 </row>
6507 <row topline="true" bottomline="true" endfirsthead="true">
6508 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6509 \begin_inset Text
6510
6511 \begin_layout Standard
6512
6513 \series bold
6514 Example Phone List (ignore the names)
6515 \end_layout
6516
6517 \end_inset
6518 </cell>
6519 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6520 \begin_inset Text
6521
6522 \begin_layout Standard
6523
6524 \end_layout
6525
6526 \end_inset
6527 </cell>
6528 <cell multicolumn="2" alignment="right" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6529 \begin_inset Text
6530
6531 \begin_layout Standard
6532
6533 \end_layout
6534
6535 \end_inset
6536 </cell>
6537 </row>
6538 <row topline="true" bottomline="true" endfirsthead="true">
6539 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
6540 \begin_inset Text
6541
6542 \begin_layout Standard
6543
6544 \series bold
6545 NAME
6546 \end_layout
6547
6548 \end_inset
6549 </cell>
6550 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
6551 \begin_inset Text
6552
6553 \begin_layout Standard
6554
6555 \end_layout
6556
6557 \end_inset
6558 </cell>
6559 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
6560 \begin_inset Text
6561
6562 \begin_layout Standard
6563
6564 \series bold
6565 TEL.
6566 \end_layout
6567
6568 \end_inset
6569 </cell>
6570 </row>
6571 <row bottomline="true" endhead="true">
6572 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6573 \begin_inset Text
6574
6575 \begin_layout Standard
6576 \begin_inset ERT
6577 status collapsed
6578
6579 \begin_layout Standard
6580
6581
6582 \backslash
6583 caption*{Continued Example Phone List}
6584 \backslash
6585
6586 \backslash
6587 %
6588 \end_layout
6589
6590 \end_inset
6591
6592
6593 \end_layout
6594
6595 \end_inset
6596 </cell>
6597 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6598 \begin_inset Text
6599
6600 \begin_layout Standard
6601 \begin_inset ERT
6602 status collapsed
6603
6604 \begin_layout Standard
6605
6606 %
6607 \end_layout
6608
6609 \end_inset
6610
6611
6612 \end_layout
6613
6614 \end_inset
6615 </cell>
6616 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6617 \begin_inset Text
6618
6619 \begin_layout Standard
6620 \begin_inset ERT
6621 status collapsed
6622
6623 \begin_layout Standard
6624
6625 %
6626 \end_layout
6627
6628 \end_inset
6629
6630
6631 \end_layout
6632
6633 \end_inset
6634 </cell>
6635 </row>
6636 <row topline="true" bottomline="true" endhead="true">
6637 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
6638 \begin_inset Text
6639
6640 \begin_layout Standard
6641
6642 \series bold
6643 Example Phone List
6644 \end_layout
6645
6646 \end_inset
6647 </cell>
6648 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
6649 \begin_inset Text
6650
6651 \begin_layout Standard
6652
6653 \end_layout
6654
6655 \end_inset
6656 </cell>
6657 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6658 \begin_inset Text
6659
6660 \begin_layout Standard
6661
6662 \end_layout
6663
6664 \end_inset
6665 </cell>
6666 </row>
6667 <row topline="true" bottomline="true" endhead="true">
6668 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
6669 \begin_inset Text
6670
6671 \begin_layout Standard
6672
6673 \series bold
6674 NAME
6675 \end_layout
6676
6677 \end_inset
6678 </cell>
6679 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
6680 \begin_inset Text
6681
6682 \begin_layout Standard
6683
6684 \end_layout
6685
6686 \end_inset
6687 </cell>
6688 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
6689 \begin_inset Text
6690
6691 \begin_layout Standard
6692
6693 \series bold
6694 TEL.
6695 \end_layout
6696
6697 \end_inset
6698 </cell>
6699 </row>
6700 <row topline="true" bottomline="true" endfoot="true">
6701 <cell multicolumn="1" alignment="right" valignment="top" topline="true" usebox="none">
6702 \begin_inset Text
6703
6704 \begin_layout Standard
6705 continued on next page
6706 \end_layout
6707
6708 \end_inset
6709 </cell>
6710 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
6711 \begin_inset Text
6712
6713 \begin_layout Standard
6714
6715 \end_layout
6716
6717 \end_inset
6718 </cell>
6719 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6720 \begin_inset Text
6721
6722 \begin_layout Standard
6723
6724 \end_layout
6725
6726 \end_inset
6727 </cell>
6728 </row>
6729 <row>
6730 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6731 \begin_inset Text
6732
6733 \begin_layout Standard
6734
6735 \series bold
6736 Annovi
6737 \end_layout
6738
6739 \end_inset
6740 </cell>
6741 <cell alignment="center" valignment="top" topline="true" usebox="none">
6742 \begin_inset Text
6743
6744 \begin_layout Standard
6745 Silvia
6746 \end_layout
6747
6748 \end_inset
6749 </cell>
6750 <cell alignment="right" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6751 \begin_inset Text
6752
6753 \begin_layout Standard
6754 111
6755 \end_layout
6756
6757 \end_inset
6758 </cell>
6759 </row>
6760 <row>
6761 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6762 \begin_inset Text
6763
6764 \begin_layout Standard
6765
6766 \series bold
6767 Bertoli
6768 \end_layout
6769
6770 \end_inset
6771 </cell>
6772 <cell alignment="center" valignment="top" topline="true" usebox="none">
6773 \begin_inset Text
6774
6775 \begin_layout Standard
6776 Stefano
6777 \end_layout
6778
6779 \end_inset
6780 </cell>
6781 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6782 \begin_inset Text
6783
6784 \begin_layout Standard
6785 111
6786 \end_layout
6787
6788 \end_inset
6789 </cell>
6790 </row>
6791 <row>
6792 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6793 \begin_inset Text
6794
6795 \begin_layout Standard
6796
6797 \series bold
6798 Bozzi
6799 \end_layout
6800
6801 \end_inset
6802 </cell>
6803 <cell alignment="center" valignment="top" topline="true" usebox="none">
6804 \begin_inset Text
6805
6806 \begin_layout Standard
6807 Walter
6808 \end_layout
6809
6810 \end_inset
6811 </cell>
6812 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6813 \begin_inset Text
6814
6815 \begin_layout Standard
6816 111
6817 \end_layout
6818
6819 \end_inset
6820 </cell>
6821 </row>
6822 <row>
6823 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6824 \begin_inset Text
6825
6826 \begin_layout Standard
6827
6828 \series bold
6829 Cachia
6830 \end_layout
6831
6832 \end_inset
6833 </cell>
6834 <cell alignment="center" valignment="top" topline="true" usebox="none">
6835 \begin_inset Text
6836
6837 \begin_layout Standard
6838 Maria
6839 \end_layout
6840
6841 \end_inset
6842 </cell>
6843 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6844 \begin_inset Text
6845
6846 \begin_layout Standard
6847 111
6848 \end_layout
6849
6850 \end_inset
6851 </cell>
6852 </row>
6853 <row>
6854 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6855 \begin_inset Text
6856
6857 \begin_layout Standard
6858
6859 \series bold
6860 Cachia
6861 \end_layout
6862
6863 \end_inset
6864 </cell>
6865 <cell alignment="center" valignment="top" topline="true" usebox="none">
6866 \begin_inset Text
6867
6868 \begin_layout Standard
6869 Maurizio
6870 \end_layout
6871
6872 \end_inset
6873 </cell>
6874 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6875 \begin_inset Text
6876
6877 \begin_layout Standard
6878 111
6879 \end_layout
6880
6881 \end_inset
6882 </cell>
6883 </row>
6884 <row>
6885 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6886 \begin_inset Text
6887
6888 \begin_layout Standard
6889
6890 \series bold
6891 Cinquemani
6892 \end_layout
6893
6894 \end_inset
6895 </cell>
6896 <cell alignment="center" valignment="top" topline="true" usebox="none">
6897 \begin_inset Text
6898
6899 \begin_layout Standard
6900 Giusi
6901 \end_layout
6902
6903 \end_inset
6904 </cell>
6905 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6906 \begin_inset Text
6907
6908 \begin_layout Standard
6909 111
6910 \end_layout
6911
6912 \end_inset
6913 </cell>
6914 </row>
6915 <row>
6916 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6917 \begin_inset Text
6918
6919 \begin_layout Standard
6920
6921 \series bold
6922 Colin
6923 \end_layout
6924
6925 \end_inset
6926 </cell>
6927 <cell alignment="center" valignment="top" topline="true" usebox="none">
6928 \begin_inset Text
6929
6930 \begin_layout Standard
6931 Bernard
6932 \end_layout
6933
6934 \end_inset
6935 </cell>
6936 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6937 \begin_inset Text
6938
6939 \begin_layout Standard
6940 111
6941 \end_layout
6942
6943 \end_inset
6944 </cell>
6945 </row>
6946 <row>
6947 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6948 \begin_inset Text
6949
6950 \begin_layout Standard
6951
6952 \series bold
6953 Concli
6954 \end_layout
6955
6956 \end_inset
6957 </cell>
6958 <cell alignment="center" valignment="top" topline="true" usebox="none">
6959 \begin_inset Text
6960
6961 \begin_layout Standard
6962 Gianfranco
6963 \end_layout
6964
6965 \end_inset
6966 </cell>
6967 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6968 \begin_inset Text
6969
6970 \begin_layout Standard
6971 111
6972 \end_layout
6973
6974 \end_inset
6975 </cell>
6976 </row>
6977 <row>
6978 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6979 \begin_inset Text
6980
6981 \begin_layout Standard
6982
6983 \series bold
6984 Dal Bosco
6985 \end_layout
6986
6987 \end_inset
6988 </cell>
6989 <cell alignment="center" valignment="top" topline="true" usebox="none">
6990 \begin_inset Text
6991
6992 \begin_layout Standard
6993 Carolina
6994 \end_layout
6995
6996 \end_inset
6997 </cell>
6998 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6999 \begin_inset Text
7000
7001 \begin_layout Standard
7002 111
7003 \end_layout
7004
7005 \end_inset
7006 </cell>
7007 </row>
7008 <row>
7009 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7010 \begin_inset Text
7011
7012 \begin_layout Standard
7013
7014 \series bold
7015 Dalpiaz
7016 \end_layout
7017
7018 \end_inset
7019 </cell>
7020 <cell alignment="center" valignment="top" topline="true" usebox="none">
7021 \begin_inset Text
7022
7023 \begin_layout Standard
7024 Annamaria
7025 \end_layout
7026
7027 \end_inset
7028 </cell>
7029 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7030 \begin_inset Text
7031
7032 \begin_layout Standard
7033 111
7034 \end_layout
7035
7036 \end_inset
7037 </cell>
7038 </row>
7039 <row>
7040 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7041 \begin_inset Text
7042
7043 \begin_layout Standard
7044
7045 \series bold
7046 Feliciello
7047 \end_layout
7048
7049 \end_inset
7050 </cell>
7051 <cell alignment="center" valignment="top" topline="true" usebox="none">
7052 \begin_inset Text
7053
7054 \begin_layout Standard
7055 Domenico
7056 \end_layout
7057
7058 \end_inset
7059 </cell>
7060 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7061 \begin_inset Text
7062
7063 \begin_layout Standard
7064 111
7065 \end_layout
7066
7067 \end_inset
7068 </cell>
7069 </row>
7070 <row>
7071 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7072 \begin_inset Text
7073
7074 \begin_layout Standard
7075
7076 \series bold
7077 Focarelli
7078 \end_layout
7079
7080 \end_inset
7081 </cell>
7082 <cell alignment="center" valignment="top" topline="true" usebox="none">
7083 \begin_inset Text
7084
7085 \begin_layout Standard
7086 Paola
7087 \end_layout
7088
7089 \end_inset
7090 </cell>
7091 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7092 \begin_inset Text
7093
7094 \begin_layout Standard
7095 111
7096 \end_layout
7097
7098 \end_inset
7099 </cell>
7100 </row>
7101 <row>
7102 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7103 \begin_inset Text
7104
7105 \begin_layout Standard
7106
7107 \series bold
7108 Galletti
7109 \end_layout
7110
7111 \end_inset
7112 </cell>
7113 <cell alignment="center" valignment="top" topline="true" usebox="none">
7114 \begin_inset Text
7115
7116 \begin_layout Standard
7117 Oreste
7118 \end_layout
7119
7120 \end_inset
7121 </cell>
7122 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7123 \begin_inset Text
7124
7125 \begin_layout Standard
7126 111
7127 \end_layout
7128
7129 \end_inset
7130 </cell>
7131 </row>
7132 <row>
7133 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7134 \begin_inset Text
7135
7136 \begin_layout Standard
7137
7138 \series bold
7139 Gasparini
7140 \end_layout
7141
7142 \end_inset
7143 </cell>
7144 <cell alignment="center" valignment="top" topline="true" usebox="none">
7145 \begin_inset Text
7146
7147 \begin_layout Standard
7148 Franca
7149 \end_layout
7150
7151 \end_inset
7152 </cell>
7153 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7154 \begin_inset Text
7155
7156 \begin_layout Standard
7157 111
7158 \end_layout
7159
7160 \end_inset
7161 </cell>
7162 </row>
7163 <row>
7164 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7165 \begin_inset Text
7166
7167 \begin_layout Standard
7168
7169 \series bold
7170 Rizzardi
7171 \series default
7172
7173 \begin_inset Foot
7174 status collapsed
7175
7176 \begin_layout Standard
7177 Example footnote
7178 \end_layout
7179
7180 \end_inset
7181
7182
7183 \end_layout
7184
7185 \end_inset
7186 </cell>
7187 <cell alignment="center" valignment="top" topline="true" usebox="none">
7188 \begin_inset Text
7189
7190 \begin_layout Standard
7191 Paola
7192 \end_layout
7193
7194 \end_inset
7195 </cell>
7196 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7197 \begin_inset Text
7198
7199 \begin_layout Standard
7200 111
7201 \end_layout
7202
7203 \end_inset
7204 </cell>
7205 </row>
7206 <row>
7207 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7208 \begin_inset Text
7209
7210 \begin_layout Standard
7211
7212 \series bold
7213 Lassini
7214 \end_layout
7215
7216 \end_inset
7217 </cell>
7218 <cell alignment="center" valignment="top" topline="true" usebox="none">
7219 \begin_inset Text
7220
7221 \begin_layout Standard
7222 Giancarlo
7223 \end_layout
7224
7225 \end_inset
7226 </cell>
7227 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7228 \begin_inset Text
7229
7230 \begin_layout Standard
7231 111
7232 \end_layout
7233
7234 \end_inset
7235 </cell>
7236 </row>
7237 <row>
7238 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7239 \begin_inset Text
7240
7241 \begin_layout Standard
7242
7243 \series bold
7244 Malfatti
7245 \end_layout
7246
7247 \end_inset
7248 </cell>
7249 <cell alignment="center" valignment="top" topline="true" usebox="none">
7250 \begin_inset Text
7251
7252 \begin_layout Standard
7253 Luciano
7254 \end_layout
7255
7256 \end_inset
7257 </cell>
7258 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7259 \begin_inset Text
7260
7261 \begin_layout Standard
7262 111
7263 \end_layout
7264
7265 \end_inset
7266 </cell>
7267 </row>
7268 <row>
7269 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7270 \begin_inset Text
7271
7272 \begin_layout Standard
7273
7274 \series bold
7275 Malfatti
7276 \end_layout
7277
7278 \end_inset
7279 </cell>
7280 <cell alignment="center" valignment="top" topline="true" usebox="none">
7281 \begin_inset Text
7282
7283 \begin_layout Standard
7284 Valeriano
7285 \end_layout
7286
7287 \end_inset
7288 </cell>
7289 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7290 \begin_inset Text
7291
7292 \begin_layout Standard
7293 111
7294 \end_layout
7295
7296 \end_inset
7297 </cell>
7298 </row>
7299 <row>
7300 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7301 \begin_inset Text
7302
7303 \begin_layout Standard
7304
7305 \series bold
7306 Meneguzzo
7307 \end_layout
7308
7309 \end_inset
7310 </cell>
7311 <cell alignment="center" valignment="top" topline="true" usebox="none">
7312 \begin_inset Text
7313
7314 \begin_layout Standard
7315 Roberto
7316 \end_layout
7317
7318 \end_inset
7319 </cell>
7320 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7321 \begin_inset Text
7322
7323 \begin_layout Standard
7324 111
7325 \end_layout
7326
7327 \end_inset
7328 </cell>
7329 </row>
7330 <row>
7331 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7332 \begin_inset Text
7333
7334 \begin_layout Standard
7335
7336 \series bold
7337 Mezzadra
7338 \end_layout
7339
7340 \end_inset
7341 </cell>
7342 <cell alignment="center" valignment="top" topline="true" usebox="none">
7343 \begin_inset Text
7344
7345 \begin_layout Standard
7346 Roberto
7347 \end_layout
7348
7349 \end_inset
7350 </cell>
7351 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7352 \begin_inset Text
7353
7354 \begin_layout Standard
7355 111
7356 \end_layout
7357
7358 \end_inset
7359 </cell>
7360 </row>
7361 <row>
7362 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7363 \begin_inset Text
7364
7365 \begin_layout Standard
7366
7367 \series bold
7368 Pirpamer
7369 \end_layout
7370
7371 \end_inset
7372 </cell>
7373 <cell alignment="center" valignment="top" topline="true" usebox="none">
7374 \begin_inset Text
7375
7376 \begin_layout Standard
7377 Erich
7378 \end_layout
7379
7380 \end_inset
7381 </cell>
7382 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7383 \begin_inset Text
7384
7385 \begin_layout Standard
7386 111
7387 \end_layout
7388
7389 \end_inset
7390 </cell>
7391 </row>
7392 <row>
7393 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7394 \begin_inset Text
7395
7396 \begin_layout Standard
7397
7398 \series bold
7399 Pochiesa
7400 \end_layout
7401
7402 \end_inset
7403 </cell>
7404 <cell alignment="center" valignment="top" topline="true" usebox="none">
7405 \begin_inset Text
7406
7407 \begin_layout Standard
7408 Paolo
7409 \end_layout
7410
7411 \end_inset
7412 </cell>
7413 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7414 \begin_inset Text
7415
7416 \begin_layout Standard
7417 111, 222
7418 \end_layout
7419
7420 \end_inset
7421 </cell>
7422 </row>
7423 <row>
7424 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7425 \begin_inset Text
7426
7427 \begin_layout Standard
7428
7429 \series bold
7430 Radina
7431 \end_layout
7432
7433 \end_inset
7434 </cell>
7435 <cell alignment="center" valignment="top" topline="true" usebox="none">
7436 \begin_inset Text
7437
7438 \begin_layout Standard
7439 Claudio
7440 \end_layout
7441
7442 \end_inset
7443 </cell>
7444 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7445 \begin_inset Text
7446
7447 \begin_layout Standard
7448 111
7449 \end_layout
7450
7451 \end_inset
7452 </cell>
7453 </row>
7454 <row>
7455 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7456 \begin_inset Text
7457
7458 \begin_layout Standard
7459
7460 \series bold
7461 Stuffer
7462 \end_layout
7463
7464 \end_inset
7465 </cell>
7466 <cell alignment="center" valignment="top" topline="true" usebox="none">
7467 \begin_inset Text
7468
7469 \begin_layout Standard
7470 Oskar
7471 \end_layout
7472
7473 \end_inset
7474 </cell>
7475 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7476 \begin_inset Text
7477
7478 \begin_layout Standard
7479 111
7480 \end_layout
7481
7482 \end_inset
7483 </cell>
7484 </row>
7485 <row>
7486 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7487 \begin_inset Text
7488
7489 \begin_layout Standard
7490
7491 \series bold
7492 Tacchelli
7493 \end_layout
7494
7495 \end_inset
7496 </cell>
7497 <cell alignment="center" valignment="top" topline="true" usebox="none">
7498 \begin_inset Text
7499
7500 \begin_layout Standard
7501 Ugo
7502 \end_layout
7503
7504 \end_inset
7505 </cell>
7506 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7507 \begin_inset Text
7508
7509 \begin_layout Standard
7510 111
7511 \end_layout
7512
7513 \end_inset
7514 </cell>
7515 </row>
7516 <row>
7517 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7518 \begin_inset Text
7519
7520 \begin_layout Standard
7521
7522 \series bold
7523 Tezzele
7524 \end_layout
7525
7526 \end_inset
7527 </cell>
7528 <cell alignment="center" valignment="top" topline="true" usebox="none">
7529 \begin_inset Text
7530
7531 \begin_layout Standard
7532 Margit
7533 \end_layout
7534
7535 \end_inset
7536 </cell>
7537 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7538 \begin_inset Text
7539
7540 \begin_layout Standard
7541 111
7542 \end_layout
7543
7544 \end_inset
7545 </cell>
7546 </row>
7547 <row>
7548 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7549 \begin_inset Text
7550
7551 \begin_layout Standard
7552
7553 \series bold
7554 Unterkalmsteiner
7555 \end_layout
7556
7557 \end_inset
7558 </cell>
7559 <cell alignment="center" valignment="top" topline="true" usebox="none">
7560 \begin_inset Text
7561
7562 \begin_layout Standard
7563 Frieda
7564 \end_layout
7565
7566 \end_inset
7567 </cell>
7568 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7569 \begin_inset Text
7570
7571 \begin_layout Standard
7572 111
7573 \end_layout
7574
7575 \end_inset
7576 </cell>
7577 </row>
7578 <row>
7579 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7580 \begin_inset Text
7581
7582 \begin_layout Standard
7583
7584 \series bold
7585 Vieider
7586 \end_layout
7587
7588 \end_inset
7589 </cell>
7590 <cell alignment="center" valignment="top" topline="true" usebox="none">
7591 \begin_inset Text
7592
7593 \begin_layout Standard
7594 Hilde
7595 \end_layout
7596
7597 \end_inset
7598 </cell>
7599 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7600 \begin_inset Text
7601
7602 \begin_layout Standard
7603 111
7604 \end_layout
7605
7606 \end_inset
7607 </cell>
7608 </row>
7609 <row>
7610 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7611 \begin_inset Text
7612
7613 \begin_layout Standard
7614
7615 \series bold
7616 Vigna
7617 \end_layout
7618
7619 \end_inset
7620 </cell>
7621 <cell alignment="center" valignment="top" topline="true" usebox="none">
7622 \begin_inset Text
7623
7624 \begin_layout Standard
7625 Jürgen
7626 \end_layout
7627
7628 \end_inset
7629 </cell>
7630 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7631 \begin_inset Text
7632
7633 \begin_layout Standard
7634 111
7635 \end_layout
7636
7637 \end_inset
7638 </cell>
7639 </row>
7640 <row>
7641 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7642 \begin_inset Text
7643
7644 \begin_layout Standard
7645
7646 \series bold
7647 Weber
7648 \end_layout
7649
7650 \end_inset
7651 </cell>
7652 <cell alignment="center" valignment="top" topline="true" usebox="none">
7653 \begin_inset Text
7654
7655 \begin_layout Standard
7656 Maurizio
7657 \end_layout
7658
7659 \end_inset
7660 </cell>
7661 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7662 \begin_inset Text
7663
7664 \begin_layout Standard
7665 111
7666 \end_layout
7667
7668 \end_inset
7669 </cell>
7670 </row>
7671 <row bottomline="true">
7672 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7673 \begin_inset Text
7674
7675 \begin_layout Standard
7676
7677 \series bold
7678 Winkler
7679 \end_layout
7680
7681 \end_inset
7682 </cell>
7683 <cell alignment="center" valignment="top" topline="true" usebox="none">
7684 \begin_inset Text
7685
7686 \begin_layout Standard
7687 Franz
7688 \end_layout
7689
7690 \end_inset
7691 </cell>
7692 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7693 \begin_inset Text
7694
7695 \begin_layout Standard
7696 111
7697 \end_layout
7698
7699 \end_inset
7700 </cell>
7701 </row>
7702 <row bottomline="true">
7703 <cell multicolumn="1" alignment="left" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
7704 \begin_inset Text
7705
7706 \begin_layout Standard
7707  
7708 \end_layout
7709
7710 \end_inset
7711 </cell>
7712 <cell multicolumn="2" alignment="center" valignment="top" topline="true" usebox="none">
7713 \begin_inset Text
7714
7715 \begin_layout Standard
7716
7717 \end_layout
7718
7719 \end_inset
7720 </cell>
7721 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7722 \begin_inset Text
7723
7724 \begin_layout Standard
7725
7726 \end_layout
7727
7728 \end_inset
7729 </cell>
7730 </row>
7731 <row>
7732 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7733 \begin_inset Text
7734
7735 \begin_layout Standard
7736
7737 \series bold
7738 Annovi
7739 \end_layout
7740
7741 \end_inset
7742 </cell>
7743 <cell alignment="center" valignment="top" topline="true" usebox="none">
7744 \begin_inset Text
7745
7746 \begin_layout Standard
7747 Silvia
7748 \end_layout
7749
7750 \end_inset
7751 </cell>
7752 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7753 \begin_inset Text
7754
7755 \begin_layout Standard
7756 555
7757 \end_layout
7758
7759 \end_inset
7760 </cell>
7761 </row>
7762 <row>
7763 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7764 \begin_inset Text
7765
7766 \begin_layout Standard
7767
7768 \series bold
7769 Bertoli
7770 \end_layout
7771
7772 \end_inset
7773 </cell>
7774 <cell alignment="center" valignment="top" topline="true" usebox="none">
7775 \begin_inset Text
7776
7777 \begin_layout Standard
7778 Stefano
7779 \end_layout
7780
7781 \end_inset
7782 </cell>
7783 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7784 \begin_inset Text
7785
7786 \begin_layout Standard
7787 555
7788 \end_layout
7789
7790 \end_inset
7791 </cell>
7792 </row>
7793 <row>
7794 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7795 \begin_inset Text
7796
7797 \begin_layout Standard
7798
7799 \series bold
7800 Bozzi
7801 \end_layout
7802
7803 \end_inset
7804 </cell>
7805 <cell alignment="center" valignment="top" topline="true" usebox="none">
7806 \begin_inset Text
7807
7808 \begin_layout Standard
7809 Walter
7810 \end_layout
7811
7812 \end_inset
7813 </cell>
7814 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7815 \begin_inset Text
7816
7817 \begin_layout Standard
7818 555
7819 \end_layout
7820
7821 \end_inset
7822 </cell>
7823 </row>
7824 <row>
7825 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7826 \begin_inset Text
7827
7828 \begin_layout Standard
7829
7830 \series bold
7831 Cachia
7832 \end_layout
7833
7834 \end_inset
7835 </cell>
7836 <cell alignment="center" valignment="top" topline="true" usebox="none">
7837 \begin_inset Text
7838
7839 \begin_layout Standard
7840 Maria
7841 \end_layout
7842
7843 \end_inset
7844 </cell>
7845 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7846 \begin_inset Text
7847
7848 \begin_layout Standard
7849 555
7850 \end_layout
7851
7852 \end_inset
7853 </cell>
7854 </row>
7855 <row>
7856 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7857 \begin_inset Text
7858
7859 \begin_layout Standard
7860
7861 \series bold
7862 Cachia
7863 \end_layout
7864
7865 \end_inset
7866 </cell>
7867 <cell alignment="center" valignment="top" topline="true" usebox="none">
7868 \begin_inset Text
7869
7870 \begin_layout Standard
7871 Maurizio
7872 \end_layout
7873
7874 \end_inset
7875 </cell>
7876 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7877 \begin_inset Text
7878
7879 \begin_layout Standard
7880 555
7881 \end_layout
7882
7883 \end_inset
7884 </cell>
7885 </row>
7886 <row>
7887 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7888 \begin_inset Text
7889
7890 \begin_layout Standard
7891
7892 \series bold
7893 Cinquemani
7894 \end_layout
7895
7896 \end_inset
7897 </cell>
7898 <cell alignment="center" valignment="top" topline="true" usebox="none">
7899 \begin_inset Text
7900
7901 \begin_layout Standard
7902 Giusi
7903 \end_layout
7904
7905 \end_inset
7906 </cell>
7907 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7908 \begin_inset Text
7909
7910 \begin_layout Standard
7911 555
7912 \end_layout
7913
7914 \end_inset
7915 </cell>
7916 </row>
7917 <row>
7918 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7919 \begin_inset Text
7920
7921 \begin_layout Standard
7922
7923 \series bold
7924 Colin
7925 \end_layout
7926
7927 \end_inset
7928 </cell>
7929 <cell alignment="center" valignment="top" topline="true" usebox="none">
7930 \begin_inset Text
7931
7932 \begin_layout Standard
7933 Bernard
7934 \end_layout
7935
7936 \end_inset
7937 </cell>
7938 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7939 \begin_inset Text
7940
7941 \begin_layout Standard
7942 555
7943 \end_layout
7944
7945 \end_inset
7946 </cell>
7947 </row>
7948 <row>
7949 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7950 \begin_inset Text
7951
7952 \begin_layout Standard
7953
7954 \series bold
7955 Concli
7956 \end_layout
7957
7958 \end_inset
7959 </cell>
7960 <cell alignment="center" valignment="top" topline="true" usebox="none">
7961 \begin_inset Text
7962
7963 \begin_layout Standard
7964 Gianfranco
7965 \end_layout
7966
7967 \end_inset
7968 </cell>
7969 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7970 \begin_inset Text
7971
7972 \begin_layout Standard
7973 555
7974 \end_layout
7975
7976 \end_inset
7977 </cell>
7978 </row>
7979 <row>
7980 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
7981 \begin_inset Text
7982
7983 \begin_layout Standard
7984
7985 \series bold
7986 Dal Bosco
7987 \end_layout
7988
7989 \end_inset
7990 </cell>
7991 <cell alignment="center" valignment="top" topline="true" usebox="none">
7992 \begin_inset Text
7993
7994 \begin_layout Standard
7995 Carolina
7996 \end_layout
7997
7998 \end_inset
7999 </cell>
8000 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8001 \begin_inset Text
8002
8003 \begin_layout Standard
8004 555
8005 \end_layout
8006
8007 \end_inset
8008 </cell>
8009 </row>
8010 <row>
8011 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8012 \begin_inset Text
8013
8014 \begin_layout Standard
8015
8016 \series bold
8017 Dalpiaz
8018 \end_layout
8019
8020 \end_inset
8021 </cell>
8022 <cell alignment="center" valignment="top" topline="true" usebox="none">
8023 \begin_inset Text
8024
8025 \begin_layout Standard
8026 Annamaria
8027 \end_layout
8028
8029 \end_inset
8030 </cell>
8031 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8032 \begin_inset Text
8033
8034 \begin_layout Standard
8035 555
8036 \end_layout
8037
8038 \end_inset
8039 </cell>
8040 </row>
8041 <row>
8042 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8043 \begin_inset Text
8044
8045 \begin_layout Standard
8046
8047 \series bold
8048 Feliciello
8049 \end_layout
8050
8051 \end_inset
8052 </cell>
8053 <cell alignment="center" valignment="top" topline="true" usebox="none">
8054 \begin_inset Text
8055
8056 \begin_layout Standard
8057 Domenico
8058 \end_layout
8059
8060 \end_inset
8061 </cell>
8062 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8063 \begin_inset Text
8064
8065 \begin_layout Standard
8066 555
8067 \end_layout
8068
8069 \end_inset
8070 </cell>
8071 </row>
8072 <row>
8073 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8074 \begin_inset Text
8075
8076 \begin_layout Standard
8077
8078 \series bold
8079 Focarelli
8080 \end_layout
8081
8082 \end_inset
8083 </cell>
8084 <cell alignment="center" valignment="top" topline="true" usebox="none">
8085 \begin_inset Text
8086
8087 \begin_layout Standard
8088 Paola
8089 \end_layout
8090
8091 \end_inset
8092 </cell>
8093 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8094 \begin_inset Text
8095
8096 \begin_layout Standard
8097 555
8098 \end_layout
8099
8100 \end_inset
8101 </cell>
8102 </row>
8103 <row>
8104 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8105 \begin_inset Text
8106
8107 \begin_layout Standard
8108
8109 \series bold
8110 Galletti
8111 \end_layout
8112
8113 \end_inset
8114 </cell>
8115 <cell alignment="center" valignment="top" topline="true" usebox="none">
8116 \begin_inset Text
8117
8118 \begin_layout Standard
8119 Oreste
8120 \end_layout
8121
8122 \end_inset
8123 </cell>
8124 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8125 \begin_inset Text
8126
8127 \begin_layout Standard
8128 555
8129 \end_layout
8130
8131 \end_inset
8132 </cell>
8133 </row>
8134 <row>
8135 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8136 \begin_inset Text
8137
8138 \begin_layout Standard
8139
8140 \series bold
8141 Gasparini
8142 \end_layout
8143
8144 \end_inset
8145 </cell>
8146 <cell alignment="center" valignment="top" topline="true" usebox="none">
8147 \begin_inset Text
8148
8149 \begin_layout Standard
8150 Franca
8151 \end_layout
8152
8153 \end_inset
8154 </cell>
8155 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8156 \begin_inset Text
8157
8158 \begin_layout Standard
8159 555
8160 \end_layout
8161
8162 \end_inset
8163 </cell>
8164 </row>
8165 <row>
8166 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8167 \begin_inset Text
8168
8169 \begin_layout Standard
8170
8171 \series bold
8172 Rizzardi
8173 \end_layout
8174
8175 \end_inset
8176 </cell>
8177 <cell alignment="center" valignment="top" topline="true" usebox="none">
8178 \begin_inset Text
8179
8180 \begin_layout Standard
8181 Paola
8182 \end_layout
8183
8184 \end_inset
8185 </cell>
8186 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8187 \begin_inset Text
8188
8189 \begin_layout Standard
8190 555
8191 \end_layout
8192
8193 \end_inset
8194 </cell>
8195 </row>
8196 <row>
8197 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8198 \begin_inset Text
8199
8200 \begin_layout Standard
8201
8202 \series bold
8203 Lassini
8204 \end_layout
8205
8206 \end_inset
8207 </cell>
8208 <cell alignment="center" valignment="top" topline="true" usebox="none">
8209 \begin_inset Text
8210
8211 \begin_layout Standard
8212 Giancarlo
8213 \end_layout
8214
8215 \end_inset
8216 </cell>
8217 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8218 \begin_inset Text
8219
8220 \begin_layout Standard
8221 555
8222 \end_layout
8223
8224 \end_inset
8225 </cell>
8226 </row>
8227 <row>
8228 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8229 \begin_inset Text
8230
8231 \begin_layout Standard
8232
8233 \series bold
8234 Malfatti
8235 \end_layout
8236
8237 \end_inset
8238 </cell>
8239 <cell alignment="center" valignment="top" topline="true" usebox="none">
8240 \begin_inset Text
8241
8242 \begin_layout Standard
8243 Luciano
8244 \end_layout
8245
8246 \end_inset
8247 </cell>
8248 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8249 \begin_inset Text
8250
8251 \begin_layout Standard
8252 555
8253 \end_layout
8254
8255 \end_inset
8256 </cell>
8257 </row>
8258 <row>
8259 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8260 \begin_inset Text
8261
8262 \begin_layout Standard
8263
8264 \series bold
8265 Malfatti
8266 \end_layout
8267
8268 \end_inset
8269 </cell>
8270 <cell alignment="center" valignment="top" topline="true" usebox="none">
8271 \begin_inset Text
8272
8273 \begin_layout Standard
8274 Valeriano
8275 \end_layout
8276
8277 \end_inset
8278 </cell>
8279 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8280 \begin_inset Text
8281
8282 \begin_layout Standard
8283 555
8284 \end_layout
8285
8286 \end_inset
8287 </cell>
8288 </row>
8289 <row>
8290 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8291 \begin_inset Text
8292
8293 \begin_layout Standard
8294
8295 \series bold
8296 Meneguzzo
8297 \end_layout
8298
8299 \end_inset
8300 </cell>
8301 <cell alignment="center" valignment="top" topline="true" usebox="none">
8302 \begin_inset Text
8303
8304 \begin_layout Standard
8305 Roberto
8306 \end_layout
8307
8308 \end_inset
8309 </cell>
8310 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8311 \begin_inset Text
8312
8313 \begin_layout Standard
8314 555
8315 \end_layout
8316
8317 \end_inset
8318 </cell>
8319 </row>
8320 <row bottomline="true">
8321 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
8322 \begin_inset Text
8323
8324 \begin_layout Standard
8325
8326 \series bold
8327 Mezzadra
8328 \end_layout
8329
8330 \end_inset
8331 </cell>
8332 <cell alignment="center" valignment="top" topline="true" usebox="none">
8333 \begin_inset Text
8334
8335 \begin_layout Standard
8336 Roberto
8337 \end_layout
8338
8339 \end_inset
8340 </cell>
8341 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8342 \begin_inset Text
8343
8344 \begin_layout Standard
8345 555
8346 \end_layout
8347
8348 \end_inset
8349 </cell>
8350 </row>
8351 <row bottomline="true" endlastfoot="true">
8352 <cell multicolumn="1" alignment="left" valignment="top" usebox="none">
8353 \begin_inset Text
8354
8355 \begin_layout Standard
8356
8357 \end_layout
8358
8359 \end_inset
8360 </cell>
8361 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8362 \begin_inset Text
8363
8364 \begin_layout Standard
8365
8366 \end_layout
8367
8368 \end_inset
8369 </cell>
8370 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8371 \begin_inset Text
8372
8373 \begin_layout Standard
8374
8375 \end_layout
8376
8377 \end_inset
8378 </cell>
8379 </row>
8380 </lyxtabular>
8381
8382 \end_inset
8383
8384
8385 \end_layout
8386
8387 \begin_layout Section
8388 Special Longtable Issues
8389 \begin_inset LatexCommand label
8390 name "sec:Special-Longtable-Issues"
8391
8392 \end_inset
8393
8394
8395 \end_layout
8396
8397 \begin_layout Subsection
8398 Longtable Calculation
8399 \begin_inset LatexCommand index
8400 name "Longtables ! Calculation"
8401
8402 \end_inset
8403
8404
8405 \end_layout
8406
8407 \begin_layout Standard
8408 LaTeX calculates the height of table pages and their page breaks using so
8409  called chunks.
8410  Chunks are pieces of the tables that are at once in LaTeX's memory.
8411  The default value is historically set to only 20 table rows.
8412  If you are using longtables with many pages this may slow down the creation
8413  of your document.
8414  You can safely increase the chunk size to values of 100-1000 by adding
8415  this command line to your document preamble:
8416 \end_layout
8417
8418 \begin_layout Standard
8419
8420 \series bold
8421
8422 \backslash
8423 setcounter{LTchunksize}{100}
8424 \end_layout
8425
8426 \begin_layout Subsection
8427 Floats and Longtables
8428 \begin_inset LatexCommand index
8429 name "Longtables ! Floats"
8430
8431 \end_inset
8432
8433
8434 \end_layout
8435
8436 \begin_layout Standard
8437 There might be problems when a float appears on the same page where a longtable
8438  starts.
8439  To avoid such situation, add the command 
8440 \series bold
8441
8442 \backslash
8443 clearpage
8444 \series default
8445  as ERT before your longtable.
8446 \end_layout
8447
8448 \begin_layout Subsection
8449 Forced Page Breaks
8450 \begin_inset LatexCommand index
8451 name "Longtables ! Forced Page Breaks"
8452
8453 \end_inset
8454
8455
8456 \end_layout
8457
8458 \begin_layout Standard
8459 By default tables are only broken between rows.
8460  If you have a cell with multiples lines and want to have a page break within
8461  the cell, insert the new line command 
8462 \begin_inset Quotes eld
8463 \end_inset
8464
8465
8466 \series bold
8467
8468 \backslash
8469
8470 \backslash
8471
8472 \series default
8473
8474 \begin_inset Quotes erd
8475 \end_inset
8476
8477  as ERT at this point of the cell where it should be broken.
8478  Before the 
8479 \series bold
8480
8481 \backslash
8482
8483 \backslash
8484
8485 \series default
8486  command you have to insert in ERT so many 
8487 \begin_inset Quotes eld
8488 \end_inset
8489
8490
8491 \series bold
8492 &
8493 \series default
8494
8495 \begin_inset Quotes erd
8496 \end_inset
8497
8498  characters like the number of the following table columns.
8499  The 
8500 \series bold
8501 &
8502 \series default
8503  is the character to separate table cells.
8504  Write in ERT after each 
8505 \series bold
8506 &
8507 \series default
8508  the content of the corresponding following cell and delete the content
8509  of these cells.
8510 \newline
8511 Behind the the 
8512 \series bold
8513
8514 \backslash
8515
8516 \backslash
8517
8518 \series default
8519  command, insert so many 
8520 \series bold
8521 &
8522 \series default
8523  characters like the number of table columns before the current column.
8524  In Table\InsetSpace ~
8525
8526 \begin_inset LatexCommand ref
8527 reference "tab:ForcedPagebreak"
8528
8529 \end_inset
8530
8531  the cell that should be broken is in the second column followed by another
8532  column.
8533  Therefore the following command was inserted in the cell as ERT behind
8534  
8535 \begin_inset Quotes eld
8536 \end_inset
8537
8538
8539 \emph on
8540 Castelchiodato,
8541 \emph default
8542
8543 \begin_inset Quotes erd
8544 \end_inset
8545
8546 :
8547 \end_layout
8548
8549 \begin_layout Standard
8550
8551 \series bold
8552 & 111
8553 \backslash
8554
8555 \backslash
8556
8557 \newline
8558 &
8559 \end_layout
8560
8561 \begin_layout Standard
8562 The 
8563 \begin_inset Quotes eld
8564 \end_inset
8565
8566 111
8567 \begin_inset Quotes erd
8568 \end_inset
8569
8570  in the third columns of the row was deleted.
8571  If your footer row of the longtable has for a certain reason no upper line
8572  but you would have a horizontal line where the cell is broken, use this
8573  command instead:
8574 \end_layout
8575
8576 \begin_layout Standard
8577
8578 \series bold
8579 & 111
8580 \backslash
8581
8582 \backslash
8583
8584 \newline
8585
8586 \backslash
8587 hline &
8588 \end_layout
8589
8590 \begin_layout Standard
8591 When the cell to be broken is in the last column, the command
8592 \end_layout
8593
8594 \begin_layout Standard
8595
8596 \series bold
8597
8598 \backslash
8599 setlength{
8600 \backslash
8601 parf\SpecialChar \textcompwordmark{}
8602 illskip}{0pt}
8603 \end_layout
8604
8605 \begin_layout Standard
8606 must be inserted as ERT at the beginning of the cell.
8607  This assures that the part of the cell that will be displayed on the new
8608  page appears with the full width.
8609  
8610 \end_layout
8611
8612 \begin_layout Standard
8613 \align center
8614 \begin_inset Tabular
8615 <lyxtabular version="3" rows="39" columns="3">
8616 <features islongtable="true">
8617 <column alignment="left" valignment="top" leftline="true" width="0cm">
8618 <column alignment="left" valignment="top" rightline="true" width="3cm">
8619 <column alignment="right" valignment="top" rightline="true" width="0pt">
8620 <row endfirsthead="true">
8621 <cell alignment="right" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8622 \begin_inset Text
8623
8624 \begin_layout Standard
8625 \begin_inset ERT
8626 status collapsed
8627
8628 \begin_layout Standard
8629
8630
8631 \backslash
8632 caption[Table with forced page break in table cell]{Table with forced page
8633  break in table cell 
8634 \end_layout
8635
8636 \end_inset
8637
8638
8639 \begin_inset LatexCommand label
8640 name "tab:ForcedPagebreak"
8641
8642 \end_inset
8643
8644
8645 \begin_inset ERT
8646 status collapsed
8647
8648 \begin_layout Standard
8649
8650 }
8651 \backslash
8652
8653 \backslash
8654 %
8655 \end_layout
8656
8657 \end_inset
8658
8659
8660 \end_layout
8661
8662 \end_inset
8663 </cell>
8664 <cell alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
8665 \begin_inset Text
8666
8667 \begin_layout Standard
8668 \begin_inset ERT
8669 status collapsed
8670
8671 \begin_layout Standard
8672
8673 %
8674 \end_layout
8675
8676 \end_inset
8677
8678
8679 \end_layout
8680
8681 \end_inset
8682 </cell>
8683 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8684 \begin_inset Text
8685
8686 \begin_layout Standard
8687 \begin_inset ERT
8688 status collapsed
8689
8690 \begin_layout Standard
8691
8692 %
8693 \end_layout
8694
8695 \end_inset
8696
8697
8698 \end_layout
8699
8700 \end_inset
8701 </cell>
8702 </row>
8703 <row topline="true" bottomline="true" endfirsthead="true">
8704 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8705 \begin_inset Text
8706
8707 \begin_layout Standard
8708
8709 \series bold
8710 Example Phone List (ignore the names)
8711 \end_layout
8712
8713 \end_inset
8714 </cell>
8715 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8716 \begin_inset Text
8717
8718 \begin_layout Standard
8719
8720 \end_layout
8721
8722 \end_inset
8723 </cell>
8724 <cell multicolumn="2" alignment="right" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8725 \begin_inset Text
8726
8727 \begin_layout Standard
8728
8729 \end_layout
8730
8731 \end_inset
8732 </cell>
8733 </row>
8734 <row topline="true" bottomline="true" endfirsthead="true">
8735 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8736 \begin_inset Text
8737
8738 \begin_layout Standard
8739
8740 \series bold
8741 NAME
8742 \end_layout
8743
8744 \end_inset
8745 </cell>
8746 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
8747 \begin_inset Text
8748
8749 \begin_layout Standard
8750
8751 \end_layout
8752
8753 \end_inset
8754 </cell>
8755 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8756 \begin_inset Text
8757
8758 \begin_layout Standard
8759
8760 \series bold
8761 TEL.
8762 \end_layout
8763
8764 \end_inset
8765 </cell>
8766 </row>
8767 <row bottomline="true" endhead="true">
8768 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8769 \begin_inset Text
8770
8771 \begin_layout Standard
8772 \begin_inset ERT
8773 status collapsed
8774
8775 \begin_layout Standard
8776
8777
8778 \backslash
8779 caption{Continued table with forced page break in table cell}
8780 \backslash
8781
8782 \backslash
8783 %
8784 \end_layout
8785
8786 \end_inset
8787
8788
8789 \end_layout
8790
8791 \end_inset
8792 </cell>
8793 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8794 \begin_inset Text
8795
8796 \begin_layout Standard
8797 \begin_inset ERT
8798 status collapsed
8799
8800 \begin_layout Standard
8801
8802 %
8803 \end_layout
8804
8805 \end_inset
8806
8807
8808 \end_layout
8809
8810 \end_inset
8811 </cell>
8812 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8813 \begin_inset Text
8814
8815 \begin_layout Standard
8816 \begin_inset ERT
8817 status collapsed
8818
8819 \begin_layout Standard
8820
8821 %
8822 \end_layout
8823
8824 \end_inset
8825
8826
8827 \end_layout
8828
8829 \end_inset
8830 </cell>
8831 </row>
8832 <row topline="true" bottomline="true" endhead="true">
8833 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8834 \begin_inset Text
8835
8836 \begin_layout Standard
8837
8838 \series bold
8839  Example Phone List
8840 \end_layout
8841
8842 \end_inset
8843 </cell>
8844 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
8845 \begin_inset Text
8846
8847 \begin_layout Standard
8848
8849 \end_layout
8850
8851 \end_inset
8852 </cell>
8853 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8854 \begin_inset Text
8855
8856 \begin_layout Standard
8857
8858 \end_layout
8859
8860 \end_inset
8861 </cell>
8862 </row>
8863 <row topline="true" bottomline="true" endhead="true">
8864 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8865 \begin_inset Text
8866
8867 \begin_layout Standard
8868
8869 \series bold
8870 NAME
8871 \end_layout
8872
8873 \end_inset
8874 </cell>
8875 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
8876 \begin_inset Text
8877
8878 \begin_layout Standard
8879
8880 \end_layout
8881
8882 \end_inset
8883 </cell>
8884 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8885 \begin_inset Text
8886
8887 \begin_layout Standard
8888
8889 \series bold
8890 TEL.
8891 \end_layout
8892
8893 \end_inset
8894 </cell>
8895 </row>
8896 <row topline="true" bottomline="true" endfoot="true">
8897 <cell multicolumn="1" alignment="right" valignment="top" topline="true" usebox="none">
8898 \begin_inset Text
8899
8900 \begin_layout Standard
8901 continued on next page
8902 \end_layout
8903
8904 \end_inset
8905 </cell>
8906 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
8907 \begin_inset Text
8908
8909 \begin_layout Standard
8910
8911 \end_layout
8912
8913 \end_inset
8914 </cell>
8915 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8916 \begin_inset Text
8917
8918 \begin_layout Standard
8919
8920 \end_layout
8921
8922 \end_inset
8923 </cell>
8924 </row>
8925 <row>
8926 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8927 \begin_inset Text
8928
8929 \begin_layout Standard
8930
8931 \series bold
8932 Annovi
8933 \end_layout
8934
8935 \end_inset
8936 </cell>
8937 <cell alignment="center" valignment="top" topline="true" usebox="none">
8938 \begin_inset Text
8939
8940 \begin_layout Standard
8941 Silvia
8942 \end_layout
8943
8944 \end_inset
8945 </cell>
8946 <cell alignment="right" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8947 \begin_inset Text
8948
8949 \begin_layout Standard
8950 111
8951 \end_layout
8952
8953 \end_inset
8954 </cell>
8955 </row>
8956 <row>
8957 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8958 \begin_inset Text
8959
8960 \begin_layout Standard
8961
8962 \series bold
8963 Bertoli
8964 \end_layout
8965
8966 \end_inset
8967 </cell>
8968 <cell alignment="center" valignment="top" topline="true" usebox="none">
8969 \begin_inset Text
8970
8971 \begin_layout Standard
8972 Stefano
8973 \end_layout
8974
8975 \end_inset
8976 </cell>
8977 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8978 \begin_inset Text
8979
8980 \begin_layout Standard
8981 111
8982 \end_layout
8983
8984 \end_inset
8985 </cell>
8986 </row>
8987 <row>
8988 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8989 \begin_inset Text
8990
8991 \begin_layout Standard
8992
8993 \series bold
8994 Bozzi
8995 \end_layout
8996
8997 \end_inset
8998 </cell>
8999 <cell alignment="center" valignment="top" topline="true" usebox="none">
9000 \begin_inset Text
9001
9002 \begin_layout Standard
9003 Walter
9004 \end_layout
9005
9006 \end_inset
9007 </cell>
9008 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9009 \begin_inset Text
9010
9011 \begin_layout Standard
9012 111
9013 \end_layout
9014
9015 \end_inset
9016 </cell>
9017 </row>
9018 <row>
9019 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9020 \begin_inset Text
9021
9022 \begin_layout Standard
9023
9024 \series bold
9025 Cachia
9026 \end_layout
9027
9028 \end_inset
9029 </cell>
9030 <cell alignment="center" valignment="top" topline="true" usebox="none">
9031 \begin_inset Text
9032
9033 \begin_layout Standard
9034 Maria
9035 \end_layout
9036
9037 \end_inset
9038 </cell>
9039 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9040 \begin_inset Text
9041
9042 \begin_layout Standard
9043 111
9044 \end_layout
9045
9046 \end_inset
9047 </cell>
9048 </row>
9049 <row>
9050 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9051 \begin_inset Text
9052
9053 \begin_layout Standard
9054
9055 \series bold
9056 Cachia
9057 \end_layout
9058
9059 \end_inset
9060 </cell>
9061 <cell alignment="center" valignment="top" topline="true" usebox="none">
9062 \begin_inset Text
9063
9064 \begin_layout Standard
9065 Maurizio
9066 \end_layout
9067
9068 \end_inset
9069 </cell>
9070 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9071 \begin_inset Text
9072
9073 \begin_layout Standard
9074 111
9075 \end_layout
9076
9077 \end_inset
9078 </cell>
9079 </row>
9080 <row>
9081 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9082 \begin_inset Text
9083
9084 \begin_layout Standard
9085
9086 \series bold
9087 Cinquemani
9088 \end_layout
9089
9090 \end_inset
9091 </cell>
9092 <cell alignment="center" valignment="top" topline="true" usebox="none">
9093 \begin_inset Text
9094
9095 \begin_layout Standard
9096 Giusi
9097 \end_layout
9098
9099 \end_inset
9100 </cell>
9101 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9102 \begin_inset Text
9103
9104 \begin_layout Standard
9105 111
9106 \end_layout
9107
9108 \end_inset
9109 </cell>
9110 </row>
9111 <row>
9112 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9113 \begin_inset Text
9114
9115 \begin_layout Standard
9116
9117 \series bold
9118 Colin
9119 \end_layout
9120
9121 \end_inset
9122 </cell>
9123 <cell alignment="center" valignment="top" topline="true" usebox="none">
9124 \begin_inset Text
9125
9126 \begin_layout Standard
9127 Bernard
9128 \end_layout
9129
9130 \end_inset
9131 </cell>
9132 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9133 \begin_inset Text
9134
9135 \begin_layout Standard
9136 111
9137 \end_layout
9138
9139 \end_inset
9140 </cell>
9141 </row>
9142 <row>
9143 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9144 \begin_inset Text
9145
9146 \begin_layout Standard
9147
9148 \series bold
9149 Concli
9150 \end_layout
9151
9152 \end_inset
9153 </cell>
9154 <cell alignment="center" valignment="top" topline="true" usebox="none">
9155 \begin_inset Text
9156
9157 \begin_layout Standard
9158 Gianfranco
9159 \end_layout
9160
9161 \end_inset
9162 </cell>
9163 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9164 \begin_inset Text
9165
9166 \begin_layout Standard
9167 111
9168 \end_layout
9169
9170 \end_inset
9171 </cell>
9172 </row>
9173 <row>
9174 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9175 \begin_inset Text
9176
9177 \begin_layout Standard
9178
9179 \series bold
9180 Dal Bosco
9181 \end_layout
9182
9183 \end_inset
9184 </cell>
9185 <cell alignment="center" valignment="top" topline="true" usebox="none">
9186 \begin_inset Text
9187
9188 \begin_layout Standard
9189 Carolina
9190 \end_layout
9191
9192 \end_inset
9193 </cell>
9194 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9195 \begin_inset Text
9196
9197 \begin_layout Standard
9198 111
9199 \end_layout
9200
9201 \end_inset
9202 </cell>
9203 </row>
9204 <row>
9205 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9206 \begin_inset Text
9207
9208 \begin_layout Standard
9209
9210 \series bold
9211 Dalpiaz
9212 \end_layout
9213
9214 \end_inset
9215 </cell>
9216 <cell alignment="center" valignment="top" topline="true" usebox="none">
9217 \begin_inset Text
9218
9219 \begin_layout Standard
9220 Annamaria
9221 \end_layout
9222
9223 \end_inset
9224 </cell>
9225 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9226 \begin_inset Text
9227
9228 \begin_layout Standard
9229 111
9230 \end_layout
9231
9232 \end_inset
9233 </cell>
9234 </row>
9235 <row>
9236 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9237 \begin_inset Text
9238
9239 \begin_layout Standard
9240
9241 \series bold
9242 Feliciello
9243 \end_layout
9244
9245 \end_inset
9246 </cell>
9247 <cell alignment="center" valignment="top" topline="true" usebox="none">
9248 \begin_inset Text
9249
9250 \begin_layout Standard
9251 Domenico
9252 \end_layout
9253
9254 \end_inset
9255 </cell>
9256 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9257 \begin_inset Text
9258
9259 \begin_layout Standard
9260 111
9261 \end_layout
9262
9263 \end_inset
9264 </cell>
9265 </row>
9266 <row>
9267 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9268 \begin_inset Text
9269
9270 \begin_layout Standard
9271
9272 \series bold
9273 Focarelli
9274 \end_layout
9275
9276 \end_inset
9277 </cell>
9278 <cell alignment="center" valignment="top" topline="true" usebox="none">
9279 \begin_inset Text
9280
9281 \begin_layout Standard
9282 Paola
9283 \end_layout
9284
9285 \end_inset
9286 </cell>
9287 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9288 \begin_inset Text
9289
9290 \begin_layout Standard
9291 111
9292 \end_layout
9293
9294 \end_inset
9295 </cell>
9296 </row>
9297 <row>
9298 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9299 \begin_inset Text
9300
9301 \begin_layout Standard
9302
9303 \series bold
9304 Galletti
9305 \end_layout
9306
9307 \end_inset
9308 </cell>
9309 <cell alignment="center" valignment="top" topline="true" usebox="none">
9310 \begin_inset Text
9311
9312 \begin_layout Standard
9313 Oreste
9314 \end_layout
9315
9316 \end_inset
9317 </cell>
9318 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9319 \begin_inset Text
9320
9321 \begin_layout Standard
9322 111
9323 \end_layout
9324
9325 \end_inset
9326 </cell>
9327 </row>
9328 <row>
9329 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9330 \begin_inset Text
9331
9332 \begin_layout Standard
9333
9334 \series bold
9335 Gasparini
9336 \end_layout
9337
9338 \end_inset
9339 </cell>
9340 <cell alignment="center" valignment="top" topline="true" usebox="none">
9341 \begin_inset Text
9342
9343 \begin_layout Standard
9344 Franca
9345 \end_layout
9346
9347 \end_inset
9348 </cell>
9349 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9350 \begin_inset Text
9351
9352 \begin_layout Standard
9353 111
9354 \end_layout
9355
9356 \end_inset
9357 </cell>
9358 </row>
9359 <row>
9360 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9361 \begin_inset Text
9362
9363 \begin_layout Standard
9364
9365 \series bold
9366 Lassini
9367 \end_layout
9368
9369 \end_inset
9370 </cell>
9371 <cell alignment="center" valignment="top" topline="true" usebox="none">
9372 \begin_inset Text
9373
9374 \begin_layout Standard
9375 Giancarlo
9376 \end_layout
9377
9378 \end_inset
9379 </cell>
9380 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9381 \begin_inset Text
9382
9383 \begin_layout Standard
9384 111
9385 \end_layout
9386
9387 \end_inset
9388 </cell>
9389 </row>
9390 <row>
9391 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9392 \begin_inset Text
9393
9394 \begin_layout Standard
9395
9396 \series bold
9397 Malfatti
9398 \end_layout
9399
9400 \end_inset
9401 </cell>
9402 <cell alignment="center" valignment="top" topline="true" usebox="none">
9403 \begin_inset Text
9404
9405 \begin_layout Standard
9406 Luciano
9407 \end_layout
9408
9409 \end_inset
9410 </cell>
9411 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9412 \begin_inset Text
9413
9414 \begin_layout Standard
9415 111
9416 \end_layout
9417
9418 \end_inset
9419 </cell>
9420 </row>
9421 <row>
9422 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9423 \begin_inset Text
9424
9425 \begin_layout Standard
9426
9427 \series bold
9428 Malfatti
9429 \end_layout
9430
9431 \end_inset
9432 </cell>
9433 <cell alignment="center" valignment="top" topline="true" usebox="none">
9434 \begin_inset Text
9435
9436 \begin_layout Standard
9437 Valeriano
9438 \end_layout
9439
9440 \end_inset
9441 </cell>
9442 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9443 \begin_inset Text
9444
9445 \begin_layout Standard
9446 111
9447 \end_layout
9448
9449 \end_inset
9450 </cell>
9451 </row>
9452 <row>
9453 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9454 \begin_inset Text
9455
9456 \begin_layout Standard
9457
9458 \series bold
9459 Meneguzzo
9460 \end_layout
9461
9462 \end_inset
9463 </cell>
9464 <cell alignment="center" valignment="top" topline="true" usebox="none">
9465 \begin_inset Text
9466
9467 \begin_layout Standard
9468 Roberto
9469 \end_layout
9470
9471 \end_inset
9472 </cell>
9473 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9474 \begin_inset Text
9475
9476 \begin_layout Standard
9477 111
9478 \end_layout
9479
9480 \end_inset
9481 </cell>
9482 </row>
9483 <row>
9484 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9485 \begin_inset Text
9486
9487 \begin_layout Standard
9488
9489 \series bold
9490 Mezzadra
9491 \end_layout
9492
9493 \end_inset
9494 </cell>
9495 <cell alignment="center" valignment="top" topline="true" usebox="none">
9496 \begin_inset Text
9497
9498 \begin_layout Standard
9499 Roberto
9500 \end_layout
9501
9502 \end_inset
9503 </cell>
9504 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9505 \begin_inset Text
9506
9507 \begin_layout Standard
9508 111
9509 \end_layout
9510
9511 \end_inset
9512 </cell>
9513 </row>
9514 <row>
9515 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9516 \begin_inset Text
9517
9518 \begin_layout Standard
9519
9520 \series bold
9521 Pirpamer
9522 \end_layout
9523
9524 \end_inset
9525 </cell>
9526 <cell alignment="center" valignment="top" topline="true" usebox="none">
9527 \begin_inset Text
9528
9529 \begin_layout Standard
9530 Erich
9531 \end_layout
9532
9533 \end_inset
9534 </cell>
9535 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9536 \begin_inset Text
9537
9538 \begin_layout Standard
9539 111
9540 \end_layout
9541
9542 \end_inset
9543 </cell>
9544 </row>
9545 <row>
9546 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9547 \begin_inset Text
9548
9549 \begin_layout Standard
9550
9551 \series bold
9552 Pochiesa
9553 \end_layout
9554
9555 \end_inset
9556 </cell>
9557 <cell alignment="center" valignment="top" topline="true" usebox="none">
9558 \begin_inset Text
9559
9560 \begin_layout Standard
9561 Paolo
9562 \end_layout
9563
9564 \end_inset
9565 </cell>
9566 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9567 \begin_inset Text
9568
9569 \begin_layout Standard
9570 111, 222
9571 \end_layout
9572
9573 \end_inset
9574 </cell>
9575 </row>
9576 <row>
9577 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9578 \begin_inset Text
9579
9580 \begin_layout Standard
9581
9582 \series bold
9583 Radina
9584 \end_layout
9585
9586 \end_inset
9587 </cell>
9588 <cell alignment="center" valignment="top" topline="true" usebox="none">
9589 \begin_inset Text
9590
9591 \begin_layout Standard
9592 Claudio
9593 \end_layout
9594
9595 \end_inset
9596 </cell>
9597 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9598 \begin_inset Text
9599
9600 \begin_layout Standard
9601 111
9602 \end_layout
9603
9604 \end_inset
9605 </cell>
9606 </row>
9607 <row>
9608 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9609 \begin_inset Text
9610
9611 \begin_layout Standard
9612
9613 \series bold
9614 Rizzardi
9615 \end_layout
9616
9617 \end_inset
9618 </cell>
9619 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9620 \begin_inset Text
9621
9622 \begin_layout Standard
9623 Paolo, 11.
9624  Fürst von Montecompatri, 11.
9625  Fürst von Sulmona und Vivaro, 10.
9626  Fürst von Rossano, 5.
9627  Herzog von Canemorte, 11.
9628  Herzog von Palombara, 5.
9629  Herzog von Castelchiodato,
9630 \begin_inset ERT
9631 status collapsed
9632
9633 \begin_layout Standard
9634
9635 & 111
9636 \backslash
9637
9638 \backslash
9639
9640 \end_layout
9641
9642 \begin_layout Standard
9643
9644 &
9645 \end_layout
9646
9647 \end_inset
9648
9649  11.
9650  Herzog von Poggionativo, 11.
9651  Markis von Mentana, Norma, Civitella, Pratica, Moricone und Percille, 11.
9652  Graf von Valinfreda, 11.
9653  Baron von Cropalati, 11.
9654  Herr von Scarpa, Edelmann von Rom, Patrizier von Venedig, Neapel und Genua
9655 \end_layout
9656
9657 \end_inset
9658 </cell>
9659 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9660 \begin_inset Text
9661
9662 \begin_layout Standard
9663
9664 \end_layout
9665
9666 \end_inset
9667 </cell>
9668 </row>
9669 <row>
9670 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9671 \begin_inset Text
9672
9673 \begin_layout Standard
9674
9675 \series bold
9676 Stuffer
9677 \end_layout
9678
9679 \end_inset
9680 </cell>
9681 <cell alignment="center" valignment="top" topline="true" usebox="none">
9682 \begin_inset Text
9683
9684 \begin_layout Standard
9685 Oskar
9686 \end_layout
9687
9688 \end_inset
9689 </cell>
9690 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9691 \begin_inset Text
9692
9693 \begin_layout Standard
9694 111
9695 \end_layout
9696
9697 \end_inset
9698 </cell>
9699 </row>
9700 <row>
9701 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9702 \begin_inset Text
9703
9704 \begin_layout Standard
9705
9706 \series bold
9707 Tacchelli
9708 \end_layout
9709
9710 \end_inset
9711 </cell>
9712 <cell alignment="center" valignment="top" topline="true" usebox="none">
9713 \begin_inset Text
9714
9715 \begin_layout Standard
9716 Ugo
9717 \end_layout
9718
9719 \end_inset
9720 </cell>
9721 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9722 \begin_inset Text
9723
9724 \begin_layout Standard
9725 111
9726 \end_layout
9727
9728 \end_inset
9729 </cell>
9730 </row>
9731 <row>
9732 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9733 \begin_inset Text
9734
9735 \begin_layout Standard
9736
9737 \series bold
9738 Tezzele
9739 \end_layout
9740
9741 \end_inset
9742 </cell>
9743 <cell alignment="center" valignment="top" topline="true" usebox="none">
9744 \begin_inset Text
9745
9746 \begin_layout Standard
9747 Margit
9748 \end_layout
9749
9750 \end_inset
9751 </cell>
9752 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9753 \begin_inset Text
9754
9755 \begin_layout Standard
9756 111
9757 \end_layout
9758
9759 \end_inset
9760 </cell>
9761 </row>
9762 <row>
9763 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9764 \begin_inset Text
9765
9766 \begin_layout Standard
9767
9768 \series bold
9769 Unterkalmsteiner
9770 \end_layout
9771
9772 \end_inset
9773 </cell>
9774 <cell alignment="center" valignment="top" topline="true" usebox="none">
9775 \begin_inset Text
9776
9777 \begin_layout Standard
9778 Frieda
9779 \end_layout
9780
9781 \end_inset
9782 </cell>
9783 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9784 \begin_inset Text
9785
9786 \begin_layout Standard
9787 111
9788 \end_layout
9789
9790 \end_inset
9791 </cell>
9792 </row>
9793 <row>
9794 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9795 \begin_inset Text
9796
9797 \begin_layout Standard
9798
9799 \series bold
9800 Vieider
9801 \end_layout
9802
9803 \end_inset
9804 </cell>
9805 <cell alignment="center" valignment="top" topline="true" usebox="none">
9806 \begin_inset Text
9807
9808 \begin_layout Standard
9809 Hilde
9810 \end_layout
9811
9812 \end_inset
9813 </cell>
9814 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9815 \begin_inset Text
9816
9817 \begin_layout Standard
9818 111
9819 \end_layout
9820
9821 \end_inset
9822 </cell>
9823 </row>
9824 <row>
9825 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9826 \begin_inset Text
9827
9828 \begin_layout Standard
9829
9830 \series bold
9831 Vigna
9832 \end_layout
9833
9834 \end_inset
9835 </cell>
9836 <cell alignment="center" valignment="top" topline="true" usebox="none">
9837 \begin_inset Text
9838
9839 \begin_layout Standard
9840 Jürgen
9841 \end_layout
9842
9843 \end_inset
9844 </cell>
9845 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9846 \begin_inset Text
9847
9848 \begin_layout Standard
9849 111
9850 \end_layout
9851
9852 \end_inset
9853 </cell>
9854 </row>
9855 <row>
9856 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9857 \begin_inset Text
9858
9859 \begin_layout Standard
9860
9861 \series bold
9862 Weber
9863 \end_layout
9864
9865 \end_inset
9866 </cell>
9867 <cell alignment="center" valignment="top" topline="true" usebox="none">
9868 \begin_inset Text
9869
9870 \begin_layout Standard
9871 Maurizio
9872 \end_layout
9873
9874 \end_inset
9875 </cell>
9876 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9877 \begin_inset Text
9878
9879 \begin_layout Standard
9880 111
9881 \end_layout
9882
9883 \end_inset
9884 </cell>
9885 </row>
9886 <row bottomline="true">
9887 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9888 \begin_inset Text
9889
9890 \begin_layout Standard
9891
9892 \series bold
9893 Winkler
9894 \end_layout
9895
9896 \end_inset
9897 </cell>
9898 <cell alignment="center" valignment="top" topline="true" usebox="none">
9899 \begin_inset Text
9900
9901 \begin_layout Standard
9902 Franz
9903 \end_layout
9904
9905 \end_inset
9906 </cell>
9907 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9908 \begin_inset Text
9909
9910 \begin_layout Standard
9911 111
9912 \end_layout
9913
9914 \end_inset
9915 </cell>
9916 </row>
9917 <row endlastfoot="true">
9918 <cell multicolumn="1" alignment="left" valignment="top" usebox="none">
9919 \begin_inset Text
9920
9921 \begin_layout Standard
9922
9923 \end_layout
9924
9925 \end_inset
9926 </cell>
9927 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9928 \begin_inset Text
9929
9930 \begin_layout Standard
9931
9932 \end_layout
9933
9934 \end_inset
9935 </cell>
9936 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9937 \begin_inset Text
9938
9939 \begin_layout Standard
9940
9941 \end_layout
9942
9943 \end_inset
9944 </cell>
9945 </row>
9946 </lyxtabular>
9947
9948 \end_inset
9949
9950
9951 \end_layout
9952
9953 \begin_layout Section
9954 Multiple Lines Columns and Rows
9955 \end_layout
9956
9957 \begin_layout Subsection
9958 Multiple Lines in Table Cells
9959 \begin_inset LatexCommand label
9960 name "sub:Multiple-Lines-in"
9961
9962 \end_inset
9963
9964
9965 \begin_inset LatexCommand index
9966 name "Multiple Lines in Table Cells"
9967
9968 \end_inset
9969
9970
9971 \begin_inset LatexCommand index
9972 name "Table ! Linebreaks"
9973
9974 \end_inset
9975
9976
9977 \end_layout
9978
9979 \begin_layout Standard
9980 \align center
9981 \begin_inset Float table
9982 placement H
9983 wide false
9984 sideways false
9985 status collapsed
9986
9987 \begin_layout Standard
9988 \begin_inset Caption
9989
9990 \begin_layout Standard
9991 \begin_inset LatexCommand label
9992 name "tab:Table-with-multiple"
9993
9994 \end_inset
9995
9996 Table with multiple lines in cells
9997 \end_layout
9998
9999 \end_inset
10000
10001
10002 \end_layout
10003
10004 \begin_layout Standard
10005 \align center
10006 \begin_inset Tabular
10007 <lyxtabular version="3" rows="3" columns="3">
10008 <features>
10009 <column alignment="center" valignment="middle" leftline="true" width="2.5cm">
10010 <column alignment="center" valignment="middle" leftline="true" width="0.5cm">
10011 <column alignment="center" valignment="middle" leftline="true" rightline="true" width="0.5cm">
10012 <row topline="true">
10013 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10014 \begin_inset Text
10015
10016 \begin_layout Standard
10017 multiple
10018 \begin_inset ERT
10019 status collapsed
10020
10021 \begin_layout Standard
10022
10023
10024 \backslash
10025 linebreak 
10026 \end_layout
10027
10028 \end_inset
10029
10030  lines
10031 \end_layout
10032
10033 \end_inset
10034 </cell>
10035 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10036 \begin_inset Text
10037
10038 \begin_layout Standard
10039 b
10040 \end_layout
10041
10042 \end_inset
10043 </cell>
10044 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10045 \begin_inset Text
10046
10047 \begin_layout Standard
10048 c
10049 \end_layout
10050
10051 \end_inset
10052 </cell>
10053 </row>
10054 <row topline="true">
10055 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10056 \begin_inset Text
10057
10058 \begin_layout Standard
10059 d
10060 \end_layout
10061
10062 \end_inset
10063 </cell>
10064 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10065 \begin_inset Text
10066
10067 \begin_layout Standard
10068 e
10069 \end_layout
10070
10071 \end_inset
10072 </cell>
10073 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10074 \begin_inset Text
10075
10076 \begin_layout Standard
10077 f
10078 \end_layout
10079
10080 \end_inset
10081 </cell>
10082 </row>
10083 <row topline="true" bottomline="true">
10084 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10085 \begin_inset Text
10086
10087 \begin_layout Standard
10088 g
10089 \end_layout
10090
10091 \end_inset
10092 </cell>
10093 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10094 \begin_inset Text
10095
10096 \begin_layout Standard
10097 h
10098 \end_layout
10099
10100 \end_inset
10101 </cell>
10102 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10103 \begin_inset Text
10104
10105 \begin_layout Standard
10106 i
10107 \end_layout
10108
10109 \end_inset
10110 </cell>
10111 </row>
10112 </lyxtabular>
10113
10114 \end_inset
10115
10116
10117 \end_layout
10118
10119 \end_inset
10120
10121
10122 \end_layout
10123
10124 \begin_layout Standard
10125 Adjusting a fixed width for a column, enables to enter text as a paragraph
10126  with multiple lines and hyphenations.
10127 \end_layout
10128
10129 \begin_layout Standard
10130 To produce Table\InsetSpace ~
10131
10132 \begin_inset LatexCommand ref
10133 reference "tab:Table-with-multiple"
10134
10135 \end_inset
10136
10137 , create a 3×3 table, mark the first cell and right-click on it.
10138  In the appearing table dialog we set a cell width of 2.5\InsetSpace \thinspace{}
10139 cm and choose centered
10140  for the vertical and horizontal alignment.
10141  As our text is smaller than than 2.5\InsetSpace \thinspace{}
10142 cm, only one line will appear.
10143  To get two lines, we add a line break with the command
10144 \end_layout
10145
10146 \begin_layout Standard
10147
10148 \series bold
10149
10150 \backslash
10151 linebreak
10152 \end_layout
10153
10154 \begin_layout Standard
10155 in ERT.
10156  If the text is wider than the set cell width it will automatically be broken
10157  to several lines.
10158 \end_layout
10159
10160 \begin_layout Standard
10161 To center the text inside the two other cells of the first row vertically,
10162  right-click in the second cell, adjust a fixed width of 0.5\InsetSpace \thinspace{}
10163 cm and choose
10164  centered alignments.
10165  Then do the same for the third cell of the row.
10166 \end_layout
10167
10168 \begin_layout Standard
10169 If you have a long word in a cell with a fixed width, it cannot be hyphenated
10170  by LaTeX if it is the first entry.
10171  Therefore you need to insert something, to make the word not being the
10172  first entry: Add the command
10173 \end_layout
10174
10175 \begin_layout Standard
10176
10177 \series bold
10178
10179 \backslash
10180 hspace{0pt}
10181 \end_layout
10182
10183 \begin_layout Standard
10184 in ERT before the word.
10185  As the space is zero, it doesn't change the output.
10186  Table\InsetSpace ~
10187
10188 \begin_inset LatexCommand ref
10189 reference "tab:Table-with-and"
10190
10191 \end_inset
10192
10193  shows the effect.
10194 \end_layout
10195
10196 \begin_layout Standard
10197 \begin_inset Float table
10198 wide false
10199 sideways false
10200 status open
10201
10202 \begin_layout Standard
10203 \begin_inset Caption
10204
10205 \begin_layout Standard
10206 \begin_inset LatexCommand label
10207 name "tab:Table-with-and"
10208
10209 \end_inset
10210
10211 Table with and without hyphenation
10212 \end_layout
10213
10214 \end_inset
10215
10216
10217 \end_layout
10218
10219 \begin_layout Standard
10220
10221 \hfill
10222
10223 \begin_inset Tabular
10224 <lyxtabular version="3" rows="3" columns="3">
10225 <features>
10226 <column alignment="center" valignment="middle" leftline="true" width="2.5cm">
10227 <column alignment="center" valignment="middle" leftline="true" width="0.5cm">
10228 <column alignment="center" valignment="middle" leftline="true" rightline="true" width="0.5cm">
10229 <row topline="true">
10230 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10231 \begin_inset Text
10232
10233 \begin_layout Standard
10234 verylongtablecellword
10235 \end_layout
10236
10237 \end_inset
10238 </cell>
10239 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10240 \begin_inset Text
10241
10242 \begin_layout Standard
10243 b
10244 \end_layout
10245
10246 \end_inset
10247 </cell>
10248 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10249 \begin_inset Text
10250
10251 \begin_layout Standard
10252 c
10253 \end_layout
10254
10255 \end_inset
10256 </cell>
10257 </row>
10258 <row topline="true">
10259 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10260 \begin_inset Text
10261
10262 \begin_layout Standard
10263 d
10264 \end_layout
10265
10266 \end_inset
10267 </cell>
10268 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10269 \begin_inset Text
10270
10271 \begin_layout Standard
10272 e
10273 \end_layout
10274
10275 \end_inset
10276 </cell>
10277 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10278 \begin_inset Text
10279
10280 \begin_layout Standard
10281 f
10282 \end_layout
10283
10284 \end_inset
10285 </cell>
10286 </row>
10287 <row topline="true" bottomline="true">
10288 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10289 \begin_inset Text
10290
10291 \begin_layout Standard
10292 g
10293 \end_layout
10294
10295 \end_inset
10296 </cell>
10297 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10298 \begin_inset Text
10299
10300 \begin_layout Standard
10301 h
10302 \end_layout
10303
10304 \end_inset
10305 </cell>
10306 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10307 \begin_inset Text
10308
10309 \begin_layout Standard
10310 i
10311 \end_layout
10312
10313 \end_inset
10314 </cell>
10315 </row>
10316 </lyxtabular>
10317
10318 \end_inset
10319
10320
10321 \hfill
10322
10323 \begin_inset Tabular
10324 <lyxtabular version="3" rows="3" columns="3">
10325 <features>
10326 <column alignment="center" valignment="middle" leftline="true" width="2.5cm">
10327 <column alignment="center" valignment="middle" leftline="true" width="0.5cm">
10328 <column alignment="center" valignment="middle" leftline="true" rightline="true" width="0.5cm">
10329 <row topline="true">
10330 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10331 \begin_inset Text
10332
10333 \begin_layout Standard
10334 \begin_inset ERT
10335 status collapsed
10336
10337 \begin_layout Standard
10338
10339
10340 \backslash
10341 hspace{0pt}
10342 \end_layout
10343
10344 \end_inset
10345
10346 verylongtablecellword
10347 \end_layout
10348
10349 \end_inset
10350 </cell>
10351 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10352 \begin_inset Text
10353
10354 \begin_layout Standard
10355 b
10356 \end_layout
10357
10358 \end_inset
10359 </cell>
10360 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10361 \begin_inset Text
10362
10363 \begin_layout Standard
10364 c
10365 \end_layout
10366
10367 \end_inset
10368 </cell>
10369 </row>
10370 <row topline="true">
10371 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10372 \begin_inset Text
10373
10374 \begin_layout Standard
10375 d
10376 \end_layout
10377
10378 \end_inset
10379 </cell>
10380 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10381 \begin_inset Text
10382
10383 \begin_layout Standard
10384 e
10385 \end_layout
10386
10387 \end_inset
10388 </cell>
10389 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10390 \begin_inset Text
10391
10392 \begin_layout Standard
10393 f
10394 \end_layout
10395
10396 \end_inset
10397 </cell>
10398 </row>
10399 <row topline="true" bottomline="true">
10400 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10401 \begin_inset Text
10402
10403 \begin_layout Standard
10404 g
10405 \end_layout
10406
10407 \end_inset
10408 </cell>
10409 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10410 \begin_inset Text
10411
10412 \begin_layout Standard
10413 h
10414 \end_layout
10415
10416 \end_inset
10417 </cell>
10418 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10419 \begin_inset Text
10420
10421 \begin_layout Standard
10422 i
10423 \end_layout
10424
10425 \end_inset
10426 </cell>
10427 </row>
10428 </lyxtabular>
10429
10430 \end_inset
10431
10432
10433 \hfill
10434
10435 \end_layout
10436
10437 \end_inset
10438
10439
10440 \end_layout
10441
10442 \begin_layout Standard
10443
10444 \newpage
10445
10446 \end_layout
10447
10448 \begin_layout Subsection
10449 Multicolumns
10450 \begin_inset LatexCommand label
10451 name "sub:Multicolumns"
10452
10453 \end_inset
10454
10455
10456 \begin_inset LatexCommand index
10457 name "Multicolumns"
10458
10459 \end_inset
10460
10461
10462 \begin_inset LatexCommand index
10463 name "Table ! Multicolumns"
10464
10465 \end_inset
10466
10467
10468 \end_layout
10469
10470 \begin_layout Subsubsection
10471 Multicolumn Basics
10472 \end_layout
10473
10474 \begin_layout Standard
10475 To span a cell over multiple columns, mark as much cells within a line that
10476  should be one spanned cell and use either the table-toolbar button 
10477 \begin_inset Graphics
10478         filename ../images/tabular-feature_multicolumn.xpm
10479         scale 85
10480
10481 \end_inset
10482
10483 , or the menu 
10484 \family sans
10485 Edit\SpecialChar \menuseparator
10486 Table\SpecialChar \menuseparator
10487 Multicolumn
10488 \family default
10489 , or right click on the marked cells and choose multicolumn in the appearing
10490  table dialog under the tab 
10491 \family sans
10492 Table Settings
10493 \family default
10494 .
10495 \end_layout
10496
10497 \begin_layout Standard
10498 Multicolumns have there own cell settings.
10499  That means changing cell borders, cell alignment, and the width only affects
10500  the multicolumn.
10501  Here is an example table with a multicolumn cell in the first row and one
10502  in the last row without the upper border:
10503 \end_layout
10504
10505 \begin_layout Standard
10506 \align center
10507 \begin_inset Tabular
10508 <lyxtabular version="3" rows="3" columns="4">
10509 <features firstHeadTopDL="true" firstHeadBottomDL="true">
10510 <column alignment="center" valignment="top" leftline="true" width="0pt">
10511 <column alignment="center" valignment="middle" leftline="true" width="0">
10512 <column alignment="center" valignment="top" leftline="true" width="0in">
10513 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0pt">
10514 <row topline="true" bottomline="true">
10515 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10516 \begin_inset Text
10517
10518 \begin_layout Standard
10519 abc
10520 \end_layout
10521
10522 \end_inset
10523 </cell>
10524 <cell multicolumn="1" alignment="center" valignment="middle" topline="true" bottomline="true" leftline="true" usebox="none">
10525 \begin_inset Text
10526
10527 \begin_layout Standard
10528 def
10529 \lang ngerman
10530  
10531 \lang english
10532 ghi
10533 \end_layout
10534
10535 \end_inset
10536 </cell>
10537 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10538 \begin_inset Text
10539
10540 \begin_layout Standard
10541
10542 \end_layout
10543
10544 \end_inset
10545 </cell>
10546 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10547 \begin_inset Text
10548
10549 \begin_layout Standard
10550 jkl
10551 \end_layout
10552
10553 \end_inset
10554 </cell>
10555 </row>
10556 <row topline="true">
10557 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10558 \begin_inset Text
10559
10560 \begin_layout Standard
10561
10562 \family roman
10563 \series medium
10564 \shape up
10565 \size normal
10566 \emph off
10567 \bar no
10568 \noun off
10569 \color none
10570 A
10571 \end_layout
10572
10573 \end_inset
10574 </cell>
10575 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10576 \begin_inset Text
10577
10578 \begin_layout Standard
10579 B
10580 \end_layout
10581
10582 \end_inset
10583 </cell>
10584 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10585 \begin_inset Text
10586
10587 \begin_layout Standard
10588 C
10589 \end_layout
10590
10591 \end_inset
10592 </cell>
10593 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10594 \begin_inset Text
10595
10596 \begin_layout Standard
10597 D
10598 \end_layout
10599
10600 \end_inset
10601 </cell>
10602 </row>
10603 <row topline="true" bottomline="true">
10604 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10605 \begin_inset Text
10606
10607 \begin_layout Standard
10608 1
10609 \end_layout
10610
10611 \end_inset
10612 </cell>
10613 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10614 \begin_inset Text
10615
10616 \begin_layout Standard
10617 2
10618 \end_layout
10619
10620 \end_inset
10621 </cell>
10622 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10623 \begin_inset Text
10624
10625 \begin_layout Standard
10626 3
10627 \end_layout
10628
10629 \end_inset
10630 </cell>
10631 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10632 \begin_inset Text
10633
10634 \begin_layout Standard
10635 4
10636 \end_layout
10637
10638 \end_inset
10639 </cell>
10640 </row>
10641 </lyxtabular>
10642
10643 \end_inset
10644
10645
10646 \end_layout
10647
10648 \begin_layout Subsubsection
10649 Multicolumn Calculations
10650 \begin_inset LatexCommand label
10651 name "sub:Multicolumn-Calculations"
10652
10653 \end_inset
10654
10655
10656 \begin_inset LatexCommand index
10657 name "Multicolumns ! Calculations"
10658
10659 \end_inset
10660
10661
10662 \end_layout
10663
10664 \begin_layout Standard
10665 LyX supports multicolumns directly, but we have to take notice of the cell
10666  width of the columns spanned by the multicolumn cell.
10667 \end_layout
10668
10669 \begin_layout Standard
10670 \begin_inset Float table
10671 wide false
10672 sideways false
10673 status open
10674
10675 \begin_layout Standard
10676 \begin_inset Caption
10677
10678 \begin_layout Standard
10679 \begin_inset LatexCommand label
10680 name "tab:Table-with-centered"
10681
10682 \end_inset
10683
10684 Table with centered multicolumn text above two columns that have exactly
10685  half the width of the multicolumn cell
10686 \begin_inset OptArg
10687 status collapsed
10688
10689 \begin_layout Standard
10690 Perfect multicolumn table
10691 \end_layout
10692
10693 \end_inset
10694
10695
10696 \end_layout
10697
10698 \end_inset
10699
10700
10701 \end_layout
10702
10703 \begin_layout Standard
10704 \align center
10705 \begin_inset Tabular
10706 <lyxtabular version="3" rows="3" columns="3">
10707 <features>
10708 <column alignment="center" valignment="middle" leftline="true" width="0" special="|>{\centering}m{1.25cm-6.2pt}">
10709 <column alignment="center" valignment="middle" leftline="true" width="0">
10710 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
10711 <row topline="true">
10712 <cell multicolumn="1" alignment="center" valignment="middle" topline="true" leftline="true" usebox="none" special="|>{\centering}m{2.5cm}|">
10713 \begin_inset Text
10714
10715 \begin_layout Standard
10716 multiple lines multicolumn
10717 \end_layout
10718
10719 \end_inset
10720 </cell>
10721 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10722 \begin_inset Text
10723
10724 \begin_layout Standard
10725
10726 \end_layout
10727
10728 \end_inset
10729 </cell>
10730 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10731 \begin_inset Text
10732
10733 \begin_layout Standard
10734 c
10735 \end_layout
10736
10737 \end_inset
10738 </cell>
10739 </row>
10740 <row topline="true">
10741 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10742 \begin_inset Text
10743
10744 \begin_layout Standard
10745 d
10746 \end_layout
10747
10748 \end_inset
10749 </cell>
10750 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10751 \begin_inset Text
10752
10753 \begin_layout Standard
10754 e
10755 \end_layout
10756
10757 \end_inset
10758 </cell>
10759 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10760 \begin_inset Text
10761
10762 \begin_layout Standard
10763 f
10764 \end_layout
10765
10766 \end_inset
10767 </cell>
10768 </row>
10769 <row topline="true" bottomline="true">
10770 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10771 \begin_inset Text
10772
10773 \begin_layout Standard
10774 g
10775 \end_layout
10776
10777 \end_inset
10778 </cell>
10779 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10780 \begin_inset Text
10781
10782 \begin_layout Standard
10783 h
10784 \end_layout
10785
10786 \end_inset
10787 </cell>
10788 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10789 \begin_inset Text
10790
10791 \begin_layout Standard
10792 i
10793 \end_layout
10794
10795 \end_inset
10796 </cell>
10797 </row>
10798 </lyxtabular>
10799
10800 \end_inset
10801
10802
10803 \end_layout
10804
10805 \end_inset
10806
10807
10808 \end_layout
10809
10810 \begin_layout Standard
10811 To create for example Table\InsetSpace ~
10812
10813 \begin_inset LatexCommand ref
10814 reference "tab:Table-with-centered"
10815
10816 \end_inset
10817
10818 , mark the first two cells in the first row a 3×3 table and right-click
10819  on them.
10820  Now choose for this cell 
10821 \emph on
10822 multicolumn
10823 \emph default
10824
10825 \emph on
10826 centered alignment
10827 \emph default
10828  and a width of 2.5\InsetSpace \thinspace{}
10829 cm in the table dialog.
10830  The spanned columns should have exactly half the width of the multicolumn
10831  cell, so that you would adjust a width of 1.25\InsetSpace \thinspace{}
10832 cm for the first column.
10833  The second column has then automatically a width of 1.25\InsetSpace \thinspace{}
10834 cm (multicolumn
10835  width - width of first column).
10836  This was done for Table\InsetSpace ~
10837
10838 \begin_inset LatexCommand ref
10839 reference "tab:Table-without-half"
10840
10841 \end_inset
10842
10843 .
10844 \end_layout
10845
10846 \begin_layout Standard
10847 \begin_inset Float table
10848 wide false
10849 sideways false
10850 status open
10851
10852 \begin_layout Standard
10853 \begin_inset Caption
10854
10855 \begin_layout Standard
10856 \begin_inset LatexCommand label
10857 name "tab:Table-without-half"
10858
10859 \end_inset
10860
10861 Table where the spanned table columns have not exactly half the width of
10862  the multicolumn cell
10863 \begin_inset OptArg
10864 status collapsed
10865
10866 \begin_layout Standard
10867 Imperfect multicolumn table
10868 \end_layout
10869
10870 \end_inset
10871
10872
10873 \end_layout
10874
10875 \end_inset
10876
10877
10878 \end_layout
10879
10880 \begin_layout Standard
10881 \align center
10882 \begin_inset Tabular
10883 <lyxtabular version="3" rows="3" columns="3">
10884 <features>
10885 <column alignment="center" valignment="top" leftline="true" width="1.25cm">
10886 <column alignment="center" valignment="top" leftline="true" width="0">
10887 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
10888 <row topline="true" bottomline="true">
10889 <cell multicolumn="1" alignment="center" valignment="top" topline="true" leftline="true" usebox="none" width="2.5cm">
10890 \begin_inset Text
10891
10892 \begin_layout Standard
10893 multiple lines multicolumn
10894 \end_layout
10895
10896 \end_inset
10897 </cell>
10898 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10899 \begin_inset Text
10900
10901 \begin_layout Standard
10902
10903 \end_layout
10904
10905 \end_inset
10906 </cell>
10907 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10908 \begin_inset Text
10909
10910 \begin_layout Standard
10911 c
10912 \end_layout
10913
10914 \end_inset
10915 </cell>
10916 </row>
10917 <row topline="true">
10918 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10919 \begin_inset Text
10920
10921 \begin_layout Standard
10922 d
10923 \end_layout
10924
10925 \end_inset
10926 </cell>
10927 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10928 \begin_inset Text
10929
10930 \begin_layout Standard
10931 e
10932 \end_layout
10933
10934 \end_inset
10935 </cell>
10936 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10937 \begin_inset Text
10938
10939 \begin_layout Standard
10940 f
10941 \end_layout
10942
10943 \end_inset
10944 </cell>
10945 </row>
10946 <row topline="true" bottomline="true">
10947 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10948 \begin_inset Text
10949
10950 \begin_layout Standard
10951 g
10952 \end_layout
10953
10954 \end_inset
10955 </cell>
10956 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10957 \begin_inset Text
10958
10959 \begin_layout Standard
10960 h
10961 \end_layout
10962
10963 \end_inset
10964 </cell>
10965 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10966 \begin_inset Text
10967
10968 \begin_layout Standard
10969 i
10970 \end_layout
10971
10972 \end_inset
10973 </cell>
10974 </row>
10975 </lyxtabular>
10976
10977 \end_inset
10978
10979
10980 \end_layout
10981
10982 \end_inset
10983
10984
10985 \end_layout
10986
10987 \begin_layout Standard
10988 You can see that the first column has not the half width of the multicolumn
10989  cell, it is a bit bigger.
10990  The reason is that the given width of a cell 
10991 \begin_inset Formula $W_{g}$
10992 \end_inset
10993
10994  is not its total width 
10995 \begin_inset Formula $W_{\mathrm{tot}}$
10996 \end_inset
10997
10998  because a cell is always a bit larger than its given width.
10999  Appendix\InsetSpace ~
11000
11001 \begin_inset LatexCommand eqref
11002 reference "cha:Explanation-of-Equation"
11003
11004 \end_inset
11005
11006  explains it in detail.
11007 \end_layout
11008
11009 \begin_layout Standard
11010 The needed given width 
11011 \begin_inset Formula $W_{g\, n}$
11012 \end_inset
11013
11014  when 
11015 \emph on
11016 n
11017 \emph default
11018  columns are spanned columns can be calculated, so that each column has
11019  a total width of 
11020 \begin_inset Formula $W_{\mathrm{tot\, multicolumn}}/n$
11021 \end_inset
11022
11023 :
11024 \begin_inset Formula \begin{equation}
11025 W_{g\, n}=(W_{g\,\mathrm{multicolumn}}+(1-n)·(12.4\,\mathrm{pt}))/n\label{eq:Wgn}\end{equation}
11026
11027 \end_inset
11028
11029
11030 \end_layout
11031
11032 \begin_layout Standard
11033 In our case we have 
11034 \begin_inset Formula $n=2$
11035 \end_inset
11036
11037
11038 \begin_inset Formula $W_{g\,\mathrm{multicolumn}}=2.5\,$
11039 \end_inset
11040
11041 cm and the default values for the lengths, so that equation 
11042 \begin_inset LatexCommand ref
11043 reference "eq:Wgn"
11044
11045 \end_inset
11046
11047  becomes
11048 \begin_inset Formula \begin{equation}
11049 W_{g\,2}=1.25\,\mathrm{cm}-6.2\,\mathrm{pt}\end{equation}
11050
11051 \end_inset
11052
11053
11054 \end_layout
11055
11056 \begin_layout Standard
11057 To enable calculations in LaTeX, the LaTeX-package 
11058 \series bold
11059 calc
11060 \series default
11061  must be loaded with the document preamble line
11062 \begin_inset LatexCommand index
11063 name "LaTeX-packages ! calc"
11064
11065 \end_inset
11066
11067
11068 \end_layout
11069
11070 \begin_layout Standard
11071
11072 \series bold
11073
11074 \backslash
11075 usepackage{calc}
11076 \end_layout
11077
11078 \begin_layout Standard
11079 LyX does not allow to calculate lengths in the width-field of the table
11080  dialog.
11081  Therefore you have to format the column by inserting a LaTeX-argument in
11082  the dialog.
11083  Here is an overview about the arguments:
11084 \end_layout
11085
11086 \begin_layout Itemize
11087
11088 \series bold
11089 p{width}
11090 \series default
11091  creates cell with a fixed width, its text is vertically top-aligned
11092 \end_layout
11093
11094 \begin_layout Itemize
11095
11096 \series bold
11097 m{width}
11098 \series default
11099  creates cell with a fixed width, its text is vertically centered
11100 \end_layout
11101
11102 \begin_layout Itemize
11103
11104 \series bold
11105 b{width}
11106 \series default
11107  creates cell with a fixed width, its text is vertically bottom-aligned
11108 \end_layout
11109
11110 \begin_layout Standard
11111 By entering a LaTeX-argument, all cell properties set in the table dialog
11112  are overwritten.
11113  
11114 \begin_inset Note Greyedout
11115 status open
11116
11117 \begin_layout Standard
11118
11119 \series bold
11120 Note:
11121 \series default
11122  Due to a bug, LyX shows the overwritten properties anyway.
11123 \end_layout
11124
11125 \end_inset
11126
11127  As the text should be horizontally centered, the command 
11128 \series bold
11129
11130 \backslash
11131 centering
11132 \series default
11133  is added.
11134  You can now enter the following LaTeX-argument for the first spanned column:
11135 \end_layout
11136
11137 \begin_layout Standard
11138
11139 \series bold
11140 |>{
11141 \backslash
11142 centering}m{1.25cm-6.2pt}
11143 \end_layout
11144
11145 \begin_layout Standard
11146 The bar 
11147 \begin_inset Quotes eld
11148 \end_inset
11149
11150
11151 \series bold
11152 |
11153 \series default
11154
11155 \begin_inset Quotes erd
11156 \end_inset
11157
11158  at the beginning draws the border line and the command 
11159 \series bold
11160 >{ }
11161 \series default
11162  means, that the commands inside the braces are applied before the cell
11163  is created.
11164 \end_layout
11165
11166 \begin_layout Standard
11167 Although we have chosen centered alignment for the text of the multicolumn
11168  cell, it is still left aligned.
11169  This is because LyX only applies the alignment to single columns.
11170  So we have to use for the multicolumn the LaTeX-argument
11171 \end_layout
11172
11173 \begin_layout Standard
11174
11175 \series bold
11176 |>{
11177 \backslash
11178 centering}m{2.5cm}|
11179 \end_layout
11180
11181 \begin_layout Subsection
11182 Multirows
11183 \begin_inset LatexCommand index
11184 name "Multirows"
11185
11186 \end_inset
11187
11188
11189 \begin_inset LatexCommand index
11190 name "Table ! Multirows"
11191
11192 \end_inset
11193
11194
11195 \begin_inset LatexCommand index
11196 name "LaTeX-packages ! multirow"
11197
11198 \end_inset
11199
11200
11201 \end_layout
11202
11203 \begin_layout Standard
11204 In contrary to multicolumns multirows are not yet supported by LyX so a
11205  bit of ERT needs to be used.
11206  To use multirows load the LaTeX-package 
11207 \series bold
11208 multirow
11209 \series default
11210  in your document preamble with the command
11211 \end_layout
11212
11213 \begin_layout Standard
11214
11215 \series bold
11216
11217 \backslash
11218 usepackage{multirow}
11219 \end_layout
11220
11221 \begin_layout Standard
11222 Multirows are created with the command
11223 \end_layout
11224
11225 \begin_layout Standard
11226
11227 \series bold
11228
11229 \backslash
11230 multirow{number of rows}{cell width}{cell entry}
11231 \end_layout
11232
11233 \begin_layout Standard
11234 To create the following table:
11235 \end_layout
11236
11237 \begin_layout Standard
11238 \align center
11239 \begin_inset ERT
11240 status collapsed
11241
11242 \begin_layout Standard
11243
11244
11245 \backslash
11246 renewcommand{
11247 \backslash
11248 multirowsetup}{
11249 \backslash
11250 centering}
11251 \end_layout
11252
11253 \end_inset
11254
11255
11256 \begin_inset Tabular
11257 <lyxtabular version="3" rows="3" columns="3">
11258 <features>
11259 <column alignment="center" valignment="top" leftline="true" width="0">
11260 <column alignment="center" valignment="top" leftline="true" width="0">
11261 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
11262 <row topline="true">
11263 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11264 \begin_inset Text
11265
11266 \begin_layout Standard
11267 a
11268 \end_layout
11269
11270 \end_inset
11271 </cell>
11272 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11273 \begin_inset Text
11274
11275 \begin_layout Standard
11276 b
11277 \end_layout
11278
11279 \end_inset
11280 </cell>
11281 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11282 \begin_inset Text
11283
11284 \begin_layout Standard
11285 c
11286 \end_layout
11287
11288 \end_inset
11289 </cell>
11290 </row>
11291 <row topline="true">
11292 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11293 \begin_inset Text
11294
11295 \begin_layout Standard
11296 \begin_inset ERT
11297 status collapsed
11298
11299 \begin_layout Standard
11300
11301
11302 \backslash
11303 multirow{2}{2.5cm}{
11304 \end_layout
11305
11306 \end_inset
11307
11308 multirow entry
11309 \begin_inset ERT
11310 status collapsed
11311
11312 \begin_layout Standard
11313
11314 }
11315 \end_layout
11316
11317 \end_inset
11318
11319
11320 \end_layout
11321
11322 \end_inset
11323 </cell>
11324 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11325 \begin_inset Text
11326
11327 \begin_layout Standard
11328 e
11329 \end_layout
11330
11331 \end_inset
11332 </cell>
11333 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11334 \begin_inset Text
11335
11336 \begin_layout Standard
11337 f
11338 \end_layout
11339
11340 \end_inset
11341 </cell>
11342 </row>
11343 <row topline="true" bottomline="true">
11344 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11345 \begin_inset Text
11346
11347 \begin_layout Standard
11348
11349 \end_layout
11350
11351 \end_inset
11352 </cell>
11353 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11354 \begin_inset Text
11355
11356 \begin_layout Standard
11357 h
11358 \end_layout
11359
11360 \end_inset
11361 </cell>
11362 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11363 \begin_inset Text
11364
11365 \begin_layout Standard
11366 i
11367 \end_layout
11368
11369 \end_inset
11370 </cell>
11371 </row>
11372 </lyxtabular>
11373
11374 \end_inset
11375
11376
11377 \begin_inset ERT
11378 status collapsed
11379
11380 \begin_layout Standard
11381
11382
11383 \backslash
11384 renewcommand{
11385 \backslash
11386 multirowsetup}{
11387 \backslash
11388 raggedright}
11389 \end_layout
11390
11391 \end_inset
11392
11393
11394 \end_layout
11395
11396 \begin_layout Standard
11397 create a 3×3 table.
11398  To get rid of the line above the last cell in the first column, the cell
11399  is marked as multicolumn and the upper border is unset.
11400  The multirow is now created in the second row of the first column by inserting
11401  there the command
11402 \end_layout
11403
11404 \begin_layout Standard
11405
11406 \series bold
11407
11408 \backslash
11409 multirow{2}{2.5cm}{
11410 \end_layout
11411
11412 \begin_layout Standard
11413 as ERT.
11414  According to the command parameters the multirow spans now two rows and
11415  has a width of 2.5\InsetSpace \thinspace{}
11416 cm.
11417  The content of the multirow cell follows outside the ERT box and the command
11418  is finished with a right brace 
11419 \series bold
11420 }
11421 \series default
11422  in another ERT-box behind the text.
11423 \end_layout
11424
11425 \begin_layout Standard
11426
11427 \series bold
11428
11429 \backslash
11430 multirow
11431 \series default
11432  left-aligns its content by default.
11433  To override the default, renew the command 
11434 \series bold
11435
11436 \backslash
11437 multirowsetup
11438 \series default
11439  with the command
11440 \end_layout
11441
11442 \begin_layout Standard
11443
11444 \series bold
11445
11446 \backslash
11447 renewcommand{
11448 \backslash
11449 multirowsetup}{
11450 \backslash
11451 centering}
11452 \end_layout
11453
11454 \begin_layout Standard
11455 in ERT in the document preamble.
11456  Then all entries of multirow cells in the document are centered.
11457  If centering is only needed for several tables, you can renew the command
11458  in an ERT box just before the table instead of the preamble.
11459  If the text should be right-aligned, replace 
11460 \series bold
11461
11462 \backslash
11463 centering
11464 \series default
11465  by 
11466 \series bold
11467
11468 \backslash
11469 raggedleft
11470 \series default
11471 .
11472  To return to left-alignment 
11473 \series bold
11474
11475 \backslash
11476 raggedright
11477 \series default
11478  is used.
11479 \end_layout
11480
11481 \begin_layout Section
11482 Formal Tables
11483 \begin_inset LatexCommand label
11484 name "sec:Formal-Tables"
11485
11486 \end_inset
11487
11488
11489 \begin_inset LatexCommand index
11490 name "Table ! Formal"
11491
11492 \end_inset
11493
11494
11495 \end_layout
11496
11497 \begin_layout Standard
11498 Tables are often typeset in books similar to Table\InsetSpace ~
11499
11500 \begin_inset LatexCommand ref
11501 reference "tab:Example-booktabs-table"
11502
11503 \end_inset
11504
11505 .
11506  This kind of tables is called 
11507 \begin_inset Quotes eld
11508 \end_inset
11509
11510
11511 \emph on
11512 formal
11513 \emph default
11514
11515 \begin_inset Quotes erd
11516 \end_inset
11517
11518 .
11519  To make a table a formal table use the option 
11520 \family sans
11521 Formal
11522 \family default
11523  in the 
11524 \family sans
11525 Borders
11526 \family default
11527  tab of the table dialog.
11528 \end_layout
11529
11530 \begin_layout Standard
11531 \begin_inset Float table
11532 placement h
11533 wide false
11534 sideways false
11535 status open
11536
11537 \begin_layout Standard
11538 \begin_inset Caption
11539
11540 \begin_layout Standard
11541 \begin_inset LatexCommand label
11542 name "tab:Example-booktabs-table"
11543
11544 \end_inset
11545
11546 Example booktabs-table
11547 \end_layout
11548
11549 \end_inset
11550
11551
11552 \end_layout
11553
11554 \begin_layout Standard
11555 \align center
11556 \begin_inset Tabular
11557 <lyxtabular version="3" rows="8" columns="4">
11558 <features booktabs="true">
11559 <column alignment="center" valignment="top" rightline="true" width="0">
11560 <column alignment="center" valignment="top" width="0">
11561 <column alignment="center" valignment="top" width="0">
11562 <column alignment="center" valignment="top" width="0">
11563 <row topline="true">
11564 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11565 \begin_inset Text
11566
11567 \begin_layout Standard
11568 System
11569 \end_layout
11570
11571 \end_inset
11572 </cell>
11573 <cell alignment="center" valignment="top" topline="true" usebox="none">
11574 \begin_inset Text
11575
11576 \begin_layout Standard
11577 Medipix
11578 \begin_inset Formula $\,$
11579 \end_inset
11580
11581 1
11582 \end_layout
11583
11584 \end_inset
11585 </cell>
11586 <cell multicolumn="1" alignment="center" valignment="top" leftline="true" usebox="none">
11587 \begin_inset Text
11588
11589 \begin_layout Standard
11590 Medipix
11591 \begin_inset Formula $\,$
11592 \end_inset
11593
11594 2
11595 \end_layout
11596
11597 \end_inset
11598 </cell>
11599 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11600 \begin_inset Text
11601
11602 \begin_layout Standard
11603
11604 \end_layout
11605
11606 \end_inset
11607 </cell>
11608 </row>
11609 <row>
11610 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11611 \begin_inset Text
11612
11613 \begin_layout Standard
11614 \begin_inset ERT
11615 status collapsed
11616
11617 \begin_layout Standard
11618
11619
11620 \backslash
11621 cmidrule(r){2-2}
11622 \end_layout
11623
11624 \end_inset
11625
11626
11627 \begin_inset ERT
11628 status collapsed
11629
11630 \begin_layout Standard
11631
11632
11633 \backslash
11634 cmidrule(l){3-4}
11635 \end_layout
11636
11637 \end_inset
11638
11639 Detector thickness [µm]
11640 \end_layout
11641
11642 \end_inset
11643 </cell>
11644 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11645 \begin_inset Text
11646
11647 \begin_layout Standard
11648 300
11649 \end_layout
11650
11651 \end_inset
11652 </cell>
11653 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11654 \begin_inset Text
11655
11656 \begin_layout Standard
11657 300
11658 \end_layout
11659
11660 \end_inset
11661 </cell>
11662 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11663 \begin_inset Text
11664
11665 \begin_layout Standard
11666 700
11667 \end_layout
11668
11669 \end_inset
11670 </cell>
11671 </row>
11672 <row topline="true">
11673 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11674 \begin_inset Text
11675
11676 \begin_layout Standard
11677 Edge angle [°]
11678 \end_layout
11679
11680 \end_inset
11681 </cell>
11682 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11683 \begin_inset Text
11684
11685 \begin_layout Standard
11686 3.55
11687 \end_layout
11688
11689 \end_inset
11690 </cell>
11691 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11692 \begin_inset Text
11693
11694 \begin_layout Standard
11695 2.71
11696 \end_layout
11697
11698 \end_inset
11699 </cell>
11700 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11701 \begin_inset Text
11702
11703 \begin_layout Standard
11704 7.99
11705 \end_layout
11706
11707 \end_inset
11708 </cell>
11709 </row>
11710 <row topspace="default">
11711 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11712 \begin_inset Text
11713
11714 \begin_layout Standard
11715 Spatial resolution [µm]
11716 \end_layout
11717
11718 \end_inset
11719 </cell>
11720 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11721 \begin_inset Text
11722
11723 \begin_layout Standard
11724 4.26
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 10.17
11734 \end_layout
11735
11736 \end_inset
11737 </cell>
11738 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11739 \begin_inset Text
11740
11741 \begin_layout Standard
11742 10.56
11743 \end_layout
11744
11745 \end_inset
11746 </cell>
11747 </row>
11748 <row topspace="default">
11749 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11750 \begin_inset Text
11751
11752 \begin_layout Standard
11753 MTF at 
11754 \begin_inset Formula $f_{\mathrm{max}}$
11755 \end_inset
11756
11757
11758 \end_layout
11759
11760 \end_inset
11761 </cell>
11762 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11763 \begin_inset Text
11764
11765 \begin_layout Standard
11766 0.53
11767 \end_layout
11768
11769 \end_inset
11770 </cell>
11771 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11772 \begin_inset Text
11773
11774 \begin_layout Standard
11775 0.37
11776 \end_layout
11777
11778 \end_inset
11779 </cell>
11780 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11781 \begin_inset Text
11782
11783 \begin_layout Standard
11784 0.39
11785 \end_layout
11786
11787 \end_inset
11788 </cell>
11789 </row>
11790 <row topspace="default">
11791 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11792 \begin_inset Text
11793
11794 \begin_layout Standard
11795 \begin_inset ERT
11796 status collapsed
11797
11798 \begin_layout Standard
11799
11800
11801 \backslash
11802 cmidrule(l{10pt}){1-1}
11803 \end_layout
11804
11805 \end_inset
11806
11807 LSF-spatial resolution
11808 \end_layout
11809
11810 \end_inset
11811 </cell>
11812 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11813 \begin_inset Text
11814
11815 \begin_layout Standard
11816
11817 \end_layout
11818
11819 \end_inset
11820 </cell>
11821 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11822 \begin_inset Text
11823
11824 \begin_layout Standard
11825
11826 \end_layout
11827
11828 \end_inset
11829 </cell>
11830 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11831 \begin_inset Text
11832
11833 \begin_layout Standard
11834
11835 \end_layout
11836
11837 \end_inset
11838 </cell>
11839 </row>
11840 <row>
11841 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11842 \begin_inset Text
11843
11844 \begin_layout Standard
11845 in µm
11846 \end_layout
11847
11848 \end_inset
11849 </cell>
11850 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11851 \begin_inset Text
11852
11853 \begin_layout Standard
11854 129.7
11855 \end_layout
11856
11857 \end_inset
11858 </cell>
11859 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11860 \begin_inset Text
11861
11862 \begin_layout Standard
11863 52.75
11864 \end_layout
11865
11866 \end_inset
11867 </cell>
11868 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11869 \begin_inset Text
11870
11871 \begin_layout Standard
11872 50.78
11873 \end_layout
11874
11875 \end_inset
11876 </cell>
11877 </row>
11878 <row bottomline="true">
11879 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11880 \begin_inset Text
11881
11882 \begin_layout Standard
11883 in % of pixel size
11884 \end_layout
11885
11886 \end_inset
11887 </cell>
11888 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11889 \begin_inset Text
11890
11891 \begin_layout Standard
11892 76.3
11893 \end_layout
11894
11895 \end_inset
11896 </cell>
11897 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11898 \begin_inset Text
11899
11900 \begin_layout Standard
11901 95.9
11902 \end_layout
11903
11904 \end_inset
11905 </cell>
11906 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11907 \begin_inset Text
11908
11909 \begin_layout Standard
11910 92.3
11911 \end_layout
11912
11913 \end_inset
11914 </cell>
11915 </row>
11916 </lyxtabular>
11917
11918 \end_inset
11919
11920
11921 \end_layout
11922
11923 \end_inset
11924
11925
11926 \end_layout
11927
11928 \begin_layout Standard
11929 Spaces to table rows can be added using the 
11930 \family sans
11931 Borders
11932 \family default
11933  tab of the table dialog as described in section\InsetSpace ~
11934
11935 \begin_inset LatexCommand ref
11936 reference "sub:Row-Spacing"
11937
11938 \end_inset
11939
11940 .
11941 \end_layout
11942
11943 \begin_layout Standard
11944 In contrary to normal tables, formal tables have no vertical table lines.
11945  The horizontal table lines can be set like for normal tables but they appear
11946  with different width in the output:
11947 \newline
11948 The first and the last table line have
11949  a default width of 0.08\InsetSpace \thinspace{}
11950 em while the other lines have a default width of
11951  0.05\InsetSpace \thinspace{}
11952 em.
11953 \end_layout
11954
11955 \begin_layout Standard
11956 The default widths can be changed with the following preamble lines
11957 \end_layout
11958
11959 \begin_layout Standard
11960
11961 \series bold
11962
11963 \backslash
11964 let
11965 \backslash
11966 mytoprule
11967 \backslash
11968 toprule
11969 \newline
11970
11971 \backslash
11972 renewcommand{
11973 \backslash
11974 toprule}{
11975 \backslash
11976 mytoprule[width]}
11977 \end_layout
11978
11979 \begin_layout Standard
11980 This example is for the first line, the so called toprule.
11981  If you want to change the width for the last line, replace 
11982 \series bold
11983 toprule
11984 \series default
11985  by 
11986 \series bold
11987 bottomrule
11988 \series default
11989 .
11990  To change the width for the other lines replace 
11991 \series bold
11992 toprule
11993 \series default
11994  by 
11995 \series bold
11996 midrule
11997 \series default
11998 .
11999  You can use all units listed in appendix\InsetSpace ~
12000
12001 \begin_inset LatexCommand ref
12002 reference "cha:Units-available-in"
12003
12004 \end_inset
12005
12006  to set the width.
12007 \end_layout
12008
12009 \begin_layout Standard
12010 Lines that don't span over all table columns can be created by setting a
12011  table line for multicolumn cells.
12012  LyX will then internally use the command 
12013 \series bold
12014
12015 \backslash
12016 cmidrule
12017 \series default
12018  to create this line.
12019  Its full scheme is
12020 \end_layout
12021
12022 \begin_layout Standard
12023
12024 \series bold
12025
12026 \backslash
12027 cmidrule[width](trim){startcol-endcol}
12028 \end_layout
12029
12030 \begin_layout Standard
12031 The options of 
12032 \series bold
12033
12034 \backslash
12035 cmidrule
12036 \series default
12037  are are currently not supported by LyX so you have to use ERT to be able
12038  to use them.
12039  
12040 \series bold
12041
12042 \backslash
12043 cmidrule
12044 \series default
12045 s can manually be created by inserting the command as ERT as first cell
12046  entry of the first cell of a row.
12047  The line is then drawn in the output above the current row.
12048 \end_layout
12049
12050 \begin_layout Standard
12051 The default for the width is 0.03\InsetSpace \thinspace{}
12052 em.
12053  Startcol is the number of the column where the line starts and endcol the
12054  column number where the line ends.
12055  The endcol always needs to be specified, also when the line should span
12056  only one column.
12057  The optional parameter trim could be either 
12058 \emph on
12059 l{trimwidth}
12060 \emph default
12061 , or 
12062 \emph on
12063 r{trimwidth}
12064 \emph default
12065  where the trimwidth is also optional.
12066  Using for example the parameter 
12067 \emph on
12068 l{2pt}
12069 \emph default
12070  means that the line is trimmed from its left end by 2\InsetSpace \thinspace{}
12071 pt.
12072  If you don't specify the trimwidth the lines are trimmed by the default
12073  of 0.5\InsetSpace \thinspace{}
12074 em.
12075 \end_layout
12076
12077 \begin_layout Standard
12078 \begin_inset VSpace bigskip
12079 \end_inset
12080
12081 Table\InsetSpace ~
12082
12083 \begin_inset LatexCommand ref
12084 reference "tab:Example-booktabs-table"
12085
12086 \end_inset
12087
12088  was created using the commands
12089 \end_layout
12090
12091 \begin_layout Standard
12092
12093 \series bold
12094
12095 \backslash
12096 cmidrule(r){2-2}
12097 \backslash
12098 cmidrule(l){3-4}
12099 \end_layout
12100
12101 \begin_layout Standard
12102 at the beginning of the in the second row and
12103 \end_layout
12104
12105 \begin_layout Standard
12106
12107 \series bold
12108
12109 \backslash
12110 cmidrule(l{10pt}){1-1}
12111 \end_layout
12112
12113 \begin_layout Standard
12114 in the sixth row.
12115 \end_layout
12116
12117 \begin_layout Standard
12118
12119 \end_layout
12120
12121 \begin_layout Standard
12122 \begin_inset VSpace bigskip
12123 \end_inset
12124
12125
12126 \end_layout
12127
12128 \begin_layout Standard
12129 You might want to have overlapping 
12130 \series bold
12131
12132 \backslash
12133 cmidrule
12134 \series default
12135 s like in Table\InsetSpace ~
12136
12137 \begin_inset LatexCommand ref
12138 reference "tab:Special-booktabs-table"
12139
12140 \end_inset
12141
12142 .
12143  This can be achieved with the ERT command
12144 \end_layout
12145
12146 \begin_layout Standard
12147
12148 \series bold
12149
12150 \backslash
12151 morecmidrules
12152 \end_layout
12153
12154 \begin_layout Standard
12155 The command that was used for the second row of Table\InsetSpace ~
12156
12157 \begin_inset LatexCommand ref
12158 reference "tab:Special-booktabs-table"
12159
12160 \end_inset
12161
12162  is
12163 \end_layout
12164
12165 \begin_layout Standard
12166
12167 \series bold
12168
12169 \backslash
12170 cmidrule(r){2-2}
12171 \backslash
12172 cmidrule(l){3-4}
12173 \backslash
12174 morecmidrules
12175 \backslash
12176 cmidrule{2-4}
12177 \end_layout
12178
12179 \begin_layout Standard
12180 The command for the sixth row is
12181 \end_layout
12182
12183 \begin_layout Standard
12184
12185 \series bold
12186
12187 \backslash
12188 midrule
12189 \backslash
12190 morecmidrules
12191 \backslash
12192 cmidrule{3-4}
12193 \end_layout
12194
12195 \begin_layout Standard
12196 \begin_inset VSpace bigskip
12197 \end_inset
12198
12199
12200 \end_layout
12201
12202 \begin_layout Standard
12203 If you are anyway not satisfied with the border line spacing, you can use
12204  the following command to produce lines that span over all table columns
12205 \series bold
12206 :
12207 \end_layout
12208
12209 \begin_layout Standard
12210
12211 \series bold
12212
12213 \backslash
12214 specialrule{width}{space above}{space below}
12215 \end_layout
12216
12217 \begin_layout Standard
12218 For more informations about these specialties, we refer to the manual of
12219  the LaTeX-package 
12220 \series bold
12221 booktabs
12222 \series default
12223  
12224 \begin_inset LatexCommand cite
12225 key "booktabs"
12226
12227 \end_inset
12228
12229 .
12230 \begin_inset LatexCommand index
12231 name "LaTeX-packages ! booktabs"
12232
12233 \end_inset
12234
12235
12236 \end_layout
12237
12238 \begin_layout Standard
12239 \begin_inset Float table
12240 placement h
12241 wide false
12242 sideways false
12243 status open
12244
12245 \begin_layout Standard
12246 \begin_inset Caption
12247
12248 \begin_layout Standard
12249 \begin_inset LatexCommand label
12250 name "tab:Special-booktabs-table"
12251
12252 \end_inset
12253
12254 Special booktabs-table
12255 \end_layout
12256
12257 \end_inset
12258
12259
12260 \end_layout
12261
12262 \begin_layout Standard
12263 \align center
12264 \begin_inset Tabular
12265 <lyxtabular version="3" rows="8" columns="4">
12266 <features booktabs="true">
12267 <column alignment="center" valignment="top" width="0">
12268 <column alignment="center" valignment="top" width="0">
12269 <column alignment="center" valignment="top" width="0">
12270 <column alignment="center" valignment="top" width="0">
12271 <row topline="true">
12272 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12273 \begin_inset Text
12274
12275 \begin_layout Standard
12276 System
12277 \end_layout
12278
12279 \end_inset
12280 </cell>
12281 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12282 \begin_inset Text
12283
12284 \begin_layout Standard
12285 Medipix\InsetSpace \thinspace{}
12286 1
12287 \end_layout
12288
12289 \end_inset
12290 </cell>
12291 <cell multicolumn="1" alignment="center" valignment="top" leftline="true" usebox="none">
12292 \begin_inset Text
12293
12294 \begin_layout Standard
12295 Medipix\InsetSpace \thinspace{}
12296 2
12297 \end_layout
12298
12299 \end_inset
12300 </cell>
12301 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12302 \begin_inset Text
12303
12304 \begin_layout Standard
12305
12306 \end_layout
12307
12308 \end_inset
12309 </cell>
12310 </row>
12311 <row>
12312 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12313 \begin_inset Text
12314
12315 \begin_layout Standard
12316 \begin_inset ERT
12317 status collapsed
12318
12319 \begin_layout Standard
12320
12321
12322 \backslash
12323 cmidrule(r){2-2}
12324 \end_layout
12325
12326 \end_inset
12327
12328
12329 \begin_inset ERT
12330 status collapsed
12331
12332 \begin_layout Standard
12333
12334
12335 \backslash
12336 cmidrule(l){3-4}
12337 \end_layout
12338
12339 \end_inset
12340
12341
12342 \begin_inset ERT
12343 status collapsed
12344
12345 \begin_layout Standard
12346
12347
12348 \backslash
12349 morecmidrules 
12350 \end_layout
12351
12352 \end_inset
12353
12354
12355 \begin_inset ERT
12356 status collapsed
12357
12358 \begin_layout Standard
12359
12360
12361 \backslash
12362 cmidrule{2-4}
12363 \end_layout
12364
12365 \end_inset
12366
12367 Detector thickness [µm]
12368 \end_layout
12369
12370 \end_inset
12371 </cell>
12372 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12373 \begin_inset Text
12374
12375 \begin_layout Standard
12376 300
12377 \end_layout
12378
12379 \end_inset
12380 </cell>
12381 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12382 \begin_inset Text
12383
12384 \begin_layout Standard
12385 300
12386 \end_layout
12387
12388 \end_inset
12389 </cell>
12390 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12391 \begin_inset Text
12392
12393 \begin_layout Standard
12394 700
12395 \end_layout
12396
12397 \end_inset
12398 </cell>
12399 </row>
12400 <row topline="true">
12401 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12402 \begin_inset Text
12403
12404 \begin_layout Standard
12405 Edge angle [°]
12406 \end_layout
12407
12408 \end_inset
12409 </cell>
12410 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12411 \begin_inset Text
12412
12413 \begin_layout Standard
12414 3.55
12415 \end_layout
12416
12417 \end_inset
12418 </cell>
12419 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12420 \begin_inset Text
12421
12422 \begin_layout Standard
12423 2.71
12424 \end_layout
12425
12426 \end_inset
12427 </cell>
12428 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12429 \begin_inset Text
12430
12431 \begin_layout Standard
12432 7.99
12433 \end_layout
12434
12435 \end_inset
12436 </cell>
12437 </row>
12438 <row topspace="default">
12439 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12440 \begin_inset Text
12441
12442 \begin_layout Standard
12443 Spatial resolution [µm]
12444 \end_layout
12445
12446 \end_inset
12447 </cell>
12448 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12449 \begin_inset Text
12450
12451 \begin_layout Standard
12452 4.26
12453 \end_layout
12454
12455 \end_inset
12456 </cell>
12457 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12458 \begin_inset Text
12459
12460 \begin_layout Standard
12461 10.17
12462 \end_layout
12463
12464 \end_inset
12465 </cell>
12466 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12467 \begin_inset Text
12468
12469 \begin_layout Standard
12470 10.56
12471 \end_layout
12472
12473 \end_inset
12474 </cell>
12475 </row>
12476 <row topspace="default">
12477 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12478 \begin_inset Text
12479
12480 \begin_layout Standard
12481 MTF at 
12482 \begin_inset Formula $f_{\mathrm{max}}$
12483 \end_inset
12484
12485
12486 \end_layout
12487
12488 \end_inset
12489 </cell>
12490 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12491 \begin_inset Text
12492
12493 \begin_layout Standard
12494 0.53
12495 \end_layout
12496
12497 \end_inset
12498 </cell>
12499 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12500 \begin_inset Text
12501
12502 \begin_layout Standard
12503 0.37
12504 \end_layout
12505
12506 \end_inset
12507 </cell>
12508 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12509 \begin_inset Text
12510
12511 \begin_layout Standard
12512 0.39
12513 \end_layout
12514
12515 \end_inset
12516 </cell>
12517 </row>
12518 <row topline="true">
12519 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12520 \begin_inset Text
12521
12522 \begin_layout Standard
12523 \begin_inset ERT
12524 status collapsed
12525
12526 \begin_layout Standard
12527
12528
12529 \backslash
12530 morecmidrules 
12531 \end_layout
12532
12533 \end_inset
12534
12535
12536 \begin_inset ERT
12537 status collapsed
12538
12539 \begin_layout Standard
12540
12541
12542 \backslash
12543 cmidrule{3-4}
12544 \end_layout
12545
12546 \end_inset
12547
12548 LSF-spatial resolution
12549 \end_layout
12550
12551 \end_inset
12552 </cell>
12553 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12554 \begin_inset Text
12555
12556 \begin_layout Standard
12557
12558 \end_layout
12559
12560 \end_inset
12561 </cell>
12562 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12563 \begin_inset Text
12564
12565 \begin_layout Standard
12566
12567 \end_layout
12568
12569 \end_inset
12570 </cell>
12571 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12572 \begin_inset Text
12573
12574 \begin_layout Standard
12575
12576 \end_layout
12577
12578 \end_inset
12579 </cell>
12580 </row>
12581 <row>
12582 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12583 \begin_inset Text
12584
12585 \begin_layout Standard
12586 in µm
12587 \end_layout
12588
12589 \end_inset
12590 </cell>
12591 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12592 \begin_inset Text
12593
12594 \begin_layout Standard
12595 129.7
12596 \end_layout
12597
12598 \end_inset
12599 </cell>
12600 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12601 \begin_inset Text
12602
12603 \begin_layout Standard
12604 52.75
12605 \end_layout
12606
12607 \end_inset
12608 </cell>
12609 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12610 \begin_inset Text
12611
12612 \begin_layout Standard
12613 50.78
12614 \end_layout
12615
12616 \end_inset
12617 </cell>
12618 </row>
12619 <row bottomline="true">
12620 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12621 \begin_inset Text
12622
12623 \begin_layout Standard
12624 in % of pixel size
12625 \end_layout
12626
12627 \end_inset
12628 </cell>
12629 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12630 \begin_inset Text
12631
12632 \begin_layout Standard
12633 76.3
12634 \end_layout
12635
12636 \end_inset
12637 </cell>
12638 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12639 \begin_inset Text
12640
12641 \begin_layout Standard
12642 95.9
12643 \end_layout
12644
12645 \end_inset
12646 </cell>
12647 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12648 \begin_inset Text
12649
12650 \begin_layout Standard
12651 92.3
12652 \end_layout
12653
12654 \end_inset
12655 </cell>
12656 </row>
12657 </lyxtabular>
12658
12659 \end_inset
12660
12661
12662 \end_layout
12663
12664 \end_inset
12665
12666
12667 \end_layout
12668
12669 \begin_layout Section
12670 Vertical Table Alignment
12671 \begin_inset LatexCommand index
12672 name "Table ! Alignment"
12673
12674 \end_inset
12675
12676
12677 \end_layout
12678
12679 \begin_layout Standard
12680 To align tables vertically in a text line the table must be inside a box.
12681  The box can then be vertically aligned as described in section\InsetSpace ~
12682
12683 \begin_inset LatexCommand ref
12684 reference "sec:Box-Dialog"
12685
12686 \end_inset
12687
12688 .
12689 \end_layout
12690
12691 \begin_layout Standard
12692 In the following example the tables are inside a minipage
12693 \begin_inset Foot
12694 status collapsed
12695
12696 \begin_layout Standard
12697 Minipages are described in section\InsetSpace ~
12698
12699 \begin_inset LatexCommand ref
12700 reference "sec:Minipages"
12701
12702 \end_inset
12703
12704 .
12705 \end_layout
12706
12707 \end_inset
12708
12709  box that has a width of 15\InsetSpace \thinspace{}
12710 col%:
12711 \end_layout
12712
12713 \begin_layout Itemize
12714 test 
12715 \begin_inset Box Frameless
12716 position "t"
12717 hor_pos "c"
12718 has_inner_box 1
12719 inner_pos "c"
12720 use_parbox 0
12721 width "15col%"
12722 special "none"
12723 height "1in"
12724 height_special "totalheight"
12725 status collapsed
12726
12727 \begin_layout Standard
12728 \begin_inset Tabular
12729 <lyxtabular version="3" rows="3" columns="3">
12730 <features>
12731 <column alignment="center" valignment="top" leftline="true" width="0">
12732 <column alignment="center" valignment="top" leftline="true" width="0">
12733 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
12734 <row topline="true">
12735 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12736 \begin_inset Text
12737
12738 \begin_layout Standard
12739 a
12740 \end_layout
12741
12742 \end_inset
12743 </cell>
12744 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12745 \begin_inset Text
12746
12747 \begin_layout Standard
12748 d
12749 \end_layout
12750
12751 \end_inset
12752 </cell>
12753 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12754 \begin_inset Text
12755
12756 \begin_layout Standard
12757 g
12758 \end_layout
12759
12760 \end_inset
12761 </cell>
12762 </row>
12763 <row topline="true">
12764 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12765 \begin_inset Text
12766
12767 \begin_layout Standard
12768 b
12769 \end_layout
12770
12771 \end_inset
12772 </cell>
12773 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12774 \begin_inset Text
12775
12776 \begin_layout Standard
12777 e
12778 \end_layout
12779
12780 \end_inset
12781 </cell>
12782 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12783 \begin_inset Text
12784
12785 \begin_layout Standard
12786 h
12787 \end_layout
12788
12789 \end_inset
12790 </cell>
12791 </row>
12792 <row topline="true" bottomline="true">
12793 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12794 \begin_inset Text
12795
12796 \begin_layout Standard
12797 c
12798 \end_layout
12799
12800 \end_inset
12801 </cell>
12802 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12803 \begin_inset Text
12804
12805 \begin_layout Standard
12806 f
12807 \end_layout
12808
12809 \end_inset
12810 </cell>
12811 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12812 \begin_inset Text
12813
12814 \begin_layout Standard
12815 i
12816 \end_layout
12817
12818 \end_inset
12819 </cell>
12820 </row>
12821 </lyxtabular>
12822
12823 \end_inset
12824
12825
12826 \end_layout
12827
12828 \end_inset
12829
12830  test 
12831 \begin_inset ERT
12832 status collapsed
12833
12834 \begin_layout Standard
12835
12836
12837 \backslash
12838 raisebox{0.85
12839 \backslash
12840 baselineskip}{
12841 \end_layout
12842
12843 \end_inset
12844
12845
12846 \begin_inset Box Frameless
12847 position "t"
12848 hor_pos "c"
12849 has_inner_box 1
12850 inner_pos "c"
12851 use_parbox 0
12852 width "15col%"
12853 special "none"
12854 height "1in"
12855 height_special "totalheight"
12856 status collapsed
12857
12858 \begin_layout Standard
12859 \begin_inset Tabular
12860 <lyxtabular version="3" rows="3" columns="3">
12861 <features>
12862 <column alignment="center" valignment="top" leftline="true" width="0">
12863 <column alignment="center" valignment="top" leftline="true" width="0">
12864 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
12865 <row topline="true">
12866 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12867 \begin_inset Text
12868
12869 \begin_layout Standard
12870 a
12871 \end_layout
12872
12873 \end_inset
12874 </cell>
12875 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12876 \begin_inset Text
12877
12878 \begin_layout Standard
12879 d
12880 \end_layout
12881
12882 \end_inset
12883 </cell>
12884 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12885 \begin_inset Text
12886
12887 \begin_layout Standard
12888 g
12889 \end_layout
12890
12891 \end_inset
12892 </cell>
12893 </row>
12894 <row topline="true">
12895 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12896 \begin_inset Text
12897
12898 \begin_layout Standard
12899 b
12900 \end_layout
12901
12902 \end_inset
12903 </cell>
12904 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12905 \begin_inset Text
12906
12907 \begin_layout Standard
12908 e
12909 \end_layout
12910
12911 \end_inset
12912 </cell>
12913 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12914 \begin_inset Text
12915
12916 \begin_layout Standard
12917 h
12918 \end_layout
12919
12920 \end_inset
12921 </cell>
12922 </row>
12923 <row topline="true" bottomline="true">
12924 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12925 \begin_inset Text
12926
12927 \begin_layout Standard
12928 c
12929 \end_layout
12930
12931 \end_inset
12932 </cell>
12933 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12934 \begin_inset Text
12935
12936 \begin_layout Standard
12937 f
12938 \end_layout
12939
12940 \end_inset
12941 </cell>
12942 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12943 \begin_inset Text
12944
12945 \begin_layout Standard
12946 i
12947 \end_layout
12948
12949 \end_inset
12950 </cell>
12951 </row>
12952 </lyxtabular>
12953
12954 \end_inset
12955
12956
12957 \end_layout
12958
12959 \end_inset
12960
12961
12962 \begin_inset ERT
12963 status collapsed
12964
12965 \begin_layout Standard
12966
12967 }
12968 \end_layout
12969
12970 \end_inset
12971
12972
12973 \end_layout
12974
12975 \begin_layout Itemize
12976 test 
12977 \begin_inset Box Frameless
12978 position "c"
12979 hor_pos "c"
12980 has_inner_box 1
12981 inner_pos "c"
12982 use_parbox 0
12983 width "15col%"
12984 special "none"
12985 height "1in"
12986 height_special "totalheight"
12987 status collapsed
12988
12989 \begin_layout Standard
12990 \begin_inset Tabular
12991 <lyxtabular version="3" rows="3" columns="3">
12992 <features>
12993 <column alignment="center" valignment="top" leftline="true" width="0">
12994 <column alignment="center" valignment="top" leftline="true" width="0">
12995 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
12996 <row topline="true">
12997 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12998 \begin_inset Text
12999
13000 \begin_layout Standard
13001 a
13002 \end_layout
13003
13004 \end_inset
13005 </cell>
13006 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13007 \begin_inset Text
13008
13009 \begin_layout Standard
13010 d
13011 \end_layout
13012
13013 \end_inset
13014 </cell>
13015 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13016 \begin_inset Text
13017
13018 \begin_layout Standard
13019 g
13020 \end_layout
13021
13022 \end_inset
13023 </cell>
13024 </row>
13025 <row topline="true">
13026 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13027 \begin_inset Text
13028
13029 \begin_layout Standard
13030 b
13031 \end_layout
13032
13033 \end_inset
13034 </cell>
13035 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13036 \begin_inset Text
13037
13038 \begin_layout Standard
13039 e
13040 \end_layout
13041
13042 \end_inset
13043 </cell>
13044 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13045 \begin_inset Text
13046
13047 \begin_layout Standard
13048 h
13049 \end_layout
13050
13051 \end_inset
13052 </cell>
13053 </row>
13054 <row topline="true" bottomline="true">
13055 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13056 \begin_inset Text
13057
13058 \begin_layout Standard
13059 c
13060 \end_layout
13061
13062 \end_inset
13063 </cell>
13064 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13065 \begin_inset Text
13066
13067 \begin_layout Standard
13068 f
13069 \end_layout
13070
13071 \end_inset
13072 </cell>
13073 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13074 \begin_inset Text
13075
13076 \begin_layout Standard
13077 i
13078 \end_layout
13079
13080 \end_inset
13081 </cell>
13082 </row>
13083 </lyxtabular>
13084
13085 \end_inset
13086
13087
13088 \end_layout
13089
13090 \end_inset
13091
13092
13093 \end_layout
13094
13095 \begin_layout Itemize
13096 test 
13097 \begin_inset Box Frameless
13098 position "b"
13099 hor_pos "c"
13100 has_inner_box 1
13101 inner_pos "c"
13102 use_parbox 0
13103 width "15col%"
13104 special "none"
13105 height "1in"
13106 height_special "totalheight"
13107 status collapsed
13108
13109 \begin_layout Standard
13110 \begin_inset Tabular
13111 <lyxtabular version="3" rows="3" columns="3">
13112 <features>
13113 <column alignment="center" valignment="top" leftline="true" width="0">
13114 <column alignment="center" valignment="top" leftline="true" width="0">
13115 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
13116 <row topline="true">
13117 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13118 \begin_inset Text
13119
13120 \begin_layout Standard
13121 a
13122 \end_layout
13123
13124 \end_inset
13125 </cell>
13126 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13127 \begin_inset Text
13128
13129 \begin_layout Standard
13130 d
13131 \end_layout
13132
13133 \end_inset
13134 </cell>
13135 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13136 \begin_inset Text
13137
13138 \begin_layout Standard
13139 g
13140 \end_layout
13141
13142 \end_inset
13143 </cell>
13144 </row>
13145 <row topline="true">
13146 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13147 \begin_inset Text
13148
13149 \begin_layout Standard
13150 b
13151 \end_layout
13152
13153 \end_inset
13154 </cell>
13155 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13156 \begin_inset Text
13157
13158 \begin_layout Standard
13159 e
13160 \end_layout
13161
13162 \end_inset
13163 </cell>
13164 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13165 \begin_inset Text
13166
13167 \begin_layout Standard
13168 h
13169 \end_layout
13170
13171 \end_inset
13172 </cell>
13173 </row>
13174 <row topline="true" bottomline="true">
13175 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13176 \begin_inset Text
13177
13178 \begin_layout Standard
13179 c
13180 \end_layout
13181
13182 \end_inset
13183 </cell>
13184 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13185 \begin_inset Text
13186
13187 \begin_layout Standard
13188 f
13189 \end_layout
13190
13191 \end_inset
13192 </cell>
13193 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13194 \begin_inset Text
13195
13196 \begin_layout Standard
13197 i
13198 \end_layout
13199
13200 \end_inset
13201 </cell>
13202 </row>
13203 </lyxtabular>
13204
13205 \end_inset
13206
13207
13208 \end_layout
13209
13210 \end_inset
13211
13212  test 
13213 \begin_inset ERT
13214 status collapsed
13215
13216 \begin_layout Standard
13217
13218
13219 \backslash
13220 raisebox{-0.32
13221 \backslash
13222 baselineskip}{
13223 \end_layout
13224
13225 \end_inset
13226
13227
13228 \begin_inset Box Frameless
13229 position "b"
13230 hor_pos "c"
13231 has_inner_box 1
13232 inner_pos "c"
13233 use_parbox 0
13234 width "15col%"
13235 special "none"
13236 height "1in"
13237 height_special "totalheight"
13238 status collapsed
13239
13240 \begin_layout Standard
13241 \begin_inset Tabular
13242 <lyxtabular version="3" rows="3" columns="3">
13243 <features>
13244 <column alignment="center" valignment="top" leftline="true" width="0">
13245 <column alignment="center" valignment="top" leftline="true" width="0">
13246 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
13247 <row topline="true">
13248 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13249 \begin_inset Text
13250
13251 \begin_layout Standard
13252 a
13253 \end_layout
13254
13255 \end_inset
13256 </cell>
13257 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13258 \begin_inset Text
13259
13260 \begin_layout Standard
13261 d
13262 \end_layout
13263
13264 \end_inset
13265 </cell>
13266 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13267 \begin_inset Text
13268
13269 \begin_layout Standard
13270 g
13271 \end_layout
13272
13273 \end_inset
13274 </cell>
13275 </row>
13276 <row topline="true">
13277 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13278 \begin_inset Text
13279
13280 \begin_layout Standard
13281 b
13282 \end_layout
13283
13284 \end_inset
13285 </cell>
13286 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13287 \begin_inset Text
13288
13289 \begin_layout Standard
13290 e
13291 \end_layout
13292
13293 \end_inset
13294 </cell>
13295 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13296 \begin_inset Text
13297
13298 \begin_layout Standard
13299 h
13300 \end_layout
13301
13302 \end_inset
13303 </cell>
13304 </row>
13305 <row topline="true" bottomline="true">
13306 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13307 \begin_inset Text
13308
13309 \begin_layout Standard
13310 c
13311 \end_layout
13312
13313 \end_inset
13314 </cell>
13315 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13316 \begin_inset Text
13317
13318 \begin_layout Standard
13319 f
13320 \end_layout
13321
13322 \end_inset
13323 </cell>
13324 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13325 \begin_inset Text
13326
13327 \begin_layout Standard
13328 i
13329 \end_layout
13330
13331 \end_inset
13332 </cell>
13333 </row>
13334 </lyxtabular>
13335
13336 \end_inset
13337
13338
13339 \end_layout
13340
13341 \end_inset
13342
13343
13344 \begin_inset ERT
13345 status collapsed
13346
13347 \begin_layout Standard
13348
13349 }
13350 \end_layout
13351
13352 \end_inset
13353
13354
13355 \end_layout
13356
13357 \begin_layout Standard
13358 As you can see, the content of the first and last table row is not correctly
13359  aligned with the text line where the table is in.
13360  To get this alignment, the minipage box must be set into a raisebox
13361 \begin_inset Foot
13362 status collapsed
13363
13364 \begin_layout Standard
13365 Raiseboxes are described in section\InsetSpace ~
13366
13367 \begin_inset LatexCommand ref
13368 reference "sub:Vertical-Alignment"
13369
13370 \end_inset
13371
13372 .
13373 \end_layout
13374
13375 \end_inset
13376
13377 .
13378  In the example above the second table in the first item is aligned using
13379  the ERT-command
13380 \end_layout
13381
13382 \begin_layout Standard
13383
13384 \series bold
13385
13386 \backslash
13387 raisebox{0.85
13388 \backslash
13389 baselineskip}{
13390 \end_layout
13391
13392 \begin_layout Standard
13393 before the box.
13394  Behind the box the closing brace 
13395 \series bold
13396 }
13397 \series default
13398  is inserted as ERT.
13399  For the second table in the last item the command
13400 \end_layout
13401
13402 \begin_layout Standard
13403
13404 \series bold
13405
13406 \backslash
13407 raisebox{-0.32
13408 \backslash
13409 baselineskip}{
13410 \end_layout
13411
13412 \begin_layout Standard
13413 is used.
13414 \end_layout
13415
13416 \begin_layout Standard
13417 \begin_inset Note Greyedout
13418 status open
13419
13420 \begin_layout Standard
13421
13422 \series bold
13423 Note: 
13424 \series default
13425 The alignment of the table row content to the surrounding text line is not
13426  exact.
13427  The needed factor of the 
13428 \series bold
13429
13430 \backslash
13431 raisebox
13432 \series default
13433  command for this alignment depends on the document font, the font size,
13434  and the table line thickness.
13435 \end_layout
13436
13437 \end_inset
13438
13439
13440 \end_layout
13441
13442 \begin_layout Section
13443 Colored Tables
13444 \begin_inset LatexCommand label
13445 name "sec:Colored-Tables"
13446
13447 \end_inset
13448
13449
13450 \begin_inset LatexCommand index
13451 name "Table ! Color"
13452
13453 \end_inset
13454
13455
13456 \end_layout
13457
13458 \begin_layout Subsection
13459 Colored Cells
13460 \begin_inset LatexCommand index
13461 name "Table Color ! for Cells"
13462
13463 \end_inset
13464
13465
13466 \begin_inset LatexCommand index
13467 name "Color ! for Table Cells"
13468
13469 \end_inset
13470
13471
13472 \end_layout
13473
13474 \begin_layout Standard
13475 \begin_inset Float table
13476 placement h
13477 wide false
13478 sideways false
13479 status open
13480
13481 \begin_layout Standard
13482 \begin_inset Caption
13483
13484 \begin_layout Standard
13485 \begin_inset LatexCommand label
13486 name "tab:Table-colored-without"
13487
13488 \end_inset
13489
13490 Table colored without using the package 
13491 \series bold
13492 colortbl
13493 \series default
13494
13495 \begin_inset OptArg
13496 status collapsed
13497
13498 \begin_layout Standard
13499 Table without colortbl
13500 \end_layout
13501
13502 \end_inset
13503
13504
13505 \end_layout
13506
13507 \end_inset
13508
13509
13510 \end_layout
13511
13512 \begin_layout Standard
13513 \align center
13514 \begin_inset Tabular
13515 <lyxtabular version="3" rows="3" columns="3">
13516 <features>
13517 <column alignment="center" valignment="top" leftline="true" width="0">
13518 <column alignment="center" valignment="top" leftline="true" width="0">
13519 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
13520 <row topline="true">
13521 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13522 \begin_inset Text
13523
13524 \begin_layout Standard
13525
13526 \color green
13527 a
13528 \end_layout
13529
13530 \end_inset
13531 </cell>
13532 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13533 \begin_inset Text
13534
13535 \begin_layout Standard
13536
13537 \color red
13538 b
13539 \end_layout
13540
13541 \end_inset
13542 </cell>
13543 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13544 \begin_inset Text
13545
13546 \begin_layout Standard
13547
13548 \color red
13549 c
13550 \end_layout
13551
13552 \end_inset
13553 </cell>
13554 </row>
13555 <row topline="true">
13556 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13557 \begin_inset Text
13558
13559 \begin_layout Standard
13560
13561 \color green
13562 d
13563 \end_layout
13564
13565 \end_inset
13566 </cell>
13567 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13568 \begin_inset Text
13569
13570 \begin_layout Standard
13571
13572 \color blue
13573 e
13574 \end_layout
13575
13576 \end_inset
13577 </cell>
13578 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13579 \begin_inset Text
13580
13581 \begin_layout Standard
13582
13583 \color blue
13584 f
13585 \end_layout
13586
13587 \end_inset
13588 </cell>
13589 </row>
13590 <row topline="true" bottomline="true">
13591 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13592 \begin_inset Text
13593
13594 \begin_layout Standard
13595
13596 \color green
13597 g
13598 \end_layout
13599
13600 \end_inset
13601 </cell>
13602 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13603 \begin_inset Text
13604
13605 \begin_layout Standard
13606
13607 \color blue
13608 h
13609 \end_layout
13610
13611 \end_inset
13612 </cell>
13613 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13614 \begin_inset Text
13615
13616 \begin_layout Standard
13617
13618 \color blue
13619 i
13620 \end_layout
13621
13622 \end_inset
13623 </cell>
13624 </row>
13625 </lyxtabular>
13626
13627 \end_inset
13628
13629
13630 \end_layout
13631
13632 \end_inset
13633
13634
13635 \end_layout
13636
13637 \begin_layout Standard
13638 If you only need colored text, mark the cells and choose a color in the
13639  menu 
13640 \family sans
13641 Edit\SpecialChar \menuseparator
13642 Text\InsetSpace ~
13643 Style
13644 \family default
13645 .
13646  This was used to create Table\InsetSpace ~
13647
13648 \begin_inset LatexCommand ref
13649 reference "tab:Table-colored-without"
13650
13651 \end_inset
13652
13653 .
13654  In any other case you have to use the LaTeX-package 
13655 \series bold
13656 colortbl
13657 \series default
13658 .
13659 \begin_inset LatexCommand index
13660 name "LaTeX-packages ! colortbl"
13661
13662 \end_inset
13663
13664
13665 \end_layout
13666
13667 \begin_layout Standard
13668 To create colored tables, 
13669 \series bold
13670 colortbl
13671 \series default
13672  must be loaded in the preamble with the line
13673 \end_layout
13674
13675 \begin_layout Standard
13676
13677 \series bold
13678
13679 \backslash
13680 usepackage{colortbl}
13681 \end_layout
13682
13683 \begin_layout Standard
13684 The color of a column is adjusted with the command
13685 \end_layout
13686
13687 \begin_layout Standard
13688
13689 \series bold
13690
13691 \backslash
13692 columncolor{name of color}
13693 \end_layout
13694
13695 \begin_layout Standard
13696 inside the command 
13697 \series bold
13698 >{ }
13699 \series default
13700 .
13701  More about the command 
13702 \series bold
13703 >{}
13704 \series default
13705  is described in section\InsetSpace ~
13706
13707 \begin_inset LatexCommand ref
13708 reference "sub:Multicolumn-Calculations"
13709
13710 \end_inset
13711
13712 .
13713 \end_layout
13714
13715 \begin_layout Standard
13716 The following color names are predefined:
13717 \end_layout
13718
13719 \begin_layout Standard
13720
13721 \family sans
13722 red
13723 \family default
13724
13725 \family sans
13726 green
13727 \family default
13728
13729 \family sans
13730 yellow
13731 \family default
13732
13733 \family sans
13734 blue
13735 \family default
13736
13737 \family sans
13738 cyan
13739 \family default
13740
13741 \family sans
13742 magenta
13743 \family default
13744
13745 \family sans
13746 black
13747 \family default
13748  and 
13749 \family sans
13750 white
13751 \end_layout
13752
13753 \begin_layout Standard
13754 \begin_inset VSpace medskip
13755 \end_inset
13756
13757
13758 \end_layout
13759
13760 \begin_layout Standard
13761 You can also define your own color with the command
13762 \end_layout
13763
13764 \begin_layout Standard
13765
13766 \series bold
13767
13768 \backslash
13769 def\SpecialChar \textcompwordmark{}
13770 inecolor{color name}{color model}{color values}
13771 \end_layout
13772
13773 \begin_layout Standard
13774 The color model can be
13775 \end_layout
13776
13777 \begin_layout Labeling
13778 \labelwidthstring 00.00.0000
13779 cmyk: cyan, magenta, yellow, black
13780 \end_layout
13781
13782 \begin_layout Labeling
13783 \labelwidthstring 00.00.0000
13784 rgb: red, green blue
13785 \end_layout
13786
13787 \begin_layout Labeling
13788 \labelwidthstring 00.00.0000
13789 gray gray
13790 \end_layout
13791
13792 \begin_layout Standard
13793 and the color values are comma separated numbers between 0 and 1 describing
13794  the factor for the corresponding color of the color model.
13795 \end_layout
13796
13797 \begin_layout Standard
13798 You can e.\InsetSpace \thinspace{}
13799 g.\InsetSpace ~
13800 define the color "
13801 \emph on
13802 darkgreen
13803 \emph default
13804 " in the preamble with
13805 \end_layout
13806
13807 \begin_layout Standard
13808
13809 \series bold
13810
13811 \backslash
13812 def\SpecialChar \textcompwordmark{}
13813 inecolor{darkgreen}{cmyk}{0.5, 0, 1, 0.5}
13814 \end_layout
13815
13816 \begin_layout Standard
13817 and the color "
13818 \emph on
13819 lightgray
13820 \emph default
13821 " with
13822 \end_layout
13823
13824 \begin_layout Standard
13825
13826 \series bold
13827
13828 \backslash
13829 def\SpecialChar \textcompwordmark{}
13830 inecolor{lightgray}{gray}{0.8}
13831 \end_layout
13832
13833 \begin_layout Standard
13834 \begin_inset VSpace medskip
13835 \end_inset
13836
13837
13838 \end_layout
13839
13840 \begin_layout Standard
13841 Lines are colored with the command
13842 \end_layout
13843
13844 \begin_layout Standard
13845
13846 \series bold
13847
13848 \backslash
13849 rowcolor{name of color}
13850 \end_layout
13851
13852 \begin_layout Standard
13853 and cells are colored with the command
13854 \end_layout
13855
13856 \begin_layout Standard
13857
13858 \series bold
13859
13860 \backslash
13861 cellcolor{name of color}
13862 \end_layout
13863
13864 \begin_layout Standard
13865 Both commands are inserted at the beginning of a cell as ERT.
13866 \end_layout
13867
13868 \begin_layout Standard
13869 To color characters in the table, mark the cells and use the LyX menu 
13870 \family sans
13871 Edit\SpecialChar \menuseparator
13872 Text\InsetSpace ~
13873 Style
13874 \family default
13875 .
13876  If a cell contains ERT mark only the characters, otherwise the colored
13877  ERT will cause LaTeX-errors.
13878 \end_layout
13879
13880 \begin_layout Standard
13881 \begin_inset VSpace bigskip
13882 \end_inset
13883
13884
13885 \end_layout
13886
13887 \begin_layout Standard
13888 To create Table\InsetSpace ~
13889
13890 \begin_inset LatexCommand ref
13891 reference "tab:Table-colored-using"
13892
13893 \end_inset
13894
13895  do the following: The color of the first column should be 
13896 \emph on
13897 darkgreen
13898 \emph default
13899 .
13900  So insert
13901 \end_layout
13902
13903 \begin_layout Standard
13904
13905 \series bold
13906 >{
13907 \backslash
13908 columncolor{darkgreen}
13909 \backslash
13910 centering}c
13911 \end_layout
13912
13913 \begin_layout Standard
13914 as LaTeX-argument for this column.
13915  The first row should be blue, therefore the ERT command
13916 \end_layout
13917
13918 \begin_layout Standard
13919
13920 \series bold
13921
13922 \backslash
13923 rowcolow{cyan}
13924 \end_layout
13925
13926 \begin_layout Standard
13927 is inserted to the first cell of this row.
13928  Note that this overwrites the column color for the first cell.
13929  The last cell of the last row is colored magenta by inserting the ERT command
13930 \end_layout
13931
13932 \begin_layout Standard
13933
13934 \series bold
13935
13936 \backslash
13937 cellcolor{magenta}
13938 \end_layout
13939
13940 \begin_layout Standard
13941 The characters could now be colored using the menu 
13942 \family sans
13943 Edit\SpecialChar \menuseparator
13944 Text\InsetSpace ~
13945 Style
13946 \family default
13947 .
13948 \end_layout
13949
13950 \begin_layout Standard
13951 \begin_inset Float table
13952 placement h
13953 wide false
13954 sideways false
13955 status open
13956
13957 \begin_layout Standard
13958 \begin_inset Caption
13959
13960 \begin_layout Standard
13961 \begin_inset LatexCommand label
13962 name "tab:Table-colored-using"
13963
13964 \end_inset
13965
13966 Table colored using the package 
13967 \series bold
13968 colortbl
13969 \series default
13970
13971 \begin_inset OptArg
13972 status collapsed
13973
13974 \begin_layout Standard
13975 Table with colortbl
13976 \end_layout
13977
13978 \end_inset
13979
13980
13981 \end_layout
13982
13983 \end_inset
13984
13985
13986 \end_layout
13987
13988 \begin_layout Standard
13989 \align center
13990 \begin_inset Tabular
13991 <lyxtabular version="3" rows="3" columns="3">
13992 <features>
13993 <column alignment="center" valignment="top" leftline="true" width="0" special=">{\columncolor{darkgreen}\centering}c">
13994 <column alignment="center" valignment="top" width="0">
13995 <column alignment="center" valignment="top" width="0">
13996 <row>
13997 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13998 \begin_inset Text
13999
14000 \begin_layout Standard
14001 \begin_inset ERT
14002 status collapsed
14003
14004 \begin_layout Standard
14005
14006
14007 \backslash
14008 rowcolor{cyan}
14009 \end_layout
14010
14011 \end_inset
14012
14013
14014 \color magenta
14015 a
14016 \end_layout
14017
14018 \end_inset
14019 </cell>
14020 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14021 \begin_inset Text
14022
14023 \begin_layout Standard
14024
14025 \color red
14026 b
14027 \end_layout
14028
14029 \end_inset
14030 </cell>
14031 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14032 \begin_inset Text
14033
14034 \begin_layout Standard
14035
14036 \color red
14037 c
14038 \end_layout
14039
14040 \end_inset
14041 </cell>
14042 </row>
14043 <row>
14044 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14045 \begin_inset Text
14046
14047 \begin_layout Standard
14048
14049 \color yellow
14050 d
14051 \end_layout
14052
14053 \end_inset
14054 </cell>
14055 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14056 \begin_inset Text
14057
14058 \begin_layout Standard
14059
14060 \color blue
14061 e
14062 \end_layout
14063
14064 \end_inset
14065 </cell>
14066 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14067 \begin_inset Text
14068
14069 \begin_layout Standard
14070
14071 \color blue
14072 f
14073 \end_layout
14074
14075 \end_inset
14076 </cell>
14077 </row>
14078 <row>
14079 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14080 \begin_inset Text
14081
14082 \begin_layout Standard
14083
14084 \color yellow
14085 g
14086 \end_layout
14087
14088 \end_inset
14089 </cell>
14090 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14091 \begin_inset Text
14092
14093 \begin_layout Standard
14094
14095 \color blue
14096 h
14097 \end_layout
14098
14099 \end_inset
14100 </cell>
14101 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14102 \begin_inset Text
14103
14104 \begin_layout Standard
14105 \begin_inset ERT
14106 status collapsed
14107
14108 \begin_layout Standard
14109
14110
14111 \backslash
14112 cellcolor{magenta}
14113 \end_layout
14114
14115 \end_inset
14116
14117
14118 \color green
14119 i
14120 \end_layout
14121
14122 \end_inset
14123 </cell>
14124 </row>
14125 </lyxtabular>
14126
14127 \end_inset
14128
14129
14130 \end_layout
14131
14132 \end_inset
14133
14134
14135 \end_layout
14136
14137 \begin_layout Subsection
14138 Colored Lines
14139 \begin_inset LatexCommand index
14140 name "Table Color ! for Lines"
14141
14142 \end_inset
14143
14144
14145 \begin_inset LatexCommand index
14146 name "Color ! for Table Lines"
14147
14148 \end_inset
14149
14150
14151 \end_layout
14152
14153 \begin_layout Standard
14154 As described in section\InsetSpace ~
14155
14156 \begin_inset LatexCommand ref
14157 reference "sub:Line-Thickness"
14158
14159 \end_inset
14160
14161 , the line thickness for all lines in a table can be adjusted with the length
14162  
14163 \series bold
14164
14165 \backslash
14166 arrayrulewidth
14167 \series default
14168 .
14169  It is set to 1.5\InsetSpace \thinspace{}
14170 pt for all tables of this section.
14171 \begin_inset ERT
14172 status collapsed
14173
14174 \begin_layout Standard
14175
14176
14177 \backslash
14178 setlength{
14179 \backslash
14180 arrayrulewidth}{1.5pt}
14181 \end_layout
14182
14183 \end_inset
14184
14185
14186 \end_layout
14187
14188 \begin_layout Standard
14189 To color vertical lines for example with green, create the following column
14190  format in the document preamble, according to the description in section\InsetSpace ~
14191
14192 \begin_inset LatexCommand ref
14193 reference "sub:Customized-Format"
14194
14195 \end_inset
14196
14197 :
14198 \end_layout
14199
14200 \begin_layout Standard
14201
14202 \series bold
14203
14204 \backslash
14205 newcolumntype{W}{!{
14206 \backslash
14207 color{green}
14208 \backslash
14209 vline}}
14210 \end_layout
14211
14212 \begin_layout Standard
14213 For Table\InsetSpace ~
14214
14215 \begin_inset LatexCommand ref
14216 reference "tab:Table-with-vertical-colored"
14217
14218 \end_inset
14219
14220  the LaTeX-argument
14221 \end_layout
14222
14223 \begin_layout Standard
14224
14225 \series bold
14226 WcW
14227 \end_layout
14228
14229 \begin_layout Standard
14230 was used for the last column and
14231 \end_layout
14232
14233 \begin_layout Standard
14234
14235 \series bold
14236 Wc
14237 \end_layout
14238
14239 \begin_layout Standard
14240 for the other columns.
14241 \end_layout
14242
14243 \begin_layout Standard
14244 If you want to have several colors, define more column formats.
14245 \end_layout
14246
14247 \begin_layout Standard
14248 \begin_inset Float table
14249 wide false
14250 sideways false
14251 status open
14252
14253 \begin_layout Standard
14254 \begin_inset Caption
14255
14256 \begin_layout Standard
14257 \begin_inset LatexCommand label
14258 name "tab:Table-with-vertical-colored"
14259
14260 \end_inset
14261
14262 Table with colored vertical lines
14263 \end_layout
14264
14265 \end_inset
14266
14267
14268 \end_layout
14269
14270 \begin_layout Standard
14271 \align center
14272 \begin_inset Tabular
14273 <lyxtabular version="3" rows="3" columns="3">
14274 <features>
14275 <column alignment="center" valignment="top" leftline="true" width="0" special="Wc">
14276 <column alignment="center" valignment="top" width="0" special="Wc">
14277 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0" special="WcW">
14278 <row topline="true">
14279 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14280 \begin_inset Text
14281
14282 \begin_layout Standard
14283 sd
14284 \end_layout
14285
14286 \end_inset
14287 </cell>
14288 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14289 \begin_inset Text
14290
14291 \begin_layout Standard
14292
14293 \end_layout
14294
14295 \end_inset
14296 </cell>
14297 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14298 \begin_inset Text
14299
14300 \begin_layout Standard
14301
14302 \end_layout
14303
14304 \end_inset
14305 </cell>
14306 </row>
14307 <row topline="true">
14308 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14309 \begin_inset Text
14310
14311 \begin_layout Standard
14312
14313 \end_layout
14314
14315 \end_inset
14316 </cell>
14317 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14318 \begin_inset Text
14319
14320 \begin_layout Standard
14321 sd
14322 \end_layout
14323
14324 \end_inset
14325 </cell>
14326 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14327 \begin_inset Text
14328
14329 \begin_layout Standard
14330
14331 \end_layout
14332
14333 \end_inset
14334 </cell>
14335 </row>
14336 <row topline="true" bottomline="true">
14337 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14338 \begin_inset Text
14339
14340 \begin_layout Standard
14341
14342 \end_layout
14343
14344 \end_inset
14345 </cell>
14346 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14347 \begin_inset Text
14348
14349 \begin_layout Standard
14350
14351 \end_layout
14352
14353 \end_inset
14354 </cell>
14355 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14356 \begin_inset Text
14357
14358 \begin_layout Standard
14359 sd
14360 \end_layout
14361
14362 \end_inset
14363 </cell>
14364 </row>
14365 </lyxtabular>
14366
14367 \end_inset
14368
14369
14370 \end_layout
14371
14372 \end_inset
14373
14374
14375 \end_layout
14376
14377 \begin_layout Standard
14378 \begin_inset VSpace bigskip
14379 \end_inset
14380
14381 To color horizontal lines for example with red, like in Table\InsetSpace ~
14382
14383 \begin_inset LatexCommand ref
14384 reference "tab:Table-with-horizontal-colored"
14385
14386 \end_inset
14387
14388 , insert these commands in ERT before the table or table float:
14389 \end_layout
14390
14391 \begin_layout Standard
14392
14393 \series bold
14394
14395 \backslash
14396 let
14397 \backslash
14398 myHlineC
14399 \backslash
14400 hline
14401 \newline
14402
14403 \backslash
14404 renewcommand{
14405 \backslash
14406 hline}{
14407 \backslash
14408 arrayrulecolor{red}
14409 \backslash
14410 myHlineC
14411 \backslash
14412 arrayrulecolor{black}}
14413 \end_layout
14414
14415 \begin_layout Standard
14416 \begin_inset ERT
14417 status collapsed
14418
14419 \begin_layout Standard
14420
14421
14422 \backslash
14423 let
14424 \backslash
14425 myHlineC
14426 \backslash
14427 hline
14428 \end_layout
14429
14430 \begin_layout Standard
14431
14432
14433 \backslash
14434 renewcommand{
14435 \backslash
14436 hline}{
14437 \backslash
14438 arrayrulecolor{red}
14439 \backslash
14440 myHlineC
14441 \backslash
14442 arrayrulecolor{black}}
14443 \end_layout
14444
14445 \end_inset
14446
14447
14448 \begin_inset Float table
14449 wide false
14450 sideways false
14451 status open
14452
14453 \begin_layout Standard
14454 \begin_inset Caption
14455
14456 \begin_layout Standard
14457 \begin_inset LatexCommand label
14458 name "tab:Table-with-horizontal-colored"
14459
14460 \end_inset
14461
14462 Table with colored horizontal lines
14463 \end_layout
14464
14465 \end_inset
14466
14467
14468 \end_layout
14469
14470 \begin_layout Standard
14471 \align center
14472 \begin_inset Tabular
14473 <lyxtabular version="3" rows="3" columns="3">
14474 <features>
14475 <column alignment="center" valignment="top" leftline="true" width="0">
14476 <column alignment="center" valignment="top" leftline="true" width="0">
14477 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
14478 <row topline="true">
14479 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14480 \begin_inset Text
14481
14482 \begin_layout Standard
14483 sd
14484 \end_layout
14485
14486 \end_inset
14487 </cell>
14488 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14489 \begin_inset Text
14490
14491 \begin_layout Standard
14492
14493 \end_layout
14494
14495 \end_inset
14496 </cell>
14497 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14498 \begin_inset Text
14499
14500 \begin_layout Standard
14501
14502 \end_layout
14503
14504 \end_inset
14505 </cell>
14506 </row>
14507 <row topline="true">
14508 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14509 \begin_inset Text
14510
14511 \begin_layout Standard
14512
14513 \end_layout
14514
14515 \end_inset
14516 </cell>
14517 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14518 \begin_inset Text
14519
14520 \begin_layout Standard
14521 sd
14522 \end_layout
14523
14524 \end_inset
14525 </cell>
14526 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14527 \begin_inset Text
14528
14529 \begin_layout Standard
14530
14531 \end_layout
14532
14533 \end_inset
14534 </cell>
14535 </row>
14536 <row topline="true" bottomline="true">
14537 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14538 \begin_inset Text
14539
14540 \begin_layout Standard
14541
14542 \end_layout
14543
14544 \end_inset
14545 </cell>
14546 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14547 \begin_inset Text
14548
14549 \begin_layout Standard
14550
14551 \end_layout
14552
14553 \end_inset
14554 </cell>
14555 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14556 \begin_inset Text
14557
14558 \begin_layout Standard
14559 sd
14560 \end_layout
14561
14562 \end_inset
14563 </cell>
14564 </row>
14565 </lyxtabular>
14566
14567 \end_inset
14568
14569
14570 \end_layout
14571
14572 \end_inset
14573
14574
14575 \end_layout
14576
14577 \begin_layout Standard
14578 \begin_inset ERT
14579 status collapsed
14580
14581 \begin_layout Standard
14582
14583
14584 \backslash
14585 pagebreak 
14586 \end_layout
14587
14588 \end_inset
14589
14590
14591 \end_layout
14592
14593 \begin_layout Standard
14594 To return to the default line color black, insert this command in ERT behind
14595  the table or table float:
14596 \end_layout
14597
14598 \begin_layout Standard
14599
14600 \series bold
14601
14602 \backslash
14603 renewcommand{
14604 \backslash
14605 hline}{
14606 \backslash
14607 myHlineC}
14608 \end_layout
14609
14610 \begin_layout Standard
14611 Table\InsetSpace ~
14612
14613 \begin_inset LatexCommand ref
14614 reference "tab:Table-with-colored"
14615
14616 \end_inset
14617
14618  is an example with colored vertical and horizontal lines.
14619 \end_layout
14620
14621 \begin_layout Standard
14622 \begin_inset Float table
14623 wide false
14624 sideways false
14625 status open
14626
14627 \begin_layout Standard
14628 \begin_inset Caption
14629
14630 \begin_layout Standard
14631 \begin_inset LatexCommand label
14632 name "tab:Table-with-colored"
14633
14634 \end_inset
14635
14636 Table with colored lines
14637 \end_layout
14638
14639 \end_inset
14640
14641
14642 \end_layout
14643
14644 \begin_layout Standard
14645 \align center
14646 \begin_inset Tabular
14647 <lyxtabular version="3" rows="3" columns="3">
14648 <features>
14649 <column alignment="center" valignment="top" leftline="true" width="0" special="Wc">
14650 <column alignment="center" valignment="top" width="0" special="Wc">
14651 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0" special="WcW">
14652 <row topline="true">
14653 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14654 \begin_inset Text
14655
14656 \begin_layout Standard
14657 sd
14658 \end_layout
14659
14660 \end_inset
14661 </cell>
14662 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14663 \begin_inset Text
14664
14665 \begin_layout Standard
14666
14667 \end_layout
14668
14669 \end_inset
14670 </cell>
14671 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14672 \begin_inset Text
14673
14674 \begin_layout Standard
14675
14676 \end_layout
14677
14678 \end_inset
14679 </cell>
14680 </row>
14681 <row topline="true">
14682 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14683 \begin_inset Text
14684
14685 \begin_layout Standard
14686
14687 \end_layout
14688
14689 \end_inset
14690 </cell>
14691 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14692 \begin_inset Text
14693
14694 \begin_layout Standard
14695 sd
14696 \end_layout
14697
14698 \end_inset
14699 </cell>
14700 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14701 \begin_inset Text
14702
14703 \begin_layout Standard
14704
14705 \end_layout
14706
14707 \end_inset
14708 </cell>
14709 </row>
14710 <row topline="true" bottomline="true" topspace="default">
14711 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14712 \begin_inset Text
14713
14714 \begin_layout Standard
14715
14716 \end_layout
14717
14718 \end_inset
14719 </cell>
14720 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14721 \begin_inset Text
14722
14723 \begin_layout Standard
14724
14725 \end_layout
14726
14727 \end_inset
14728 </cell>
14729 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14730 \begin_inset Text
14731
14732 \begin_layout Standard
14733 sd
14734 \end_layout
14735
14736 \end_inset
14737 </cell>
14738 </row>
14739 </lyxtabular>
14740
14741 \end_inset
14742
14743
14744 \end_layout
14745
14746 \end_inset
14747
14748
14749 \end_layout
14750
14751 \begin_layout Standard
14752 \begin_inset ERT
14753 status collapsed
14754
14755 \begin_layout Standard
14756
14757
14758 \backslash
14759 renewcommand{
14760 \backslash
14761 hline}{
14762 \backslash
14763 myHlineC}
14764 \end_layout
14765
14766 \end_inset
14767
14768
14769 \end_layout
14770
14771 \begin_layout Standard
14772 \begin_inset ERT
14773 status collapsed
14774
14775 \begin_layout Standard
14776
14777
14778 \backslash
14779 setlength{
14780 \backslash
14781 arrayrulewidth}{0.4pt}
14782 \end_layout
14783
14784 \end_inset
14785
14786
14787 \end_layout
14788
14789 \begin_layout Section
14790 Table Customization
14791 \begin_inset LatexCommand index
14792 name "Table Customization"
14793
14794 \end_inset
14795
14796
14797 \begin_inset LatexCommand index
14798 name "Table ! Customization"
14799
14800 \end_inset
14801
14802
14803 \end_layout
14804
14805 \begin_layout Subsection
14806 Row Spacing
14807 \begin_inset LatexCommand label
14808 name "sub:Row-Spacing"
14809
14810 \end_inset
14811
14812
14813 \begin_inset LatexCommand index
14814 name "Table Customization ! Row Spacing"
14815
14816 \end_inset
14817
14818
14819 \end_layout
14820
14821 \begin_layout Standard
14822 You can add vertical space to table rows in the 
14823 \family sans
14824 Borders
14825 \family default
14826  tab of the table dialog.
14827  You find there three possibilities:
14828 \end_layout
14829
14830 \begin_layout Description
14831 Top\InsetSpace ~
14832 of\InsetSpace ~
14833 row will add space above the characters of the table row.
14834  If the table is a formal table
14835 \begin_inset Foot
14836 status collapsed
14837
14838 \begin_layout Standard
14839 Formal tables are explained in section\InsetSpace ~
14840
14841 \begin_inset LatexCommand ref
14842 reference "sec:Formal-Tables"
14843
14844 \end_inset
14845
14846 .
14847 \end_layout
14848
14849 \end_inset
14850
14851  LyX will insert as default 0.5\InsetSpace \thinspace{}
14852 em space.
14853  For normal tables the inserted space will unfortunately destroy the vertical
14854  table lines as in the following table: 
14855 \begin_inset Tabular
14856 <lyxtabular version="3" rows="3" columns="1">
14857 <features>
14858 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
14859 <row topline="true">
14860 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14861 \begin_inset Text
14862
14863 \begin_layout Standard
14864 A
14865 \end_layout
14866
14867 \end_inset
14868 </cell>
14869 </row>
14870 <row topline="true" topspace="3mm">
14871 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14872 \begin_inset Text
14873
14874 \begin_layout Standard
14875 3\InsetSpace \thinspace{}
14876 mm space top of row
14877 \end_layout
14878
14879 \end_inset
14880 </cell>
14881 </row>
14882 <row topline="true" bottomline="true">
14883 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14884 \begin_inset Text
14885
14886 \begin_layout Standard
14887 C
14888 \end_layout
14889
14890 \end_inset
14891 </cell>
14892 </row>
14893 </lyxtabular>
14894
14895 \end_inset
14896
14897
14898 \newline
14899 So inserting space to the top of row for normal tables is only useful when
14900  you don't have vertical lines.
14901 \end_layout
14902
14903 \begin_layout Description
14904 Bottom\InsetSpace ~
14905 of\InsetSpace ~
14906 row will add space below the characters of the table row.
14907  If the table is a formal table LyX will insert as default 0.5\InsetSpace \thinspace{}
14908 em space, for
14909  normal tables the default size is 2\InsetSpace \thinspace{}
14910 pt.
14911 \end_layout
14912
14913 \begin_layout Description
14914 Between\InsetSpace ~
14915 rows only has an effect when you have selected the whole table row
14916  before.
14917  The space is added between the current and the following row.
14918  If the table is a formal table LyX will insert as default 0.5\InsetSpace \thinspace{}
14919 em space.
14920  For normal tables the inserted space will unfortunately destroy the vertical
14921  table lines as in the following table: 
14922 \begin_inset Tabular
14923 <lyxtabular version="3" rows="3" columns="1">
14924 <features>
14925 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
14926 <row topline="true">
14927 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14928 \begin_inset Text
14929
14930 \begin_layout Standard
14931 A
14932 \end_layout
14933
14934 \end_inset
14935 </cell>
14936 </row>
14937 <row topline="true" interlinespace="3mm">
14938 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14939 \begin_inset Text
14940
14941 \begin_layout Standard
14942 \begin_inset Formula $\downarrow$
14943 \end_inset
14944
14945  3\InsetSpace \thinspace{}
14946 mm space between row 
14947 \begin_inset Formula $\downarrow$
14948 \end_inset
14949
14950
14951 \end_layout
14952
14953 \end_inset
14954 </cell>
14955 </row>
14956 <row topline="true" bottomline="true">
14957 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14958 \begin_inset Text
14959
14960 \begin_layout Standard
14961 \begin_inset Formula $\uparrow$
14962 \end_inset
14963
14964  3\InsetSpace \thinspace{}
14965 mm space between row 
14966 \begin_inset Formula $\uparrow$
14967 \end_inset
14968
14969
14970 \end_layout
14971
14972 \end_inset
14973 </cell>
14974 </row>
14975 </lyxtabular>
14976
14977 \end_inset
14978
14979
14980 \newline
14981 So inserting space to the top of row for normal tables is only useful when
14982  you don't have vertical lines.
14983 \end_layout
14984
14985 \begin_layout Standard
14986 When you want to add extra height to all cells of all tables, you can do
14987  this with the following preamble line:
14988 \end_layout
14989
14990 \begin_layout Standard
14991
14992 \series bold
14993
14994 \backslash
14995 setlength{
14996 \backslash
14997 extrarowheight}{height}
14998 \end_layout
14999
15000 \begin_layout Standard
15001 But this has the disadvantage that the cell texts are no longer exactly
15002  vertically centered.
15003 \end_layout
15004
15005 \begin_layout Subsection
15006 Special Cell Alignment
15007 \begin_inset LatexCommand index
15008 name "Table Customization ! Special Cell Alignment"
15009
15010 \end_inset
15011
15012
15013 \end_layout
15014
15015 \begin_layout Standard
15016 Sometimes it looks better when the cell entries of a column are aligned
15017  with a special character, e.\InsetSpace \thinspace{}
15018 g.\InsetSpace ~
15019 with the decimal separator as in Table\InsetSpace ~
15020
15021 \begin_inset LatexCommand ref
15022 reference "tab:Table-cells-of"
15023
15024 \end_inset
15025
15026 .
15027 \end_layout
15028
15029 \begin_layout Standard
15030 \begin_inset Float table
15031 placement h
15032 wide false
15033 sideways false
15034 status open
15035
15036 \begin_layout Standard
15037 \begin_inset Caption
15038
15039 \begin_layout Standard
15040 \begin_inset LatexCommand label
15041 name "tab:Table-cells-of"
15042
15043 \end_inset
15044
15045 Table cells of a column aligned with the decimal separator.
15046 \end_layout
15047
15048 \end_inset
15049
15050
15051 \end_layout
15052
15053 \begin_layout Standard
15054 \align center
15055 \begin_inset Tabular
15056 <lyxtabular version="3" rows="4" columns="2">
15057 <features>
15058 <column alignment="right" valignment="top" width="0">
15059 <column alignment="left" valignment="top" width="0" special="@{}l">
15060 <row bottomline="true">
15061 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" usebox="none">
15062 \begin_inset Text
15063
15064 \begin_layout Standard
15065 heading
15066 \end_layout
15067
15068 \end_inset
15069 </cell>
15070 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15071 \begin_inset Text
15072
15073 \begin_layout Standard
15074
15075 \end_layout
15076
15077 \end_inset
15078 </cell>
15079 </row>
15080 <row>
15081 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15082 \begin_inset Text
15083
15084 \begin_layout Standard
15085 12.
15086 \end_layout
15087
15088 \end_inset
15089 </cell>
15090 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15091 \begin_inset Text
15092
15093 \begin_layout Standard
15094 6
15095 \end_layout
15096
15097 \end_inset
15098 </cell>
15099 </row>
15100 <row>
15101 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15102 \begin_inset Text
15103
15104 \begin_layout Standard
15105 0.
15106 \end_layout
15107
15108 \end_inset
15109 </cell>
15110 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15111 \begin_inset Text
15112
15113 \begin_layout Standard
15114 68
15115 \end_layout
15116
15117 \end_inset
15118 </cell>
15119 </row>
15120 <row>
15121 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15122 \begin_inset Text
15123
15124 \begin_layout Standard
15125 -123.
15126 \end_layout
15127
15128 \end_inset
15129 </cell>
15130 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15131 \begin_inset Text
15132
15133 \begin_layout Standard
15134 0
15135 \end_layout
15136
15137 \end_inset
15138 </cell>
15139 </row>
15140 </lyxtabular>
15141
15142 \end_inset
15143
15144
15145 \end_layout
15146
15147 \end_inset
15148
15149
15150 \end_layout
15151
15152 \begin_layout Standard
15153 This table was created with a 4×2 table.
15154  The heading is a centered multicolumn.
15155  The first column is right-aligned and contains the digits before the decimal
15156  point and the decimal point.
15157  The second column is left aligned and contains the digits after the decimal
15158  point.
15159  To omit the space that is normally between two table columns, use the following
15160  LaTeX-argument for the second column:
15161 \end_layout
15162
15163 \begin_layout Standard
15164
15165 \series bold
15166 @{}l
15167 \end_layout
15168
15169 \begin_layout Standard
15170 If you need a vertical line right beside the second column, use this LaTeX-argum
15171 ent instead: 
15172 \series bold
15173 @{}l|
15174 \end_layout
15175
15176 \begin_layout Standard
15177 Table\InsetSpace ~
15178
15179 \begin_inset LatexCommand ref
15180 reference "tab:Several-table-cell"
15181
15182 \end_inset
15183
15184  shows some example alignments.
15185  For the alignment with the relation sign, you must add the second smallest
15186  math-space at the beginning of the last column to get the correct space
15187  surrounding the relation sign.
15188 \end_layout
15189
15190 \begin_layout Standard
15191 \begin_inset Float table
15192 wide false
15193 sideways false
15194 status open
15195
15196 \begin_layout Standard
15197 \begin_inset Caption
15198
15199 \begin_layout Standard
15200 \begin_inset LatexCommand label
15201 name "tab:Several-table-cell"
15202
15203 \end_inset
15204
15205 Several table cell alignments.
15206 \end_layout
15207
15208 \end_inset
15209
15210
15211 \end_layout
15212
15213 \begin_layout Standard
15214 \align center
15215 \begin_inset Tabular
15216 <lyxtabular version="3" rows="4" columns="6">
15217 <features>
15218 <column alignment="right" valignment="top" width="0">
15219 <column alignment="left" valignment="top" rightline="true" width="0" special="@{}l|">
15220 <column alignment="right" valignment="top" width="0">
15221 <column alignment="left" valignment="top" rightline="true" width="0" special="@{}l|">
15222 <column alignment="right" valignment="top" width="0">
15223 <column alignment="left" valignment="top" rightline="true" width="0" special="@{}l">
15224 <row bottomline="true">
15225 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
15226 \begin_inset Text
15227
15228 \begin_layout Standard
15229 units
15230 \end_layout
15231
15232 \end_inset
15233 </cell>
15234 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15235 \begin_inset Text
15236
15237 \begin_layout Standard
15238
15239 \end_layout
15240
15241 \end_inset
15242 </cell>
15243 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
15244 \begin_inset Text
15245
15246 \begin_layout Standard
15247 exponents
15248 \end_layout
15249
15250 \end_inset
15251 </cell>
15252 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15253 \begin_inset Text
15254
15255 \begin_layout Standard
15256
15257 \end_layout
15258
15259 \end_inset
15260 </cell>
15261 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" usebox="none">
15262 \begin_inset Text
15263
15264 \begin_layout Standard
15265 relations
15266 \end_layout
15267
15268 \end_inset
15269 </cell>
15270 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15271 \begin_inset Text
15272
15273 \begin_layout Standard
15274
15275 \end_layout
15276
15277 \end_inset
15278 </cell>
15279 </row>
15280 <row>
15281 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15282 \begin_inset Text
15283
15284 \begin_layout Standard
15285 12×
15286 \end_layout
15287
15288 \end_inset
15289 </cell>
15290 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15291 \begin_inset Text
15292
15293 \begin_layout Standard
15294 24\InsetSpace \thinspace{}
15295 bottles
15296 \end_layout
15297
15298 \end_inset
15299 </cell>
15300 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15301 \begin_inset Text
15302
15303 \begin_layout Standard
15304 \begin_inset Formula $10\cdot$
15305 \end_inset
15306
15307
15308 \end_layout
15309
15310 \end_inset
15311 </cell>
15312 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15313 \begin_inset Text
15314
15315 \begin_layout Standard
15316 \begin_inset Formula $10^{\mbox{-}17}$
15317 \end_inset
15318
15319
15320 \end_layout
15321
15322 \end_inset
15323 </cell>
15324 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15325 \begin_inset Text
15326
15327 \begin_layout Standard
15328 \begin_inset Formula $\Gamma(t)\propto$
15329 \end_inset
15330
15331
15332 \end_layout
15333
15334 \end_inset
15335 </cell>
15336 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15337 \begin_inset Text
15338
15339 \begin_layout Standard
15340 \begin_inset Formula $\:\Upsilon(t)$
15341 \end_inset
15342
15343
15344 \end_layout
15345
15346 \end_inset
15347 </cell>
15348 </row>
15349 <row>
15350 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15351 \begin_inset Text
15352
15353 \begin_layout Standard
15354 1024×
15355 \end_layout
15356
15357 \end_inset
15358 </cell>
15359 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15360 \begin_inset Text
15361
15362 \begin_layout Standard
15363 768\InsetSpace \thinspace{}
15364 Pixels
15365 \end_layout
15366
15367 \end_inset
15368 </cell>
15369 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15370 \begin_inset Text
15371
15372 \begin_layout Standard
15373 \begin_inset Formula $5.78\cdot$
15374 \end_inset
15375
15376
15377 \end_layout
15378
15379 \end_inset
15380 </cell>
15381 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15382 \begin_inset Text
15383
15384 \begin_layout Standard
15385 \begin_inset Formula $10^{7}$
15386 \end_inset
15387
15388
15389 \end_layout
15390
15391 \end_inset
15392 </cell>
15393 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15394 \begin_inset Text
15395
15396 \begin_layout Standard
15397 \begin_inset Formula $A\ne$
15398 \end_inset
15399
15400
15401 \end_layout
15402
15403 \end_inset
15404 </cell>
15405 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15406 \begin_inset Text
15407
15408 \begin_layout Standard
15409 \begin_inset Formula $\: B_{\mathrm{red}}$
15410 \end_inset
15411
15412
15413 \end_layout
15414
15415 \end_inset
15416 </cell>
15417 </row>
15418 <row>
15419 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15420 \begin_inset Text
15421
15422 \begin_layout Standard
15423 32×
15424 \end_layout
15425
15426 \end_inset
15427 </cell>
15428 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15429 \begin_inset Text
15430
15431 \begin_layout Standard
15432 6\InsetSpace \thinspace{}
15433 cm
15434 \end_layout
15435
15436 \end_inset
15437 </cell>
15438 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15439 \begin_inset Text
15440
15441 \begin_layout Standard
15442 -
15443 \begin_inset Formula $33.5\cdot$
15444 \end_inset
15445
15446
15447 \end_layout
15448
15449 \end_inset
15450 </cell>
15451 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15452 \begin_inset Text
15453
15454 \begin_layout Standard
15455 \begin_inset Formula $10^{4}$
15456 \end_inset
15457
15458
15459 \end_layout
15460
15461 \end_inset
15462 </cell>
15463 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15464 \begin_inset Text
15465
15466 \begin_layout Standard
15467 \begin_inset Formula $\sin(\alpha)\ge$
15468 \end_inset
15469
15470
15471 \end_layout
15472
15473 \end_inset
15474 </cell>
15475 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15476 \begin_inset Text
15477
15478 \begin_layout Standard
15479 \begin_inset Formula $\:\sin(\beta)$
15480 \end_inset
15481
15482
15483 \end_layout
15484
15485 \end_inset
15486 </cell>
15487 </row>
15488 </lyxtabular>
15489
15490 \end_inset
15491
15492
15493 \end_layout
15494
15495 \end_inset
15496
15497
15498 \end_layout
15499
15500 \begin_layout Standard
15501 \begin_inset VSpace bigskip
15502 \end_inset
15503
15504 There is also the LaTeX-package 
15505 \series bold
15506 dcolumn
15507 \series default
15508
15509 \begin_inset LatexCommand index
15510 name "LaTeX-packages ! dcolumn"
15511
15512 \end_inset
15513
15514  that provides table cell alignments.
15515  But this unfortunately treats the cell entries as math and doesn't allow
15516  formulas in table cells: The first column of Table\InsetSpace ~
15517
15518 \begin_inset LatexCommand ref
15519 reference "tab:Several-table-cell"
15520
15521 \end_inset
15522
15523  will look with 
15524 \series bold
15525 dcolumn
15526 \series default
15527  like the first column in Table\InsetSpace ~
15528
15529 \begin_inset LatexCommand ref
15530 reference "tab:Alignments-when"
15531
15532 \end_inset
15533
15534  and only with some tricks like the expected.
15535  The alignment of the second and third column of Table\InsetSpace ~
15536
15537 \begin_inset LatexCommand ref
15538 reference "tab:Several-table-cell"
15539
15540 \end_inset
15541
15542  is not possible with 
15543 \series bold
15544 dcolumn
15545 \series default
15546 .
15547 \end_layout
15548
15549 \begin_layout Standard
15550 \begin_inset Float table
15551 placement h
15552 wide false
15553 sideways false
15554 status open
15555
15556 \begin_layout Standard
15557 \begin_inset Caption
15558
15559 \begin_layout Standard
15560 \begin_inset LatexCommand label
15561 name "tab:Alignments-when"
15562
15563 \end_inset
15564
15565 Alignments when LaTeX-package dcolumn is used.
15566  For the second and third alignment some tricks were used.
15567 \end_layout
15568
15569 \end_inset
15570
15571
15572 \end_layout
15573
15574 \begin_layout Standard
15575 \align center
15576 \begin_inset Tabular
15577 <lyxtabular version="3" rows="4" columns="3">
15578 <features>
15579 <column alignment="center" valignment="top" rightline="true" width="0" special="D{×}{\times}{-1}|">
15580 <column alignment="center" valignment="top" width="0" special="D{×}{\times}{4.9}|">
15581 <column alignment="center" valignment="top" rightline="true" width="0" special="D{~}{\,}{9.7}">
15582 <row bottomline="true">
15583 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
15584 \begin_inset Text
15585
15586 \begin_layout Standard
15587 units
15588 \end_layout
15589
15590 \end_inset
15591 </cell>
15592 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
15593 \begin_inset Text
15594
15595 \begin_layout Standard
15596 units
15597 \end_layout
15598
15599 \end_inset
15600 </cell>
15601 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" usebox="none">
15602 \begin_inset Text
15603
15604 \begin_layout Standard
15605 units
15606 \end_layout
15607
15608 \end_inset
15609 </cell>
15610 </row>
15611 <row>
15612 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15613 \begin_inset Text
15614
15615 \begin_layout Standard
15616 12×24\InsetSpace \thinspace{}
15617 bottles
15618 \end_layout
15619
15620 \end_inset
15621 </cell>
15622 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15623 \begin_inset Text
15624
15625 \begin_layout Standard
15626 12×24\InsetSpace \thinspace{}
15627
15628 \begin_inset Formula $\mbox{bottles}$
15629 \end_inset
15630
15631
15632 \end_layout
15633
15634 \end_inset
15635 </cell>
15636 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15637 \begin_inset Text
15638
15639 \begin_layout Standard
15640 12×24~
15641 \begin_inset Formula $\mbox{bottles}$
15642 \end_inset
15643
15644
15645 \end_layout
15646
15647 \end_inset
15648 </cell>
15649 </row>
15650 <row>
15651 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15652 \begin_inset Text
15653
15654 \begin_layout Standard
15655 1024×768\InsetSpace \thinspace{}
15656 Pixels
15657 \end_layout
15658
15659 \end_inset
15660 </cell>
15661 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15662 \begin_inset Text
15663
15664 \begin_layout Standard
15665 1024×768\InsetSpace \thinspace{}
15666
15667 \begin_inset Formula $\mbox{Pixels}$
15668 \end_inset
15669
15670
15671 \end_layout
15672
15673 \end_inset
15674 </cell>
15675 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15676 \begin_inset Text
15677
15678 \begin_layout Standard
15679 1024×768~
15680 \begin_inset Formula $\mbox{Pixels}$
15681 \end_inset
15682
15683
15684 \end_layout
15685
15686 \end_inset
15687 </cell>
15688 </row>
15689 <row>
15690 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15691 \begin_inset Text
15692
15693 \begin_layout Standard
15694 32×6\InsetSpace \thinspace{}
15695 cm
15696 \end_layout
15697
15698 \end_inset
15699 </cell>
15700 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15701 \begin_inset Text
15702
15703 \begin_layout Standard
15704 32×6\InsetSpace \thinspace{}
15705
15706 \begin_inset Formula $\mbox{cm}$
15707 \end_inset
15708
15709
15710 \end_layout
15711
15712 \end_inset
15713 </cell>
15714 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15715 \begin_inset Text
15716
15717 \begin_layout Standard
15718 32×6~
15719 \begin_inset Formula $\mbox{cm}$
15720 \end_inset
15721
15722
15723 \end_layout
15724
15725 \end_inset
15726 </cell>
15727 </row>
15728 </lyxtabular>
15729
15730 \end_inset
15731
15732
15733 \end_layout
15734
15735 \end_inset
15736
15737
15738 \end_layout
15739
15740 \begin_layout Subsection
15741 Customized Cell/Column Format
15742 \begin_inset LatexCommand label
15743 name "sub:Customized-Format"
15744
15745 \end_inset
15746
15747
15748 \begin_inset LatexCommand index
15749 name "Table Customization ! Cell/Column Format"
15750
15751 \end_inset
15752
15753
15754 \end_layout
15755
15756 \begin_layout Standard
15757 Calculating the needed width for spanned columns like in section\InsetSpace ~
15758
15759 \begin_inset LatexCommand ref
15760 reference "sub:Multicolumn-Calculations"
15761
15762 \end_inset
15763
15764  is very annoying if you have several tables with multicolumn cells.
15765  To make life easier, you can define a cell/column format in the preamble,
15766  so that it can be used in all tables of the document.
15767  The format is defined with the command
15768 \end_layout
15769
15770 \begin_layout Standard
15771
15772 \series bold
15773
15774 \backslash
15775 newcolumntype{name of format}[number of arguments]{commands}
15776 \end_layout
15777
15778 \begin_layout Standard
15779 The format name may only consist of one letter.
15780  The letters 
15781 \emph on
15782 b
15783 \emph default
15784
15785 \emph on
15786 c
15787 \emph default
15788
15789 \emph on
15790 l
15791 \emph default
15792
15793 \emph on
15794 m
15795 \emph default
15796
15797 \emph on
15798 p
15799 \emph default
15800  and 
15801 \emph on
15802 r
15803 \emph default
15804  are predefined and cannot be used.
15805  But all letters are allowed as capitals.
15806 \end_layout
15807
15808 \begin_layout Standard
15809 \begin_inset VSpace medskip
15810 \end_inset
15811
15812
15813 \end_layout
15814
15815 \begin_layout Standard
15816 For vertically and horizontally centered multicolumn cells with a fixed
15817  width you can define the cell format
15818 \end_layout
15819
15820 \begin_layout Standard
15821
15822 \series bold
15823
15824 \backslash
15825 newcolumntype{M}[1]{>{
15826 \backslash
15827 centering
15828 \backslash
15829 hspace{0pt}}m{#1}}
15830 \end_layout
15831
15832 \begin_layout Standard
15833 where 
15834 \series bold
15835
15836 \backslash
15837 hspace{0pt}
15838 \series default
15839  avoids the problem of hyphenating the first word, as described in section\InsetSpace ~
15840
15841 \begin_inset LatexCommand ref
15842 reference "sub:Multiple-Lines-in"
15843
15844 \end_inset
15845
15846 .
15847  Now you can simply enter
15848 \end_layout
15849
15850 \begin_layout Standard
15851
15852 \series bold
15853 |M{width}
15854 \end_layout
15855
15856 \begin_layout Standard
15857 as LaTeX-argument in the table dialog to create a multicolumn.
15858 \end_layout
15859
15860 \begin_layout Standard
15861 \begin_inset VSpace bigskip
15862 \end_inset
15863
15864
15865 \end_layout
15866
15867 \begin_layout Standard
15868 For cells spanned by a multicolumn cell, you can define the format
15869 \end_layout
15870
15871 \begin_layout Standard
15872
15873 \series bold
15874
15875 \backslash
15876 newcolumntype{S}[2]{>{
15877 \backslash
15878 centering
15879 \backslash
15880 hspace{0pt}}
15881 \newline
15882
15883 \begin_inset ERT
15884 status collapsed
15885
15886 \begin_layout Standard
15887
15888
15889 \backslash
15890 phantom{
15891 \end_layout
15892
15893 \end_inset
15894
15895
15896 \backslash
15897 newcolumntype{S}[2]
15898 \begin_inset ERT
15899 status collapsed
15900
15901 \begin_layout Standard
15902
15903 }
15904 \end_layout
15905
15906 \end_inset
15907
15908 m{(#1+(2
15909 \backslash
15910 tabcolsep+
15911 \backslash
15912 arrayrulewidth)*(1-#2))/#2}}
15913 \end_layout
15914
15915 \begin_layout Standard
15916 This format uses equation 
15917 \begin_inset LatexCommand eqref
15918 reference "eq:Wgn"
15919
15920 \end_inset
15921
15922  to calculate the needed width so that each spanned cell has the same width.
15923 \end_layout
15924
15925 \begin_layout Standard
15926 You can now enter
15927 \end_layout
15928
15929 \begin_layout Standard
15930
15931 \series bold
15932 |S{width of multicolumn cell}{number of spanned columns}
15933 \end_layout
15934
15935 \begin_layout Standard
15936 as LaTeX-argument of the column.
15937 \end_layout
15938
15939 \begin_layout Standard
15940 \begin_inset VSpace bigskip
15941 \end_inset
15942
15943
15944 \end_layout
15945
15946 \begin_layout Standard
15947 For colored columns, you can define
15948 \end_layout
15949
15950 \begin_layout Standard
15951
15952 \series bold
15953
15954 \backslash
15955 newcolumntype{K}[1]{>{
15956 \backslash
15957 columncolor{#1}
15958 \backslash
15959 hspace{0pt}}c}
15960 \end_layout
15961
15962 \begin_layout Standard
15963 The 
15964 \begin_inset Quotes eld
15965 \end_inset
15966
15967 c
15968 \begin_inset Quotes erd
15969 \end_inset
15970
15971  at the end creates a column with a flexible width whose text is horizontally
15972  centered.
15973  You can now enter
15974 \end_layout
15975
15976 \begin_layout Standard
15977
15978 \series bold
15979 K{color name}
15980 \end_layout
15981
15982 \begin_layout Standard
15983 as LaTeX-argument.
15984 \end_layout
15985
15986 \begin_layout Standard
15987 \begin_inset VSpace bigskip
15988 \end_inset
15989
15990
15991 \end_layout
15992
15993 \begin_layout Standard
15994 To create Table\InsetSpace ~
15995
15996 \begin_inset LatexCommand ref
15997 reference "tab:Table-using-user-defined"
15998
15999 \end_inset
16000
16001  use the LaTeX-arguments
16002 \end_layout
16003
16004 \begin_layout Standard
16005
16006 \series bold
16007 |M{2.5cm}
16008 \end_layout
16009
16010 \begin_layout Standard
16011 for the first column and the multicolumn,
16012 \end_layout
16013
16014 \begin_layout Standard
16015
16016 \series bold
16017 |K{red}|
16018 \end_layout
16019
16020 \begin_layout Standard
16021 for the the last column, and
16022 \end_layout
16023
16024 \begin_layout Standard
16025
16026 \series bold
16027 |S{2.5cm}{2}
16028 \end_layout
16029
16030 \begin_layout Standard
16031 for the cells in the second column.
16032 \end_layout
16033
16034 \begin_layout Standard
16035 \begin_inset Float table
16036 placement h
16037 wide false
16038 sideways false
16039 status open
16040
16041 \begin_layout Standard
16042 \begin_inset Caption
16043
16044 \begin_layout Standard
16045 \begin_inset LatexCommand label
16046 name "tab:Table-using-user-defined"
16047
16048 \end_inset
16049
16050 Table using user-defined table formats
16051 \end_layout
16052
16053 \end_inset
16054
16055
16056 \end_layout
16057
16058 \begin_layout Standard
16059 \align center
16060 \begin_inset Tabular
16061 <lyxtabular version="3" rows="3" columns="4">
16062 <features>
16063 <column alignment="center" valignment="middle" leftline="true" width="2.5cm" special="|M{2.5cm}">
16064 <column alignment="center" valignment="middle" leftline="true" width="0" special="|S{2.5cm}{2}">
16065 <column alignment="center" valignment="middle" leftline="true" width="0">
16066 <column alignment="center" valignment="middle" leftline="true" rightline="true" width="0" special="|K{red}|">
16067 <row topline="true">
16068 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16069 \begin_inset Text
16070
16071 \begin_layout Standard
16072 verylongtablecellword
16073 \end_layout
16074
16075 \end_inset
16076 </cell>
16077 <cell multicolumn="1" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none" special="M{2.5cm}|">
16078 \begin_inset Text
16079
16080 \begin_layout Standard
16081 multiple lines multicolumn
16082 \end_layout
16083
16084 \end_inset
16085 </cell>
16086 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16087 \begin_inset Text
16088
16089 \begin_layout Standard
16090
16091 \end_layout
16092
16093 \end_inset
16094 </cell>
16095 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16096 \begin_inset Text
16097
16098 \begin_layout Standard
16099 c
16100 \end_layout
16101
16102 \end_inset
16103 </cell>
16104 </row>
16105 <row topline="true">
16106 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16107 \begin_inset Text
16108
16109 \begin_layout Standard
16110 d
16111 \end_layout
16112
16113 \end_inset
16114 </cell>
16115 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16116 \begin_inset Text
16117
16118 \begin_layout Standard
16119 e
16120 \end_layout
16121
16122 \end_inset
16123 </cell>
16124 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16125 \begin_inset Text
16126
16127 \begin_layout Standard
16128 f
16129 \end_layout
16130
16131 \end_inset
16132 </cell>
16133 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16134 \begin_inset Text
16135
16136 \begin_layout Standard
16137 g
16138 \end_layout
16139
16140 \end_inset
16141 </cell>
16142 </row>
16143 <row topline="true" bottomline="true">
16144 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16145 \begin_inset Text
16146
16147 \begin_layout Standard
16148 h
16149 \end_layout
16150
16151 \end_inset
16152 </cell>
16153 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16154 \begin_inset Text
16155
16156 \begin_layout Standard
16157 i
16158 \end_layout
16159
16160 \end_inset
16161 </cell>
16162 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16163 \begin_inset Text
16164
16165 \begin_layout Standard
16166 j
16167 \end_layout
16168
16169 \end_inset
16170 </cell>
16171 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16172 \begin_inset Text
16173
16174 \begin_layout Standard
16175 k
16176 \end_layout
16177
16178 \end_inset
16179 </cell>
16180 </row>
16181 </lyxtabular>
16182
16183 \end_inset
16184
16185
16186 \end_layout
16187
16188 \end_inset
16189
16190
16191 \end_layout
16192
16193 \begin_layout Subsection
16194 Line Thickness
16195 \begin_inset LatexCommand label
16196 name "sub:Line-Thickness"
16197
16198 \end_inset
16199
16200
16201 \begin_inset LatexCommand index
16202 name "Table Customization ! Line Thickness"
16203
16204 \end_inset
16205
16206
16207 \end_layout
16208
16209 \begin_layout Standard
16210 The line thickness for all lines in a table can be adjusted with the length
16211  
16212 \series bold
16213
16214 \backslash
16215 arrayrulewidth
16216 \series default
16217 .
16218  To set for example a line thickness of 1.5\InsetSpace \thinspace{}
16219 pt, like in Table\InsetSpace ~
16220
16221 \begin_inset LatexCommand ref
16222 reference "tab:Table-with-1.5"
16223
16224 \end_inset
16225
16226 , insert the command
16227 \end_layout
16228
16229 \begin_layout Standard
16230
16231 \series bold
16232
16233 \backslash
16234 setlength{
16235 \backslash
16236 arrayrulewidth}{1.5pt}
16237 \end_layout
16238
16239 \begin_layout Standard
16240 in ERT before the table or table float.
16241  The changed thickness is valid for all following tables.
16242  To use the default value again, set 
16243 \series bold
16244
16245 \backslash
16246 arrayrulewidth
16247 \series default
16248  to 0.4\InsetSpace \thinspace{}
16249 pt in ERT behind the table or table float.
16250 \end_layout
16251
16252 \begin_layout Standard
16253 \begin_inset ERT
16254 status collapsed
16255
16256 \begin_layout Standard
16257
16258
16259 \backslash
16260 setlength{
16261 \backslash
16262 arrayrulewidth}{1.5pt}
16263 \end_layout
16264
16265 \end_inset
16266
16267
16268 \begin_inset Float table
16269 wide false
16270 sideways false
16271 status open
16272
16273 \begin_layout Standard
16274 \begin_inset Caption
16275
16276 \begin_layout Standard
16277 \begin_inset LatexCommand label
16278 name "tab:Table-with-1.5"
16279
16280 \end_inset
16281
16282 Table with 1.5\InsetSpace \thinspace{}
16283 pt thick lines
16284 \end_layout
16285
16286 \end_inset
16287
16288
16289 \end_layout
16290
16291 \begin_layout Standard
16292 \align center
16293 \begin_inset Tabular
16294 <lyxtabular version="3" rows="3" columns="3">
16295 <features>
16296 <column alignment="center" valignment="top" leftline="true" width="0">
16297 <column alignment="center" valignment="top" leftline="true" width="0">
16298 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
16299 <row topline="true">
16300 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16301 \begin_inset Text
16302
16303 \begin_layout Standard
16304 sd
16305 \end_layout
16306
16307 \end_inset
16308 </cell>
16309 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16310 \begin_inset Text
16311
16312 \begin_layout Standard
16313
16314 \end_layout
16315
16316 \end_inset
16317 </cell>
16318 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16319 \begin_inset Text
16320
16321 \begin_layout Standard
16322
16323 \end_layout
16324
16325 \end_inset
16326 </cell>
16327 </row>
16328 <row topline="true">
16329 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16330 \begin_inset Text
16331
16332 \begin_layout Standard
16333
16334 \end_layout
16335
16336 \end_inset
16337 </cell>
16338 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16339 \begin_inset Text
16340
16341 \begin_layout Standard
16342 sd
16343 \end_layout
16344
16345 \end_inset
16346 </cell>
16347 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16348 \begin_inset Text
16349
16350 \begin_layout Standard
16351
16352 \end_layout
16353
16354 \end_inset
16355 </cell>
16356 </row>
16357 <row topline="true" bottomline="true">
16358 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16359 \begin_inset Text
16360
16361 \begin_layout Standard
16362
16363 \end_layout
16364
16365 \end_inset
16366 </cell>
16367 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16368 \begin_inset Text
16369
16370 \begin_layout Standard
16371
16372 \end_layout
16373
16374 \end_inset
16375 </cell>
16376 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16377 \begin_inset Text
16378
16379 \begin_layout Standard
16380 sd
16381 \end_layout
16382
16383 \end_inset
16384 </cell>
16385 </row>
16386 </lyxtabular>
16387
16388 \end_inset
16389
16390
16391 \end_layout
16392
16393 \end_inset
16394
16395
16396 \begin_inset ERT
16397 status collapsed
16398
16399 \begin_layout Standard
16400
16401
16402 \backslash
16403 setlength{
16404 \backslash
16405 arrayrulewidth}{0.4pt}
16406 \end_layout
16407
16408 \end_inset
16409
16410
16411 \end_layout
16412
16413 \begin_layout Standard
16414 \begin_inset VSpace bigskip
16415 \end_inset
16416
16417 To set the line thickness to 1.5\InsetSpace \thinspace{}
16418 pt only for horizontal lines, like in Table\InsetSpace ~
16419
16420 \begin_inset LatexCommand ref
16421 reference "tab:Table-with-horizontal"
16422
16423 \end_inset
16424
16425 , insert these commands in ERT before the table or table float:
16426 \end_layout
16427
16428 \begin_layout Standard
16429
16430 \series bold
16431
16432 \backslash
16433 let
16434 \backslash
16435 myHline
16436 \backslash
16437 hline
16438 \newline
16439
16440 \backslash
16441 renewcommand{
16442 \backslash
16443 hline}
16444 \newline
16445  {
16446 \backslash
16447 noalign{
16448 \backslash
16449 global
16450 \backslash
16451 arrayrulewidth 1.5pt}
16452 \newline
16453   
16454 \backslash
16455 myHline
16456 \backslash
16457 noalign{
16458 \backslash
16459 global
16460 \backslash
16461 arrayrulewidth 0.4pt}}
16462 \end_layout
16463
16464 \begin_layout Standard
16465 To return to the default line thickness, insert this command in ERT behind
16466  the table or table float:
16467 \end_layout
16468
16469 \begin_layout Standard
16470
16471 \series bold
16472
16473 \backslash
16474 renewcommand{
16475 \backslash
16476 hline}{
16477 \backslash
16478 myHline}
16479 \end_layout
16480
16481 \begin_layout Standard
16482 \begin_inset ERT
16483 status collapsed
16484
16485 \begin_layout Standard
16486
16487
16488 \backslash
16489 let
16490 \backslash
16491 myHline
16492 \backslash
16493 hline
16494 \end_layout
16495
16496 \begin_layout Standard
16497
16498
16499 \backslash
16500 renewcommand{
16501 \backslash
16502 hline}
16503 \end_layout
16504
16505 \begin_layout Standard
16506
16507  {
16508 \backslash
16509 noalign{
16510 \backslash
16511 global
16512 \backslash
16513 arrayrulewidth 1.5pt}
16514 \end_layout
16515
16516 \begin_layout Standard
16517
16518   
16519 \backslash
16520 myHline
16521 \backslash
16522 noalign{
16523 \backslash
16524 global
16525 \backslash
16526 arrayrulewidth 0.4pt}}
16527 \end_layout
16528
16529 \end_inset
16530
16531
16532 \begin_inset Float table
16533 wide false
16534 sideways false
16535 status open
16536
16537 \begin_layout Standard
16538 \begin_inset Caption
16539
16540 \begin_layout Standard
16541 \begin_inset LatexCommand label
16542 name "tab:Table-with-horizontal"
16543
16544 \end_inset
16545
16546 Table with 1.5\InsetSpace \thinspace{}
16547 pt thick horizontal lines
16548 \end_layout
16549
16550 \end_inset
16551
16552
16553 \end_layout
16554
16555 \begin_layout Standard
16556 \align center
16557 \begin_inset Tabular
16558 <lyxtabular version="3" rows="3" columns="3">
16559 <features>
16560 <column alignment="center" valignment="top" leftline="true" width="0">
16561 <column alignment="center" valignment="top" leftline="true" width="0">
16562 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
16563 <row topline="true">
16564 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16565 \begin_inset Text
16566
16567 \begin_layout Standard
16568 sd
16569 \end_layout
16570
16571 \end_inset
16572 </cell>
16573 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16574 \begin_inset Text
16575
16576 \begin_layout Standard
16577
16578 \end_layout
16579
16580 \end_inset
16581 </cell>
16582 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16583 \begin_inset Text
16584
16585 \begin_layout Standard
16586
16587 \end_layout
16588
16589 \end_inset
16590 </cell>
16591 </row>
16592 <row topline="true">
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" usebox="none">
16603 \begin_inset Text
16604
16605 \begin_layout Standard
16606 sd
16607 \end_layout
16608
16609 \end_inset
16610 </cell>
16611 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16612 \begin_inset Text
16613
16614 \begin_layout Standard
16615
16616 \end_layout
16617
16618 \end_inset
16619 </cell>
16620 </row>
16621 <row topline="true" bottomline="true">
16622 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16623 \begin_inset Text
16624
16625 \begin_layout Standard
16626
16627 \end_layout
16628
16629 \end_inset
16630 </cell>
16631 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16632 \begin_inset Text
16633
16634 \begin_layout Standard
16635
16636 \end_layout
16637
16638 \end_inset
16639 </cell>
16640 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16641 \begin_inset Text
16642
16643 \begin_layout Standard
16644 sd
16645 \end_layout
16646
16647 \end_inset
16648 </cell>
16649 </row>
16650 </lyxtabular>
16651
16652 \end_inset
16653
16654
16655 \end_layout
16656
16657 \end_inset
16658
16659
16660 \begin_inset ERT
16661 status collapsed
16662
16663 \begin_layout Standard
16664
16665
16666 \backslash
16667 renewcommand{
16668 \backslash
16669 hline}{
16670 \backslash
16671 myHline}
16672 \end_layout
16673
16674 \end_inset
16675
16676
16677 \end_layout
16678
16679 \begin_layout Standard
16680 \begin_inset VSpace bigskip
16681 \end_inset
16682
16683 To set the line thickness to 1.5\InsetSpace \thinspace{}
16684 pt only for vertical lines, create the following
16685  column format in the document preamble, according to the description in
16686  section\InsetSpace ~
16687
16688 \begin_inset LatexCommand ref
16689 reference "sub:Customized-Format"
16690
16691 \end_inset
16692
16693 :
16694 \end_layout
16695
16696 \begin_layout Standard
16697
16698 \series bold
16699
16700 \backslash
16701 newcolumntype{V}{!{
16702 \backslash
16703 vrule width 1.5pt}}
16704 \end_layout
16705
16706 \begin_layout Standard
16707 For Table\InsetSpace ~
16708
16709 \begin_inset LatexCommand ref
16710 reference "tab:Table-with-vertical"
16711
16712 \end_inset
16713
16714  the LaTeX-argument
16715 \end_layout
16716
16717 \begin_layout Standard
16718
16719 \series bold
16720 VcV
16721 \end_layout
16722
16723 \begin_layout Standard
16724 was used for the last column and
16725 \end_layout
16726
16727 \begin_layout Standard
16728
16729 \series bold
16730 Vc
16731 \end_layout
16732
16733 \begin_layout Standard
16734 for the other columns.
16735 \end_layout
16736
16737 \begin_layout Standard
16738 \begin_inset Float table
16739 wide false
16740 sideways false
16741 status open
16742
16743 \begin_layout Standard
16744 \begin_inset Caption
16745
16746 \begin_layout Standard
16747 \begin_inset LatexCommand label
16748 name "tab:Table-with-vertical"
16749
16750 \end_inset
16751
16752 Table with 1.5\InsetSpace \thinspace{}
16753 pt thick vertical lines
16754 \end_layout
16755
16756 \end_inset
16757
16758
16759 \end_layout
16760
16761 \begin_layout Standard
16762 \align center
16763 \begin_inset Tabular
16764 <lyxtabular version="3" rows="3" columns="3">
16765 <features>
16766 <column alignment="center" valignment="top" leftline="true" width="0" special="Vc">
16767 <column alignment="center" valignment="top" leftline="true" width="0" special="Vc">
16768 <column alignment="center" valignment="top" leftline="true" width="0" special="VcV">
16769 <row topline="true">
16770 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16771 \begin_inset Text
16772
16773 \begin_layout Standard
16774 sd
16775 \end_layout
16776
16777 \end_inset
16778 </cell>
16779 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16780 \begin_inset Text
16781
16782 \begin_layout Standard
16783
16784 \end_layout
16785
16786 \end_inset
16787 </cell>
16788 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16789 \begin_inset Text
16790
16791 \begin_layout Standard
16792
16793 \end_layout
16794
16795 \end_inset
16796 </cell>
16797 </row>
16798 <row topline="true">
16799 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16800 \begin_inset Text
16801
16802 \begin_layout Standard
16803
16804 \end_layout
16805
16806 \end_inset
16807 </cell>
16808 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16809 \begin_inset Text
16810
16811 \begin_layout Standard
16812 sd
16813 \end_layout
16814
16815 \end_inset
16816 </cell>
16817 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16818 \begin_inset Text
16819
16820 \begin_layout Standard
16821
16822 \end_layout
16823
16824 \end_inset
16825 </cell>
16826 </row>
16827 <row topline="true" bottomline="true">
16828 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16829 \begin_inset Text
16830
16831 \begin_layout Standard
16832
16833 \end_layout
16834
16835 \end_inset
16836 </cell>
16837 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16838 \begin_inset Text
16839
16840 \begin_layout Standard
16841
16842 \end_layout
16843
16844 \end_inset
16845 </cell>
16846 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16847 \begin_inset Text
16848
16849 \begin_layout Standard
16850 sd
16851 \end_layout
16852
16853 \end_inset
16854 </cell>
16855 </row>
16856 </lyxtabular>
16857
16858 \end_inset
16859
16860
16861 \end_layout
16862
16863 \end_inset
16864
16865
16866 \end_layout
16867
16868 \begin_layout Subsection
16869 Dashed Lines
16870 \begin_inset LatexCommand index
16871 name "Table Customization ! Dashed Lines"
16872
16873 \end_inset
16874
16875
16876 \end_layout
16877
16878 \begin_layout Standard
16879 \begin_inset ERT
16880 status collapsed
16881
16882 \begin_layout Standard
16883
16884
16885 \backslash
16886 ifarydshln
16887 \end_layout
16888
16889 \end_inset
16890
16891
16892 \begin_inset Note Note
16893 status open
16894
16895 \begin_layout Standard
16896 The following section will only be displayed when you have the LaTeX-package
16897  
16898 \series bold
16899 arydshln
16900 \series default
16901  is installed.
16902 \end_layout
16903
16904 \end_inset
16905
16906
16907 \end_layout
16908
16909 \begin_layout Standard
16910 \begin_inset Float table
16911 placement H
16912 wide false
16913 sideways false
16914 status open
16915
16916 \begin_layout Standard
16917 \begin_inset Caption
16918
16919 \begin_layout Standard
16920 \begin_inset LatexCommand label
16921 name "tab:Table-with-dashed"
16922
16923 \end_inset
16924
16925 Table with dashed lines
16926 \end_layout
16927
16928 \end_inset
16929
16930
16931 \end_layout
16932
16933 \begin_layout Standard
16934 \align center
16935 \begin_inset Tabular
16936 <lyxtabular version="3" rows="5" columns="5">
16937 <features>
16938 <column alignment="center" valignment="top" leftline="true" width="0">
16939 <column alignment="center" valignment="top" leftline="true" width="0">
16940 <column alignment="center" valignment="top" width="0" special=":c">
16941 <column alignment="center" valignment="top" leftline="true" width="0">
16942 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
16943 <row topline="true" bottomline="true">
16944 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16945 \begin_inset Text
16946
16947 \begin_layout Standard
16948 a
16949 \end_layout
16950
16951 \end_inset
16952 </cell>
16953 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16954 \begin_inset Text
16955
16956 \begin_layout Standard
16957 b
16958 \end_layout
16959
16960 \end_inset
16961 </cell>
16962 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16963 \begin_inset Text
16964
16965 \begin_layout Standard
16966 c
16967 \end_layout
16968
16969 \end_inset
16970 </cell>
16971 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16972 \begin_inset Text
16973
16974 \begin_layout Standard
16975 d
16976 \end_layout
16977
16978 \end_inset
16979 </cell>
16980 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16981 \begin_inset Text
16982
16983 \begin_layout Standard
16984 e
16985 \end_layout
16986
16987 \end_inset
16988 </cell>
16989 </row>
16990 <row topline="true">
16991 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16992 \begin_inset Text
16993
16994 \begin_layout Standard
16995 f
16996 \end_layout
16997
16998 \end_inset
16999 </cell>
17000 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17001 \begin_inset Text
17002
17003 \begin_layout Standard
17004 g
17005 \end_layout
17006
17007 \end_inset
17008 </cell>
17009 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17010 \begin_inset Text
17011
17012 \begin_layout Standard
17013 h
17014 \end_layout
17015
17016 \end_inset
17017 </cell>
17018 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17019 \begin_inset Text
17020
17021 \begin_layout Standard
17022 i
17023 \end_layout
17024
17025 \end_inset
17026 </cell>
17027 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17028 \begin_inset Text
17029
17030 \begin_layout Standard
17031 j
17032 \end_layout
17033
17034 \end_inset
17035 </cell>
17036 </row>
17037 <row>
17038 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17039 \begin_inset Text
17040
17041 \begin_layout Standard
17042 \begin_inset ERT
17043 status collapsed
17044
17045 \begin_layout Standard
17046
17047
17048 \backslash
17049 hdashline 
17050 \end_layout
17051
17052 \end_inset
17053
17054 k
17055 \end_layout
17056
17057 \end_inset
17058 </cell>
17059 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17060 \begin_inset Text
17061
17062 \begin_layout Standard
17063 l
17064 \end_layout
17065
17066 \end_inset
17067 </cell>
17068 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17069 \begin_inset Text
17070
17071 \begin_layout Standard
17072 m
17073 \end_layout
17074
17075 \end_inset
17076 </cell>
17077 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17078 \begin_inset Text
17079
17080 \begin_layout Standard
17081 n
17082 \end_layout
17083
17084 \end_inset
17085 </cell>
17086 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17087 \begin_inset Text
17088
17089 \begin_layout Standard
17090 o
17091 \end_layout
17092
17093 \end_inset
17094 </cell>
17095 </row>
17096 <row topline="true">
17097 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17098 \begin_inset Text
17099
17100 \begin_layout Standard
17101 \begin_inset ERT
17102 status collapsed
17103
17104 \begin_layout Standard
17105
17106
17107 \backslash
17108 cdashline{4-5}
17109 \end_layout
17110
17111 \end_inset
17112
17113 p
17114 \end_layout
17115
17116 \end_inset
17117 </cell>
17118 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17119 \begin_inset Text
17120
17121 \begin_layout Standard
17122 q
17123 \end_layout
17124
17125 \end_inset
17126 </cell>
17127 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none" special="c:">
17128 \begin_inset Text
17129
17130 \begin_layout Standard
17131 r
17132 \end_layout
17133
17134 \end_inset
17135 </cell>
17136 <cell multicolumn="1" alignment="center" valignment="top" rightline="true" usebox="none" special="c:">
17137 \begin_inset Text
17138
17139 \begin_layout Standard
17140 s
17141 \end_layout
17142
17143 \end_inset
17144 </cell>
17145 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17146 \begin_inset Text
17147
17148 \begin_layout Standard
17149
17150 \end_layout
17151
17152 \end_inset
17153 </cell>
17154 </row>
17155 <row topline="true" bottomline="true">
17156 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17157 \begin_inset Text
17158
17159 \begin_layout Standard
17160 t
17161 \end_layout
17162
17163 \end_inset
17164 </cell>
17165 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17166 \begin_inset Text
17167
17168 \begin_layout Standard
17169 u
17170 \end_layout
17171
17172 \end_inset
17173 </cell>
17174 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17175 \begin_inset Text
17176
17177 \begin_layout Standard
17178 v
17179 \end_layout
17180
17181 \end_inset
17182 </cell>
17183 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17184 \begin_inset Text
17185
17186 \begin_layout Standard
17187 w
17188 \end_layout
17189
17190 \end_inset
17191 </cell>
17192 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17193 \begin_inset Text
17194
17195 \begin_layout Standard
17196 x
17197 \end_layout
17198
17199 \end_inset
17200 </cell>
17201 </row>
17202 </lyxtabular>
17203
17204 \end_inset
17205
17206
17207 \end_layout
17208
17209 \end_inset
17210
17211
17212 \end_layout
17213
17214 \begin_layout Standard
17215 LyX doesn't natively support dashed lines, so you have to use ERT.
17216  As prerequisite the LaTeX-package 
17217 \series bold
17218 arydshln
17219 \series default
17220
17221 \begin_inset LatexCommand index
17222 name "LaTeX-packages ! arydshln"
17223
17224 \end_inset
17225
17226  must be loaded in the document preamble with the command
17227 \end_layout
17228
17229 \begin_layout Standard
17230
17231 \series bold
17232
17233 \backslash
17234 usepackage{arydshln}
17235 \end_layout
17236
17237 \begin_layout Standard
17238 To make a vertical line dashed, enter the colon 
17239 \begin_inset Quotes eld
17240 \end_inset
17241
17242 :
17243 \begin_inset Quotes erd
17244 \end_inset
17245
17246  together with the character for the horizontal alignment as LaTeX-argument
17247  in the table cell dialog.
17248 \end_layout
17249
17250 \begin_layout Standard
17251 For a horizontal dashed line add the command
17252 \end_layout
17253
17254 \begin_layout Standard
17255
17256 \series bold
17257
17258 \backslash
17259 hdashline
17260 \end_layout
17261
17262 \begin_layout Standard
17263 in ERT as first element of the first cell in the table row.
17264 \end_layout
17265
17266 \begin_layout Standard
17267 For dashed multicolumn lines use the command
17268 \end_layout
17269
17270 \begin_layout Standard
17271
17272 \series bold
17273
17274 \backslash
17275 cdashline{line number
17276 \series default
17277 }
17278 \end_layout
17279
17280 \begin_layout Standard
17281 in ERT as first element of the first cell in the table row.
17282  If you have for example a multicolumn spanning over columns 2 to 4 and
17283  you want to have a dashed line above, add the command
17284 \end_layout
17285
17286 \begin_layout Standard
17287
17288 \series bold
17289
17290 \backslash
17291 cdashline{2-4}
17292 \end_layout
17293
17294 \begin_layout Standard
17295 as first element of the first cell in the row of the multicolumn.
17296 \end_layout
17297
17298 \begin_layout Standard
17299 \begin_inset VSpace bigskip
17300 \end_inset
17301
17302
17303 \end_layout
17304
17305 \begin_layout Standard
17306 Table\InsetSpace ~
17307
17308 \begin_inset LatexCommand ref
17309 reference "tab:Table-with-dashed"
17310
17311 \end_inset
17312
17313  was created using 
17314 \begin_inset Quotes eld
17315 \end_inset
17316
17317
17318 \series bold
17319 :c
17320 \series default
17321
17322 \begin_inset Quotes erd
17323 \end_inset
17324
17325  as LaTeX-argument of the third column.
17326  The ERT command 
17327 \series bold
17328
17329 \backslash
17330 hdashline
17331 \series default
17332  was inserted to the first cell of the third row and the the ERT command
17333 \newline
17334
17335  
17336 \series bold
17337
17338 \backslash
17339 cdashline{4-5}
17340 \series default
17341  was inserted to the first cell of the fourth row.
17342 \end_layout
17343
17344 \begin_layout Standard
17345 \begin_inset Note Greyedout
17346 status open
17347
17348 \begin_layout Standard
17349
17350 \series bold
17351 Note:
17352 \series default
17353  The used LaTeX-package 
17354 \series bold
17355 arydshln
17356 \series default
17357  is apparently not compatible with the LaTeX-package 
17358 \series bold
17359 colortbl
17360 \series default
17361
17362 \begin_inset LatexCommand index
17363 name "LaTeX-packages ! colortbl"
17364
17365 \end_inset
17366
17367  that is used for colored tables in section\InsetSpace ~
17368
17369 \begin_inset LatexCommand ref
17370 reference "sec:Colored-Tables"
17371
17372 \end_inset
17373
17374 .
17375  That means colored tables cannot have dashed lines.
17376 \end_layout
17377
17378 \end_inset
17379
17380
17381 \end_layout
17382
17383 \begin_layout Standard
17384 \begin_inset ERT
17385 status collapsed
17386
17387 \begin_layout Standard
17388
17389
17390 \backslash
17391 else
17392 \end_layout
17393
17394 \end_inset
17395
17396
17397 \begin_inset Note Note
17398 status open
17399
17400 \begin_layout Standard
17401 The following will be displayed when the LaTeX-package 
17402 \series bold
17403 arydshln
17404 \series default
17405  is not installed:
17406 \end_layout
17407
17408 \end_inset
17409
17410
17411 \end_layout
17412
17413 \begin_layout Standard
17414 You need to install the package 
17415 \series bold
17416 arydshln
17417 \series default
17418  to see the contents of this section in the output.
17419 \end_layout
17420
17421 \begin_layout Standard
17422 \begin_inset ERT
17423 status collapsed
17424
17425 \begin_layout Standard
17426
17427
17428 \backslash
17429 fi
17430 \end_layout
17431
17432 \end_inset
17433
17434
17435 \end_layout
17436
17437 \begin_layout Chapter
17438 Floats
17439 \begin_inset LatexCommand index
17440 name "Floats"
17441
17442 \end_inset
17443
17444
17445 \begin_inset LatexCommand label
17446 name "cha:Floats"
17447
17448 \end_inset
17449
17450
17451 \end_layout
17452
17453 \begin_layout Section
17454 Introduction
17455 \begin_inset LatexCommand label
17456 name "sec:FloatIntroduction"
17457
17458 \end_inset
17459
17460
17461 \begin_inset LatexCommand index
17462 name "Floats ! Introduction"
17463
17464 \end_inset
17465
17466
17467 \end_layout
17468
17469 \begin_layout Standard
17470 A float is a block of text associated with some sort of label, which doesn't
17471  have a fixed location.
17472  It can 
17473 \begin_inset Quotes eld
17474 \end_inset
17475
17476 float
17477 \begin_inset Quotes erd
17478 \end_inset
17479
17480  forward or backward a page or two, to wherever it fits best.
17481  
17482 \family sans
17483 Footnotes
17484 \family default
17485  and 
17486 \family sans
17487 Margin\InsetSpace ~
17488 Notes
17489 \family default
17490  are also floats, because they can float to the next page when there are
17491  too many notes at the page.
17492 \end_layout
17493
17494 \begin_layout Standard
17495 Floats allow a high quality layout.
17496  Images and tables can evenly be spread to the pages to avoid white space
17497  and pages without text.
17498  As the floating often destroys the context between the text and the image/table
17499 , every float can be referenced in the text.
17500  Floats are therefore numbered.
17501  Referencing is described in section\InsetSpace ~
17502
17503 \begin_inset LatexCommand ref
17504 reference "sec:Referencing-Floats"
17505
17506 \end_inset
17507
17508 .
17509 \end_layout
17510
17511 \begin_layout Standard
17512 To insert a float, use the menu 
17513 \family sans
17514 Insert\SpecialChar \menuseparator
17515 Floats
17516 \family default
17517 .
17518  This inserts a box with a label in the 
17519 \family sans
17520 Caption
17521 \family default
17522  environment
17523 \begin_inset Foot
17524 status collapsed
17525
17526 \begin_layout Standard
17527 The 
17528 \family sans
17529 Caption
17530 \family default
17531  environment is described in LyX's 
17532 \emph on
17533 Userguide
17534 \emph default
17535 .
17536 \end_layout
17537
17538 \end_inset
17539
17540  into your document.
17541  Every label ends with the character 
17542 \begin_inset Quotes eld
17543 \end_inset
17544
17545 #
17546 \begin_inset Quotes erd
17547 \end_inset
17548
17549  as placeholder for the float number in the output.
17550  The label will automatically be translated to the document language in
17551  the output.
17552  Behind the label you can insert the caption text.
17553  The image or table is inserted above or below the caption in a separate
17554  paragraph within the float.
17555  More about the caption placement is described in section\InsetSpace ~
17556
17557 \begin_inset LatexCommand ref
17558 reference "sec:Caption-Placement"
17559
17560 \end_inset
17561
17562 .
17563  To keep your LyX-document readable, you can open and close the float box
17564  by left-clicking on the box label.
17565  A closed float box looks like this: 
17566 \begin_inset Graphics
17567         filename ../clipart/floatQt4.png
17568         scale 70
17569
17570 \end_inset
17571
17572  -- a gray button with a red label.
17573 \end_layout
17574
17575 \begin_layout Standard
17576 It is recommended to insert floats as a separate paragraph to avoid possible
17577  LaTeX-errors that can occur when the surrounding text is specially formatted.
17578 \end_layout
17579
17580 \begin_layout Standard
17581 Existing figures or tables can be put into a float by marking them and then
17582  pressing the corresponding toolbar button for a new float.
17583 \end_layout
17584
17585 \begin_layout Section
17586 Float Types
17587 \end_layout
17588
17589 \begin_layout Standard
17590 Besides figure and table floats that are described in section\InsetSpace ~
17591
17592 \begin_inset LatexCommand ref
17593 reference "sec:Figure-Floats"
17594
17595 \end_inset
17596
17597  and 
17598 \begin_inset LatexCommand ref
17599 reference "sec:Table-Floats"
17600
17601 \end_inset
17602
17603 , respectively, LyX offers the float types 
17604 \series bold
17605 Algorithm
17606 \series default
17607  and 
17608 \series bold
17609 Text\InsetSpace ~
17610 Wrap\InsetSpace ~
17611 Float
17612 \series default
17613 .
17614 \end_layout
17615
17616 \begin_layout Subsection
17617 Algorithm Floats
17618 \begin_inset LatexCommand index
17619 name "Floats ! Algorithm Floats"
17620
17621 \end_inset
17622
17623
17624 \end_layout
17625
17626 \begin_layout Standard
17627 \begin_inset Float algorithm
17628 placement h
17629 wide false
17630 sideways false
17631 status open
17632
17633 \begin_layout Standard
17634 \begin_inset Caption
17635
17636 \begin_layout Standard
17637 \begin_inset LatexCommand label
17638 name "alg:Example-Algorithm-float"
17639
17640 \end_inset
17641
17642 Example Algorithm float
17643 \end_layout
17644
17645 \end_inset
17646
17647
17648 \end_layout
17649
17650 \begin_layout LyX-Code
17651 for I in 1..N loop
17652 \newline
17653  Sum:= Sum + A(I); /*senseless comment*/
17654 \newline
17655 end loop
17656 \begin_inset VSpace -4mm
17657 \end_inset
17658
17659
17660 \end_layout
17661
17662 \end_inset
17663
17664
17665 \end_layout
17666
17667 \begin_layout Standard
17668 This float type is inserted with the menu 
17669 \family sans
17670 Insert\SpecialChar \menuseparator
17671 Floats\SpecialChar \menuseparator
17672 Algorithm
17673 \family default
17674 .
17675  It is used for program codes and descriptions of algorithms.
17676  A possible environment for algorithms is the 
17677 \family sans
17678 LyX-Code
17679 \family default
17680 , described in LyX's 
17681 \emph on
17682 Userguide
17683 \emph default
17684 .
17685  Algorithm\InsetSpace ~
17686
17687 \begin_inset LatexCommand ref
17688 reference "alg:Example-Algorithm-float"
17689
17690 \end_inset
17691
17692  is an example of an algorithm float where -4\InsetSpace \thinspace{}
17693 mm vertical space was added
17694  at the end of the float to have the bottom rule exactly below the last
17695  text line.
17696 \end_layout
17697
17698 \begin_layout Standard
17699 The float label is not automatically translated into the document language.
17700  If your document is not in English, you have to do this manually by adding
17701  the following line
17702 \series bold
17703  
17704 \series default
17705 to the document preamble
17706 \series bold
17707 :
17708 \end_layout
17709
17710 \begin_layout Standard
17711
17712 \series bold
17713
17714 \backslash
17715 floatname{algorithm}{your\InsetSpace ~
17716 name}
17717 \end_layout
17718
17719 \begin_layout Standard
17720
17721 \family sans
17722 your\InsetSpace ~
17723 name
17724 \family default
17725  is the word 
17726 \begin_inset Quotes eld
17727 \end_inset
17728
17729
17730 \emph on
17731 algorithm
17732 \emph default
17733
17734 \begin_inset Quotes erd
17735 \end_inset
17736
17737  in your language.
17738 \end_layout
17739
17740 \begin_layout Description
17741
17742 \series bold
17743 Note:
17744 \series default
17745  When the LaTeX-package 
17746 \series bold
17747 hyperref
17748 \series default
17749
17750 \begin_inset LatexCommand index
17751 name "LaTeX-packages ! hyperref"
17752
17753 \end_inset
17754
17755  is used to link cross-references to floats in the PDF-output, it must be
17756  loaded in the document preamble before the definition of floats to be able
17757  to reference floats.
17758  As LyX sets the float definition for algorithm floats automatically before
17759  the user editable part of the document preamble, you need to insert the
17760  following preamble lines 
17761 \emph on
17762 after
17763 \emph default
17764  the loading command of 
17765 \series bold
17766 hyperref
17767 \series default
17768 :
17769 \series bold
17770
17771 \begin_inset VSpace defskip
17772 \end_inset
17773
17774
17775 \newline
17776
17777 \backslash
17778 newfloat{Xalgorithm}{tbp}{loa}
17779 \newline
17780
17781 \backslash
17782 floatname{Xalgorithm}{your\InsetSpace ~
17783 name}
17784 \newline
17785
17786 \backslash
17787 newcommand{
17788 \backslash
17789 theHalgorithm}{
17790 \backslash
17791 theHXalgorithm}
17792 \newline
17793
17794 \backslash
17795 renewenvironment{algorithm}[1][tbp]
17796 \newline
17797
17798 \begin_inset ERT
17799 status collapsed
17800
17801 \begin_layout Standard
17802
17803
17804 \backslash
17805 hphantom{ }
17806 \end_layout
17807
17808 \end_inset
17809
17810 {
17811 \backslash
17812 begin{Xalgorithm}[#1]}{
17813 \backslash
17814 end{Xalgorithm}}
17815 \begin_inset VSpace defskip
17816 \end_inset
17817
17818
17819 \series default
17820
17821 \newline
17822 Where 
17823 \family sans
17824 your\InsetSpace ~
17825 name
17826 \family default
17827  is the word 
17828 \begin_inset Quotes eld
17829 \end_inset
17830
17831
17832 \emph on
17833 algorithm
17834 \emph default
17835
17836 \begin_inset Quotes erd
17837 \end_inset
17838
17839  in your language.
17840 \end_layout
17841
17842 \begin_layout Standard
17843 Algorithm floats are not by default numbered in the scheme 
17844 \begin_inset Quotes eld
17845 \end_inset
17846
17847 chapter.algorithm
17848 \begin_inset Quotes erd
17849 \end_inset
17850
17851  like it is the case for table and figure floats in many document-classes.
17852  To number algorithm floats in the same scheme, add this command to your
17853  document preamble:
17854 \end_layout
17855
17856 \begin_layout Standard
17857
17858 \series bold
17859
17860 \backslash
17861 numberwithin{algorithm}{chapter}
17862 \end_layout
17863
17864 \begin_layout Standard
17865 If you use the LaTeX-package 
17866 \series bold
17867 hyperref
17868 \series default
17869 , add this line instead 
17870 \emph on
17871 after
17872 \emph default
17873  the definition of 
17874 \family sans
17875 Xalgorithm
17876 \family default
17877  (the commands from above) to the preamble:
17878 \end_layout
17879
17880 \begin_layout Standard
17881
17882 \series bold
17883
17884 \backslash
17885 numberwithin{Xalgorithm}{chapter}
17886 \end_layout
17887
17888 \begin_layout Standard
17889 To be able to use the command 
17890 \series bold
17891
17892 \backslash
17893 numberwithin
17894 \series default
17895 , set in the tab 
17896 \family sans
17897 Math\InsetSpace ~
17898 Options
17899 \family default
17900  in the document settings the option 
17901 \family sans
17902 Use\InsetSpace ~
17903 AMS\InsetSpace ~
17904 math\InsetSpace ~
17905 package
17906 \family default
17907 .
17908 \end_layout
17909
17910 \begin_layout Subsection
17911 Text Wrap Floats
17912 \begin_inset LatexCommand index
17913 name "Floats ! Text Wrap Floats"
17914
17915 \end_inset
17916
17917
17918 \begin_inset LatexCommand label
17919 name "sub:floatflt-wrap-float"
17920
17921 \end_inset
17922
17923
17924 \end_layout
17925
17926 \begin_layout Standard
17927 This float type is used if you want to 
17928 \begin_inset Quotes eld
17929 \end_inset
17930
17931 wrap
17932 \begin_inset Quotes erd
17933 \end_inset
17934
17935  text around a figure so that it only occupies some fraction of the column
17936  width.
17937  It can be inserted using the menu 
17938 \begin_inset Wrap figure
17939 placement l
17940 width "40col%"
17941 status open
17942
17943 \begin_layout Standard
17944 \begin_inset Graphics
17945         filename mobius.eps
17946         display color
17947         width 40col%
17948         rotateOrigin center
17949
17950 \end_inset
17951
17952
17953 \end_layout
17954
17955 \begin_layout Standard
17956 \begin_inset Caption
17957
17958 \begin_layout Standard
17959 \begin_inset LatexCommand label
17960 name "fig:This-is-a"
17961
17962 \end_inset
17963
17964 This is a wrapped figure, and this is the brilliant caption that describes
17965  it.
17966 \begin_inset VSpace medskip
17967 \end_inset
17968
17969
17970 \end_layout
17971
17972 \end_inset
17973
17974
17975 \end_layout
17976
17977 \end_inset
17978
17979  
17980 \family sans
17981 Insert\SpecialChar \menuseparator
17982 Floats\SpecialChar \menuseparator
17983 Text\InsetSpace ~
17984 Wrap\InsetSpace ~
17985 Float
17986 \family default
17987  if the LaTeX-package 
17988 \series bold
17989 floatflt
17990 \series default
17991
17992 \begin_inset LatexCommand index
17993 name "LaTeX-packages ! floatflt"
17994
17995 \end_inset
17996
17997  is installed.
17998 \begin_inset Foot
17999 status collapsed
18000
18001 \begin_layout Standard
18002 Installing a LaTeX-package is explained it in the 
18003 \emph on
18004 LaTeX\InsetSpace ~
18005 Configuration
18006 \emph default
18007  manual.
18008 \end_layout
18009
18010 \end_inset
18011
18012  The width and placement of the float is adjusted by right-clicking on the
18013  float box.
18014  Figure\InsetSpace ~
18015
18016 \begin_inset LatexCommand ref
18017 reference "fig:This-is-a"
18018
18019 \end_inset
18020
18021  is an example text wrap float with a width of 40
18022 \begin_inset Formula $\,$
18023 \end_inset
18024
18025 col%.
18026 \begin_inset Foot
18027 status collapsed
18028
18029 \begin_layout Standard
18030 Available units are explained in 
18031 \begin_inset LatexCommand ref
18032 reference "cha:Units-available-in"
18033
18034 \end_inset
18035
18036 .
18037 \end_layout
18038
18039 \end_inset
18040
18041  Some space was added under the caption to separate it better from the surroundi
18042 ng text.
18043 \end_layout
18044
18045 \begin_layout Standard
18046 The LaTeX-package 
18047 \series bold
18048 floatflt
18049 \series default
18050  also supports table wrap floats, but they are not yet supported by LyX.
18051  If you need this, read the documentation of 
18052 \series bold
18053 floatflt
18054 \series default
18055  
18056 \begin_inset LatexCommand cite
18057 key "floatflt"
18058
18059 \end_inset
18060
18061 .
18062 \end_layout
18063
18064 \begin_layout Standard
18065 \begin_inset Note Greyedout
18066 status open
18067
18068 \begin_layout Standard
18069
18070 \series bold
18071 Note:
18072 \series default
18073  Text\InsetSpace ~
18074 wrap float floats are fragile! E.\InsetSpace \thinspace{}
18075 g.\InsetSpace ~
18076 having a figure too close to the bottom
18077  of the page can mess things up in the way that the float doesn't appear
18078  in the output or that it is placed over some other text.
18079 \begin_inset Foot
18080 status open
18081
18082 \begin_layout Standard
18083 The better solution is to use the LaTeX-package 
18084 \series bold
18085 wrapf\SpecialChar \textcompwordmark{}
18086 ig
18087 \series default
18088
18089 \begin_inset LatexCommand index
18090 name "LaTeX-packages ! wrapfig\\vspace{4mm}"
18091
18092 \end_inset
18093
18094  instead of 
18095 \series bold
18096 floatf\SpecialChar \textcompwordmark{}
18097 lt
18098 \series default
18099 , but it is currently not supported by LyX.
18100 \end_layout
18101
18102 \end_inset
18103
18104
18105 \end_layout
18106
18107 \end_inset
18108
18109
18110 \end_layout
18111
18112 \begin_layout Standard
18113 In general:
18114 \end_layout
18115
18116 \begin_layout Itemize
18117 Wrap floats should not be placed in paragraphs that run over a page break.
18118  That means that wrap floats should better be inserted to the exact place
18119  when the document is nearly ready and you are able to estimate where page
18120  breaks will appear.
18121 \end_layout
18122
18123 \begin_layout Itemize
18124 Wrap floats should either be placed in an own paragraph before the paragraph
18125  where they should wrap into or within a paragraph.
18126 \end_layout
18127
18128 \begin_layout Itemize
18129 Wrap floats in consecutive paragraphs may cause troubles, so assure that
18130  there is a text paragraph between them as separator.
18131 \end_layout
18132
18133 \begin_layout Itemize
18134 Wrap floats are not allowed in section headings or tables.
18135 \end_layout
18136
18137 \begin_layout Section
18138 Referencing Floats
18139 \begin_inset LatexCommand label
18140 name "sec:Referencing-Floats"
18141
18142 \end_inset
18143
18144
18145 \begin_inset LatexCommand index
18146 name "Floats ! References"
18147
18148 \end_inset
18149
18150
18151 \begin_inset LatexCommand index
18152 name "References"
18153
18154 \end_inset
18155
18156
18157 \end_layout
18158
18159 \begin_layout Standard
18160 To reference a float, insert a label into its caption using the menu 
18161 \family sans
18162 Insert\SpecialChar \menuseparator
18163 Label
18164 \family default
18165  or the toolbar button 
18166 \begin_inset Graphics
18167         filename ../images/label-insert.xpm
18168         scale 85
18169
18170 \end_inset
18171
18172 .
18173  A grey label box like this one: 
18174 \begin_inset Graphics
18175         filename ../clipart/labelQt4.png
18176         scale 85
18177
18178 \end_inset
18179
18180  will be inserted and the label window pops up asking for the label text.
18181  LyX offers as text the first words of the caption with a prefix.
18182  The prefix depends on the float type, e.\InsetSpace \thinspace{}
18183 g.\InsetSpace ~
18184 for figure floats the prefix will
18185  be "
18186 \family sans
18187 fig:
18188 \family default
18189 ".
18190 \end_layout
18191
18192 \begin_layout Standard
18193 The label is used as anchor and name for the reference.
18194  You can refer to the label using the menu 
18195 \family sans
18196 Insert\SpecialChar \menuseparator
18197 Cross-reference
18198 \family default
18199  or the toolbar button 
18200 \begin_inset Graphics
18201         filename ../images/dialog-show-new-inset_ref.xpm
18202         scale 85
18203
18204 \end_inset
18205
18206 .
18207  A grey cross-reference box like this one: 
18208 \begin_inset Graphics
18209         filename ../clipart/referenceQt4.png
18210         scale 85
18211
18212 \end_inset
18213
18214  will be inserted and the cross-reference window appear showing all labels
18215  of the document.
18216  If you have multiple LyX-documents opened, choose the one you are working
18217  on from the drop-list at the top of the dialog.
18218  You can now sort the labels alphabetically and then choose one.
18219  At the position of the cross-reference box the float number will appear
18220  in the output.
18221 \end_layout
18222
18223 \begin_layout Standard
18224 It is recommended to use a protected space between the cross-reference name
18225  and its number to avoid line breaks between them.
18226  If a cross-reference refers to a non-existing label, you will see two question
18227  marks in the output instead of the reference.
18228 \end_layout
18229
18230 \begin_layout Standard
18231 You can change labels at any time by clicking on the label box.
18232  References to the changed label will automatically change its link to the
18233  new label text, so that you don't need to take care about this.
18234 \end_layout
18235
18236 \begin_layout Standard
18237 The button 
18238 \family sans
18239 Go\InsetSpace ~
18240 to\InsetSpace ~
18241 Label
18242 \family default
18243  in the cross-reference window sets the cursor before the referred label.
18244  The button text changes then to Go\InsetSpace ~
18245 Back and you can use it to set the cursor
18246  back to the cross-reference.
18247  Right-clicking on a cross-reference box also sets the cursor before the
18248  referenced label but without a possibility to go back.
18249 \end_layout
18250
18251 \begin_layout Subsection
18252 Cross-reference formats
18253 \begin_inset LatexCommand label
18254 name "sub:Cross-reference-formats"
18255
18256 \end_inset
18257
18258
18259 \begin_inset LatexCommand index
18260 name "References ! Formats"
18261
18262 \end_inset
18263
18264
18265 \end_layout
18266
18267 \begin_layout Standard
18268 There are six varieties of cross-references:
18269 \end_layout
18270
18271 \begin_layout Description
18272 <reference>: prints the float number, this is the default: 
18273 \begin_inset LatexCommand ref
18274 reference "fig:Two-distorted-images"
18275
18276 \end_inset
18277
18278
18279 \end_layout
18280
18281 \begin_layout Description
18282 (<reference>): prints the float number within two parentheses, this is the
18283  style normally used to reference formulas, especially when the reference
18284  name 
18285 \begin_inset Quotes eld
18286 \end_inset
18287
18288 Equation
18289 \begin_inset Quotes erd
18290 \end_inset
18291
18292  is omitted: 
18293 \begin_inset LatexCommand eqref
18294 reference "eq:Wgn"
18295
18296 \end_inset
18297
18298
18299 \end_layout
18300
18301 \begin_layout Description
18302 <page>: prints the page number: Page\InsetSpace ~
18303
18304 \begin_inset LatexCommand pageref
18305 reference "fig:Two-distorted-images"
18306
18307 \end_inset
18308
18309
18310 \end_layout
18311
18312 \begin_layout Description
18313 on\InsetSpace ~
18314 page\InsetSpace ~
18315 <page>: prints the text "on page" and the page number: 
18316 \begin_inset LatexCommand vpageref
18317 reference "fig:Two-distorted-images"
18318
18319 \end_inset
18320
18321
18322 \end_layout
18323
18324 \begin_layout Description
18325 <reference>\InsetSpace ~
18326 on\InsetSpace ~
18327 page\InsetSpace ~
18328 <page>: prints the float number, the text "on page", and
18329  the page number: 
18330 \begin_inset LatexCommand vref
18331 reference "fig:Two-distorted-images"
18332
18333 \end_inset
18334
18335
18336 \end_layout
18337
18338 \begin_layout Description
18339 Formatted\InsetSpace ~
18340 reference: prints a self defined cross-reference format:
18341 \newline
18342
18343 \begin_inset LatexCommand prettyref
18344 reference "fig:Two-distorted-images"
18345
18346 \end_inset
18347
18348
18349 \end_layout
18350
18351 \begin_layout Standard
18352 Note that the style <page> won't print the page number if the label is on
18353  the previous, the same, or the next page.
18354  You will e.\InsetSpace \thinspace{}
18355 g.\InsetSpace ~
18356 see the text 
18357 \begin_inset Quotes eld
18358 \end_inset
18359
18360
18361 \family sans
18362 on this page
18363 \family default
18364
18365 \begin_inset Quotes erd
18366 \end_inset
18367
18368  instead.
18369 \end_layout
18370
18371 \begin_layout Standard
18372 The number and current page of the referred document part in the output,
18373  is automatically calculated by LaTeX.
18374  The varieties are adjusted in the field 
18375 \family sans
18376 Format
18377 \family default
18378  of the cross-reference window, that appear when you click on the cross-referenc
18379 e box.
18380 \begin_inset VSpace bigskip
18381 \end_inset
18382
18383
18384 \end_layout
18385
18386 \begin_layout Standard
18387 To define a format for the 
18388 \family sans
18389 Formatted\InsetSpace ~
18390 reference
18391 \family default
18392  style, you have to use the following command in the document preamble:
18393 \end_layout
18394
18395 \begin_layout Standard
18396
18397 \series bold
18398
18399 \backslash
18400 newrefformat{prefix}{text}
18401 \end_layout
18402
18403 \begin_layout Standard
18404 This formatting command affects all references to labels with the same prefix.
18405  To get the format of the 
18406 \family sans
18407 Formatted\InsetSpace ~
18408 reference
18409 \family default
18410  example above, this command was used:
18411 \end_layout
18412
18413 \begin_layout Standard
18414
18415 \series bold
18416
18417 \backslash
18418 newrefformat{fig}
18419 \newline
18420
18421 \begin_inset ERT
18422 status collapsed
18423
18424 \begin_layout Standard
18425
18426
18427 \backslash
18428 hphantom{ }
18429 \end_layout
18430
18431 \end_inset
18432
18433 {Figure~float~
18434 \backslash
18435 ref{#1} printed on page~
18436 \backslash
18437 pageref{#1}}
18438 \end_layout
18439
18440 \begin_layout Standard
18441 The tilde "~" is the LaTeX equivalent for the protected space.
18442  The command 
18443 \series bold
18444
18445 \backslash
18446 ref{#1}
18447 \series default
18448  refers to the float number, the command 
18449 \series bold
18450
18451 \backslash
18452 pageref{#1}
18453 \series default
18454  to the page number.
18455 \end_layout
18456
18457 \begin_layout Subsection
18458 Automatic Reference Naming
18459 \begin_inset LatexCommand index
18460 name "References ! Automatic Reference Naming"
18461
18462 \end_inset
18463
18464
18465 \end_layout
18466
18467 \begin_layout Standard
18468 The LaTeX-package 
18469 \series bold
18470 hyperref
18471 \series default
18472  provides a very useful feature that cross-references automatically include
18473  the name of the referenced floats (or text parts like sections).
18474  You save to write e.\InsetSpace \thinspace{}
18475 g.\InsetSpace ~
18476 the name 
18477 \begin_inset Quotes eld
18478 \end_inset
18479
18480 Figure
18481 \begin_inset Quotes erd
18482 \end_inset
18483
18484  before every reference box.
18485  To get this automatic reference naming, you have to load the LaTeX-package
18486  
18487 \series bold
18488 hyperref
18489 \series default
18490
18491 \begin_inset LatexCommand index
18492 name "LaTeX-packages ! hyperref"
18493
18494 \end_inset
18495
18496  in the document preamble with
18497 \end_layout
18498
18499 \begin_layout Standard
18500
18501 \series bold
18502
18503 \backslash
18504 usepackage[pdfborder={0 0 0}]{hyperref}
18505 \newline
18506
18507 \backslash
18508 AtBeginDocument{
18509 \backslash
18510 renewcommand{
18511 \backslash
18512 ref}[1]{
18513 \backslash
18514 mbox{
18515 \backslash
18516 autoref{#1}}}}
18517 \end_layout
18518
18519 \begin_layout Standard
18520
18521 \series bold
18522 hyperref
18523 \series default
18524  is used to link cross-references in the DVI- and PDF-output, this means
18525  that the reader of your document will be able to click on a table of content
18526  (TOC) entry or on a reference and he will be shown the referenced document
18527  part.
18528  
18529 \series bold
18530 hyperref
18531 \series default
18532  also creates PDF-bookmarks for every section of your document to make it
18533  easier for readers to navigate through the document.
18534  This is also used in this document but when you have a look in the document
18535  preamble you will find various options in the load command of 
18536 \series bold
18537 hyperref
18538 \series default
18539 .
18540  To learn more about the 
18541 \series bold
18542 hyperref
18543 \series default
18544  package, we refer to its documentation 
18545 \begin_inset LatexCommand cite
18546 key "hyperref"
18547
18548 \end_inset
18549
18550 .
18551 \end_layout
18552
18553 \begin_layout Standard
18554 \begin_inset Note Greyedout
18555 status open
18556
18557 \begin_layout Standard
18558
18559 \series bold
18560 Note:
18561 \series default
18562  Automatic reference naming cannot be used when you use cross-references
18563  in the 
18564 \family sans
18565 Formatted\InsetSpace ~
18566 reference
18567 \family default
18568  style, described in section\InsetSpace ~
18569
18570 \begin_inset LatexCommand ref
18571 reference "sub:Cross-reference-formats"
18572
18573 \end_inset
18574
18575 .
18576  That is the reason why it is not used in this document.
18577 \end_layout
18578
18579 \end_inset
18580
18581
18582 \end_layout
18583
18584 \begin_layout Subsection
18585 Reference Position
18586 \begin_inset LatexCommand label
18587 name "sub:Reference-Position"
18588
18589 \end_inset
18590
18591
18592 \begin_inset LatexCommand index
18593 name "References ! Reference Position"
18594
18595 \end_inset
18596
18597
18598 \end_layout
18599
18600 \begin_layout Standard
18601 If you use 
18602 \series bold
18603 hyperref
18604 \series default
18605
18606 \begin_inset LatexCommand index
18607 name "LaTeX-packages ! hyperref"
18608
18609 \end_inset
18610
18611  to link cross-references in the output, you will see that clicking on an
18612  image float reference jumps to the image label.
18613  The caption will be the first text part on the screen, so that you cannot
18614  see the image without scrolling.
18615  This is because the reference link anchor is placed at the position of
18616  the label.
18617  With the use of the package 
18618 \series bold
18619 hypcap
18620 \series default
18621
18622 \begin_inset LatexCommand index
18623 name "LaTeX-packages ! hypcap"
18624
18625 \end_inset
18626
18627 , which is part of the LaTeX-package 
18628 \series bold
18629 oberdiek
18630 \series default
18631
18632 \begin_inset LatexCommand index
18633 name "LaTeX-packages ! oberdiek"
18634
18635 \end_inset
18636
18637 , the link anchor is placed at the beginning of a float.
18638  To use this feature for figure floats, load 
18639 \series bold
18640 hypcap
18641 \series default
18642  in the document preamble with the line
18643 \end_layout
18644
18645 \begin_layout Standard
18646
18647 \series bold
18648
18649 \backslash
18650 usepackage[f\SpecialChar \textcompwordmark{}
18651 igure]{hypcap}
18652 \end_layout
18653
18654 \begin_layout Standard
18655 You can also use 
18656 \series bold
18657 hypcap
18658 \series default
18659  for all floats but this isn't recommended for stability reasons.
18660  For more informations, have a look at 
18661 \series bold
18662 hypcap
18663 \series default
18664 's manual 
18665 \begin_inset LatexCommand cite
18666 key "hypcap"
18667
18668 \end_inset
18669
18670 .
18671 \end_layout
18672
18673 \begin_layout Standard
18674 \begin_inset Note Greyedout
18675 status open
18676
18677 \begin_layout Standard
18678
18679 \series bold
18680 Note:
18681 \series default
18682  
18683 \series bold
18684 hypcap
18685 \series default
18686  must be loaded after 
18687 \series bold
18688 hyperref
18689 \series default
18690  in the document preamble.
18691 \end_layout
18692
18693 \end_inset
18694
18695
18696 \end_layout
18697
18698 \begin_layout Section
18699 Float Placement
18700 \begin_inset LatexCommand label
18701 name "sec:Float-Placement"
18702
18703 \end_inset
18704
18705
18706 \begin_inset LatexCommand index
18707 name "Floats ! Placement"
18708
18709 \end_inset
18710
18711
18712 \end_layout
18713
18714 \begin_layout Standard
18715 Right-clicking on a float-box opens a dialog where you can alter the placement
18716  options that LaTeX uses for positioning the float.
18717 \newline
18718 The option 
18719 \family sans
18720 Span\InsetSpace ~
18721 columns
18722 \family default
18723  is only useful for two-column documents: If you select it, the float will
18724  span across both columns on the page instead of being confined to just
18725  one.
18726 \newline
18727 The option 
18728 \family sans
18729 Rotate\InsetSpace ~
18730 sideways
18731 \family default
18732  is used to rotate floats, see section 
18733 \begin_inset LatexCommand ref
18734 reference "sec:Rotated-Floats"
18735
18736 \end_inset
18737
18738 .
18739 \end_layout
18740
18741 \begin_layout Standard
18742 You can use one ore more of the following options in the float dialog to
18743  set the placement for a particular float when you uncheck the option 
18744 \family sans
18745 Use\InsetSpace ~
18746 default\InsetSpace ~
18747 placement
18748 \family default
18749 :
18750 \end_layout
18751
18752 \begin_layout Description
18753 Here\InsetSpace ~
18754 if\InsetSpace ~
18755 possible: try to place the float on the position where it is inserted
18756 \end_layout
18757
18758 \begin_layout Description
18759 Top\InsetSpace ~
18760 of\InsetSpace ~
18761 page: try to place the float on the top of the current page
18762 \end_layout
18763
18764 \begin_layout Description
18765 Bottom\InsetSpace ~
18766 of\InsetSpace ~
18767 page: try to place the float on the bottom of the current page
18768 \end_layout
18769
18770 \begin_layout Description
18771 Page\InsetSpace ~
18772 of\InsetSpace ~
18773 floats: try to place the float on an own page 
18774 \end_layout
18775
18776 \begin_layout Standard
18777 The order of the above option is 
18778 \emph on
18779 always
18780 \emph default
18781  used by LaTeX.
18782  That means, if you use the default placement, LaTeX will first try out
18783  
18784 \family sans
18785 Here\InsetSpace ~
18786 if\InsetSpace ~
18787 possible
18788 \family default
18789 , then 
18790 \family sans
18791 Top\InsetSpace ~
18792 of\InsetSpace ~
18793 page
18794 \family default
18795 , and then the others.
18796  If you don't use the default, LaTeX will try only the checked options but
18797  in the same order.
18798  If none of the 4 placements are possible the procedure is internally repeated
18799  but it is tried to put the float on the following page.
18800 \end_layout
18801
18802 \begin_layout Standard
18803 By default, each options has its own rules:
18804 \end_layout
18805
18806 \begin_layout Labeling
18807 \labelwidthstring 00.00.0000
18808
18809 \family sans
18810 Top\InsetSpace ~
18811 of\InsetSpace ~
18812 page
18813 \family default
18814  only floats occupying less than 70\InsetSpace \thinspace{}
18815 % of the page can be placed at the top
18816  of a page (
18817 \series bold
18818
18819 \backslash
18820 topfraction
18821 \series default
18822 )
18823 \end_layout
18824
18825 \begin_layout Labeling
18826 \labelwidthstring 00.00.0000
18827
18828 \family sans
18829 Bottom\InsetSpace ~
18830 of\InsetSpace ~
18831 page
18832 \family default
18833 : only floats occupying less than 30\InsetSpace \thinspace{}
18834 % of the page can be placed at the bottom
18835  of a page.
18836  (
18837 \series bold
18838
18839 \backslash
18840 bottomfraction
18841 \series default
18842 )
18843 \end_layout
18844
18845 \begin_layout Labeling
18846 \labelwidthstring 00.00.0000
18847
18848 \family sans
18849 Page\InsetSpace ~
18850 of\InsetSpace ~
18851 floats
18852 \family default
18853 : only if more than 50\InsetSpace \thinspace{}
18854 % of the page are occupied by floats, several floats
18855  can be set together on a page.
18856  (
18857 \series bold
18858
18859 \backslash
18860 floatpagefraction
18861 \series default
18862 )
18863 \end_layout
18864
18865 \begin_layout Standard
18866 If you don't like these rules, you can ignore them by using the additional
18867  option 
18868 \family sans
18869 Ignore\InsetSpace ~
18870 LaTeX\InsetSpace ~
18871 rules
18872 \family default
18873 .
18874 \newline
18875 You can also redefine the rules with LaTeX-commands that are given in parenthese
18876 s behind the rules description above.
18877  To increase for example the often too small default of the bottom-rule
18878  to 50\InsetSpace \thinspace{}
18879 % of the page, add this line to your document preamble:
18880 \end_layout
18881
18882 \begin_layout Standard
18883
18884 \series bold
18885
18886 \backslash
18887 renewcommand{
18888 \backslash
18889 bottomfraction}{0.5}
18890 \end_layout
18891
18892 \begin_layout Standard
18893 Sometimes you might need, under all circumstances, a float to be placed
18894  exactly at the position where it is inserted.
18895  For this case you can use the option 
18896 \family sans
18897 Here\InsetSpace ~
18898 definitely
18899 \family default
18900 .
18901  Use this option very rarely and only if the document is nearly ready to
18902  be printed.
18903  Because the float is then no longer able to 
18904 \begin_inset Quotes eld
18905 \end_inset
18906
18907 float
18908 \begin_inset Quotes erd
18909 \end_inset
18910
18911  when you change your document and this will often destroy the page layout.
18912 \end_layout
18913
18914 \begin_layout Standard
18915 There are no placement options for text wrap floats, because they are always
18916  surrounded by the text of a certain paragraph.
18917 \begin_inset VSpace bigskip
18918 \end_inset
18919
18920
18921 \end_layout
18922
18923 \begin_layout Standard
18924 Sometimes you have the problem that a float is placed at the top of a page
18925  while its corresponding section starts at the middle of the page, so that
18926  the reader could think the float is part of the previous section.
18927  To avoid this the LaTeX-command 
18928 \series bold
18929
18930 \backslash
18931 suppressf\SpecialChar \textcompwordmark{}
18932 loats
18933 \series default
18934  can be used.
18935  It suppresses a given float placement for the page where it is inserted
18936  and can therefore be used to avoid that floats could be set before a section
18937  starts.
18938  To get this, add these commands to your document preamble:
18939 \end_layout
18940
18941 \begin_layout Standard
18942
18943 \series bold
18944
18945 \backslash
18946 let
18947 \backslash
18948 mySection
18949 \backslash
18950 section
18951 \newline
18952
18953 \backslash
18954 renewcommand{
18955 \backslash
18956 section}{
18957 \backslash
18958 suppressf\SpecialChar \textcompwordmark{}
18959 loats[t]
18960 \backslash
18961 mySection}
18962 \end_layout
18963
18964 \begin_layout Standard
18965 You can define the same for all section headings, like chapters and subsections.
18966  This definition is not recommended to be used for small text parts like
18967  subsubsections because LaTeX may then have problems to find a suitable
18968  placement.
18969 \end_layout
18970
18971 \begin_layout Standard
18972 \begin_inset VSpace bigskip
18973 \end_inset
18974
18975 In some cases it is required to have all figures/tables at the end of the
18976  document.
18977  For this purpose the LaTeX-package 
18978 \series bold
18979 endf\SpecialChar \textcompwordmark{}
18980 loat
18981 \series default
18982
18983 \begin_inset LatexCommand index
18984 name "LaTeX-packages ! endfloat"
18985
18986 \end_inset
18987
18988  was developed.
18989  It puts all figure and table floats at the end of the document into own
18990  sections.
18991  At the original float position a text hint like 
18992 \begin_inset Quotes eld
18993 \end_inset
18994
18995
18996 \family sans
18997 [Figure\InsetSpace ~
18998 3.2 about here.]
18999 \family default
19000
19001 \begin_inset Quotes erd
19002 \end_inset
19003
19004  is inserted.
19005  The endfloat-package is loaded in the preamble with the line
19006 \end_layout
19007
19008 \begin_layout Standard
19009
19010 \series bold
19011
19012 \backslash
19013 usepackage[options]{endf\SpecialChar \textcompwordmark{}
19014 loat}
19015 \end_layout
19016
19017 \begin_layout Standard
19018 There are various package options to format the created figure/table sections.
19019  For more information we refer to the 
19020 \series bold
19021 endf\SpecialChar \textcompwordmark{}
19022 loat
19023 \series default
19024  documentation 
19025 \begin_inset LatexCommand cite
19026 key "endfloat"
19027
19028 \end_inset
19029
19030 .
19031 \newline
19032
19033 \begin_inset Note Greyedout
19034 status open
19035
19036 \begin_layout Standard
19037
19038 \series bold
19039 Note: endf\SpecialChar \textcompwordmark{}
19040 loat
19041 \series default
19042  doesn't provide an automatic translation for the text hint, you have to
19043  do this manually, see section\InsetSpace ~
19044 4 in 
19045 \begin_inset LatexCommand cite
19046 key "endfloat"
19047
19048 \end_inset
19049
19050 .
19051 \end_layout
19052
19053 \end_inset
19054
19055
19056 \newline
19057
19058 \begin_inset Note Greyedout
19059 status open
19060
19061 \begin_layout Standard
19062
19063 \series bold
19064 Note:
19065 \series default
19066  There is currently a bug in 
19067 \series bold
19068 endf\SpecialChar \textcompwordmark{}
19069 loat
19070 \series default
19071  when the caption contains a German 
19072 \begin_inset Quotes eld
19073 \end_inset
19074
19075 ß
19076 \begin_inset Quotes erd
19077 \end_inset
19078
19079 .
19080  Use in this case the command 
19081 \begin_inset Quotes eld
19082 \end_inset
19083
19084
19085 \series bold
19086
19087 \backslash
19088 ss
19089 \series default
19090
19091 \begin_inset Quotes erd
19092 \end_inset
19093
19094  in ERT instead of 
19095 \begin_inset Quotes eld
19096 \end_inset
19097
19098 ß
19099 \begin_inset Quotes erd
19100 \end_inset
19101
19102 .
19103 \end_layout
19104
19105 \end_inset
19106
19107
19108 \end_layout
19109
19110 \begin_layout Standard
19111 \begin_inset VSpace bigskip
19112 \end_inset
19113
19114 For more details about float placements, have a look at LaTeX books, 
19115 \begin_inset LatexCommand cite
19116 key "latexcompanion,latexguide,latexbook"
19117
19118 \end_inset
19119
19120 .
19121 \end_layout
19122
19123 \begin_layout Section
19124 Rotated Floats
19125 \begin_inset LatexCommand label
19126 name "sec:Rotated-Floats"
19127
19128 \end_inset
19129
19130
19131 \begin_inset LatexCommand index
19132 name "Floats ! Rotating"
19133
19134 \end_inset
19135
19136
19137 \end_layout
19138
19139 \begin_layout Standard
19140 Especially for wide tables you might have floats rotated.
19141  To rotate a whole float including the caption, right-click on the float-box
19142  and use the option 
19143 \family sans
19144 Rotate\InsetSpace ~
19145 sideways
19146 \family default
19147 .
19148 \end_layout
19149
19150 \begin_layout Standard
19151 Rotated floats are always placed on its own page (or column, when you have
19152  a two-column document).
19153  They are normally rotated so that you can read them from the outside margin
19154  -- to the left on even pages, to the right on odd pages.
19155 \end_layout
19156
19157 \begin_layout Standard
19158 Referencing rotated floats is the same like for normal floats, the caption
19159  format is also the same: Table\InsetSpace ~
19160
19161 \begin_inset LatexCommand ref
19162 reference "tab:Rotated-table"
19163
19164 \end_inset
19165
19166  is an example of a rotated table float.
19167 \end_layout
19168
19169 \begin_layout Standard
19170 \begin_inset Note Greyedout
19171 status open
19172
19173 \begin_layout Standard
19174
19175 \series bold
19176 Note:
19177 \series default
19178  Not all DVI-viewers are able to display rotated floats.
19179 \end_layout
19180
19181 \end_inset
19182
19183
19184 \end_layout
19185
19186 \begin_layout Standard
19187 \begin_inset Float table
19188 wide false
19189 sideways true
19190 status open
19191
19192 \begin_layout Standard
19193 \begin_inset Caption
19194
19195 \begin_layout Standard
19196 \begin_inset LatexCommand label
19197 name "tab:Rotated-table"
19198
19199 \end_inset
19200
19201  Rotated table
19202 \end_layout
19203
19204 \end_inset
19205
19206
19207 \end_layout
19208
19209 \begin_layout Standard
19210 \align center
19211 \begin_inset Tabular
19212 <lyxtabular version="3" rows="1" columns="5">
19213 <features>
19214 <column alignment="center" valignment="top" leftline="true" width="0">
19215 <column alignment="center" valignment="top" leftline="true" width="0">
19216 <column alignment="center" valignment="top" leftline="true" width="0">
19217 <column alignment="center" valignment="top" leftline="true" width="0">
19218 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
19219 <row topline="true" bottomline="true">
19220 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19221 \begin_inset Text
19222
19223 \begin_layout Standard
19224 test
19225 \end_layout
19226
19227 \end_inset
19228 </cell>
19229 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19230 \begin_inset Text
19231
19232 \begin_layout Standard
19233 b
19234 \end_layout
19235
19236 \end_inset
19237 </cell>
19238 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19239 \begin_inset Text
19240
19241 \begin_layout Standard
19242 c
19243 \end_layout
19244
19245 \end_inset
19246 </cell>
19247 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19248 \begin_inset Text
19249
19250 \begin_layout Standard
19251 d
19252 \end_layout
19253
19254 \end_inset
19255 </cell>
19256 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19257 \begin_inset Text
19258
19259 \begin_layout Standard
19260 e
19261 \end_layout
19262
19263 \end_inset
19264 </cell>
19265 </row>
19266 </lyxtabular>
19267
19268 \end_inset
19269
19270
19271 \end_layout
19272
19273 \end_inset
19274
19275
19276 \end_layout
19277
19278 \begin_layout Section
19279 Caption Formatting
19280 \begin_inset LatexCommand index
19281 name "Caption ! Formatting"
19282
19283 \end_inset
19284
19285
19286 \begin_inset LatexCommand index
19287 name "Floats ! Caption Formatting"
19288
19289 \end_inset
19290
19291
19292 \begin_inset LatexCommand index
19293 name "LaTeX-packages ! caption"
19294
19295 \end_inset
19296
19297
19298 \begin_inset LatexCommand label
19299 name "sec:Caption-Formatting"
19300
19301 \end_inset
19302
19303
19304 \end_layout
19305
19306 \begin_layout Standard
19307 The 
19308 \family sans
19309 Caption
19310 \family default
19311  environment is the default paragraph environment for 
19312 \family sans
19313 Floats
19314 \family default
19315 .
19316  On the LyX screen captions appear as label, e.\InsetSpace \thinspace{}
19317 g.\InsetSpace ~
19318
19319 \begin_inset Quotes eld
19320 \end_inset
19321
19322
19323 \family sans
19324 Figure #:
19325 \family default
19326
19327 \begin_inset Quotes erd
19328 \end_inset
19329
19330  followed by the caption text.
19331  The number sign 
19332 \begin_inset Quotes eld
19333 \end_inset
19334
19335 #
19336 \begin_inset Quotes erd
19337 \end_inset
19338
19339  is substituted in the printed output by the actual reference number.
19340  By default the label and the number are in the same font as the caption
19341  text and a colon follows the number to divide then label from the text.
19342  This caption format is not suitable for all document formats.
19343  
19344 \end_layout
19345
19346 \begin_layout Standard
19347 To change the default caption format, load the LaTeX-package 
19348 \series bold
19349 caption
19350 \series default
19351
19352 \begin_inset LatexCommand index
19353 name "LaTeX-packages ! caption"
19354
19355 \end_inset
19356
19357  in the document preamble with this line:
19358 \end_layout
19359
19360 \begin_layout Standard
19361
19362 \series bold
19363
19364 \backslash
19365 usepackage[format definition]{caption}
19366 \end_layout
19367
19368 \begin_layout Standard
19369 To have for example the label and the number in sans-serif bold font and
19370  the table captions always above the table like in this document, use the
19371  following command:
19372 \end_layout
19373
19374 \begin_layout Standard
19375
19376 \series bold
19377
19378 \backslash
19379 usepackage[labelfont={bf,sf}, tableposition=top]{caption}
19380 \end_layout
19381
19382 \begin_layout Standard
19383 You can also define different caption formats for the different float types.
19384  In this case load the 
19385 \series bold
19386 caption
19387 \series default
19388  package without format specific options and define the different formats
19389  with the help of the command
19390 \end_layout
19391
19392 \begin_layout Standard
19393
19394 \series bold
19395
19396 \backslash
19397 captionsetup[float type]{format definition}
19398 \end_layout
19399
19400 \begin_layout Standard
19401 in the document preamble.
19402  For example the caption formats of Figure\InsetSpace ~
19403
19404 \begin_inset LatexCommand ref
19405 reference "fig:This-is-an-fig"
19406
19407 \end_inset
19408
19409  and Table\InsetSpace ~
19410
19411 \begin_inset LatexCommand ref
19412 reference "tab:This-is-an-tab"
19413
19414 \end_inset
19415
19416  can be created using these commands in the document preamble:
19417 \end_layout
19418
19419 \begin_layout Standard
19420
19421 \series bold
19422
19423 \backslash
19424 usepackage[tableposition=top]{caption}
19425 \series default
19426
19427 \newline
19428
19429 \series bold
19430
19431 \backslash
19432 captionsetup[f\SpecialChar \textcompwordmark{}
19433 igure]{labelfont={tt}, textfont=it, indention=1cm,%
19434 \newline
19435
19436 \begin_inset ERT
19437 status collapsed
19438
19439 \begin_layout Standard
19440
19441
19442 \backslash
19443 hphantom{
19444 \backslash
19445
19446 \backslash
19447 captionsetup[figure]
19448 \backslash
19449 {}
19450 \end_layout
19451
19452 \end_inset
19453
19454  labelsep=period}
19455 \newline
19456
19457 \backslash
19458 captionsetup[table]{labelfont={bf,sf}}
19459 \end_layout
19460
19461 \begin_layout Standard
19462 For more information about the package 
19463 \series bold
19464 caption
19465 \series default
19466  we refer to its documentation 
19467 \begin_inset LatexCommand cite
19468 key "caption,caption-de"
19469
19470 \end_inset
19471
19472 .
19473 \end_layout
19474
19475 \begin_layout Standard
19476 \begin_inset VSpace bigskip
19477 \end_inset
19478
19479 If you are using a 
19480 \series bold
19481 koma-script
19482 \series default
19483
19484 \begin_inset LatexCommand index
19485 name "LaTeX-packages ! koma-script"
19486
19487 \end_inset
19488
19489  document class (
19490 \family sans
19491 article (koma-script)
19492 \family default
19493
19494 \family sans
19495 book (koma-script)
19496 \family default
19497
19498 \family sans
19499 letter (koma-script)
19500 \family default
19501 , or 
19502 \family sans
19503 report (koma-script)
19504 \family default
19505 \InsetSpace \thinspace{}
19506 ), you can alternatively to the 
19507 \series bold
19508 caption
19509 \series default
19510  package use 
19511 \series bold
19512 koma-script
19513 \series default
19514 's built-in command 
19515 \series bold
19516
19517 \backslash
19518 setkomafont
19519 \series default
19520 .
19521  For example, to have the caption label in bold, add this command to your
19522  document preamble:
19523 \end_layout
19524
19525 \begin_layout Standard
19526
19527 \series bold
19528
19529 \backslash
19530 setkomafont{captionlabel}{
19531 \backslash
19532 bfseries}
19533 \end_layout
19534
19535 \begin_layout Standard
19536 For more information about 
19537 \series bold
19538
19539 \backslash
19540 setkomafont
19541 \series default
19542  we refer to the 
19543 \series bold
19544 koma-script
19545 \series default
19546  documentation 
19547 \begin_inset LatexCommand cite
19548 key "koma-script,koma-script-de"
19549
19550 \end_inset
19551
19552 .
19553 \end_layout
19554
19555 \begin_layout Standard
19556 \begin_inset ERT
19557 status collapsed
19558
19559 \begin_layout Standard
19560
19561
19562 \backslash
19563 captionsetup[figure]{labelfont={tt}, textfont=it, indention=1cm, labelsep=period
19564 }
19565 \end_layout
19566
19567 \end_inset
19568
19569
19570 \begin_inset Note Note
19571 status open
19572
19573 \begin_layout Standard
19574 The caption format is changed only for this example.
19575 \end_layout
19576
19577 \end_inset
19578
19579
19580 \end_layout
19581
19582 \begin_layout Standard
19583 \begin_inset Float figure
19584 placement !p
19585 wide false
19586 sideways false
19587 status open
19588
19589 \begin_layout Standard
19590 \align center
19591 \begin_inset Graphics
19592         filename mobius.eps
19593         lyxscale 50
19594         scale 50
19595
19596 \end_inset
19597
19598
19599 \end_layout
19600
19601 \begin_layout Standard
19602 \begin_inset Caption
19603
19604 \begin_layout Standard
19605 \begin_inset LatexCommand label
19606 name "fig:This-is-an-fig"
19607
19608 \end_inset
19609
19610 This is an example figure caption that is longer than one line to show the
19611  different caption format.
19612  Here a self-defined caption format is used.
19613 \end_layout
19614
19615 \end_inset
19616
19617
19618 \end_layout
19619
19620 \end_inset
19621
19622
19623 \end_layout
19624
19625 \begin_layout Standard
19626 \begin_inset ERT
19627 status collapsed
19628
19629 \begin_layout Standard
19630
19631
19632 \backslash
19633 captionsetup[figure]{labelfont={bf,sf}, textfont=rm, indention=0cm, labelsep=col
19634 on}
19635 \end_layout
19636
19637 \end_inset
19638
19639
19640 \end_layout
19641
19642 \begin_layout Standard
19643 \begin_inset Float table
19644 placement !p
19645 wide false
19646 sideways false
19647 status open
19648
19649 \begin_layout Standard
19650 \begin_inset Caption
19651
19652 \begin_layout Standard
19653 \begin_inset LatexCommand label
19654 name "tab:This-is-an-tab"
19655
19656 \end_inset
19657
19658 This is an example table caption that is longer than one line to show the
19659  different caption format.
19660  Here the standard caption format for tables in this document is used.
19661 \end_layout
19662
19663 \end_inset
19664
19665
19666 \end_layout
19667
19668 \begin_layout Standard
19669 \align center
19670 \begin_inset Tabular
19671 <lyxtabular version="3" rows="1" columns="5">
19672 <features>
19673 <column alignment="center" valignment="top" leftline="true" width="0">
19674 <column alignment="center" valignment="top" leftline="true" width="0">
19675 <column alignment="center" valignment="top" leftline="true" width="0">
19676 <column alignment="center" valignment="top" leftline="true" width="0">
19677 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
19678 <row topline="true" bottomline="true">
19679 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19680 \begin_inset Text
19681
19682 \begin_layout Standard
19683 a
19684 \end_layout
19685
19686 \end_inset
19687 </cell>
19688 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19689 \begin_inset Text
19690
19691 \begin_layout Standard
19692 b
19693 \end_layout
19694
19695 \end_inset
19696 </cell>
19697 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19698 \begin_inset Text
19699
19700 \begin_layout Standard
19701 c
19702 \end_layout
19703
19704 \end_inset
19705 </cell>
19706 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19707 \begin_inset Text
19708
19709 \begin_layout Standard
19710 d
19711 \end_layout
19712
19713 \end_inset
19714 </cell>
19715 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19716 \begin_inset Text
19717
19718 \begin_layout Standard
19719 e
19720 \end_layout
19721
19722 \end_inset
19723 </cell>
19724 </row>
19725 </lyxtabular>
19726
19727 \end_inset
19728
19729
19730 \end_layout
19731
19732 \end_inset
19733
19734
19735 \end_layout
19736
19737 \begin_layout Section
19738 Caption Placement
19739 \begin_inset LatexCommand index
19740 name "Caption ! Placement"
19741
19742 \end_inset
19743
19744
19745 \begin_inset LatexCommand index
19746 name "Floats ! Caption Placement"
19747
19748 \end_inset
19749
19750
19751 \begin_inset LatexCommand label
19752 name "sec:Caption-Placement"
19753
19754 \end_inset
19755
19756
19757 \end_layout
19758
19759 \begin_layout Standard
19760 The common caption placement rule is:
19761 \end_layout
19762
19763 \begin_layout Description
19764 Figure: Caption is set below the figure
19765 \end_layout
19766
19767 \begin_layout Description
19768 Table: Caption is set above the table
19769 \end_layout
19770
19771 \begin_layout Standard
19772 Having the caption above the table is unfortunately not supported in LaTeX's
19773  standard classes.
19774  That means if you are using the document classes 
19775 \family sans
19776 article
19777 \family default
19778
19779 \family sans
19780 book
19781 \family default
19782
19783 \family sans
19784 letter
19785 \family default
19786 , or 
19787 \family sans
19788 report
19789 \family default
19790  there will be no space between the caption and the table.
19791  To insert the needed space, add the following option to the load command
19792  of the LaTeX-package 
19793 \series bold
19794 caption
19795 \series default
19796  in your document preamble
19797 \begin_inset Foot
19798 status collapsed
19799
19800 \begin_layout Standard
19801 See section\InsetSpace ~
19802
19803 \begin_inset LatexCommand ref
19804 reference "sec:Caption-Formatting"
19805
19806 \end_inset
19807
19808  for more information of the package 
19809 \series bold
19810 caption
19811 \series default
19812 .
19813 \end_layout
19814
19815 \end_inset
19816
19817 :
19818 \end_layout
19819
19820 \begin_layout Standard
19821
19822 \series bold
19823 tableposition=top
19824 \end_layout
19825
19826 \begin_layout Standard
19827 If you are using a 
19828 \series bold
19829 koma-script
19830 \series default
19831
19832 \begin_inset LatexCommand index
19833 name "LaTeX-packages ! koma-script"
19834
19835 \end_inset
19836
19837  document class (
19838 \family sans
19839 article (koma-script)
19840 \family default
19841
19842 \family sans
19843 book (koma-script)
19844 \family default
19845
19846 \family sans
19847 letter (koma-script)
19848 \family default
19849 , or 
19850 \family sans
19851 report (koma-script)
19852 \family default
19853 \InsetSpace \thinspace{}
19854 ), you can alternatively to the 
19855 \series bold
19856 caption
19857 \series default
19858  package set the document class option 
19859 \series bold
19860 tablecaptionabove
19861 \series default
19862 , or you can use the environment 
19863 \family sans
19864 caption\InsetSpace ~
19865 above
19866 \family default
19867  instead of the 
19868 \family sans
19869 caption
19870 \family default
19871  environment.
19872 \end_layout
19873
19874 \begin_layout Standard
19875 \begin_inset VSpace bigskip
19876 \end_inset
19877
19878 It is also possible to set the caption beside a figure or table.
19879  To get this the LaTeX-package 
19880 \series bold
19881 sidecap
19882 \series default
19883
19884 \begin_inset LatexCommand index
19885 name "LaTeX-packages ! sidecap"
19886
19887 \end_inset
19888
19889  has to be loaded in the document preamble with the line
19890 \end_layout
19891
19892 \begin_layout Standard
19893
19894 \series bold
19895
19896 \backslash
19897 usepackage[option]{sidecap}
19898 \end_layout
19899
19900 \begin_layout Standard
19901 If you set no option, the caption is placed on the side of the outer page
19902  margin -- to the right on odd pages, to the left on even pages.
19903  You can change the placement to inner margin with the option 
19904 \series bold
19905 innercaption
19906 \series default
19907 .
19908  To force the placement always to the right or left, use the option 
19909 \series bold
19910 rightcaption
19911 \series default
19912  or 
19913 \series bold
19914 leftcaption
19915 \series default
19916 , respectively.
19917 \end_layout
19918
19919 \begin_layout Standard
19920 To place in LyX the caption of a float on the side, it is necessary to add
19921  these commands to the document preamble:
19922 \end_layout
19923
19924 \begin_layout Standard
19925
19926 \lyxline
19927
19928 \end_layout
19929
19930 \begin_layout Standard
19931
19932 \series bold
19933
19934 \backslash
19935 newcommand{
19936 \backslash
19937 TabBesBeg}{%
19938 \newline
19939
19940 \begin_inset ERT
19941 status collapsed
19942
19943 \begin_layout Standard
19944
19945
19946 \backslash
19947 hphantom{ }
19948 \end_layout
19949
19950 \end_inset
19951
19952
19953 \backslash
19954 let
19955 \backslash
19956 MyTable
19957 \backslash
19958 table
19959 \newline
19960
19961 \begin_inset ERT
19962 status collapsed
19963
19964 \begin_layout Standard
19965
19966
19967 \backslash
19968 hphantom{ }
19969 \end_layout
19970
19971 \end_inset
19972
19973
19974 \backslash
19975 let
19976 \backslash
19977 MyEndtable
19978 \backslash
19979 endtable
19980 \newline
19981
19982 \begin_inset ERT
19983 status collapsed
19984
19985 \begin_layout Standard
19986
19987
19988 \backslash
19989 hphantom{ }
19990 \end_layout
19991
19992 \end_inset
19993
19994
19995 \backslash
19996 renewenvironment{table}{
19997 \backslash
19998 begin{SCtable}}{
19999 \backslash
20000 end{SCtable}}}
20001 \end_layout
20002
20003 \begin_layout Standard
20004
20005 \series bold
20006
20007 \backslash
20008 newcommand{
20009 \backslash
20010 TabBesEnd}{%
20011 \newline
20012
20013 \begin_inset ERT
20014 status collapsed
20015
20016 \begin_layout Standard
20017
20018
20019 \backslash
20020 hphantom{ }
20021 \end_layout
20022
20023 \end_inset
20024
20025
20026 \backslash
20027 let
20028 \backslash
20029 table
20030 \backslash
20031 MyTable
20032 \newline
20033
20034 \begin_inset ERT
20035 status collapsed
20036
20037 \begin_layout Standard
20038
20039
20040 \backslash
20041 hphantom{ }
20042 \end_layout
20043
20044 \end_inset
20045
20046
20047 \backslash
20048 let
20049 \backslash
20050 endtable
20051 \backslash
20052 MyEndtable
20053 \end_layout
20054
20055 \begin_layout Standard
20056
20057 \series bold
20058
20059 \backslash
20060 newcommand{
20061 \backslash
20062 FigBesBeg}{%
20063 \newline
20064
20065 \begin_inset ERT
20066 status collapsed
20067
20068 \begin_layout Standard
20069
20070
20071 \backslash
20072 hphantom{ }
20073 \end_layout
20074
20075 \end_inset
20076
20077
20078 \backslash
20079 let
20080 \backslash
20081 MyFigure
20082 \backslash
20083 f\SpecialChar \textcompwordmark{}
20084 igure
20085 \newline
20086
20087 \begin_inset ERT
20088 status collapsed
20089
20090 \begin_layout Standard
20091
20092
20093 \backslash
20094 hphantom{ }
20095 \end_layout
20096
20097 \end_inset
20098
20099
20100 \backslash
20101 let
20102 \backslash
20103 MyEndf\SpecialChar \textcompwordmark{}
20104 igure
20105 \backslash
20106 endf\SpecialChar \textcompwordmark{}
20107 igure
20108 \newline
20109
20110 \begin_inset ERT
20111 status collapsed
20112
20113 \begin_layout Standard
20114
20115
20116 \backslash
20117 hphantom{ }
20118 \end_layout
20119
20120 \end_inset
20121
20122
20123 \backslash
20124 renewenvironment{f\SpecialChar \textcompwordmark{}
20125 igure}{
20126 \backslash
20127 begin{SCf\SpecialChar \textcompwordmark{}
20128 igure}}{
20129 \backslash
20130 end{SCf\SpecialChar \textcompwordmark{}
20131 igure}}}
20132 \end_layout
20133
20134 \begin_layout Standard
20135
20136 \series bold
20137
20138 \backslash
20139 newcommand{
20140 \backslash
20141 FigBesEnd}{%
20142 \newline
20143
20144 \begin_inset ERT
20145 status collapsed
20146
20147 \begin_layout Standard
20148
20149
20150 \backslash
20151 hphantom{ }
20152 \end_layout
20153
20154 \end_inset
20155
20156
20157 \backslash
20158 let
20159 \backslash
20160 f\SpecialChar \textcompwordmark{}
20161 igure
20162 \backslash
20163 MyFigure
20164 \newline
20165
20166 \begin_inset ERT
20167 status collapsed
20168
20169 \begin_layout Standard
20170
20171
20172 \backslash
20173 hphantom{ }
20174 \end_layout
20175
20176 \end_inset
20177
20178
20179 \backslash
20180 let
20181 \backslash
20182 endf\SpecialChar \textcompwordmark{}
20183 igure
20184 \backslash
20185 MyEndf\SpecialChar \textcompwordmark{}
20186 igure}
20187 \end_layout
20188
20189 \begin_layout Standard
20190
20191 \lyxline
20192
20193 \end_layout
20194
20195 \begin_layout Standard
20196 The commands allow you to redefine the floats so that the caption is set
20197  on the side.
20198  For figure floats use the command
20199 \end_layout
20200
20201 \begin_layout Standard
20202
20203 \series bold
20204
20205 \backslash
20206 FigBesBeg
20207 \end_layout
20208
20209 \begin_layout Standard
20210 in ERT before the float.
20211  Behind the float insert the command
20212 \end_layout
20213
20214 \begin_layout Standard
20215
20216 \series bold
20217
20218 \backslash
20219 FigBesEnd
20220 \end_layout
20221
20222 \begin_layout Standard
20223 in ERT to get back to the original float definition.
20224 \end_layout
20225
20226 \begin_layout Standard
20227 For table floats use the corresponding commands
20228 \end_layout
20229
20230 \begin_layout Standard
20231
20232 \series bold
20233
20234 \backslash
20235 TabBesBeg
20236 \series default
20237  and 
20238 \series bold
20239
20240 \backslash
20241 TabBesEnd
20242 \end_layout
20243
20244 \begin_layout Standard
20245 Figure\InsetSpace ~
20246
20247 \begin_inset LatexCommand ref
20248 reference "fig:cap-beside-fig"
20249
20250 \end_inset
20251
20252  and Table\InsetSpace ~
20253
20254 \begin_inset LatexCommand ref
20255 reference "tab:cap-beside-tab"
20256
20257 \end_inset
20258
20259  are examples where the caption is set beside.
20260 \end_layout
20261
20262 \begin_layout Standard
20263 You can see in the examples that the caption text appears at the top of
20264  the floats for table floats and at the bottom for figure floats.
20265  To change this, you can use the command
20266 \end_layout
20267
20268 \begin_layout Standard
20269
20270 \series bold
20271
20272 \backslash
20273 sidecaptionvpos{float type}{placement}
20274 \end_layout
20275
20276 \begin_layout Standard
20277 in the document preamble or in ERT before the float.
20278  The float type is either 
20279 \family sans
20280 figure
20281 \family default
20282  or 
20283 \family sans
20284 table
20285 \family default
20286 , the placement can be 
20287 \begin_inset Quotes eld
20288 \end_inset
20289
20290
20291 \family sans
20292 t
20293 \family default
20294
20295 \begin_inset Quotes erd
20296 \end_inset
20297
20298  for top, 
20299 \begin_inset Quotes eld
20300 \end_inset
20301
20302
20303 \family sans
20304 c
20305 \family default
20306
20307 \begin_inset Quotes erd
20308 \end_inset
20309
20310  for center, or 
20311 \begin_inset Quotes eld
20312 \end_inset
20313
20314
20315 \family sans
20316 b
20317 \family default
20318
20319 \begin_inset Quotes erd
20320 \end_inset
20321
20322  for bottom.
20323  To have for example the caption of figure floats vertically centered, use
20324  the command
20325 \end_layout
20326
20327 \begin_layout Standard
20328
20329 \series bold
20330
20331 \backslash
20332 sidecaptionvpos{f\SpecialChar \textcompwordmark{}
20333 igure}{c}
20334 \end_layout
20335
20336 \begin_layout Standard
20337 This was used for Figure\InsetSpace ~
20338
20339 \begin_inset LatexCommand ref
20340 reference "fig:cap-beside-fig-2"
20341
20342 \end_inset
20343
20344 .
20345 \end_layout
20346
20347 \begin_layout Standard
20348 \begin_inset VSpace defskip
20349 \end_inset
20350
20351 For more information about the package 
20352 \series bold
20353 sidecap
20354 \series default
20355  we refer to its documentation 
20356 \begin_inset LatexCommand cite
20357 key "sidecap"
20358
20359 \end_inset
20360
20361 .
20362 \end_layout
20363
20364 \begin_layout Standard
20365 \begin_inset Note Greyedout
20366 status open
20367
20368 \begin_layout Standard
20369
20370 \series bold
20371 Note:
20372 \series default
20373  The LaTeX-package 
20374 \series bold
20375 hypcap
20376 \series default
20377
20378 \begin_inset LatexCommand index
20379 name "LaTeX-packages ! hypcap"
20380
20381 \end_inset
20382
20383 , described in section\InsetSpace ~
20384
20385 \begin_inset LatexCommand ref
20386 reference "sub:Reference-Position"
20387
20388 \end_inset
20389
20390 , has no effect on floats with the caption set beside.
20391 \end_layout
20392
20393 \end_inset
20394
20395
20396 \end_layout
20397
20398 \begin_layout Standard
20399 \begin_inset ERT
20400 status collapsed
20401
20402 \begin_layout Standard
20403
20404
20405 \backslash
20406 FigBesBeg 
20407 \end_layout
20408
20409 \end_inset
20410
20411
20412 \end_layout
20413
20414 \begin_layout Standard
20415 \begin_inset Float figure
20416 wide false
20417 sideways false
20418 status open
20419
20420 \begin_layout Standard
20421 \begin_inset Graphics
20422         filename escher-lsd.eps
20423         scale 75
20424
20425 \end_inset
20426
20427
20428 \end_layout
20429
20430 \begin_layout Standard
20431 \begin_inset Caption
20432
20433 \begin_layout Standard
20434 \begin_inset LatexCommand label
20435 name "fig:cap-beside-fig"
20436
20437 \end_inset
20438
20439 This is a caption beside a figure.
20440 \end_layout
20441
20442 \end_inset
20443
20444
20445 \end_layout
20446
20447 \end_inset
20448
20449
20450 \end_layout
20451
20452 \begin_layout Standard
20453 \begin_inset ERT
20454 status collapsed
20455
20456 \begin_layout Standard
20457
20458
20459 \backslash
20460 TabBesBeg 
20461 \end_layout
20462
20463 \end_inset
20464
20465
20466 \end_layout
20467
20468 \begin_layout Standard
20469 \begin_inset Float table
20470 wide false
20471 sideways false
20472 status open
20473
20474 \begin_layout Standard
20475 \begin_inset Caption
20476
20477 \begin_layout Standard
20478 \begin_inset LatexCommand label
20479 name "tab:cap-beside-tab"
20480
20481 \end_inset
20482
20483 This is a caption beside a table.
20484 \end_layout
20485
20486 \end_inset
20487
20488
20489 \end_layout
20490
20491 \begin_layout Standard
20492 \begin_inset Tabular
20493 <lyxtabular version="3" rows="4" columns="5">
20494 <features>
20495 <column alignment="center" valignment="top" leftline="true" width="0">
20496 <column alignment="center" valignment="top" leftline="true" width="0">
20497 <column alignment="center" valignment="top" leftline="true" width="0">
20498 <column alignment="center" valignment="top" leftline="true" width="0">
20499 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
20500 <row topline="true">
20501 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20502 \begin_inset Text
20503
20504 \begin_layout Standard
20505 a
20506 \end_layout
20507
20508 \end_inset
20509 </cell>
20510 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20511 \begin_inset Text
20512
20513 \begin_layout Standard
20514
20515 \end_layout
20516
20517 \end_inset
20518 </cell>
20519 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20520 \begin_inset Text
20521
20522 \begin_layout Standard
20523 b
20524 \end_layout
20525
20526 \end_inset
20527 </cell>
20528 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20529 \begin_inset Text
20530
20531 \begin_layout Standard
20532
20533 \end_layout
20534
20535 \end_inset
20536 </cell>
20537 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20538 \begin_inset Text
20539
20540 \begin_layout Standard
20541 c
20542 \end_layout
20543
20544 \end_inset
20545 </cell>
20546 </row>
20547 <row topline="true">
20548 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20549 \begin_inset Text
20550
20551 \begin_layout Standard
20552
20553 \end_layout
20554
20555 \end_inset
20556 </cell>
20557 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20558 \begin_inset Text
20559
20560 \begin_layout Standard
20561 d
20562 \end_layout
20563
20564 \end_inset
20565 </cell>
20566 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20567 \begin_inset Text
20568
20569 \begin_layout Standard
20570
20571 \end_layout
20572
20573 \end_inset
20574 </cell>
20575 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20576 \begin_inset Text
20577
20578 \begin_layout Standard
20579 e
20580 \end_layout
20581
20582 \end_inset
20583 </cell>
20584 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20585 \begin_inset Text
20586
20587 \begin_layout Standard
20588
20589 \end_layout
20590
20591 \end_inset
20592 </cell>
20593 </row>
20594 <row topline="true">
20595 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20596 \begin_inset Text
20597
20598 \begin_layout Standard
20599 f
20600 \end_layout
20601
20602 \end_inset
20603 </cell>
20604 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20605 \begin_inset Text
20606
20607 \begin_layout Standard
20608
20609 \end_layout
20610
20611 \end_inset
20612 </cell>
20613 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20614 \begin_inset Text
20615
20616 \begin_layout Standard
20617 g
20618 \end_layout
20619
20620 \end_inset
20621 </cell>
20622 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20623 \begin_inset Text
20624
20625 \begin_layout Standard
20626
20627 \end_layout
20628
20629 \end_inset
20630 </cell>
20631 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20632 \begin_inset Text
20633
20634 \begin_layout Standard
20635 h
20636 \end_layout
20637
20638 \end_inset
20639 </cell>
20640 </row>
20641 <row topline="true" bottomline="true">
20642 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20643 \begin_inset Text
20644
20645 \begin_layout Standard
20646
20647 \end_layout
20648
20649 \end_inset
20650 </cell>
20651 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20652 \begin_inset Text
20653
20654 \begin_layout Standard
20655 i
20656 \end_layout
20657
20658 \end_inset
20659 </cell>
20660 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20661 \begin_inset Text
20662
20663 \begin_layout Standard
20664
20665 \end_layout
20666
20667 \end_inset
20668 </cell>
20669 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20670 \begin_inset Text
20671
20672 \begin_layout Standard
20673 j
20674 \end_layout
20675
20676 \end_inset
20677 </cell>
20678 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20679 \begin_inset Text
20680
20681 \begin_layout Standard
20682
20683 \end_layout
20684
20685 \end_inset
20686 </cell>
20687 </row>
20688 </lyxtabular>
20689
20690 \end_inset
20691
20692
20693 \end_layout
20694
20695 \end_inset
20696
20697
20698 \end_layout
20699
20700 \begin_layout Standard
20701 \begin_inset ERT
20702 status collapsed
20703
20704 \begin_layout Standard
20705
20706
20707 \backslash
20708 TabBesEnd
20709 \end_layout
20710
20711 \end_inset
20712
20713
20714 \end_layout
20715
20716 \begin_layout Standard
20717 \begin_inset ERT
20718 status collapsed
20719
20720 \begin_layout Standard
20721
20722
20723 \backslash
20724 sidecaptionvpos{figure}{c}
20725 \end_layout
20726
20727 \end_inset
20728
20729
20730 \begin_inset Float figure
20731 wide false
20732 sideways false
20733 status open
20734
20735 \begin_layout Standard
20736 \begin_inset Graphics
20737         filename escher-lsd.eps
20738         scale 75
20739
20740 \end_inset
20741
20742
20743 \end_layout
20744
20745 \begin_layout Standard
20746 \begin_inset Caption
20747
20748 \begin_layout Standard
20749 \begin_inset LatexCommand label
20750 name "fig:cap-beside-fig-2"
20751
20752 \end_inset
20753
20754 This is a vertically centered caption beside a figure.
20755 \end_layout
20756
20757 \end_inset
20758
20759
20760 \end_layout
20761
20762 \end_inset
20763
20764
20765 \end_layout
20766
20767 \begin_layout Standard
20768 \begin_inset ERT
20769 status collapsed
20770
20771 \begin_layout Standard
20772
20773
20774 \backslash
20775 FigBesEnd
20776 \end_layout
20777
20778 \end_inset
20779
20780
20781 \end_layout
20782
20783 \begin_layout Section
20784 Listings of Floats
20785 \begin_inset LatexCommand label
20786 name "sec:Listings-of-Floats"
20787
20788 \end_inset
20789
20790
20791 \begin_inset LatexCommand index
20792 name "Floats ! Listings"
20793
20794 \end_inset
20795
20796
20797 \end_layout
20798
20799 \begin_layout Standard
20800 Similar to the the table of contents where the sections of the document
20801  are listed, there are listings for all float types, like the figures of
20802  the documents.
20803  You can insert them via the 
20804 \family sans
20805 Insert\SpecialChar \menuseparator
20806 List\InsetSpace ~
20807 /\InsetSpace ~
20808 TOC
20809 \family default
20810  sub menus.
20811 \end_layout
20812
20813 \begin_layout Standard
20814 The list entries are the float captions or its short title, the float number,
20815  and the page number where they appear in the document.
20816 \end_layout
20817
20818 \begin_layout Standard
20819 You can find the list of figures and tables at the end of this document.
20820 \end_layout
20821
20822 \begin_layout Chapter
20823 Notes
20824 \end_layout
20825
20826 \begin_layout Section
20827 \begin_inset ERT
20828 status collapsed
20829
20830 \begin_layout Standard
20831
20832
20833 \backslash
20834 texorpdfstring{
20835 \end_layout
20836
20837 \end_inset
20838
20839 LyX
20840 \begin_inset ERT
20841 status collapsed
20842
20843 \begin_layout Standard
20844
20845 }{LyX}
20846 \end_layout
20847
20848 \end_inset
20849
20850  Notes
20851 \begin_inset LatexCommand label
20852 name "sec:LyX-Notes"
20853
20854 \end_inset
20855
20856
20857 \begin_inset LatexCommand index
20858 name "Notes ! LyX Notes"
20859
20860 \end_inset
20861
20862
20863 \begin_inset Note Note
20864 status collapsed
20865
20866 \begin_layout Standard
20867 The command 
20868 \backslash
20869 texorpdfstring is provided by the LaTeX-package hyperref to avoid that ligatures
20870  are displayed wrongly in PDF-bookmarks.
20871  For more information about this, have a look at 
20872 \begin_inset LatexCommand cite
20873 key "hyperref"
20874
20875 \end_inset
20876
20877 .
20878 \end_layout
20879
20880 \end_inset
20881
20882
20883 \end_layout
20884
20885 \begin_layout Standard
20886 Notes are inserted with the toolbar button 
20887 \begin_inset Graphics
20888         filename ../images/note-insert.xpm
20889         scale 85
20890
20891 \end_inset
20892
20893  or the menu 
20894 \family sans
20895 Insert\SpecialChar \menuseparator
20896 Note
20897 \family default
20898 .
20899  There are three types of notes:
20900 \end_layout
20901
20902 \begin_layout Description
20903 LyX\InsetSpace ~
20904 Note This note type is for internal notes that won't appear in the output.
20905  Its note-box looks like this:
20906 \newline
20907
20908 \newline
20909
20910 \begin_inset Graphics
20911         filename ../clipart/LyXNoteImageQt4.png
20912         display none
20913         scale 85
20914
20915 \end_inset
20916
20917  
20918 \begin_inset Note Note
20919 status open
20920
20921 \begin_layout Standard
20922 This is text in a note box that doesn't appear in the output.
20923 \end_layout
20924
20925 \end_inset
20926
20927
20928 \end_layout
20929
20930 \begin_layout Description
20931 Comment This note also doesn't appear in the output but it appears as LaTeX-comm
20932 ent, when you export the document to LaTeX via the menu 
20933 \family sans
20934 File\SpecialChar \menuseparator
20935 Export\SpecialChar \menuseparator
20936 LaTeX (pdflatex) / LaTeX (plain)
20937 \family default
20938 .
20939  Its note-box looks like this:
20940 \newline
20941
20942 \newline
20943
20944 \begin_inset Graphics
20945         filename ../clipart/CommentNoteImageQt4.png
20946         display none
20947         scale 85
20948
20949 \end_inset
20950
20951  
20952 \begin_inset Note Comment
20953 status open
20954
20955 \begin_layout Standard
20956 This is text in a note box that only appears as comment in LaTeX-files.
20957 \end_layout
20958
20959 \end_inset
20960
20961
20962 \end_layout
20963
20964 \begin_layout Description
20965 Greyed\InsetSpace ~
20966 Out This note will appear in the output as grey text.
20967  Its note-box looks like this:
20968 \newline
20969
20970 \newline
20971
20972 \begin_inset Graphics
20973         filename ../clipart/GreyedOutNoteImageQt4.png
20974         display none
20975         scale 85
20976
20977 \end_inset
20978
20979
20980 \newline
20981
20982 \begin_inset ERT
20983 status collapsed
20984
20985 \begin_layout Standard
20986
20987
20988 \backslash
20989 renewenvironment{lyxgreyedout}
20990 \end_layout
20991
20992 \begin_layout Standard
20993
20994 {
20995 \backslash
20996 textcolor[gray]{0.8}
20997 \backslash
20998 bgroup}{
20999 \backslash
21000 egroup}
21001 \end_layout
21002
21003 \end_inset
21004
21005
21006 \begin_inset Note Greyedout
21007 status open
21008
21009 \begin_layout Standard
21010 This is text
21011 \begin_inset Foot
21012 status open
21013
21014 \begin_layout Standard
21015 This is an example footnote within a greyed out note.
21016 \end_layout
21017
21018 \end_inset
21019
21020  of a comment that appears in the output as grey text.
21021 \end_layout
21022
21023 \end_inset
21024
21025
21026 \begin_inset ERT
21027 status collapsed
21028
21029 \begin_layout Standard
21030
21031
21032 \backslash
21033 renewenvironment{lyxgreyedout}
21034 \end_layout
21035
21036 \begin_layout Standard
21037
21038 {
21039 \backslash
21040 textcolor{blue}
21041 \backslash
21042 bgroup}{
21043 \backslash
21044 egroup}
21045 \end_layout
21046
21047 \end_inset
21048
21049
21050 \begin_inset Note Note
21051 status collapsed
21052
21053 \begin_layout Standard
21054 The greyed out note is here redefined to show it with the original LyX definitio
21055 n because greyed out notes are redefined in the preamble of this document,
21056  as described below, to have blue text.
21057 \end_layout
21058
21059 \end_inset
21060
21061
21062 \newline
21063
21064 \newline
21065 As you can see in the example, the first line of greyed out notes is a bit
21066  indented and greyed out notes can have footnotes.
21067 \end_layout
21068
21069 \begin_layout Description
21070 Framed This note will appear in the output as framed text.
21071  Its note-box looks like this:
21072 \newline
21073
21074 \newline
21075
21076 \begin_inset Graphics
21077         filename ../clipart/FramedNoteImageQt4.png
21078         display none
21079         scale 85
21080
21081 \end_inset
21082
21083  
21084 \begin_inset Note Framed
21085 status open
21086
21087 \begin_layout Standard
21088 This is text in a note box that appears framed in the output.
21089 \end_layout
21090
21091 \end_inset
21092
21093  In contrary to framed boxes
21094 \begin_inset Foot
21095 status collapsed
21096
21097 \begin_layout Standard
21098 Framed boxes are described in section\InsetSpace ~
21099
21100 \begin_inset LatexCommand ref
21101 reference "sec:Framed-Boxes"
21102
21103 \end_inset
21104
21105 .
21106 \end_layout
21107
21108 \end_inset
21109
21110  the frame uses always the whole text width and the note is set into its
21111  own paragraph.
21112 \end_layout
21113
21114 \begin_layout Description
21115 Shaded This note will appear in the output with red background color.
21116  Its note box looks like this:
21117 \newline
21118
21119 \newline
21120
21121 \begin_inset Graphics
21122         filename ../clipart/ShadedNoteImageQt4.png
21123         display none
21124         scale 85
21125
21126 \end_inset
21127
21128
21129 \begin_inset Note Shaded
21130 status open
21131
21132 \begin_layout Standard
21133 This text in a note box appears in the output with red background.
21134 \end_layout
21135
21136 \end_inset
21137
21138 In contrary to colored boxes
21139 \begin_inset Foot
21140 status collapsed
21141
21142 \begin_layout Standard
21143 Colored boxes are described in section\InsetSpace ~
21144
21145 \begin_inset LatexCommand ref
21146 reference "sec:Colored-Boxes"
21147
21148 \end_inset
21149
21150 .
21151 \end_layout
21152
21153 \end_inset
21154
21155  the note uses always the whole text width and the note is set into its
21156  own paragraph.
21157 \end_layout
21158
21159 \begin_layout Standard
21160 \begin_inset VSpace bigskip
21161 \end_inset
21162
21163 When you use the toolbar button to insert notes, a 
21164 \family sans
21165 LyX\InsetSpace ~
21166 Note
21167 \family default
21168  is inserted.
21169  You can switch between the three note types by right-clicking on the note-box.
21170  
21171 \family roman
21172 \series medium
21173 \bar no
21174 If you want to turn existing text into a note, mark it and click on the
21175  note 
21176 \family default
21177 \series default
21178 \bar default
21179 toolbar 
21180 \family roman
21181 \series medium
21182 \bar no
21183 button
21184 \family default
21185 \series default
21186 \bar default
21187 .
21188 \end_layout
21189
21190 \begin_layout Standard
21191 \begin_inset VSpace bigskip
21192 \end_inset
21193
21194 You can change the text color of the greyed out notes in the preamble with
21195  the following command:
21196 \end_layout
21197
21198 \begin_layout Standard
21199
21200 \series bold
21201
21202 \backslash
21203 renewenvironment{lyxgreyedout}
21204 \newline
21205
21206 \begin_inset ERT
21207 status collapsed
21208
21209 \begin_layout Standard
21210
21211
21212 \backslash
21213 hphantom{ }
21214 \end_layout
21215
21216 \end_inset
21217
21218 {
21219 \backslash
21220 textcolor{color}
21221 \backslash
21222 bgroup}{
21223 \backslash
21224 egroup}
21225 \end_layout
21226
21227 \begin_layout Standard
21228 The available colors and the method to define own colors is explained in
21229  section\InsetSpace ~
21230
21231 \begin_inset LatexCommand ref
21232 reference "sec:Colored-Tables"
21233
21234 \end_inset
21235
21236 .
21237 \end_layout
21238
21239 \begin_layout Standard
21240 Notes that appear in blue in this document are set using greyed out notes
21241  with blue text.
21242 \end_layout
21243
21244 \begin_layout Standard
21245 \begin_inset VSpace bigskip
21246 \end_inset
21247
21248
21249 \end_layout
21250
21251 \begin_layout Standard
21252 The text style of 
21253 \family sans
21254 Framed
21255 \family default
21256  and 
21257 \family sans
21258 Shaded
21259 \family default
21260  notes can be set in the 
21261 \family sans
21262 Text Style
21263 \family default
21264  dialog.
21265 \end_layout
21266
21267 \begin_layout Standard
21268 The default frame width for 
21269 \family sans
21270 Framed
21271 \family default
21272  notes is 0.4\InsetSpace \thinspace{}
21273 pt; it can be changed by changing the size 
21274 \series bold
21275
21276 \backslash
21277 FrameRule
21278 \series default
21279 .
21280  The default space between the note content and the frame is 9\InsetSpace \thinspace{}
21281 pt; it can
21282  be changed by changing the size 
21283 \series bold
21284
21285 \backslash
21286 FrameSep
21287 \series default
21288 .
21289  For example the frame appearance of the following 
21290 \family sans
21291 Framed
21292 \family default
21293  note is set with the ERT commands
21294 \end_layout
21295
21296 \begin_layout Standard
21297
21298 \series bold
21299
21300 \backslash
21301 FrameRule 5pt 
21302 \backslash
21303 FrameSep 0.5cm
21304 \end_layout
21305
21306 \begin_layout Standard
21307 \begin_inset ERT
21308 status collapsed
21309
21310 \begin_layout Standard
21311
21312
21313 \backslash
21314 FrameRule 5pt 
21315 \backslash
21316 FrameSep 0.5cm
21317 \end_layout
21318
21319 \end_inset
21320
21321
21322 \begin_inset Note Framed
21323 status open
21324
21325 \begin_layout Standard
21326 This is text in a 
21327 \family sans
21328 Framed
21329 \family default
21330  note.
21331 \end_layout
21332
21333 \end_inset
21334
21335
21336 \begin_inset ERT
21337 status collapsed
21338
21339 \begin_layout Standard
21340
21341
21342 \backslash
21343 FrameRule 0.4pt 
21344 \backslash
21345 FrameSep 9pt
21346 \end_layout
21347
21348 \end_inset
21349
21350
21351 \end_layout
21352
21353 \begin_layout Standard
21354 \begin_inset VSpace bigskip
21355 \end_inset
21356
21357
21358 \end_layout
21359
21360 \begin_layout Standard
21361 For 
21362 \family sans
21363 Shaded
21364 \family default
21365  notes the default space between the note content and the note border is
21366  3\InsetSpace \thinspace{}
21367 pt; it can be changed by changing the size 
21368 \series bold
21369
21370 \backslash
21371 fboxsep
21372 \series default
21373 .
21374 \newline
21375 The default background color red can be changed with the command 
21376 \series bold
21377
21378 \backslash
21379 def\SpecialChar \textcompwordmark{}
21380 inecolor{shadebox}
21381 \series default
21382 .
21383  The scheme of the 
21384 \series bold
21385
21386 \backslash
21387 def\SpecialChar \textcompwordmark{}
21388 inecolor
21389 \series default
21390  command is explained in section\InsetSpace ~
21391
21392 \begin_inset LatexCommand ref
21393 reference "sec:Colored-Tables"
21394
21395 \end_inset
21396
21397
21398 \begin_inset Foot
21399 status collapsed
21400
21401 \begin_layout Standard
21402 Note that 
21403 \series bold
21404
21405 \backslash
21406 def
21407 \series default
21408 \SpecialChar \textcompwordmark{}
21409
21410 \series bold
21411 inecolor
21412 \series default
21413  requires the LaTeX-package 
21414 \series bold
21415 color
21416 \series default
21417  in the preamble, see section\InsetSpace ~
21418
21419 \begin_inset LatexCommand ref
21420 reference "sec:Colored-Boxes"
21421
21422 \end_inset
21423
21424 .
21425 \end_layout
21426
21427 \end_inset
21428
21429 .
21430 \end_layout
21431
21432 \begin_layout Standard
21433 For example the appearance of the following 
21434 \family sans
21435 Shaded
21436 \family default
21437  note is set with the ERT commands
21438 \end_layout
21439
21440 \begin_layout Standard
21441
21442 \series bold
21443
21444 \backslash
21445 fboxsep 0.5cm
21446 \series default
21447
21448 \newline
21449
21450 \series bold
21451
21452 \backslash
21453 def\SpecialChar \textcompwordmark{}
21454 inecolor{shadecolor}{cmyk}{0.5,0,1,0.5}
21455 \end_layout
21456
21457 \begin_layout Standard
21458 \begin_inset ERT
21459 status collapsed
21460
21461 \begin_layout Standard
21462
21463
21464 \backslash
21465 fboxsep 0.5cm
21466 \end_layout
21467
21468 \end_inset
21469
21470
21471 \begin_inset ERT
21472 status collapsed
21473
21474 \begin_layout Standard
21475
21476
21477 \backslash
21478 definecolor{shadecolor}{cmyk}{0.5,0,1,0.5}
21479 \end_layout
21480
21481 \end_inset
21482
21483
21484 \begin_inset Note Shaded
21485 status open
21486
21487 \begin_layout Standard
21488
21489 \color yellow
21490 This is yellow text in a 
21491 \family sans
21492 Shaded
21493 \family default
21494  note with darkgreen background.
21495 \end_layout
21496
21497 \end_inset
21498
21499
21500 \begin_inset ERT
21501 status collapsed
21502
21503 \begin_layout Standard
21504
21505
21506 \backslash
21507 fboxsep 3pt
21508 \end_layout
21509
21510 \end_inset
21511
21512
21513 \begin_inset ERT
21514 status collapsed
21515
21516 \begin_layout Standard
21517
21518
21519 \backslash
21520 definecolor{shadecolor}{rgb}{1,0,0}
21521 \end_layout
21522
21523 \end_inset
21524
21525
21526 \end_layout
21527
21528 \begin_layout Section
21529 Footnotes
21530 \begin_inset LatexCommand label
21531 name "sec:Footnotes"
21532
21533 \end_inset
21534
21535
21536 \begin_inset LatexCommand index
21537 name "Notes ! Footnotes"
21538
21539 \end_inset
21540
21541
21542 \begin_inset LatexCommand index
21543 name "Footnotes"
21544
21545 \end_inset
21546
21547
21548 \end_layout
21549
21550 \begin_layout Standard
21551 Footnotes can be inserted using the toolbar button 
21552 \begin_inset Graphics
21553         filename ../images/footnote-insert.xpm
21554         scale 85
21555
21556 \end_inset
21557
21558  or the menu 
21559 \family sans
21560 Insert\SpecialChar \menuseparator
21561 Footnote
21562 \family default
21563 .
21564  
21565 \family roman
21566 \series medium
21567 \bar no
21568 You'll see 
21569 \family default
21570 \series default
21571 \bar default
21572 then the following footnote-box: 
21573 \begin_inset Graphics
21574         filename ../clipart/footnoteQt4.png
21575         scale 80
21576
21577 \end_inset
21578
21579
21580 \family roman
21581 \series medium
21582 \bar no
21583  where you can enter the footnote text.
21584  If you want to turn existing text into a footnote, mark it and click on
21585  the footnote 
21586 \family default
21587 \series default
21588 \bar default
21589 toolbar 
21590 \family roman
21591 \series medium
21592 \bar no
21593 button
21594 \family default
21595 \series default
21596 \bar default
21597 .
21598 \end_layout
21599
21600 \begin_layout Standard
21601 Here is an example footnote:
21602 \family roman
21603 \series medium
21604 \bar no
21605
21606 \begin_inset Foot
21607 status open
21608
21609 \begin_layout Standard
21610 \begin_inset LatexCommand label
21611 name "foot:This-is-an"
21612
21613 \end_inset
21614
21615 This is an example footnote.
21616 \end_layout
21617
21618 \end_inset
21619
21620
21621 \family default
21622 \series default
21623 \bar default
21624
21625 \begin_inset ERT
21626 status collapsed
21627
21628 \begin_layout Standard
21629
21630
21631 \backslash
21632 newcounter{MyRepeatFoot}
21633 \end_layout
21634
21635 \begin_layout Standard
21636
21637
21638 \backslash
21639 setcounter{MyRepeatFoot}{
21640 \backslash
21641 thefootnote}
21642 \end_layout
21643
21644 \end_inset
21645
21646
21647 \end_layout
21648
21649 \begin_layout Standard
21650 The footnote will appear in the output as a superscript number at the text
21651  position where the footnote box is placed.
21652  The footnote text is placed at the bottom of the current page.
21653  The footnote number is calculated by LaTeX, the numbers are consecutive.
21654  It depends on your document-class, if the footnote number is reset for
21655  every chapter.
21656 \end_layout
21657
21658 \begin_layout Standard
21659 Footnotes can be referenced like floats: Insert a label into the footnote
21660  and cross-reference this label in the text as described in section\InsetSpace ~
21661
21662 \begin_inset LatexCommand ref
21663 reference "sec:Referencing-Floats"
21664
21665 \end_inset
21666
21667 .
21668 \newline
21669 This is a cross-reference of Footnote\InsetSpace ~
21670
21671 \begin_inset LatexCommand prettyref
21672 reference "foot:This-is-an"
21673
21674 \end_inset
21675
21676 .
21677 \newline
21678
21679 \begin_inset Note Greyedout
21680 status open
21681
21682 \begin_layout Standard
21683
21684 \series bold
21685 Note:
21686 \series default
21687  LyX doesn't provide a prefix for labels in footnotes, so you have to insert
21688  e.\InsetSpace \thinspace{}
21689 g.\InsetSpace ~
21690 the prefix 
21691 \family sans
21692
21693 \begin_inset Quotes eld
21694 \end_inset
21695
21696 foot:
21697 \family default
21698
21699 \begin_inset Quotes erd
21700 \end_inset
21701
21702  manually when you want to use the reference style 
21703 \family sans
21704 Formatted\InsetSpace ~
21705 reference
21706 \family default
21707 .
21708 \end_layout
21709
21710 \end_inset
21711
21712
21713 \end_layout
21714
21715 \begin_layout Standard
21716 \begin_inset VSpace defskip
21717 \end_inset
21718
21719 To use footnotes within tables, you have to use minipages, see section\InsetSpace ~
21720
21721 \begin_inset LatexCommand ref
21722 reference "sec:Minipages"
21723
21724 \end_inset
21725
21726 .
21727  Footnotes within longtables are described in section\InsetSpace ~
21728
21729 \begin_inset LatexCommand ref
21730 reference "sub:Footnotes-in-Longtables"
21731
21732 \end_inset
21733
21734 .
21735 \end_layout
21736
21737 \begin_layout Standard
21738 \begin_inset VSpace defskip
21739 \end_inset
21740
21741 To create only a mark for a footnote, use the command 
21742 \series bold
21743
21744 \backslash
21745 footnotemark[number]
21746 \series default
21747  in ERT.
21748  This is used when you have the same annotation several times in a text
21749  but doesn't want to print the footnote text every time.
21750 \newline
21751 As you don't know
21752  the number of the repeating footnote while you are writing the text, you
21753  have to store its number.
21754  For the following footnote mark example, these commands were inserted in
21755  ERT behind Footnote\InsetSpace ~
21756
21757 \begin_inset LatexCommand ref
21758 reference "foot:This-is-an"
21759
21760 \end_inset
21761
21762  to store the footnote number:
21763 \end_layout
21764
21765 \begin_layout Standard
21766
21767 \series bold
21768
21769 \backslash
21770 newcounter{MyRepeatFoot}
21771 \newline
21772
21773 \backslash
21774 setcounter{MyRepeatFoot}{
21775 \backslash
21776 thefootnote}
21777 \end_layout
21778
21779 \begin_layout Standard
21780 The footnote mark was then created with this command:
21781 \end_layout
21782
21783 \begin_layout Standard
21784
21785 \series bold
21786
21787 \backslash
21788 footnotemark[
21789 \backslash
21790 theMyRepeatFoot]
21791 \end_layout
21792
21793 \begin_layout Standard
21794 Here is an example footnote mark:
21795 \family roman
21796 \series medium
21797 \bar no
21798
21799 \begin_inset ERT
21800 status collapsed
21801
21802 \begin_layout Standard
21803
21804
21805 \backslash
21806 footnotemark[
21807 \backslash
21808 theMyRepeatFoot]
21809 \end_layout
21810
21811 \end_inset
21812
21813
21814 \end_layout
21815
21816 \begin_layout Subsection
21817 Footnote Numbering
21818 \begin_inset LatexCommand label
21819 name "sub:Footnote-Numbering"
21820
21821 \end_inset
21822
21823
21824 \begin_inset LatexCommand index
21825 name "Footnotes ! Numbering"
21826
21827 \end_inset
21828
21829
21830 \end_layout
21831
21832 \begin_layout Standard
21833 If you want to have footnotes numbered in the scheme 
21834 \begin_inset Quotes eld
21835 \end_inset
21836
21837 chapter.footnote
21838 \begin_inset Quotes erd
21839 \end_inset
21840
21841 , add the following command to your document preamble:
21842 \end_layout
21843
21844 \begin_layout Standard
21845
21846 \series bold
21847
21848 \backslash
21849 numberwithin{footnote}{chapter}
21850 \end_layout
21851
21852 \begin_layout Standard
21853 To be able to use the command 
21854 \series bold
21855
21856 \backslash
21857 numberwithin
21858 \series default
21859 , set in the tab 
21860 \family sans
21861 Math\InsetSpace ~
21862 Options
21863 \family default
21864  in the document settings the option 
21865 \family sans
21866 Use\InsetSpace ~
21867 AMS\InsetSpace ~
21868 math\InsetSpace ~
21869 package
21870 \family default
21871 .
21872 \end_layout
21873
21874 \begin_layout Standard
21875 \begin_inset ERT
21876 status collapsed
21877
21878 \begin_layout Standard
21879
21880
21881 \backslash
21882 numberwithin{footnote}{chapter}
21883 \end_layout
21884
21885 \end_inset
21886
21887 This is another example footnote:
21888 \series bold
21889
21890 \begin_inset Foot
21891 status open
21892
21893 \begin_layout Standard
21894 This is a footnote numbered in the scheme 
21895 \begin_inset Quotes eld
21896 \end_inset
21897
21898 chapter.footnote
21899 \begin_inset Quotes erd
21900 \end_inset
21901
21902 .
21903 \end_layout
21904
21905 \end_inset
21906
21907
21908 \series default
21909
21910 \begin_inset ERT
21911 status collapsed
21912
21913 \begin_layout Standard
21914
21915
21916 \backslash
21917 numberwithin{footnote}{part}
21918 \end_layout
21919
21920 \end_inset
21921
21922
21923 \end_layout
21924
21925 \begin_layout Standard
21926 \begin_inset VSpace bigskip
21927 \end_inset
21928
21929
21930 \end_layout
21931
21932 \begin_layout Standard
21933 To reset the footnote number back to 1 after each section
21934 \family roman
21935 , add this command to your document preamble:
21936 \end_layout
21937
21938 \begin_layout Standard
21939
21940 \series bold
21941
21942 \backslash
21943 @addtoreset{footnote}{section}
21944 \end_layout
21945
21946 \begin_layout Standard
21947 \begin_inset VSpace bigskip
21948 \end_inset
21949
21950 The following preamble command changes the footnote numbering style to small
21951  roman numerals:
21952 \end_layout
21953
21954 \begin_layout Standard
21955
21956 \series bold
21957
21958 \backslash
21959 renewcommand{
21960 \backslash
21961 thefootnote}{
21962 \backslash
21963 roman{footnote}}
21964 \end_layout
21965
21966 \begin_layout Standard
21967 \begin_inset ERT
21968 status collapsed
21969
21970 \begin_layout Standard
21971
21972
21973 \backslash
21974 renewcommand{
21975 \backslash
21976 thefootnote}{
21977 \backslash
21978 roman{footnote}}
21979 \end_layout
21980
21981 \end_inset
21982
21983  This is a footnote with roman numbering:
21984 \begin_inset Foot
21985 status open
21986
21987 \begin_layout Standard
21988 This is an example footnote with roman numbering.
21989 \end_layout
21990
21991 \end_inset
21992
21993
21994 \begin_inset ERT
21995 status collapsed
21996
21997 \begin_layout Standard
21998
21999
22000 \backslash
22001 renewcommand{
22002 \backslash
22003 thefootnote}{
22004 \backslash
22005 arabic{footnote}}
22006 \end_layout
22007
22008 \end_inset
22009
22010
22011 \end_layout
22012
22013 \begin_layout Standard
22014 To change the numbering style to capital roman numerals replace in the command
22015  above 
22016 \series bold
22017
22018 \backslash
22019 roman
22020 \series default
22021  by 
22022 \series bold
22023
22024 \backslash
22025 Roman
22026 \series default
22027 .
22028  To 
22029 \begin_inset Quotes eld
22030 \end_inset
22031
22032 number
22033 \begin_inset Quotes erd
22034 \end_inset
22035
22036  footnotes with capital or small Latin letters use 
22037 \series bold
22038
22039 \backslash
22040 Alph
22041 \series default
22042  or 
22043 \series bold
22044
22045 \backslash
22046 alph
22047 \series default
22048 , respectively.
22049  To 
22050 \begin_inset Quotes eld
22051 \end_inset
22052
22053 number
22054 \begin_inset Quotes erd
22055 \end_inset
22056
22057  footnotes with symbols use 
22058 \series bold
22059
22060 \backslash
22061 fnsymbol
22062 \series default
22063 .
22064 \end_layout
22065
22066 \begin_layout Standard
22067 \begin_inset Note Greyedout
22068 status open
22069
22070 \begin_layout Standard
22071
22072 \series bold
22073 Note:
22074 \series medium
22075  
22076 \series default
22077 You can only number 26 footnotes with Latin letters, because this numbering
22078  is limited to single letters.
22079 \end_layout
22080
22081 \end_inset
22082
22083
22084 \newline
22085
22086 \begin_inset Note Greyedout
22087 status open
22088
22089 \begin_layout Standard
22090
22091 \series bold
22092 Note:
22093 \series default
22094  You can only number 9 footnotes with symbols.
22095 \end_layout
22096
22097 \end_inset
22098
22099
22100 \end_layout
22101
22102 \begin_layout Standard
22103 To return to the default numbering style when you changed to another one,
22104  use 
22105 \series bold
22106
22107 \backslash
22108 arabic
22109 \series default
22110  instead of 
22111 \series bold
22112
22113 \backslash
22114 roman
22115 \series default
22116  in the command above.
22117 \end_layout
22118
22119 \begin_layout Subsection
22120 Footnote Placement
22121 \begin_inset LatexCommand index
22122 name "Footnotes ! Placement"
22123
22124 \end_inset
22125
22126
22127 \end_layout
22128
22129 \begin_layout Standard
22130 If you have several footnotes in one page, they appear without vertical
22131  space between them at the bottom of the page.
22132  To make them better readable you can e.\InsetSpace \thinspace{}
22133 g.\InsetSpace ~
22134 add 1.5\InsetSpace \thinspace{}
22135 mm space with the following
22136  preamble command:
22137 \end_layout
22138
22139 \begin_layout Standard
22140
22141 \series bold
22142
22143 \backslash
22144 let
22145 \backslash
22146 myFoot
22147 \backslash
22148 footnote
22149 \newline
22150
22151 \backslash
22152 renewcommand{
22153 \backslash
22154 footnote}[1]{
22155 \backslash
22156 myFoot{#1
22157 \backslash
22158 vspace{1.5mm}}}
22159 \end_layout
22160
22161 \begin_layout Standard
22162 \begin_inset VSpace bigskip
22163 \end_inset
22164
22165 In a two-column document the footnotes appear at the bottom of every column,
22166  see Figure\InsetSpace ~
22167
22168 \begin_inset LatexCommand ref
22169 reference "fig:Standard-footnote-placement"
22170
22171 \end_inset
22172
22173 .
22174  If the footnotes should only appear at the bottom of the right column,
22175  as in Figure\InsetSpace ~
22176
22177 \begin_inset LatexCommand ref
22178 reference "fig:Footnote-placement-in"
22179
22180 \end_inset
22181
22182 , use the LaTeX-package 
22183 \series bold
22184 ftnright
22185 \series default
22186
22187 \begin_inset LatexCommand index
22188 name "LaTeX-packages ! ftnright"
22189
22190 \end_inset
22191
22192  with this command in the document preamble:
22193 \end_layout
22194
22195 \begin_layout Standard
22196
22197 \series bold
22198
22199 \backslash
22200 usepackage{ftnright}
22201 \end_layout
22202
22203 \begin_layout Standard
22204 \begin_inset Float figure
22205 placement !h
22206 wide false
22207 sideways false
22208 status open
22209
22210 \begin_layout Standard
22211 \begin_inset ERT
22212 status collapsed
22213
22214 \begin_layout Standard
22215
22216
22217 \backslash
22218 framebox{
22219 \end_layout
22220
22221 \end_inset
22222
22223
22224 \begin_inset Graphics
22225         filename ../clipart/without_fntright.pdf
22226         width 100col%
22227
22228 \end_inset
22229
22230
22231 \begin_inset ERT
22232 status collapsed
22233
22234 \begin_layout Standard
22235
22236 }
22237 \end_layout
22238
22239 \end_inset
22240
22241
22242 \end_layout
22243
22244 \begin_layout Standard
22245 \begin_inset Caption
22246
22247 \begin_layout Standard
22248 \begin_inset LatexCommand label
22249 name "fig:Standard-footnote-placement"
22250
22251 \end_inset
22252
22253 Standard footnote placement in two-column documents.
22254 \end_layout
22255
22256 \end_inset
22257
22258
22259 \end_layout
22260
22261 \end_inset
22262
22263
22264 \end_layout
22265
22266 \begin_layout Standard
22267 \begin_inset Float figure
22268 placement !h
22269 wide false
22270 sideways false
22271 status open
22272
22273 \begin_layout Standard
22274 \begin_inset ERT
22275 status collapsed
22276
22277 \begin_layout Standard
22278
22279
22280 \backslash
22281 framebox{
22282 \end_layout
22283
22284 \end_inset
22285
22286
22287 \begin_inset Graphics
22288         filename ../clipart/with_fntright.pdf
22289         width 100col%
22290
22291 \end_inset
22292
22293
22294 \begin_inset ERT
22295 status collapsed
22296
22297 \begin_layout Standard
22298
22299 }
22300 \end_layout
22301
22302 \end_inset
22303
22304
22305 \end_layout
22306
22307 \begin_layout Standard
22308 \begin_inset Caption
22309
22310 \begin_layout Standard
22311 \begin_inset LatexCommand label
22312 name "fig:Footnote-placement-in"
22313
22314 \end_inset
22315
22316 Footnote placement in two-column documents when the LaTeX-package 
22317 \series bold
22318 ftnright
22319 \series default
22320  is used.
22321 \end_layout
22322
22323 \end_inset
22324
22325
22326 \end_layout
22327
22328 \end_inset
22329
22330
22331 \end_layout
22332
22333 \begin_layout Standard
22334 \begin_inset VSpace bigskip
22335 \end_inset
22336
22337 In some scientific literature it is usual to collect the footnotes and print
22338  them in a separate paragraph at the the end of a section, like in Figure\InsetSpace ~
22339
22340 \begin_inset LatexCommand ref
22341 reference "fig:Endnotes----footnotes"
22342
22343 \end_inset
22344
22345 .
22346  They are then so called 
22347 \begin_inset Quotes eld
22348 \end_inset
22349
22350 endnotes
22351 \begin_inset Quotes erd
22352 \end_inset
22353
22354 .
22355  To use endnotes instead of footnotes in your document, load the LaTeX-package
22356  
22357 \series bold
22358 endnotes
22359 \series default
22360
22361 \begin_inset LatexCommand index
22362 name "LaTeX-packages ! endnotes"
22363
22364 \end_inset
22365
22366  with the document preamble lines
22367 \end_layout
22368
22369 \begin_layout Standard
22370
22371 \series bold
22372
22373 \backslash
22374 usepackage{endnotes}
22375 \newline
22376
22377 \backslash
22378 let
22379 \backslash
22380 footnote
22381 \backslash
22382 endnote
22383 \end_layout
22384
22385 \begin_layout Standard
22386 To insert the collected footnotes, insert the command
22387 \end_layout
22388
22389 \begin_layout Standard
22390
22391 \series bold
22392
22393 \backslash
22394 theendnotes
22395 \end_layout
22396
22397 \begin_layout Standard
22398 in ERT at the the end of a section or chapter.
22399 \end_layout
22400
22401 \begin_layout Standard
22402 \begin_inset Float figure
22403 wide false
22404 sideways false
22405 status open
22406
22407 \begin_layout Standard
22408 \align center
22409 \begin_inset ERT
22410 status collapsed
22411
22412 \begin_layout Standard
22413
22414
22415 \backslash
22416 framebox{
22417 \end_layout
22418
22419 \end_inset
22420
22421
22422 \begin_inset Graphics
22423         filename ../clipart/endnotes.pdf
22424
22425 \end_inset
22426
22427
22428 \begin_inset ERT
22429 status collapsed
22430
22431 \begin_layout Standard
22432
22433 }
22434 \end_layout
22435
22436 \end_inset
22437
22438
22439 \end_layout
22440
22441 \begin_layout Standard
22442 \begin_inset Caption
22443
22444 \begin_layout Standard
22445 \begin_inset LatexCommand label
22446 name "fig:Endnotes----footnotes"
22447
22448 \end_inset
22449
22450 Endnotes -- footnotes are printed in a separate paragraph at the end of
22451  sections or chapters.
22452 \end_layout
22453
22454 \end_inset
22455
22456
22457 \end_layout
22458
22459 \end_inset
22460
22461
22462 \end_layout
22463
22464 \begin_layout Standard
22465 \begin_inset VSpace defskip
22466 \end_inset
22467
22468 The paragraph heading for the endnotes isn't automatically translated into
22469  the document language, this must be done manually.
22470  The following preamble command translate the default English name 
22471 \begin_inset Quotes eld
22472 \end_inset
22473
22474 Notes
22475 \begin_inset Quotes erd
22476 \end_inset
22477
22478  to the German translation 
22479 \begin_inset Quotes eld
22480 \end_inset
22481
22482 Anmerkungen
22483 \begin_inset Quotes erd
22484 \end_inset
22485
22486 :
22487 \end_layout
22488
22489 \begin_layout Standard
22490
22491 \series bold
22492
22493 \backslash
22494 renewcommand{
22495 \backslash
22496 notesname}{Anmerkungen}
22497 \end_layout
22498
22499 \begin_layout Standard
22500 \begin_inset VSpace defskip
22501 \end_inset
22502
22503 The numbering of endnotes can be changed like the footnote numbering as
22504  described in section\InsetSpace ~
22505
22506 \begin_inset LatexCommand ref
22507 reference "sub:Footnote-Numbering"
22508
22509 \end_inset
22510
22511 ; just replace the command 
22512 \series bold
22513
22514 \backslash
22515 thefootnote
22516 \series default
22517  by 
22518 \series bold
22519
22520 \backslash
22521 theendnote
22522 \series default
22523 .
22524  To reset the endnote number use the command 
22525 \series bold
22526
22527 \backslash
22528 @addtoreset 
22529 \series default
22530 as described in section\InsetSpace ~
22531
22532 \begin_inset LatexCommand ref
22533 reference "sub:Footnote-Numbering"
22534
22535 \end_inset
22536
22537  and replace the command parameter 
22538 \series bold
22539 footnote
22540 \series default
22541  by 
22542 \series bold
22543 endnote
22544 \series default
22545 .
22546 \end_layout
22547
22548 \begin_layout Standard
22549 To create only a mark for an endnote, use the command 
22550 \series bold
22551
22552 \backslash
22553 endnotemark[number]
22554 \series default
22555  similar to the command 
22556 \series bold
22557
22558 \backslash
22559 footnotemark
22560 \series default
22561 , described in section\InsetSpace ~
22562
22563 \begin_inset LatexCommand ref
22564 reference "sec:Footnotes"
22565
22566 \end_inset
22567
22568 .
22569 \end_layout
22570
22571 \begin_layout Standard
22572 \begin_inset VSpace bigskip
22573 \end_inset
22574
22575 Footnotes can also be placed in the page margin and the footnote text alignment
22576  can be changed, see the LaTeX-package 
22577 \series bold
22578 footmisc
22579 \series default
22580
22581 \begin_inset LatexCommand index
22582 name "LaTeX-packages ! footmisc"
22583
22584 \end_inset
22585
22586
22587 \begin_inset LatexCommand cite
22588 key "footmisc"
22589
22590 \end_inset
22591
22592  for more information about this.
22593 \end_layout
22594
22595 \begin_layout Standard
22596 For various further footnote formatting issues have a look at LaTeX-books,
22597  
22598 \begin_inset LatexCommand cite
22599 key "latexcompanion,latexguide,latexbook"
22600
22601 \end_inset
22602
22603 .
22604 \end_layout
22605
22606 \begin_layout Section
22607 Margin Notes
22608 \begin_inset LatexCommand index
22609 name "Notes ! Margin Notes"
22610
22611 \end_inset
22612
22613
22614 \end_layout
22615
22616 \begin_layout Standard
22617 Margin notes look and behave in LyX like footnotes.
22618  They are inserted via the menu 
22619 \family sans
22620 Insert\SpecialChar \menuseparator
22621 Marginal\InsetSpace ~
22622 Note
22623 \family default
22624  or the toolbar button 
22625 \begin_inset Graphics
22626         filename ../images/marginalnote-insert.xpm
22627         scale 85
22628
22629 \end_inset
22630
22631 .
22632  A
22633 \family roman
22634 \series medium
22635  
22636 \family default
22637 \series default
22638 grey
22639 \family roman
22640 \series medium
22641  box with the 
22642 \family default
22643 \series default
22644 red 
22645 \family roman
22646 \series medium
22647 label 
22648 \begin_inset Quotes eld
22649 \end_inset
22650
22651 margin
22652 \begin_inset Quotes erd
22653 \end_inset
22654
22655  appears where you can enter the text of the margin note.
22656 \end_layout
22657
22658 \begin_layout Standard
22659 At the side is an example margin note.
22660 \family roman
22661 \series medium
22662
22663 \begin_inset Marginal
22664 status open
22665
22666 \begin_layout Standard
22667 This is a margin note.
22668 \end_layout
22669
22670 \end_inset
22671
22672
22673 \end_layout
22674
22675 \begin_layout Standard
22676 Margin notes appear at the right side in single-sided documents.
22677  In double-sided documents they appear in the outer margin -- left on even
22678  pages, right on odd pages.
22679  The text of margin notes is aligned opposite to the outer margin -- right-align
22680 ed when the note appears in the left margin.
22681  The first line of the margin note is placed at the position of the text
22682  line where it is inserted in the document.
22683 \end_layout
22684
22685 \begin_layout Standard
22686 \begin_inset VSpace bigskip
22687 \end_inset
22688
22689 To place the margin note in the inner margin, add the command
22690 \end_layout
22691
22692 \begin_layout Standard
22693
22694 \series bold
22695
22696 \backslash
22697 reversemarginpar
22698 \end_layout
22699
22700 \begin_layout Standard
22701 in ERT before a margin note.
22702  The new placement is valid for all following margin notes.
22703 \begin_inset ERT
22704 status collapsed
22705
22706 \begin_layout Standard
22707
22708
22709 \backslash
22710 reversemarginpar 
22711 \end_layout
22712
22713 \end_inset
22714
22715
22716 \begin_inset Marginal
22717 status open
22718
22719 \begin_layout Standard
22720 This is a margin note in the inner margin.
22721 \end_layout
22722
22723 \end_inset
22724
22725
22726 \series bold
22727
22728 \newline
22729
22730 \series default
22731
22732 \begin_inset Note Greyedout
22733 status open
22734
22735 \begin_layout Standard
22736
22737 \series bold
22738 Note:
22739 \series default
22740  There is often not enough space in the inner margin so that the notes are
22741  not correctly displayed in the output.
22742 \end_layout
22743
22744 \end_inset
22745
22746
22747 \end_layout
22748
22749 \begin_layout Standard
22750 \begin_inset ERT
22751 status collapsed
22752
22753 \begin_layout Standard
22754
22755
22756 \backslash
22757 normalmarginpar 
22758 \end_layout
22759
22760 \end_inset
22761
22762 To return to the default placement insert the command
22763 \end_layout
22764
22765 \begin_layout Standard
22766
22767 \series bold
22768
22769 \backslash
22770 normalmarginpar
22771 \end_layout
22772
22773 \begin_layout Standard
22774 in ERT.
22775  
22776 \begin_inset Note Greyedout
22777 status open
22778
22779 \begin_layout Standard
22780
22781 \series bold
22782 Note:
22783 \series default
22784  The command is ignored when it is within a paragraph where also the command
22785  
22786 \series bold
22787
22788 \backslash
22789 reversemarginpar
22790 \series default
22791  is inserted.
22792 \end_layout
22793
22794 \end_inset
22795
22796
22797 \end_layout
22798
22799 \begin_layout Standard
22800 \begin_inset VSpace bigskip
22801 \end_inset
22802
22803
22804 \family roman
22805 \series medium
22806
22807 \begin_inset Marginal
22808 status open
22809
22810 \begin_layout Standard
22811 AVeryLongMarginParWord that isn't hyphenated.
22812 \end_layout
22813
22814 \end_inset
22815
22816
22817 \family default
22818 \series default
22819 Similar to the case described in section\InsetSpace ~
22820
22821 \begin_inset LatexCommand ref
22822 reference "sub:Multiple-Lines-in"
22823
22824 \end_inset
22825
22826 , long words cannot be hyphenated when they are the first word in a margin
22827  note.
22828  To avoid this, insert the command
22829 \end_layout
22830
22831 \begin_layout Standard
22832
22833 \series bold
22834
22835 \backslash
22836 hspace{0pt}
22837 \end_layout
22838
22839 \begin_layout Standard
22840 in ERT before the word
22841 \family roman
22842 \series medium
22843 .
22844 \begin_inset Marginal
22845 status open
22846
22847 \begin_layout Standard
22848 \begin_inset ERT
22849 status collapsed
22850
22851 \begin_layout Standard
22852
22853
22854 \backslash
22855 hspace{0pt}
22856 \end_layout
22857
22858 \end_inset
22859
22860 AVeryLongMarginParWord that is hyphenated.
22861 \end_layout
22862
22863 \end_inset
22864
22865
22866 \end_layout
22867
22868 \begin_layout Standard
22869 \begin_inset VSpace bigskip
22870 \end_inset
22871
22872
22873 \end_layout
22874
22875 \begin_layout Standard
22876 \begin_inset Note Greyedout
22877 status open
22878
22879 \begin_layout Standard
22880
22881 \series bold
22882 Note:
22883 \series default
22884  Margin notes can normally not be used inside tables, floats, and footnotes.
22885 \end_layout
22886
22887 \end_inset
22888
22889
22890 \end_layout
22891
22892 \begin_layout Standard
22893 \begin_inset VSpace bigskip
22894 \end_inset
22895
22896
22897 \end_layout
22898
22899 \begin_layout Standard
22900 \begin_inset ERT
22901 status collapsed
22902
22903 \begin_layout Standard
22904
22905
22906 \backslash
22907 ifmarginnote
22908 \end_layout
22909
22910 \end_inset
22911
22912
22913 \begin_inset Note Note
22914 status open
22915
22916 \begin_layout Standard
22917 The following section will only be displayed when you have the LaTeX-package
22918  
22919 \series bold
22920 marginnote
22921 \series default
22922  is installed.
22923 \end_layout
22924
22925 \end_inset
22926
22927
22928 \end_layout
22929
22930 \begin_layout Standard
22931 This restriction can be evaded by using the LaTeX-package 
22932 \series bold
22933 marginnote
22934 \series default
22935
22936 \begin_inset LatexCommand index
22937 name "LaTeX-packages ! marginnote"
22938
22939 \end_inset
22940
22941 .
22942  By adding these two lines to your document preamble, the command used by
22943  LyX for margin notes is redefined to use the command provided by the 
22944 \series bold
22945 marginnote
22946 \series default
22947 -package:
22948 \end_layout
22949
22950 \begin_layout Standard
22951
22952 \series bold
22953
22954 \backslash
22955 usepackage{marginnote}
22956 \newline
22957
22958 \backslash
22959 let
22960 \backslash
22961 marginpar
22962 \backslash
22963 marginnote
22964 \end_layout
22965
22966 \begin_layout Standard
22967 This is also used in this document because 
22968 \series bold
22969 marginnote
22970 \series default
22971  has another useful feature: You can set a vertical offset for the note.
22972  This is often needed when too many margin notes are too close together
22973  or for a better page layout.
22974  The offset is set in LyX as ERT directly behind the margin note in the
22975  scheme
22976 \end_layout
22977
22978 \begin_layout Standard
22979
22980 \series bold
22981 [offset]
22982 \end_layout
22983
22984 \begin_layout Standard
22985 where the offset is a length with one of the units listed in Table\InsetSpace ~
22986
22987 \begin_inset LatexCommand ref
22988 reference "tab:Units"
22989
22990 \end_inset
22991
22992 .
22993  A negative value shifts the note up, a positive value shifts it down.
22994
22995 \family roman
22996 \series medium
22997  For example the margin note beside this text line is shifted up 1.5\InsetSpace \thinspace{}
22998 cm with
22999  the ERT-command 
23000 \begin_inset Quotes eld
23001 \end_inset
23002
23003
23004 \family default
23005 \series bold
23006 [-1.5cm]
23007 \family roman
23008 \series medium
23009
23010 \begin_inset Quotes erd
23011 \end_inset
23012
23013
23014 \begin_inset Marginal
23015 status open
23016
23017 \begin_layout Standard
23018 This margin note is shifted up 1.5\InsetSpace \thinspace{}
23019 cm from its original position.
23020 \end_layout
23021
23022 \end_inset
23023
23024
23025 \family default
23026 \series default
23027
23028 \begin_inset ERT
23029 status collapsed
23030
23031 \begin_layout Standard
23032
23033 [-1.5cm]
23034 \end_layout
23035
23036 \end_inset
23037
23038
23039 \end_layout
23040
23041 \begin_layout Standard
23042 \begin_inset VSpace defskip
23043 \end_inset
23044
23045 With 
23046 \series bold
23047 marginnote
23048 \series default
23049  you can also change the alignment of the text in the margin note.
23050  For example the commands
23051 \end_layout
23052
23053 \begin_layout Standard
23054
23055 \series bold
23056
23057 \backslash
23058 renewcommand*{
23059 \backslash
23060 raggedleftmarginnote}{
23061 \backslash
23062 centering}
23063 \newline
23064
23065 \backslash
23066 renewcommand*{
23067 \backslash
23068 raggedrightmarginnote}{
23069 \backslash
23070 centering}
23071 \end_layout
23072
23073 \begin_layout Standard
23074 set the alignment to centered.
23075  
23076 \series bold
23077
23078 \backslash
23079 raggedleftmarginnote
23080 \series default
23081  denotes margin notes that appear at the left side.
23082 \family roman
23083 \series medium
23084
23085 \begin_inset ERT
23086 status collapsed
23087
23088 \begin_layout Standard
23089
23090
23091 \backslash
23092 renewcommand*{
23093 \backslash
23094 raggedleftmarginnote}{
23095 \backslash
23096 centering}
23097 \end_layout
23098
23099 \begin_layout Standard
23100
23101
23102 \backslash
23103 renewcommand*{
23104 \backslash
23105 raggedrightmarginnote}{
23106 \backslash
23107 centering}
23108 \end_layout
23109
23110 \end_inset
23111
23112
23113 \begin_inset Marginal
23114 status open
23115
23116 \begin_layout Standard
23117 The text of this margin note is centered.
23118 \end_layout
23119
23120 \end_inset
23121
23122  
23123 \family default
23124 \series default
23125 The default is
23126 \end_layout
23127
23128 \begin_layout Standard
23129
23130 \series bold
23131
23132 \backslash
23133 renewcommand*{
23134 \backslash
23135 raggedleftmarginnote}{
23136 \backslash
23137 raggedleft}
23138 \newline
23139
23140 \backslash
23141 renewcommand*{
23142 \backslash
23143 raggedrightmarginnote}{
23144 \backslash
23145 raggedright}
23146 \family roman
23147 \series medium
23148
23149 \begin_inset ERT
23150 status collapsed
23151
23152 \begin_layout Standard
23153
23154
23155 \backslash
23156 renewcommand*{
23157 \backslash
23158 raggedleftmarginnote}{
23159 \backslash
23160 raggedleft}
23161 \end_layout
23162
23163 \begin_layout Standard
23164
23165
23166 \backslash
23167 renewcommand*{
23168 \backslash
23169 raggedrightmarginnote}{
23170 \backslash
23171 raggedright}
23172 \end_layout
23173
23174 \end_inset
23175
23176
23177 \end_layout
23178
23179 \begin_layout Standard
23180 \begin_inset VSpace defskip
23181 \end_inset
23182
23183 For the other features of 
23184 \series bold
23185 marginnote
23186 \series default
23187  we refer to its documentation 
23188 \begin_inset LatexCommand cite
23189 key "marginnote"
23190
23191 \end_inset
23192
23193 .
23194 \end_layout
23195
23196 \begin_layout Standard
23197 \begin_inset VSpace bigskip
23198 \end_inset
23199
23200 You can change the layout of margin notes by redefining its definition.
23201  To create for example a header for all margin notes with the underlined,
23202  sans-serif, and bold header text 
23203 \begin_inset Quotes eld
23204 \end_inset
23205
23206
23207 \family sans
23208 \series bold
23209 \bar under
23210 Attention!
23211 \family default
23212 \series default
23213 \bar default
23214
23215 \begin_inset Quotes erd
23216 \end_inset
23217
23218 , add this to your document preamble:
23219 \end_layout
23220
23221 \begin_layout Standard
23222
23223 \series bold
23224
23225 \backslash
23226 let
23227 \backslash
23228 myMarginpar
23229 \backslash
23230 marginpar
23231 \newline
23232
23233 \backslash
23234 renewcommand{
23235 \backslash
23236 marginpar}[1]{
23237 \backslash
23238 myMarginpar{%
23239 \newline
23240
23241 \begin_inset ERT
23242 status collapsed
23243
23244 \begin_layout Standard
23245
23246
23247 \backslash
23248 hphantom{ }
23249 \end_layout
23250
23251 \end_inset
23252
23253
23254 \backslash
23255 hspace{0pt}
23256 \backslash
23257 textsf{
23258 \backslash
23259 textbf{
23260 \backslash
23261 underbar{Attention!}}}%
23262 \newline
23263
23264 \begin_inset ERT
23265 status collapsed
23266
23267 \begin_layout Standard
23268
23269
23270 \backslash
23271 hphantom{ }
23272 \end_layout
23273
23274 \end_inset
23275
23276
23277 \backslash
23278 vspace{1.5mm}
23279 \backslash
23280
23281 \backslash
23282 #1}}
23283 \end_layout
23284
23285 \begin_layout Standard
23286
23287 \family roman
23288 \series medium
23289 \begin_inset ERT
23290 status collapsed
23291
23292 \begin_layout Standard
23293
23294
23295 \backslash
23296 let
23297 \backslash
23298 myMarginpar
23299 \backslash
23300 marginpar
23301 \end_layout
23302
23303 \begin_layout Standard
23304
23305
23306 \backslash
23307 renewcommand{
23308 \backslash
23309 marginpar}[1]{
23310 \backslash
23311 myMarginpar{%
23312 \end_layout
23313
23314 \begin_layout Standard
23315
23316    
23317 \backslash
23318 textsf{
23319 \backslash
23320 textbf{
23321 \backslash
23322 underbar{Attention!}}}%
23323 \end_layout
23324
23325 \begin_layout Standard
23326
23327    
23328 \backslash
23329 vspace{1.5mm}
23330 \backslash
23331
23332 \backslash
23333 #1}}
23334 \end_layout
23335
23336 \end_inset
23337
23338
23339 \begin_inset Marginal
23340 status open
23341
23342 \begin_layout Standard
23343 This is a margin note with a defined heading.
23344 \end_layout
23345
23346 \end_inset
23347
23348
23349 \family default
23350 \series default
23351
23352 \begin_inset ERT
23353 status collapsed
23354
23355 \begin_layout Standard
23356
23357 [-1.5cm]
23358 \end_layout
23359
23360 \end_inset
23361
23362
23363 \family roman
23364 \series medium
23365
23366 \begin_inset ERT
23367 status collapsed
23368
23369 \begin_layout Standard
23370
23371
23372 \backslash
23373 renewcommand{
23374 \backslash
23375 marginpar}[1]{
23376 \backslash
23377 myMarginpar{#1}}
23378 \end_layout
23379
23380 \end_inset
23381
23382
23383 \family default
23384 \series default
23385
23386 \begin_inset Note Note
23387 status collapsed
23388
23389 \begin_layout Standard
23390 The margin note format is changed only for this example.
23391 \end_layout
23392
23393 \end_inset
23394
23395
23396 \end_layout
23397
23398 \begin_layout Standard
23399 \begin_inset ERT
23400 status collapsed
23401
23402 \begin_layout Standard
23403
23404
23405 \backslash
23406 else
23407 \end_layout
23408
23409 \end_inset
23410
23411
23412 \begin_inset Note Note
23413 status open
23414
23415 \begin_layout Standard
23416 The following will be displayed when the LaTeX-package 
23417 \series bold
23418 marginnote
23419 \series default
23420  is not installed:
23421 \end_layout
23422
23423 \end_inset
23424
23425
23426 \end_layout
23427
23428 \begin_layout Standard
23429 You need to install the LaTeX-package 
23430 \series bold
23431 marginnote
23432 \series default
23433  to see the following part of this section in the output.
23434 \end_layout
23435
23436 \begin_layout Standard
23437 \begin_inset ERT
23438 status collapsed
23439
23440 \begin_layout Standard
23441
23442
23443 \backslash
23444 fi
23445 \end_layout
23446
23447 \end_inset
23448
23449
23450 \end_layout
23451
23452 \begin_layout Chapter
23453 Boxes
23454 \end_layout
23455
23456 \begin_layout Section
23457 Introduction
23458 \begin_inset LatexCommand index
23459 name "Boxes ! Introduction"
23460
23461 \end_inset
23462
23463
23464 \end_layout
23465
23466 \begin_layout Standard
23467 Boxes are used to format a block of text.
23468  Boxes can be used to write documents with multiple languages, see section\InsetSpace ~
23469
23470 \begin_inset LatexCommand ref
23471 reference "sec:Minipages"
23472
23473 \end_inset
23474
23475 , to frame texts, see section\InsetSpace ~
23476
23477 \begin_inset LatexCommand ref
23478 reference "sec:Framed-Boxes"
23479
23480 \end_inset
23481
23482 , to prevent words to be hyphenated, see section\InsetSpace ~
23483
23484 \begin_inset LatexCommand ref
23485 reference "sec:Prevent-Hyphenation"
23486
23487 \end_inset
23488
23489 , to align text, see section\InsetSpace ~
23490
23491 \begin_inset LatexCommand ref
23492 reference "sub:Vertical-Alignment"
23493
23494 \end_inset
23495
23496 , or to set the background color of texts, see section\InsetSpace ~
23497
23498 \begin_inset LatexCommand ref
23499 reference "sec:Colored-Boxes"
23500
23501 \end_inset
23502
23503 .
23504 \end_layout
23505
23506 \begin_layout Standard
23507 Boxes can be inserted with the menu 
23508 \family sans
23509 Insert\SpecialChar \menuseparator
23510 Box
23511 \family default
23512 .
23513  A grey box with the label 
23514 \family sans
23515 Box (Minipage)
23516 \family default
23517
23518 \begin_inset Graphics
23519         filename ../clipart/BoxInsetDefaultQt4.png
23520         scale 85
23521
23522 \end_inset
23523
23524 , will be inserted.
23525  The box type can be specified by right-clicking on the box.
23526  The appearing box dialog offers the 
23527 \family sans
23528 Inner\InsetSpace ~
23529 Box
23530 \family default
23531  types 
23532 \family sans
23533 Parbox
23534 \family default
23535  and 
23536 \family sans
23537 Minipage
23538 \family default
23539 .
23540  The type 
23541 \family sans
23542 Minipage
23543 \family default
23544  is the default for new boxes and is explained in section\InsetSpace ~
23545
23546 \begin_inset LatexCommand ref
23547 reference "sec:Minipages"
23548
23549 \end_inset
23550
23551 ; the type 
23552 \family sans
23553 Parbox
23554 \family default
23555  is described in section\InsetSpace ~
23556
23557 \begin_inset LatexCommand ref
23558 reference "sec:Parboxes"
23559
23560 \end_inset
23561
23562 .
23563 \end_layout
23564
23565 \begin_layout Standard
23566 Boxes aren't numbered and can therefore not be referenced like floats or
23567  footnotes.
23568 \end_layout
23569
23570 \begin_layout Standard
23571 \begin_inset Note Greyedout
23572 status open
23573
23574 \begin_layout Standard
23575
23576 \series bold
23577 Note:
23578 \series default
23579  Due to a bug in LyX you have to insert a protected space behind a box when
23580  you want to separate in a line the box from the following text with a space.
23581 \end_layout
23582
23583 \end_inset
23584
23585
23586 \end_layout
23587
23588 \begin_layout Standard
23589 \begin_inset Note Greyedout
23590 status open
23591
23592 \begin_layout Standard
23593
23594 \series bold
23595 Note:
23596 \series default
23597  Boxes must not be the item in an 
23598 \family sans
23599 Itemize
23600 \family default
23601  or 
23602 \family sans
23603 Description
23604 \family default
23605  environment.
23606 \end_layout
23607
23608 \end_inset
23609
23610
23611 \end_layout
23612
23613 \begin_layout Standard
23614 \begin_inset Note Greyedout
23615 status open
23616
23617 \begin_layout Standard
23618
23619 \series bold
23620 Note:
23621 \series default
23622  For an unknown reason you can only set the 
23623 \family sans
23624 Inner\InsetSpace ~
23625 Box
23626 \family default
23627  type to 
23628 \family sans
23629 None
23630 \family default
23631  when you use a framed box.
23632  Boxes without an 
23633 \family sans
23634 Inner\InsetSpace ~
23635 Box
23636 \family default
23637  type and without frames are explained in section\InsetSpace ~
23638
23639 \begin_inset LatexCommand ref
23640 reference "sec:Prevent-Hyphenation"
23641
23642 \end_inset
23643
23644 .
23645 \end_layout
23646
23647 \end_inset
23648
23649
23650 \end_layout
23651
23652 \begin_layout Section
23653 Box Dialog
23654 \begin_inset LatexCommand label
23655 name "sec:Box-Dialog"
23656
23657 \end_inset
23658
23659
23660 \begin_inset LatexCommand index
23661 name "Boxes ! Box Dialog"
23662
23663 \end_inset
23664
23665
23666 \begin_inset LatexCommand index
23667 name "Boxes ! Alignment"
23668
23669 \end_inset
23670
23671
23672 \end_layout
23673
23674 \begin_layout Standard
23675 In the box dialog you can adjust the box geometry in the fields 
23676 \family sans
23677 Width
23678 \family default
23679  and 
23680 \family sans
23681 Height
23682 \family default
23683 .
23684  The available units for the geometry are explained in Table\InsetSpace ~
23685
23686 \begin_inset LatexCommand ref
23687 reference "tab:Units"
23688
23689 \end_inset
23690
23691 .
23692  The field 
23693 \family sans
23694 Heigth
23695 \family default
23696  offers the following additional sizes:
23697 \end_layout
23698
23699 \begin_layout Description
23700 Depth This is the plain text 
23701 \begin_inset Quotes eld
23702 \end_inset
23703
23704 height
23705 \begin_inset Quotes erd
23706 \end_inset
23707
23708 .
23709  It ignores the total depth when there are multiple text lines in the box:
23710 \newline
23711
23712 \newline
23713
23714 \newline
23715
23716 \begin_inset Box Boxed
23717 position "c"
23718 hor_pos "c"
23719 has_inner_box 1
23720 inner_pos "c"
23721 use_parbox 0
23722 width "12col%"
23723 special "none"
23724 height "1in"
23725 height_special "depth"
23726 status collapsed
23727
23728 \begin_layout Standard
23729 \align center
23730 Box height set to 1\InsetSpace \thinspace{}
23731 Depth
23732 \end_layout
23733
23734 \end_inset
23735
23736
23737 \newline
23738
23739 \newline
23740
23741 \end_layout
23742
23743 \begin_layout Description
23744 Height This is the heigth of the text that is inside the box.
23745  A value of e.\InsetSpace \thinspace{}
23746 g.\InsetSpace ~
23747 2 for this size will set the box heigth to 2 times the text
23748  height: 
23749 \begin_inset Box Boxed
23750 position "c"
23751 hor_pos "c"
23752 has_inner_box 1
23753 inner_pos "c"
23754 use_parbox 0
23755 width "20col%"
23756 special "none"
23757 height "2in"
23758 height_special "height"
23759 status collapsed
23760
23761 \begin_layout Standard
23762 \align center
23763 Box height set to 2\InsetSpace \thinspace{}
23764 Height
23765 \end_layout
23766
23767 \end_inset
23768
23769
23770 \end_layout
23771
23772 \begin_layout Description
23773 Total\InsetSpace ~
23774 Height This is the Height\InsetSpace \thinspace{}
23775 +\InsetSpace \thinspace{}
23776 Depth: 
23777 \begin_inset Box Boxed
23778 position "c"
23779 hor_pos "c"
23780 has_inner_box 1
23781 inner_pos "c"
23782 use_parbox 0
23783 width "20col%"
23784 special "none"
23785 height "1in"
23786 height_special "totalheight"
23787 status collapsed
23788
23789 \begin_layout Standard
23790 \align center
23791 Box height set to 1\InsetSpace \thinspace{}
23792 Total\InsetSpace ~
23793 Height
23794 \end_layout
23795
23796 \end_inset
23797
23798
23799 \end_layout
23800
23801 \begin_layout Description
23802 Width This set the width of the box as heigth: 
23803 \begin_inset Box Boxed
23804 position "c"
23805 hor_pos "c"
23806 has_inner_box 1
23807 inner_pos "c"
23808 use_parbox 0
23809 width "12col%"
23810 special "none"
23811 height "1in"
23812 height_special "width"
23813 status collapsed
23814
23815 \begin_layout Standard
23816 \align center
23817 Box height set to 1\InsetSpace \thinspace{}
23818 Width
23819 \end_layout
23820
23821 \end_inset
23822
23823
23824 \end_layout
23825
23826 \begin_layout Standard
23827 \begin_inset VSpace bigskip
23828 \end_inset
23829
23830 When you have chosen an 
23831 \family sans
23832 Inner\InsetSpace ~
23833 Box
23834 \family default
23835 , the vertical box alignment can be:
23836 \end_layout
23837
23838 \begin_layout Description
23839 Top This is an example text line.
23840  
23841 \begin_inset Box Boxed
23842 position "t"
23843 hor_pos "c"
23844 has_inner_box 1
23845 inner_pos "c"
23846 use_parbox 0
23847 width "12col%"
23848 special "none"
23849 height "1in"
23850 height_special "totalheight"
23851 status collapsed
23852
23853 \begin_layout Standard
23854 \align center
23855 This box is top-aligned.
23856 \end_layout
23857
23858 \end_inset
23859
23860 \InsetSpace ~
23861 This is an example text line.
23862 \end_layout
23863
23864 \begin_layout Description
23865 Middle This is an example text line.
23866  
23867 \begin_inset Box Boxed
23868 position "c"
23869 hor_pos "c"
23870 has_inner_box 1
23871 inner_pos "c"
23872 use_parbox 0
23873 width "12col%"
23874 special "none"
23875 height "1in"
23876 height_special "totalheight"
23877 status collapsed
23878
23879 \begin_layout Standard
23880 \align center
23881 This box is middle-aligned.
23882 \end_layout
23883
23884 \end_inset
23885
23886 \InsetSpace ~
23887 This is an example text line.
23888 \end_layout
23889
23890 \begin_layout Description
23891 Bottom This is an example text line.
23892  
23893 \begin_inset Box Boxed
23894 position "b"
23895 hor_pos "c"
23896 has_inner_box 1
23897 inner_pos "c"
23898 use_parbox 0
23899 width "12col%"
23900 special "none"
23901 height "1in"
23902 height_special "totalheight"
23903 status collapsed
23904
23905 \begin_layout Standard
23906 \align center
23907 This box is bottom-aligned.
23908 \end_layout
23909
23910 \end_inset
23911
23912 \InsetSpace ~
23913 This is an example text line.
23914 \end_layout
23915
23916 \begin_layout Standard
23917 The horizontal box alignment can be set via LyX's paragraph dialog when
23918  you set the box into its own paragraph.
23919 \end_layout
23920
23921 \begin_layout Standard
23922 \begin_inset VSpace bigskip
23923 \end_inset
23924
23925 When you have chosen an 
23926 \family sans
23927 Inner\InsetSpace ~
23928 Box
23929 \family default
23930 , the box content can be vertical aligned to:
23931 \end_layout
23932
23933 \begin_layout Description
23934 top This is an example text line.
23935  
23936 \begin_inset Box Boxed
23937 position "c"
23938 hor_pos "c"
23939 has_inner_box 1
23940 inner_pos "t"
23941 use_parbox 0
23942 width "12col%"
23943 special "none"
23944 height "1.5in"
23945 height_special "totalheight"
23946 status collapsed
23947
23948 \begin_layout Standard
23949 \align center
23950 This box text is top-aligned.
23951 \end_layout
23952
23953 \end_inset
23954
23955 \InsetSpace ~
23956 This is an example text line.
23957 \end_layout
23958
23959 \begin_layout Description
23960 middle This is an example text line.
23961  
23962 \begin_inset Box Boxed
23963 position "c"
23964 hor_pos "c"
23965 has_inner_box 1
23966 inner_pos "c"
23967 use_parbox 0
23968 width "12col%"
23969 special "none"
23970 height "1.5in"
23971 height_special "totalheight"
23972 status collapsed
23973
23974 \begin_layout Standard
23975 \align center
23976 This box text is middle-aligned.
23977 \end_layout
23978
23979 \end_inset
23980
23981 \InsetSpace ~
23982 This is an example text line.
23983 \end_layout
23984
23985 \begin_layout Description
23986 bottom This is an example text line.
23987  
23988 \begin_inset Box Boxed
23989 position "c"
23990 hor_pos "c"
23991 has_inner_box 1
23992 inner_pos "b"
23993 use_parbox 0
23994 width "12col%"
23995 special "none"
23996 height "1.5in"
23997 height_special "totalheight"
23998 status collapsed
23999
24000 \begin_layout Standard
24001 \align center
24002 This box text is bottom-aligned.
24003 \end_layout
24004
24005 \end_inset
24006
24007 \InsetSpace ~
24008 This is an example text line.
24009 \end_layout
24010
24011 \begin_layout Description
24012 stretch This is an example text line.
24013  
24014 \begin_inset Box Boxed
24015 position "c"
24016 hor_pos "c"
24017 has_inner_box 1
24018 inner_pos "s"
24019 use_parbox 0
24020 width "12col%"
24021 special "none"
24022 height "1.5in"
24023 height_special "totalheight"
24024 status collapsed
24025
24026 \begin_layout Standard
24027 \align center
24028 This box
24029 \end_layout
24030
24031 \begin_layout Standard
24032 \align center
24033 text is
24034 \end_layout
24035
24036 \begin_layout Standard
24037 \align center
24038 stretched.
24039 \end_layout
24040
24041 \end_inset
24042
24043 \InsetSpace ~
24044 This is an example text line.
24045 \end_layout
24046
24047 \begin_layout Standard
24048 To stretch the box content, it must consist of more than one paragraph.
24049  In the example above every text line is in an own paragraph.
24050 \end_layout
24051
24052 \begin_layout Standard
24053 \begin_inset VSpace bigskip
24054 \end_inset
24055
24056 To align the box content horizontally you can use LyX's paragraph dialog
24057  when you have chosen an 
24058 \family sans
24059 Inner\InsetSpace ~
24060 Box
24061 \family default
24062 .
24063 \end_layout
24064
24065 \begin_layout Standard
24066 \align center
24067 \begin_inset Box Boxed
24068 position "c"
24069 hor_pos "c"
24070 has_inner_box 1
24071 inner_pos "s"
24072 use_parbox 0
24073 width "15col%"
24074 special "none"
24075 height "1.25in"
24076 height_special "totalheight"
24077 status collapsed
24078
24079 \begin_layout Standard
24080 \align left
24081 This box
24082 \end_layout
24083
24084 \begin_layout Standard
24085 \align center
24086 text is
24087 \end_layout
24088
24089 \begin_layout Standard
24090 \align right
24091 stretched.
24092 \end_layout
24093
24094 \end_inset
24095
24096
24097 \end_layout
24098
24099 \begin_layout Standard
24100 If you haven't set an 
24101 \family sans
24102 Inner\InsetSpace ~
24103 Box
24104 \family default
24105 , you can align the box content horizontally in the box dialog.
24106 \end_layout
24107
24108 \begin_layout Standard
24109 \align center
24110 \begin_inset Box Boxed
24111 position "c"
24112 hor_pos "s"
24113 has_inner_box 0
24114 inner_pos "s"
24115 use_parbox 0
24116 width "90col%"
24117 special "none"
24118 height "1.25in"
24119 height_special "totalheight"
24120 status collapsed
24121
24122 \begin_layout Standard
24123 \align left
24124 This box text is horizontally stretched.
24125 \end_layout
24126
24127 \end_inset
24128
24129
24130 \end_layout
24131
24132 \begin_layout Section
24133 Framed Boxes
24134 \begin_inset LatexCommand label
24135 name "sec:Framed-Boxes"
24136
24137 \end_inset
24138
24139
24140 \begin_inset LatexCommand index
24141 name "Boxes ! Frames"
24142
24143 \end_inset
24144
24145
24146 \end_layout
24147
24148 \begin_layout Standard
24149 The frame style of the box can be specified in the box-dialog in the drop-down
24150  list 
24151 \family sans
24152 Type
24153 \family default
24154 .
24155  The following frame types are possible:
24156 \end_layout
24157
24158 \begin_layout Description
24159 Rectangular\InsetSpace ~
24160 box This draws a rectangle frame around the box.
24161  The frame line thickness has the size of 
24162 \series bold
24163
24164 \backslash
24165 fboxrule
24166 \series default
24167 .
24168  
24169 \begin_inset Box Boxed
24170 position "c"
24171 hor_pos "c"
24172 has_inner_box 1
24173 inner_pos "c"
24174 use_parbox 0
24175 width "20col%"
24176 special "none"
24177 height "1in"
24178 height_special "totalheight"
24179 status collapsed
24180
24181 \begin_layout Standard
24182 \align center
24183 Rectangular box
24184 \end_layout
24185
24186 \end_inset
24187
24188
24189 \end_layout
24190
24191 \begin_layout Description
24192 Oval\InsetSpace ~
24193 box,\InsetSpace ~
24194 thin This draws an oval frame around the box.
24195  The frame line thickness has the size 0.4\InsetSpace \thinspace{}
24196 pt.
24197  
24198 \begin_inset Box ovalbox
24199 position "c"
24200 hor_pos "c"
24201 has_inner_box 1
24202 inner_pos "c"
24203 use_parbox 0
24204 width "20col%"
24205 special "none"
24206 height "1in"
24207 height_special "totalheight"
24208 status collapsed
24209
24210 \begin_layout Standard
24211 \align center
24212 Oval box, thin
24213 \end_layout
24214
24215 \end_inset
24216
24217
24218 \end_layout
24219
24220 \begin_layout Description
24221 Oval\InsetSpace ~
24222 box,\InsetSpace ~
24223 thick This draws an oval frame around the box.
24224  The frame line thickness has the size 0.8\InsetSpace \thinspace{}
24225 pt.
24226  
24227 \begin_inset Box Ovalbox
24228 position "c"
24229 hor_pos "c"
24230 has_inner_box 1
24231 inner_pos "c"
24232 use_parbox 0
24233 width "20col%"
24234 special "none"
24235 height "1in"
24236 height_special "totalheight"
24237 status collapsed
24238
24239 \begin_layout Standard
24240 \align center
24241 Oval box, thick
24242 \end_layout
24243
24244 \end_inset
24245
24246
24247 \end_layout
24248
24249 \begin_layout Description
24250 Shadow\InsetSpace ~
24251 box This draws a rectangle frame with a shadow around the box.
24252  The frame line thickness has the size of 
24253 \series bold
24254
24255 \backslash
24256 fboxrule
24257 \series default
24258 , the shadow has a width of 4\InsetSpace \thinspace{}
24259 pt.
24260  
24261 \begin_inset Box Shadowbox
24262 position "c"
24263 hor_pos "c"
24264 has_inner_box 1
24265 inner_pos "c"
24266 use_parbox 0
24267 width "20col%"
24268 special "none"
24269 height "1in"
24270 height_special "totalheight"
24271 status collapsed
24272
24273 \begin_layout Standard
24274 \align center
24275 Shadow box
24276 \end_layout
24277
24278 \end_inset
24279
24280
24281 \end_layout
24282
24283 \begin_layout Description
24284 Double\InsetSpace ~
24285 box This draws a double-line rectangle frame around the box.
24286  The line thickness of the inner frame is 0.75\InsetSpace \thinspace{}
24287
24288 \series bold
24289
24290 \backslash
24291 fboxrule
24292 \series default
24293 , the thickness of the outer frame is 1.5\InsetSpace \thinspace{}
24294
24295 \series bold
24296
24297 \backslash
24298 fboxrule
24299 \series default
24300 .
24301  The distance between the lines is 1.5\InsetSpace \thinspace{}
24302
24303 \series bold
24304
24305 \backslash
24306 fboxrule
24307 \series default
24308 \InsetSpace \thinspace{}
24309 +\InsetSpace \thinspace{}
24310 0.5\InsetSpace \thinspace{}
24311 pt.
24312  
24313 \begin_inset Box Doublebox
24314 position "c"
24315 hor_pos "c"
24316 has_inner_box 1
24317 inner_pos "c"
24318 use_parbox 0
24319 width "20col%"
24320 special "none"
24321 height "1in"
24322 height_special "totalheight"
24323 status collapsed
24324
24325 \begin_layout Standard
24326 \align center
24327 Double box
24328 \end_layout
24329
24330 \end_inset
24331
24332
24333 \end_layout
24334
24335 \begin_layout Standard
24336 \begin_inset VSpace bigskip
24337 \end_inset
24338
24339 LyX's box label will change to the used frame style when you set a frame.
24340  To be able to use the different frame styles, the LaTeX-package 
24341 \series bold
24342 fancybox
24343 \series default
24344
24345 \begin_inset LatexCommand index
24346 name "LaTeX-packages ! fancybox"
24347
24348 \end_inset
24349
24350  must be installed.
24351 \end_layout
24352
24353 \begin_layout Standard
24354 \begin_inset VSpace bigskip
24355 \end_inset
24356
24357 The default value for the size 
24358 \series bold
24359
24360 \backslash
24361 fboxrule
24362 \series default
24363  is 0.4\InsetSpace \thinspace{}
24364 pt.
24365  It can be changed with the following command in ERT to e.\InsetSpace \thinspace{}
24366 g.\InsetSpace ~
24367 2\InsetSpace \thinspace{}
24368 pt:
24369 \end_layout
24370
24371 \begin_layout Standard
24372
24373 \series bold
24374
24375 \backslash
24376 setlength{
24377 \backslash
24378 fboxrule}{2pt}
24379 \end_layout
24380
24381 \begin_layout Standard
24382 \begin_inset ERT
24383 status collapsed
24384
24385 \begin_layout Standard
24386
24387
24388 \backslash
24389 setlength{
24390 \backslash
24391 fboxrule}{2pt}
24392 \end_layout
24393
24394 \end_inset
24395
24396
24397 \begin_inset Box Boxed
24398 position "c"
24399 hor_pos "c"
24400 has_inner_box 1
24401 inner_pos "c"
24402 use_parbox 0
24403 width "25col%"
24404 special "none"
24405 height "1in"
24406 height_special "totalheight"
24407 status collapsed
24408
24409 \begin_layout Standard
24410 \align center
24411 Rectangular box with 
24412 \series bold
24413
24414 \backslash
24415 fboxrule
24416 \series default
24417 \InsetSpace \thinspace{}
24418 =\InsetSpace \thinspace{}
24419 2\InsetSpace \thinspace{}
24420 pt
24421 \end_layout
24422
24423 \end_inset
24424
24425
24426 \begin_inset ERT
24427 status collapsed
24428
24429 \begin_layout Standard
24430
24431
24432 \backslash
24433 setlength{
24434 \backslash
24435 fboxrule}{0.4pt}
24436 \end_layout
24437
24438 \end_inset
24439
24440
24441 \end_layout
24442
24443 \begin_layout Standard
24444 \begin_inset VSpace bigskip
24445 \end_inset
24446
24447 The space between the frame and the box content is for all frame styles
24448  by default 3\InsetSpace \thinspace{}
24449 pt.
24450  You can change it by setting the length 
24451 \series bold
24452
24453 \backslash
24454 fboxsep
24455 \series default
24456  to another value.
24457  For example the command
24458 \end_layout
24459
24460 \begin_layout Standard
24461
24462 \series bold
24463
24464 \backslash
24465 setlength{
24466 \backslash
24467 fboxsep}{10pt}
24468 \end_layout
24469
24470 \begin_layout Standard
24471 sets the value to 10\InsetSpace \thinspace{}
24472 pt, like for the following box:
24473 \end_layout
24474
24475 \begin_layout Standard
24476 \begin_inset ERT
24477 status collapsed
24478
24479 \begin_layout Standard
24480
24481
24482 \backslash
24483 setlength{
24484 \backslash
24485 fboxsep}{10pt}
24486 \end_layout
24487
24488 \end_inset
24489
24490
24491 \begin_inset Box Boxed
24492 position "c"
24493 hor_pos "c"
24494 has_inner_box 1
24495 inner_pos "c"
24496 use_parbox 0
24497 width "25col%"
24498 special "none"
24499 height "1in"
24500 height_special "totalheight"
24501 status collapsed
24502
24503 \begin_layout Standard
24504 \align center
24505 Rectangular box with 
24506 \series bold
24507
24508 \backslash
24509 fboxsep
24510 \series default
24511 \InsetSpace \thinspace{}
24512 =\InsetSpace \thinspace{}
24513 10\InsetSpace \thinspace{}
24514 pt
24515 \end_layout
24516
24517 \end_inset
24518
24519
24520 \begin_inset ERT
24521 status collapsed
24522
24523 \begin_layout Standard
24524
24525
24526 \backslash
24527 setlength{
24528 \backslash
24529 fboxsep}{3pt}
24530 \end_layout
24531
24532 \end_inset
24533
24534
24535 \end_layout
24536
24537 \begin_layout Standard
24538 \begin_inset VSpace bigskip
24539 \end_inset
24540
24541 The diameter of the round corners of the oval boxes can be set with the
24542  command 
24543 \series bold
24544
24545 \backslash
24546 cornersize
24547 \series default
24548 .
24549  The command
24550 \end_layout
24551
24552 \begin_layout Standard
24553
24554 \series bold
24555
24556 \backslash
24557 cornersize*{1cm}
24558 \end_layout
24559
24560 \begin_layout Standard
24561 sets the diameter to 1\InsetSpace \thinspace{}
24562 cm.
24563  The command
24564 \end_layout
24565
24566 \begin_layout Standard
24567
24568 \series bold
24569
24570 \backslash
24571 cornersize{num}
24572 \end_layout
24573
24574 \begin_layout Standard
24575 sets the diameter to 
24576 \family sans
24577 num\InsetSpace \thinspace{}
24578 ×\InsetSpace \thinspace{}
24579 minimum(width and heigth of box)
24580 \family default
24581 .
24582  The default is 
24583 \series bold
24584
24585 \backslash
24586 cornersize{0.5}
24587 \series default
24588 .
24589 \end_layout
24590
24591 \begin_layout Standard
24592 \begin_inset ERT
24593 status collapsed
24594
24595 \begin_layout Standard
24596
24597
24598 \backslash
24599 cornersize*{1.5cm}
24600 \end_layout
24601
24602 \end_inset
24603
24604
24605 \begin_inset Box Ovalbox
24606 position "c"
24607 hor_pos "c"
24608 has_inner_box 1
24609 inner_pos "c"
24610 use_parbox 0
24611 width "25col%"
24612 special "none"
24613 height "1in"
24614 height_special "totalheight"
24615 status collapsed
24616
24617 \begin_layout Standard
24618 \align center
24619 Oval box with 
24620 \series bold
24621
24622 \backslash
24623 cornersize
24624 \series default
24625 \InsetSpace \thinspace{}
24626 =\InsetSpace \thinspace{}
24627 1.5\InsetSpace \thinspace{}
24628 cm
24629 \end_layout
24630
24631 \end_inset
24632
24633
24634 \begin_inset ERT
24635 status collapsed
24636
24637 \begin_layout Standard
24638
24639
24640 \backslash
24641 cornersize{0.5}
24642 \end_layout
24643
24644 \end_inset
24645
24646
24647 \end_layout
24648
24649 \begin_layout Standard
24650 \begin_inset VSpace bigskip
24651 \end_inset
24652
24653 The size of the shadow can be adjusted by changing the length 
24654 \series bold
24655
24656 \backslash
24657 shadowsize
24658 \series default
24659 .
24660  It it set to 2\InsetSpace \thinspace{}
24661 pt for the following box by this command:
24662 \end_layout
24663
24664 \begin_layout Standard
24665
24666 \series bold
24667
24668 \backslash
24669 setlength{
24670 \backslash
24671 shadowsize}{2pt}
24672 \end_layout
24673
24674 \begin_layout Standard
24675 \begin_inset ERT
24676 status collapsed
24677
24678 \begin_layout Standard
24679
24680
24681 \backslash
24682 setlength{
24683 \backslash
24684 shadowsize}{2pt}
24685 \end_layout
24686
24687 \end_inset
24688
24689
24690 \begin_inset Box Shadowbox
24691 position "c"
24692 hor_pos "c"
24693 has_inner_box 1
24694 inner_pos "c"
24695 use_parbox 0
24696 width "25col%"
24697 special "none"
24698 height "1in"
24699 height_special "totalheight"
24700 status collapsed
24701
24702 \begin_layout Standard
24703 \align center
24704 Shadow box with 
24705 \series bold
24706
24707 \backslash
24708 shadowsize
24709 \series default
24710 \InsetSpace \thinspace{}
24711 =\InsetSpace \thinspace{}
24712 2\InsetSpace \thinspace{}
24713 pt
24714 \end_layout
24715
24716 \end_inset
24717
24718
24719 \begin_inset ERT
24720 status collapsed
24721
24722 \begin_layout Standard
24723
24724
24725 \backslash
24726 setlength{
24727 \backslash
24728 shadowsize}{4pt}
24729 \end_layout
24730
24731 \end_inset
24732
24733
24734 \end_layout
24735
24736 \begin_layout Standard
24737 \begin_inset VSpace bigskip
24738 \end_inset
24739
24740 Changed lengths and widths are valid for all boxes following the commands
24741  that change them.
24742 \end_layout
24743
24744 \begin_layout Section
24745 Minipages
24746 \begin_inset LatexCommand label
24747 name "sec:Minipages"
24748
24749 \end_inset
24750
24751
24752 \begin_inset LatexCommand index
24753 name "Boxes ! Minipages"
24754
24755 \end_inset
24756
24757
24758 \end_layout
24759
24760 \begin_layout Standard
24761 Minipages are treated by LaTeX as pages within pages and can therefore for
24762  example have their own footnotes.
24763 \end_layout
24764
24765 \begin_layout Standard
24766 Minipages are useful when you write documents with different languages.
24767 \end_layout
24768
24769 \begin_layout Standard
24770 Below are two example minipages side by side.
24771  Their width is set to 45\InsetSpace \thinspace{}
24772 col% and they are separated by a horizontal fill,
24773  that was inserted via the menu 
24774 \family sans
24775 Insert\SpecialChar \menuseparator
24776 Special\InsetSpace ~
24777 Formatting\SpecialChar \menuseparator
24778 Horizontal\InsetSpace ~
24779 Fill
24780 \family default
24781 .
24782 \end_layout
24783
24784 \begin_layout Standard
24785 \begin_inset Box Frameless
24786 position "t"
24787 hor_pos "c"
24788 has_inner_box 1
24789 inner_pos "c"
24790 use_parbox 0
24791 width "45col%"
24792 special "none"
24793 height "1in"
24794 height_special "totalheight"
24795 status open
24796
24797 \begin_layout Standard
24798
24799 \lang german
24800 Dies ist ein deutscher Text.
24801  Dies ist ein deutscher Text.
24802  Dies ist ein deutscher Text.
24803  Dies ist ein deutscher Text.
24804  Dies ist ein deutscher Text.
24805  Dies ist ein deutscher Text.
24806  Dies ist ein deutscher Text.
24807  Dies ist ein deutscher Text.
24808  Dies ist ein deutscher Text.
24809  Dies ist ein deutscher Text.
24810  Dies ist ein deutscher Text.
24811  Dies ist ein deutscher Text.
24812  Dies ist ein deutscher Text
24813 \begin_inset Foot
24814 status collapsed
24815
24816 \begin_layout Standard
24817
24818 \lang german
24819 Dies ist eine deutsche Fußnote.
24820 \end_layout
24821
24822 \end_inset
24823
24824 .
24825  Dies ist ein deutscher Text.
24826  Dies ist ein deutscher Text.
24827 \end_layout
24828
24829 \end_inset
24830
24831
24832 \hfill
24833
24834 \begin_inset Box Frameless
24835 position "t"
24836 hor_pos "c"
24837 has_inner_box 1
24838 inner_pos "c"
24839 use_parbox 0
24840 width "45col%"
24841 special "none"
24842 height "1in"
24843 height_special "totalheight"
24844 status open
24845
24846 \begin_layout Standard
24847 This is an English Text.
24848  This is an English Text.
24849  This is an English Text.
24850  This is an English Text.
24851  This is an English Text.
24852  This is an English Text.
24853  This is an English Text.
24854  This is an English Text.
24855  This is an English Text.
24856  This is an English Text.
24857  This is an English Text.
24858  This is an English Text.
24859  This is an English Text.
24860  This is an English Text.
24861  This is an English Text.
24862  This is an English Text.
24863 \begin_inset Foot
24864 status collapsed
24865
24866 \begin_layout Standard
24867 This is an English footnote.
24868 \end_layout
24869
24870 \end_inset
24871
24872  This is an English Text.
24873  
24874 \end_layout
24875
24876 \end_inset
24877
24878
24879 \end_layout
24880
24881 \begin_layout Standard
24882 \begin_inset VSpace bigskip
24883 \end_inset
24884
24885 Another application for minipages are footnotes within tables.
24886  Due to a LaTeX restriction footnotes within tables doesn't appear at the
24887  bottom of the current page.
24888  But when you put the table with the footnote to a minipage, the footnote
24889  will appear at its bottom, numbered with Latin letters.
24890  The footnote number is reset to 1 in every minipage but not outside the
24891  minipages.
24892 \end_layout
24893
24894 \begin_layout Standard
24895 The footnote of this table doesn't appear: 
24896 \begin_inset Tabular
24897 <lyxtabular version="3" rows="3" columns="4">
24898 <features>
24899 <column alignment="center" valignment="top" leftline="true" width="0pt">
24900 <column alignment="center" valignment="top" leftline="true" width="0pt">
24901 <column alignment="center" valignment="top" leftline="true" width="0pt">
24902 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0pt">
24903 <row topline="true">
24904 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24905 \begin_inset Text
24906
24907 \begin_layout Standard
24908 1
24909 \end_layout
24910
24911 \end_inset
24912 </cell>
24913 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24914 \begin_inset Text
24915
24916 \begin_layout Standard
24917 2
24918 \end_layout
24919
24920 \end_inset
24921 </cell>
24922 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24923 \begin_inset Text
24924
24925 \begin_layout Standard
24926 3
24927 \begin_inset Foot
24928 status collapsed
24929
24930 \begin_layout Standard
24931 This is a footnote within a table.
24932 \end_layout
24933
24934 \end_inset
24935
24936
24937 \end_layout
24938
24939 \end_inset
24940 </cell>
24941 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24942 \begin_inset Text
24943
24944 \begin_layout Standard
24945 4
24946 \end_layout
24947
24948 \end_inset
24949 </cell>
24950 </row>
24951 <row topline="true">
24952 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24953 \begin_inset Text
24954
24955 \begin_layout Standard
24956 a
24957 \end_layout
24958
24959 \end_inset
24960 </cell>
24961 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24962 \begin_inset Text
24963
24964 \begin_layout Standard
24965 b
24966 \end_layout
24967
24968 \end_inset
24969 </cell>
24970 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24971 \begin_inset Text
24972
24973 \begin_layout Standard
24974 c
24975 \end_layout
24976
24977 \end_inset
24978 </cell>
24979 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24980 \begin_inset Text
24981
24982 \begin_layout Standard
24983 d
24984 \end_layout
24985
24986 \end_inset
24987 </cell>
24988 </row>
24989 <row topline="true" bottomline="true">
24990 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24991 \begin_inset Text
24992
24993 \begin_layout Standard
24994 e
24995 \end_layout
24996
24997 \end_inset
24998 </cell>
24999 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25000 \begin_inset Text
25001
25002 \begin_layout Standard
25003 f
25004 \end_layout
25005
25006 \end_inset
25007 </cell>
25008 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25009 \begin_inset Text
25010
25011 \begin_layout Standard
25012 g
25013 \end_layout
25014
25015 \end_inset
25016 </cell>
25017 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25018 \begin_inset Text
25019
25020 \begin_layout Standard
25021 h
25022 \end_layout
25023
25024 \end_inset
25025 </cell>
25026 </row>
25027 </lyxtabular>
25028
25029 \end_inset
25030
25031
25032 \end_layout
25033
25034 \begin_layout Standard
25035 \align center
25036 \begin_inset Box Frameless
25037 position "t"
25038 hor_pos "c"
25039 has_inner_box 1
25040 inner_pos "c"
25041 use_parbox 0
25042 width "30col%"
25043 special "none"
25044 height "1in"
25045 height_special "totalheight"
25046 status open
25047
25048 \begin_layout Standard
25049 \align center
25050 \begin_inset Tabular
25051 <lyxtabular version="3" rows="3" columns="4">
25052 <features>
25053 <column alignment="center" valignment="top" leftline="true" width="0pt">
25054 <column alignment="center" valignment="top" leftline="true" width="0pt">
25055 <column alignment="center" valignment="top" leftline="true" width="0pt">
25056 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0pt">
25057 <row topline="true">
25058 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25059 \begin_inset Text
25060
25061 \begin_layout Standard
25062 1
25063 \end_layout
25064
25065 \end_inset
25066 </cell>
25067 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25068 \begin_inset Text
25069
25070 \begin_layout Standard
25071 2
25072 \end_layout
25073
25074 \end_inset
25075 </cell>
25076 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25077 \begin_inset Text
25078
25079 \begin_layout Standard
25080 3
25081 \begin_inset Foot
25082 status collapsed
25083
25084 \begin_layout Standard
25085 This is a footnote within a table.
25086 \end_layout
25087
25088 \end_inset
25089
25090
25091 \end_layout
25092
25093 \end_inset
25094 </cell>
25095 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25096 \begin_inset Text
25097
25098 \begin_layout Standard
25099 4
25100 \end_layout
25101
25102 \end_inset
25103 </cell>
25104 </row>
25105 <row topline="true">
25106 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25107 \begin_inset Text
25108
25109 \begin_layout Standard
25110 a
25111 \end_layout
25112
25113 \end_inset
25114 </cell>
25115 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25116 \begin_inset Text
25117
25118 \begin_layout Standard
25119 b
25120 \end_layout
25121
25122 \end_inset
25123 </cell>
25124 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25125 \begin_inset Text
25126
25127 \begin_layout Standard
25128 c
25129 \end_layout
25130
25131 \end_inset
25132 </cell>
25133 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25134 \begin_inset Text
25135
25136 \begin_layout Standard
25137 d
25138 \end_layout
25139
25140 \end_inset
25141 </cell>
25142 </row>
25143 <row topline="true" bottomline="true">
25144 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25145 \begin_inset Text
25146
25147 \begin_layout Standard
25148 e
25149 \end_layout
25150
25151 \end_inset
25152 </cell>
25153 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25154 \begin_inset Text
25155
25156 \begin_layout Standard
25157 f
25158 \end_layout
25159
25160 \end_inset
25161 </cell>
25162 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25163 \begin_inset Text
25164
25165 \begin_layout Standard
25166 g
25167 \end_layout
25168
25169 \end_inset
25170 </cell>
25171 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25172 \begin_inset Text
25173
25174 \begin_layout Standard
25175 h
25176 \end_layout
25177
25178 \end_inset
25179 </cell>
25180 </row>
25181 </lyxtabular>
25182
25183 \end_inset
25184
25185
25186 \end_layout
25187
25188 \end_inset
25189
25190
25191 \end_layout
25192
25193 \begin_layout Standard
25194 \begin_inset VSpace bigskip
25195 \end_inset
25196
25197 The document-wide paragraph settings are ignored within minipages.
25198  That means that there will be no space between paragraphs in minipages
25199  although you set it to e.\InsetSpace \thinspace{}
25200 g.\InsetSpace ~
25201
25202 \family sans
25203 MedSkip
25204 \family default
25205  in the document settings.
25206 \end_layout
25207
25208 \begin_layout Standard
25209 Minipages can also be used to set a background color for text parts, see
25210  section\InsetSpace ~
25211
25212 \begin_inset LatexCommand ref
25213 reference "sub:Color-for-Paragraphs"
25214
25215 \end_inset
25216
25217 .
25218 \end_layout
25219
25220 \begin_layout Standard
25221 \begin_inset Note Greyedout
25222 status open
25223
25224 \begin_layout Standard
25225
25226 \series bold
25227 Note:
25228 \series default
25229  You cannot have floats or margin notes inside minipages but minipages can
25230  be used inside tables, floats, and other boxes.
25231 \end_layout
25232
25233 \end_inset
25234
25235
25236 \end_layout
25237
25238 \begin_layout Section
25239 Parboxes
25240 \begin_inset LatexCommand label
25241 name "sec:Parboxes"
25242
25243 \end_inset
25244
25245
25246 \begin_inset LatexCommand index
25247 name "Boxes ! Parboxes"
25248
25249 \end_inset
25250
25251
25252 \end_layout
25253
25254 \begin_layout Standard
25255 Parboxes are very similar to minipages with the difference that they cannot
25256  have footnotes.
25257  The main difference to minipages is that minipages are in contrary to parboxes
25258  no real boxes but LaTeX-environments.
25259 \end_layout
25260
25261 \begin_layout Standard
25262 \align center
25263 \begin_inset Box Frameless
25264 position "t"
25265 hor_pos "c"
25266 has_inner_box 1
25267 inner_pos "t"
25268 use_parbox 1
25269 width "33col%"
25270 special "none"
25271 height "1in"
25272 height_special "totalheight"
25273 status collapsed
25274
25275 \begin_layout Standard
25276 This a text within a parbox.
25277  This a text within a parbox.
25278 \end_layout
25279
25280 \begin_layout Standard
25281 This footnote won't appear:
25282 \begin_inset Foot
25283 status collapsed
25284
25285 \begin_layout Standard
25286 This footnote is inside a parbox and will therefore not appear.
25287 \end_layout
25288
25289 \end_inset
25290
25291
25292 \end_layout
25293
25294 \end_inset
25295
25296
25297 \end_layout
25298
25299 \begin_layout Section
25300 Boxes for Words and Characters
25301 \begin_inset LatexCommand index
25302 name "Boxes ! for Characters"
25303
25304 \end_inset
25305
25306
25307 \end_layout
25308
25309 \begin_layout Subsection
25310 Prevent Hyphenation
25311 \begin_inset LatexCommand label
25312 name "sec:Prevent-Hyphenation"
25313
25314 \end_inset
25315
25316
25317 \begin_inset LatexCommand index
25318 name "Boxes ! to Prevent Hyphenation"
25319
25320 \end_inset
25321
25322
25323 \end_layout
25324
25325 \begin_layout Standard
25326 You can use a special kind of boxes to prevent words or text to be hyphenated.
25327 \newline
25328 Her
25329 e is an example text:
25330 \end_layout
25331
25332 \begin_layout Standard
25333 This line is an example to show how you can prevent the hyphenation of e.\InsetSpace \thinspace{}
25334 g.\InsetSpace ~
25335 veryver
25336 ylongwords.
25337 \end_layout
25338
25339 \begin_layout Standard
25340 To prevent the hyphenation of the word 
25341 \begin_inset Quotes eld
25342 \end_inset
25343
25344 veryverylongwords
25345 \begin_inset Quotes erd
25346 \end_inset
25347
25348 , add the command
25349 \end_layout
25350
25351 \begin_layout Standard
25352
25353 \series bold
25354
25355 \backslash
25356 mbox{
25357 \end_layout
25358
25359 \begin_layout Standard
25360 in ERT before the word.
25361  Behind the word insert a closing brace 
25362 \begin_inset Quotes eld
25363 \end_inset
25364
25365
25366 \series bold
25367 }
25368 \series default
25369
25370 \begin_inset Quotes erd
25371 \end_inset
25372
25373  in ERT.
25374 \begin_inset ERT
25375 status collapsed
25376
25377 \begin_layout Standard
25378
25379
25380 \backslash
25381 pagebreak 
25382 \end_layout
25383
25384 \end_inset
25385
25386
25387 \end_layout
25388
25389 \begin_layout Standard
25390 This is the result:
25391 \end_layout
25392
25393 \begin_layout Standard
25394 This line is an example to show how you can prevent the hyphenation of e.\InsetSpace \thinspace{}
25395 g.\InsetSpace ~
25396
25397 \begin_inset ERT
25398 status collapsed
25399
25400 \begin_layout Standard
25401
25402
25403 \backslash
25404 mbox{
25405 \end_layout
25406
25407 \end_inset
25408
25409 veryverylongwords.
25410 \begin_inset ERT
25411 status collapsed
25412
25413 \begin_layout Standard
25414
25415 }
25416 \end_layout
25417
25418 \end_inset
25419
25420
25421 \end_layout
25422
25423 \begin_layout Standard
25424 Of course the word now protrudes over the side margin.
25425  To avoid this, add via the menu 
25426 \family sans
25427 Insert\SpecialChar \menuseparator
25428 Special\InsetSpace ~
25429 Formatting\SpecialChar \menuseparator
25430 Line\InsetSpace ~
25431 Break
25432 \family default
25433  (shortcut 
25434 \series bold
25435 Ctrl-Return
25436 \series default
25437 ) a line break before the word:
25438 \end_layout
25439
25440 \begin_layout Standard
25441 This line is an example to show how you can prevent the hyphenation of e.\InsetSpace \thinspace{}
25442 g.\InsetSpace ~
25443
25444 \newline
25445
25446 \begin_inset ERT
25447 status collapsed
25448
25449 \begin_layout Standard
25450
25451
25452 \backslash
25453 mbox{
25454 \end_layout
25455
25456 \end_inset
25457
25458 veryverylongwords.
25459 \begin_inset ERT
25460 status collapsed
25461
25462 \begin_layout Standard
25463
25464 }
25465 \end_layout
25466
25467 \end_inset
25468
25469
25470 \end_layout
25471
25472 \begin_layout Subsection
25473 Vertical Alignment
25474 \begin_inset LatexCommand label
25475 name "sub:Vertical-Alignment"
25476
25477 \end_inset
25478
25479
25480 \begin_inset LatexCommand index
25481 name "Boxes ! for Vertical Alignment"
25482
25483 \end_inset
25484
25485
25486 \begin_inset LatexCommand index
25487 name "Boxes ! Raiseboxes"
25488
25489 \end_inset
25490
25491
25492 \end_layout
25493
25494 \begin_layout Standard
25495 With the help of the command 
25496 \series bold
25497
25498 \backslash
25499 raisebox
25500 \series default
25501  you can align words, characters or other boxes vertically to the surrounding
25502  text.
25503  
25504 \series bold
25505
25506 \backslash
25507 raisebox
25508 \series default
25509  is used with the following scheme:
25510 \end_layout
25511
25512 \begin_layout Standard
25513
25514 \series bold
25515
25516 \backslash
25517 raisebox{lift}[height][depth]{box content}
25518 \end_layout
25519
25520 \begin_layout Standard
25521 The lift can be a positive value to raise the box or a negative value to
25522  lower the box.
25523 \end_layout
25524
25525 \begin_layout Standard
25526 To align for example the word 
25527 \begin_inset Quotes eld
25528 \end_inset
25529
25530 preventing
25531 \begin_inset Quotes erd
25532 \end_inset
25533
25534  so that the bottom of the 
25535 \begin_inset Quotes eld
25536 \end_inset
25537
25538 deepest
25539 \begin_inset Quotes erd
25540 \end_inset
25541
25542  character 
25543 \begin_inset Quotes eld
25544 \end_inset
25545
25546 p
25547 \begin_inset Quotes erd
25548 \end_inset
25549
25550  is at the baseline, insert the command
25551 \end_layout
25552
25553 \begin_layout Standard
25554
25555 \series bold
25556
25557 \backslash
25558 raisebox{
25559 \backslash
25560 depth}{
25561 \end_layout
25562
25563 \begin_layout Standard
25564 in ERT before the word.
25565  Behind the word insert a closing brace 
25566 \begin_inset Quotes eld
25567 \end_inset
25568
25569
25570 \series bold
25571 }
25572 \series default
25573
25574 \begin_inset Quotes erd
25575 \end_inset
25576
25577  in ERT.
25578 \newline
25579 This is the result:
25580 \end_layout
25581
25582 \begin_layout Standard
25583 This is a text line with the word 
25584 \begin_inset ERT
25585 status collapsed
25586
25587 \begin_layout Standard
25588
25589
25590 \backslash
25591 raisebox{
25592 \backslash
25593 depth}{
25594 \end_layout
25595
25596 \end_inset
25597
25598
25599 \begin_inset Quotes eld
25600 \end_inset
25601
25602 preventing
25603 \begin_inset Quotes erd
25604 \end_inset
25605
25606
25607 \begin_inset ERT
25608 status collapsed
25609
25610 \begin_layout Standard
25611
25612 }
25613 \end_layout
25614
25615 \end_inset
25616
25617  as raised word.
25618 \end_layout
25619
25620 \begin_layout Standard
25621 \begin_inset VSpace bigskip
25622 \end_inset
25623
25624 When you raise or lower characters in a line, the line distance will be
25625  spread:
25626 \end_layout
25627
25628 \begin_layout Standard
25629 This is a text line with the word 
25630 \begin_inset ERT
25631 status collapsed
25632
25633 \begin_layout Standard
25634
25635
25636 \backslash
25637 raisebox{-
25638 \backslash
25639 depth}{
25640 \end_layout
25641
25642 \end_inset
25643
25644
25645 \begin_inset Quotes eld
25646 \end_inset
25647
25648 preventing
25649 \begin_inset Quotes erd
25650 \end_inset
25651
25652
25653 \begin_inset ERT
25654 status collapsed
25655
25656 \begin_layout Standard
25657
25658 }
25659 \end_layout
25660
25661 \end_inset
25662
25663  as lowered word.
25664 \newline
25665 This is a text line with the word 
25666 \begin_inset ERT
25667 status collapsed
25668
25669 \begin_layout Standard
25670
25671
25672 \backslash
25673 raisebox{0.5cm}{
25674 \end_layout
25675
25676 \end_inset
25677
25678
25679 \begin_inset Quotes eld
25680 \end_inset
25681
25682 testing
25683 \begin_inset Quotes erd
25684 \end_inset
25685
25686
25687 \begin_inset ERT
25688 status collapsed
25689
25690 \begin_layout Standard
25691
25692 }
25693 \end_layout
25694
25695 \end_inset
25696
25697  as raised word.
25698 \end_layout
25699
25700 \begin_layout Standard
25701 If you want to prevent this for a certain reason, set the box height to
25702  a zero value.
25703  For example use
25704 \end_layout
25705
25706 \begin_layout Standard
25707
25708 \series bold
25709
25710 \backslash
25711 raisebox{-
25712 \backslash
25713 depth}[0pt]{
25714 \end_layout
25715
25716 \begin_layout Standard
25717 This is a text line with the word 
25718 \begin_inset ERT
25719 status collapsed
25720
25721 \begin_layout Standard
25722
25723
25724 \backslash
25725 raisebox{-
25726 \backslash
25727 depth}[0pt]{
25728 \end_layout
25729
25730 \end_inset
25731
25732
25733 \begin_inset Quotes eld
25734 \end_inset
25735
25736 preventing
25737 \begin_inset Quotes erd
25738 \end_inset
25739
25740
25741 \begin_inset ERT
25742 status collapsed
25743
25744 \begin_layout Standard
25745
25746 }
25747 \end_layout
25748
25749 \end_inset
25750
25751  as lowered word.
25752 \newline
25753 This is a text line with the word 
25754 \begin_inset ERT
25755 status collapsed
25756
25757 \begin_layout Standard
25758
25759
25760 \backslash
25761 raisebox{0.5cm}[0pt]{
25762 \end_layout
25763
25764 \end_inset
25765
25766
25767 \begin_inset Quotes eld
25768 \end_inset
25769
25770 testing
25771 \begin_inset Quotes erd
25772 \end_inset
25773
25774
25775 \begin_inset ERT
25776 status collapsed
25777
25778 \begin_layout Standard
25779
25780 }
25781 \end_layout
25782
25783 \end_inset
25784
25785  as raised word.
25786 \end_layout
25787
25788 \begin_layout Section
25789 Colored Boxes
25790 \begin_inset LatexCommand label
25791 name "sec:Colored-Boxes"
25792
25793 \end_inset
25794
25795
25796 \begin_inset LatexCommand index
25797 name "Boxes ! Color"
25798
25799 \end_inset
25800
25801
25802 \end_layout
25803
25804 \begin_layout Subsection
25805 Color for Text
25806 \begin_inset LatexCommand index
25807 name "Color ! for Text"
25808
25809 \end_inset
25810
25811
25812 \end_layout
25813
25814 \begin_layout Standard
25815 To color the background of text the text must be put into a so called colorbox.
25816  This requires that the LaTeX-package 
25817 \series bold
25818 color
25819 \series default
25820
25821 \begin_inset LatexCommand index
25822 name "LaTeX-packages ! color"
25823
25824 \end_inset
25825
25826  is loaded in the document preamble with the command
25827 \end_layout
25828
25829 \begin_layout Standard
25830
25831 \series bold
25832
25833 \backslash
25834 @ifundef\SpecialChar \textcompwordmark{}
25835 ined{textcolor}
25836 \newline
25837
25838 \begin_inset ERT
25839 status collapsed
25840
25841 \begin_layout Standard
25842
25843
25844 \backslash
25845 hphantom{ }
25846 \end_layout
25847
25848 \end_inset
25849
25850 {
25851 \backslash
25852 usepackage{color}}{}
25853 \end_layout
25854
25855 \begin_layout Standard
25856 The package 
25857 \series bold
25858 color
25859 \series default
25860  will be loaded automatically by LyX when you color text
25861 \begin_inset Foot
25862 status collapsed
25863
25864 \begin_layout Standard
25865 To avoid that it is loaded twice the command 
25866 \series bold
25867
25868 \backslash
25869 @ifundef\SpecialChar \textcompwordmark{}
25870 ined
25871 \series default
25872  is used.
25873 \end_layout
25874
25875 \end_inset
25876
25877 .
25878 \end_layout
25879
25880 \begin_layout Standard
25881 \begin_inset VSpace medskip
25882 \end_inset
25883
25884 Colorboxes are created with the command 
25885 \series bold
25886
25887 \backslash
25888 colorbox
25889 \series default
25890 .
25891  This will be used with the following scheme:
25892 \end_layout
25893
25894 \begin_layout Standard
25895
25896 \series bold
25897
25898 \backslash
25899 colorbox{color}{box content}
25900 \end_layout
25901
25902 \begin_layout Standard
25903 The box content can also be a box and colorboxes can also be within other
25904  boxes.
25905 \end_layout
25906
25907 \begin_layout Standard
25908 The following colors are predefined:
25909 \newline
25910
25911 \family sans
25912 black
25913 \family default
25914
25915 \family sans
25916 blue
25917 \family default
25918
25919 \family sans
25920 cyan
25921 \family default
25922 \series bold
25923
25924 \family sans
25925 \series default
25926 green
25927 \family default
25928
25929 \family sans
25930 magenta
25931 \family default
25932
25933 \family sans
25934 red
25935 \family default
25936
25937 \family sans
25938 white
25939 \family default
25940 , and 
25941 \family sans
25942 yellow
25943 \family default
25944 .
25945 \newline
25946 You can also define your own color as described in section\InsetSpace ~
25947
25948 \begin_inset LatexCommand ref
25949 reference "sec:Colored-Tables"
25950
25951 \end_inset
25952
25953 .
25954 \end_layout
25955
25956 \begin_layout Standard
25957 To have e.\InsetSpace \thinspace{}
25958 g.\InsetSpace ~
25959 a red background for a word, insert the command
25960 \end_layout
25961
25962 \begin_layout Standard
25963
25964 \series bold
25965
25966 \backslash
25967 colorbox{red}{
25968 \end_layout
25969
25970 \begin_layout Standard
25971 before the word in ERT.
25972  Behind the word insert a closing brace 
25973 \begin_inset Quotes eld
25974 \end_inset
25975
25976
25977 \series bold
25978 }
25979 \series default
25980
25981 \begin_inset Quotes erd
25982 \end_inset
25983
25984  in ERT.
25985 \newline
25986 This is the result:
25987 \end_layout
25988
25989 \begin_layout Standard
25990 This is a line where the word 
25991 \begin_inset ERT
25992 status collapsed
25993
25994 \begin_layout Standard
25995
25996
25997 \backslash
25998 colorbox{red}{
25999 \end_layout
26000
26001 \end_inset
26002
26003
26004 \begin_inset Quotes eld
26005 \end_inset
26006
26007 Attention!
26008 \begin_inset Quotes erd
26009 \end_inset
26010
26011
26012 \begin_inset ERT
26013 status collapsed
26014
26015 \begin_layout Standard
26016
26017 }
26018 \end_layout
26019
26020 \end_inset
26021
26022  has a red background.
26023 \end_layout
26024
26025 \begin_layout Standard
26026 \begin_inset VSpace bigskip
26027 \end_inset
26028
26029 If you would have the box frame in a different color, you can use the command
26030  
26031 \series bold
26032
26033 \backslash
26034 fcolorbox
26035 \series default
26036  with the following scheme:
26037 \end_layout
26038
26039 \begin_layout Standard
26040
26041 \series bold
26042
26043 \backslash
26044 fcolorbox{frame color}{box color}{box content}
26045 \end_layout
26046
26047 \begin_layout Standard
26048
26049 \series bold
26050
26051 \backslash
26052 fcolorbox
26053 \series default
26054  is an extension to 
26055 \series bold
26056
26057 \backslash
26058 colorbox
26059 \series default
26060 .
26061  The frame thickness and the space between the frame and the box content
26062  can be adjusted with the lengths 
26063 \series bold
26064
26065 \backslash
26066 fboxrule
26067 \series default
26068  and 
26069 \series bold
26070
26071 \backslash
26072 fboxsep
26073 \series default
26074 , respectively, as described in section\InsetSpace ~
26075
26076 \begin_inset LatexCommand ref
26077 reference "sec:Framed-Boxes"
26078
26079 \end_inset
26080
26081 .
26082 \end_layout
26083
26084 \begin_layout Standard
26085 For the following example the command
26086 \end_layout
26087
26088 \begin_layout Standard
26089
26090 \series bold
26091
26092 \backslash
26093 fcolorbox{cyan}{magenta}{
26094 \end_layout
26095
26096 \begin_layout Standard
26097 was used.
26098 \end_layout
26099
26100 \begin_layout Standard
26101 Here is an example where the frame line thickness was set to 1\InsetSpace \thinspace{}
26102 mm:
26103 \newline
26104
26105 \begin_inset ERT
26106 status collapsed
26107
26108 \begin_layout Standard
26109
26110
26111 \backslash
26112 fboxrule 1mm 
26113 \backslash
26114 fboxsep 1mm
26115 \end_layout
26116
26117 \end_inset
26118
26119
26120 \begin_inset ERT
26121 status collapsed
26122
26123 \begin_layout Standard
26124
26125
26126 \backslash
26127 fcolorbox{cyan}{magenta}{
26128 \end_layout
26129
26130 \end_inset
26131
26132 This is text within a colored, framed box.
26133 \begin_inset ERT
26134 status collapsed
26135
26136 \begin_layout Standard
26137
26138 }
26139 \end_layout
26140
26141 \end_inset
26142
26143
26144 \end_layout
26145
26146 \begin_layout Standard
26147 \begin_inset VSpace bigskip
26148 \end_inset
26149
26150 Of course you can also have colored text inside a colorbox:
26151 \newline
26152
26153 \begin_inset ERT
26154 status collapsed
26155
26156 \begin_layout Standard
26157
26158
26159 \backslash
26160 fcolorbox{cyan}{magenta}{
26161 \end_layout
26162
26163 \end_inset
26164
26165
26166 \color yellow
26167 This is colored text within a colored, framed box.
26168 \color none
26169
26170 \begin_inset ERT
26171 status collapsed
26172
26173 \begin_layout Standard
26174
26175 }
26176 \end_layout
26177
26178 \end_inset
26179
26180
26181 \begin_inset ERT
26182 status collapsed
26183
26184 \begin_layout Standard
26185
26186
26187 \backslash
26188 fboxrule 0.4pt 
26189 \backslash
26190 fboxsep 3pt
26191 \end_layout
26192
26193 \end_inset
26194
26195
26196 \end_layout
26197
26198 \begin_layout Standard
26199
26200 \series bold
26201 \begin_inset VSpace medskip
26202 \end_inset
26203
26204
26205 \end_layout
26206
26207 \begin_layout Standard
26208 \begin_inset Note Greyedout
26209 status open
26210
26211 \begin_layout Standard
26212
26213 \series bold
26214 Note:
26215 \series default
26216  Text in colorboxes cannot have line breaks.
26217  To color multiple text lines or paragraphs, use a box inside a colorbox
26218  as described in the following.
26219 \end_layout
26220
26221 \end_inset
26222
26223
26224 \end_layout
26225
26226 \begin_layout Subsection
26227 Color for Paragraphs
26228 \begin_inset LatexCommand label
26229 name "sub:Color-for-Paragraphs"
26230
26231 \end_inset
26232
26233
26234 \begin_inset LatexCommand index
26235 name "Color ! for Paragraphs"
26236
26237 \end_inset
26238
26239
26240 \end_layout
26241
26242 \begin_layout Standard
26243 To set the background color for more than one text line, put the text into
26244  a minipage.
26245  Before the minipage insert the 
26246 \series bold
26247
26248 \backslash
26249 colorbox
26250 \series default
26251  command
26252 \end_layout
26253
26254 \begin_layout Standard
26255
26256 \series bold
26257
26258 \backslash
26259 colorbox{color}{
26260 \end_layout
26261
26262 \begin_layout Standard
26263 in ERT.
26264  Behind the minipage insert a closing brace 
26265 \begin_inset Quotes eld
26266 \end_inset
26267
26268
26269 \series bold
26270 }
26271 \series default
26272
26273 \begin_inset Quotes erd
26274 \end_inset
26275
26276  in ERT.
26277 \end_layout
26278
26279 \begin_layout Standard
26280 \begin_inset ERT
26281 status collapsed
26282
26283 \begin_layout Standard
26284
26285
26286 \backslash
26287 colorbox{lightgrey}{
26288 \end_layout
26289
26290 \end_inset
26291
26292
26293 \begin_inset Box Frameless
26294 position "t"
26295 hor_pos "c"
26296 has_inner_box 1
26297 inner_pos "t"
26298 use_parbox 0
26299 width "100col%"
26300 special "none"
26301 height "1in"
26302 height_special "totalheight"
26303 status collapsed
26304
26305 \begin_layout Standard
26306 This is text with background color.
26307  This is text with background color.
26308 \end_layout
26309
26310 \begin_layout Standard
26311 \begin_inset VSpace defskip
26312 \end_inset
26313
26314 The text can have footnotes
26315 \begin_inset Foot
26316 status collapsed
26317
26318 \begin_layout Standard
26319 Another example footnote
26320 \end_layout
26321
26322 \end_inset
26323
26324  and can include tables and figures.
26325 \end_layout
26326
26327 \begin_layout Standard
26328 \align center
26329 \begin_inset Tabular
26330 <lyxtabular version="3" rows="3" columns="3">
26331 <features>
26332 <column alignment="center" valignment="top" leftline="true" width="0">
26333 <column alignment="center" valignment="top" leftline="true" width="0">
26334 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
26335 <row topline="true">
26336 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26337 \begin_inset Text
26338
26339 \begin_layout Standard
26340 a
26341 \end_layout
26342
26343 \end_inset
26344 </cell>
26345 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26346 \begin_inset Text
26347
26348 \begin_layout Standard
26349 !
26350 \end_layout
26351
26352 \end_inset
26353 </cell>
26354 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26355 \begin_inset Text
26356
26357 \begin_layout Standard
26358 3
26359 \end_layout
26360
26361 \end_inset
26362 </cell>
26363 </row>
26364 <row topline="true">
26365 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26366 \begin_inset Text
26367
26368 \begin_layout Standard
26369 <
26370 \end_layout
26371
26372 \end_inset
26373 </cell>
26374 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26375 \begin_inset Text
26376
26377 \begin_layout Standard
26378 b2
26379 \begin_inset Quotes erd
26380 \end_inset
26381
26382 |
26383 \end_layout
26384
26385 \end_inset
26386 </cell>
26387 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26388 \begin_inset Text
26389
26390 \begin_layout Standard
26391 >
26392 \end_layout
26393
26394 \end_inset
26395 </cell>
26396 </row>
26397 <row topline="true" bottomline="true">
26398 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26399 \begin_inset Text
26400
26401 \begin_layout Standard
26402 1
26403 \end_layout
26404
26405 \end_inset
26406 </cell>
26407 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26408 \begin_inset Text
26409
26410 \begin_layout Standard
26411 §
26412 \end_layout
26413
26414 \end_inset
26415 </cell>
26416 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26417 \begin_inset Text
26418
26419 \begin_layout Standard
26420 c
26421 \end_layout
26422
26423 \end_inset
26424 </cell>
26425 </row>
26426 </lyxtabular>
26427
26428 \end_inset
26429
26430
26431 \end_layout
26432
26433 \end_inset
26434
26435
26436 \begin_inset ERT
26437 status collapsed
26438
26439 \begin_layout Standard
26440
26441 }
26442 \end_layout
26443
26444 \end_inset
26445
26446
26447 \end_layout
26448
26449 \begin_layout Section
26450 URLs (Uniform Resource Locators)
26451 \begin_inset LatexCommand index
26452 name "URLs"
26453
26454 \end_inset
26455
26456
26457 \end_layout
26458
26459 \begin_layout Standard
26460 Links to web pages or email addresses can be inserted via the menu 
26461 \family sans
26462 Insert\SpecialChar \menuseparator
26463 URL
26464 \family default
26465 .
26466  The appearing URL dialog has two fields; the 
26467 \family sans
26468 URL
26469 \family default
26470  field and the 
26471 \family sans
26472 Name
26473 \family default
26474  field for the URL description, which will be typeset as plain text immediately
26475  before the URL.
26476 \end_layout
26477
26478 \begin_layout Standard
26479 Here is an example URL: 
26480 \begin_inset LatexCommand url
26481 name "LyX's homepage"
26482 target "http://www.lyx.org"
26483
26484 \end_inset
26485
26486
26487 \end_layout
26488
26489 \begin_layout Standard
26490 The option 
26491 \family sans
26492 Generate\InsetSpace ~
26493 hyperlink
26494 \family default
26495  in the URL dialog has only an affect when you export your document to the
26496  format 
26497 \begin_inset Quotes eld
26498 \end_inset
26499
26500
26501 \family sans
26502 LinuxDoc
26503 \family default
26504
26505 \begin_inset Quotes erd
26506 \end_inset
26507
26508 .
26509 \end_layout
26510
26511 \begin_layout Standard
26512 You cannot change the style of the link text.
26513  The text of the 
26514 \family sans
26515 Name
26516 \family default
26517  field will have the default text style of the document while the text of
26518  the 
26519 \family sans
26520 URL
26521 \family default
26522  field will have the style 
26523 \begin_inset Quotes eld
26524 \end_inset
26525
26526
26527 \family sans
26528 Typewriter
26529 \family default
26530
26531 \begin_inset Quotes erd
26532 \end_inset
26533
26534 .
26535 \end_layout
26536
26537 \begin_layout Standard
26538 When you use the LaTeX-package 
26539 \series bold
26540 hyperref
26541 \series default
26542
26543 \begin_inset LatexCommand index
26544 name "LaTeX-packages ! hyperref"
26545
26546 \end_inset
26547
26548  to link cross-references in the output, URLs will automatically become
26549  clickable hyperlinks in DVI and PDF-output.
26550 \end_layout
26551
26552 \begin_layout Standard
26553 \begin_inset Note Greyedout
26554 status open
26555
26556 \begin_layout Standard
26557
26558 \series bold
26559 Note: 
26560 \series default
26561 When you use the following characters: "%", "#", "^", you have to write
26562  them with a preceding backslash, e.\InsetSpace \thinspace{}
26563 g.\InsetSpace ~
26564
26565 \begin_inset Quotes eld
26566 \end_inset
26567
26568
26569 \backslash
26570 #
26571 \begin_inset Quotes erd
26572 \end_inset
26573
26574 .
26575  URLs must not end with a backslash.
26576 \end_layout
26577
26578 \end_inset
26579
26580
26581 \end_layout
26582
26583 \begin_layout Standard
26584 \begin_inset VSpace bigskip
26585 \end_inset
26586
26587 To create real hyperlinks without the force to write the link location to
26588  the text, you can use the command
26589 \end_layout
26590
26591 \begin_layout Standard
26592
26593 \series bold
26594
26595 \backslash
26596 href{link location}{link text}
26597 \end_layout
26598
26599 \begin_layout Standard
26600 in ERT.
26601  To get for example a link to LyX's web page, write the command
26602 \end_layout
26603
26604 \begin_layout Standard
26605
26606 \series bold
26607
26608 \backslash
26609 href{http://www.lyx.org}{
26610 \end_layout
26611
26612 \begin_layout Standard
26613 in ERT.
26614  Insert after the command the link text 
26615 \begin_inset Quotes eld
26616 \end_inset
26617
26618 LyX's homepage
26619 \begin_inset Quotes erd
26620 \end_inset
26621
26622  as normal text followed by a closing brace 
26623 \begin_inset Quotes eld
26624 \end_inset
26625
26626
26627 \series bold
26628 }
26629 \series default
26630
26631 \begin_inset Quotes erd
26632 \end_inset
26633
26634  in ERT.
26635  This is the result: 
26636 \begin_inset ERT
26637 status collapsed
26638
26639 \begin_layout Standard
26640
26641
26642 \backslash
26643 href{http://www.lyx.org}{
26644 \end_layout
26645
26646 \end_inset
26647
26648 LyX's homepage
26649 \begin_inset ERT
26650 status collapsed
26651
26652 \begin_layout Standard
26653
26654 }
26655 \end_layout
26656
26657 \end_inset
26658
26659
26660 \end_layout
26661
26662 \begin_layout Standard
26663 To link to email addresses, add the prefix 
26664 \begin_inset Quotes eld
26665 \end_inset
26666
26667
26668 \family sans
26669 mailto:
26670 \family default
26671
26672 \begin_inset Quotes erd
26673 \end_inset
26674
26675  to the link location:
26676 \newline
26677 Email to 
26678 \begin_inset ERT
26679 status collapsed
26680
26681 \begin_layout Standard
26682
26683
26684 \backslash
26685 href{mailto:lyx-docs@lists.lyx.org?subject=LyX's documentation}{
26686 \end_layout
26687
26688 \end_inset
26689
26690 lyx-docs mailing list
26691 \begin_inset ERT
26692 status collapsed
26693
26694 \begin_layout Standard
26695
26696 }
26697 \end_layout
26698
26699 \end_inset
26700
26701 .
26702 \end_layout
26703
26704 \begin_layout Standard
26705 Using 
26706 \series bold
26707
26708 \backslash
26709 href
26710 \series default
26711  instead of LyX's URL box has the advantage that you can specify the text
26712  style of the link text like for all other text parts.
26713  You can therefore set hyphenation points and forced linebreaks to have
26714  long link text broken at the page margin.
26715  You are furthermore able to change the text style for all URLs in your
26716  document with an option in 
26717 \series bold
26718 hyperref
26719 \series default
26720 's load command and the restrictions mentioned above doesn't apply for 
26721 \series bold
26722
26723 \backslash
26724 href
26725 \series default
26726 .
26727 \end_layout
26728
26729 \begin_layout Standard
26730
26731 \newpage
26732
26733 \end_layout
26734
26735 \begin_layout Chapter
26736 \start_of_appendix
26737 Units available in 
26738 \begin_inset ERT
26739 status collapsed
26740
26741 \begin_layout Standard
26742
26743
26744 \backslash
26745 texorpdfstring{
26746 \end_layout
26747
26748 \end_inset
26749
26750 LyX
26751 \begin_inset ERT
26752 status collapsed
26753
26754 \begin_layout Standard
26755
26756 }{LyX}
26757 \end_layout
26758
26759 \end_inset
26760
26761
26762 \begin_inset LatexCommand index
26763 name "Units"
26764
26765 \end_inset
26766
26767
26768 \begin_inset LatexCommand label
26769 name "cha:Units-available-in"
26770
26771 \end_inset
26772
26773
26774 \begin_inset Note Note
26775 status collapsed
26776
26777 \begin_layout Standard
26778 The command 
26779 \backslash
26780 texorpdfstring is provided by the LaTeX-package hyperref to avoid that ligatures
26781  are displayed wrongly in PDF-bookmarks.
26782  For more information about this, have a look at 
26783 \begin_inset LatexCommand cite
26784 key "hyperref"
26785
26786 \end_inset
26787
26788 .
26789 \end_layout
26790
26791 \end_inset
26792
26793
26794 \end_layout
26795
26796 \begin_layout Standard
26797 To understand the units described in this documentation, Table\InsetSpace ~
26798
26799 \begin_inset LatexCommand ref
26800 reference "tab:Units"
26801
26802 \end_inset
26803
26804  explains all units available in LyX.
26805 \end_layout
26806
26807 \begin_layout Standard
26808 \begin_inset Float table
26809 placement h
26810 wide false
26811 sideways false
26812 status open
26813
26814 \begin_layout Standard
26815 \begin_inset Caption
26816
26817 \begin_layout Standard
26818 \begin_inset LatexCommand label
26819 name "tab:Units"
26820
26821 \end_inset
26822
26823 Units
26824 \end_layout
26825
26826 \end_inset
26827
26828
26829 \end_layout
26830
26831 \begin_layout Standard
26832 \begin_inset VSpace medskip
26833 \end_inset
26834
26835
26836 \end_layout
26837
26838 \begin_layout Standard
26839 \align center
26840 \begin_inset Tabular
26841 <lyxtabular version="3" rows="20" columns="2">
26842 <features>
26843 <column alignment="center" valignment="top" leftline="true" width="0">
26844 <column alignment="center" valignment="top" leftline="true" rightline="true" width="0">
26845 <row topline="true" bottomline="true">
26846 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26847 \begin_inset Text
26848
26849 \begin_layout Standard
26850 unit
26851 \end_layout
26852
26853 \end_inset
26854 </cell>
26855 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26856 \begin_inset Text
26857
26858 \begin_layout Standard
26859 name/description
26860 \end_layout
26861
26862 \end_inset
26863 </cell>
26864 </row>
26865 <row topline="true">
26866 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26867 \begin_inset Text
26868
26869 \begin_layout Standard
26870 mm
26871 \end_layout
26872
26873 \end_inset
26874 </cell>
26875 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26876 \begin_inset Text
26877
26878 \begin_layout Standard
26879 millimeter
26880 \end_layout
26881
26882 \end_inset
26883 </cell>
26884 </row>
26885 <row topline="true">
26886 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26887 \begin_inset Text
26888
26889 \begin_layout Standard
26890 cm
26891 \end_layout
26892
26893 \end_inset
26894 </cell>
26895 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26896 \begin_inset Text
26897
26898 \begin_layout Standard
26899 centimeter
26900 \end_layout
26901
26902 \end_inset
26903 </cell>
26904 </row>
26905 <row topline="true">
26906 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26907 \begin_inset Text
26908
26909 \begin_layout Standard
26910 in
26911 \end_layout
26912
26913 \end_inset
26914 </cell>
26915 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26916 \begin_inset Text
26917
26918 \begin_layout Standard
26919 inch
26920 \end_layout
26921
26922 \end_inset
26923 </cell>
26924 </row>
26925 <row topline="true">
26926 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26927 \begin_inset Text
26928
26929 \begin_layout Standard
26930 pt
26931 \end_layout
26932
26933 \end_inset
26934 </cell>
26935 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26936 \begin_inset Text
26937
26938 \begin_layout Standard
26939 point (72.27\InsetSpace \thinspace{}
26940 pt = 1\InsetSpace \thinspace{}
26941 in)
26942 \end_layout
26943
26944 \end_inset
26945 </cell>
26946 </row>
26947 <row topline="true">
26948 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26949 \begin_inset Text
26950
26951 \begin_layout Standard
26952 pc
26953 \end_layout
26954
26955 \end_inset
26956 </cell>
26957 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26958 \begin_inset Text
26959
26960 \begin_layout Standard
26961 pica (1\InsetSpace \thinspace{}
26962 pc = 12\InsetSpace \thinspace{}
26963 pt)
26964 \end_layout
26965
26966 \end_inset
26967 </cell>
26968 </row>
26969 <row topline="true">
26970 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26971 \begin_inset Text
26972
26973 \begin_layout Standard
26974 sp
26975 \end_layout
26976
26977 \end_inset
26978 </cell>
26979 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26980 \begin_inset Text
26981
26982 \begin_layout Standard
26983 scaled point (65536\InsetSpace \thinspace{}
26984 sp = 1\InsetSpace \thinspace{}
26985 pt)
26986 \end_layout
26987
26988 \end_inset
26989 </cell>
26990 </row>
26991 <row topline="true">
26992 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26993 \begin_inset Text
26994
26995 \begin_layout Standard
26996 bp
26997 \end_layout
26998
26999 \end_inset
27000 </cell>
27001 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27002 \begin_inset Text
27003
27004 \begin_layout Standard
27005 big point (72\InsetSpace \thinspace{}
27006 bp = 1\InsetSpace \thinspace{}
27007 in)
27008 \end_layout
27009
27010 \end_inset
27011 </cell>
27012 </row>
27013 <row topline="true">
27014 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27015 \begin_inset Text
27016
27017 \begin_layout Standard
27018 dd
27019 \end_layout
27020
27021 \end_inset
27022 </cell>
27023 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27024 \begin_inset Text
27025
27026 \begin_layout Standard
27027 didot (72\InsetSpace \thinspace{}
27028 dd 
27029 \begin_inset Formula $\approx$
27030 \end_inset
27031
27032  37.6\InsetSpace \thinspace{}
27033 mm)
27034 \end_layout
27035
27036 \end_inset
27037 </cell>
27038 </row>
27039 <row topline="true">
27040 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27041 \begin_inset Text
27042
27043 \begin_layout Standard
27044 cc
27045 \end_layout
27046
27047 \end_inset
27048 </cell>
27049 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27050 \begin_inset Text
27051
27052 \begin_layout Standard
27053 cicero (1\InsetSpace \thinspace{}
27054 cc = 12\InsetSpace \thinspace{}
27055 dd)
27056 \end_layout
27057
27058 \end_inset
27059 </cell>
27060 </row>
27061 <row topline="true">
27062 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27063 \begin_inset Text
27064
27065 \begin_layout Standard
27066 Scale%
27067 \end_layout
27068
27069 \end_inset
27070 </cell>
27071 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27072 \begin_inset Text
27073
27074 \begin_layout Standard
27075 % of original image width
27076 \end_layout
27077
27078 \end_inset
27079 </cell>
27080 </row>
27081 <row topline="true">
27082 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27083 \begin_inset Text
27084
27085 \begin_layout Standard
27086 text%
27087 \end_layout
27088
27089 \end_inset
27090 </cell>
27091 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27092 \begin_inset Text
27093
27094 \begin_layout Standard
27095 % of text width
27096 \end_layout
27097
27098 \end_inset
27099 </cell>
27100 </row>
27101 <row topline="true">
27102 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27103 \begin_inset Text
27104
27105 \begin_layout Standard
27106 col%
27107 \end_layout
27108
27109 \end_inset
27110 </cell>
27111 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27112 \begin_inset Text
27113
27114 \begin_layout Standard
27115 % of column width
27116 \end_layout
27117
27118 \end_inset
27119 </cell>
27120 </row>
27121 <row topline="true">
27122 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27123 \begin_inset Text
27124
27125 \begin_layout Standard
27126 page%
27127 \end_layout
27128
27129 \end_inset
27130 </cell>
27131 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27132 \begin_inset Text
27133
27134 \begin_layout Standard
27135 % of paper width
27136 \end_layout
27137
27138 \end_inset
27139 </cell>
27140 </row>
27141 <row topline="true">
27142 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27143 \begin_inset Text
27144
27145 \begin_layout Standard
27146 line%
27147 \end_layout
27148
27149 \end_inset
27150 </cell>
27151 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27152 \begin_inset Text
27153
27154 \begin_layout Standard
27155 % of line width
27156 \end_layout
27157
27158 \end_inset
27159 </cell>
27160 </row>
27161 <row topline="true">
27162 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27163 \begin_inset Text
27164
27165 \begin_layout Standard
27166 theight%
27167 \end_layout
27168
27169 \end_inset
27170 </cell>
27171 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27172 \begin_inset Text
27173
27174 \begin_layout Standard
27175 % of text height
27176 \end_layout
27177
27178 \end_inset
27179 </cell>
27180 </row>
27181 <row topline="true">
27182 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27183 \begin_inset Text
27184
27185 \begin_layout Standard
27186 pheight%
27187 \end_layout
27188
27189 \end_inset
27190 </cell>
27191 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27192 \begin_inset Text
27193
27194 \begin_layout Standard
27195 % of paper height
27196 \end_layout
27197
27198 \end_inset
27199 </cell>
27200 </row>
27201 <row topline="true">
27202 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27203 \begin_inset Text
27204
27205 \begin_layout Standard
27206 ex
27207 \end_layout
27208
27209 \end_inset
27210 </cell>
27211 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27212 \begin_inset Text
27213
27214 \begin_layout Standard
27215 height of letter 
27216 \emph on
27217 x
27218 \emph default
27219  in current font
27220 \end_layout
27221
27222 \end_inset
27223 </cell>
27224 </row>
27225 <row topline="true">
27226 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27227 \begin_inset Text
27228
27229 \begin_layout Standard
27230 em
27231 \end_layout
27232
27233 \end_inset
27234 </cell>
27235 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27236 \begin_inset Text
27237
27238 \begin_layout Standard
27239 width of letter 
27240 \emph on
27241 M
27242 \emph default
27243  in current font
27244 \end_layout
27245
27246 \end_inset
27247 </cell>
27248 </row>
27249 <row topline="true" bottomline="true">
27250 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27251 \begin_inset Text
27252
27253 \begin_layout Standard
27254 mu
27255 \end_layout
27256
27257 \end_inset
27258 </cell>
27259 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27260 \begin_inset Text
27261
27262 \begin_layout Standard
27263 math unit (1\InsetSpace \thinspace{}
27264 mu = 1/18\InsetSpace \thinspace{}
27265 em)
27266 \end_layout
27267
27268 \end_inset
27269 </cell>
27270 </row>
27271 </lyxtabular>
27272
27273 \end_inset
27274
27275
27276 \end_layout
27277
27278 \end_inset
27279
27280
27281 \end_layout
27282
27283 \begin_layout Chapter
27284 Output File Formats with Graphics
27285 \begin_inset LatexCommand label
27286 name "cha:Output-File-Formats"
27287
27288 \end_inset
27289
27290
27291 \end_layout
27292
27293 \begin_layout Section
27294 DVI
27295 \begin_inset LatexCommand index
27296 name "File Formats ! DVI"
27297
27298 \end_inset
27299
27300
27301 \begin_inset LatexCommand index
27302 name "DVI|see{File Formats}"
27303
27304 \end_inset
27305
27306
27307 \end_layout
27308
27309 \begin_layout Standard
27310 This file type has the extension 
27311 \begin_inset Quotes eld
27312 \end_inset
27313
27314
27315 \family typewriter
27316 .dvi
27317 \family default
27318
27319 \begin_inset Quotes erd
27320 \end_inset
27321
27322 .
27323  It is called 
27324 \begin_inset Quotes eld
27325 \end_inset
27326
27327 device-independent
27328 \begin_inset Quotes erd
27329 \end_inset
27330
27331  (DVI), because it is completely portable; you can move them from one machine
27332  to another without needing to do any sort of conversion.
27333  At the time when this file-format was developed, this was no matter of
27334  course.
27335  DVIs are used for quick previews and as pre-stage for other output formats,
27336  like PostScript.
27337 \end_layout
27338
27339 \begin_layout Standard
27340 \begin_inset Note Greyedout
27341 status open
27342
27343 \begin_layout Standard
27344
27345 \series bold
27346 Note:
27347 \series default
27348  DVI-files doesn't contain images, they will only be a linked.
27349 \end_layout
27350
27351 \end_inset
27352
27353  So don't forget this, if you move your 
27354 \family typewriter
27355 .dvi
27356 \family default
27357  file to another computer.
27358  This property can also slow down your computer when you view the DVI.
27359  Because the DVI-viewer has to convert the image in the background to make
27360  it visible when you scroll in the DVI.
27361  So we recommend to use PDF for files with many images.
27362 \end_layout
27363
27364 \begin_layout Standard
27365 You can export your document to DVI by using the menu 
27366 \family sans
27367 File\SpecialChar \menuseparator
27368 Export\SpecialChar \menuseparator
27369 DVI
27370 \family default
27371 .
27372  You can view your document as PostScript via the 
27373 \family sans
27374 View
27375 \family default
27376  menu or by using the toolbar button 
27377 \begin_inset Graphics
27378         filename ../images/buffer-view_dvi.xpm
27379         scale 85
27380
27381 \end_inset
27382
27383 .
27384 \end_layout
27385
27386 \begin_layout Section
27387 PostScript
27388 \begin_inset LatexCommand label
27389 name "sec:PostScript"
27390
27391 \end_inset
27392
27393
27394 \begin_inset LatexCommand index
27395 name "File Formats ! PostScript\\protect\\pagebreak"
27396
27397 \end_inset
27398
27399
27400 \begin_inset LatexCommand index
27401 name "PostScript|see{File Formats}"
27402
27403 \end_inset
27404
27405
27406 \end_layout
27407
27408 \begin_layout Standard
27409 This file type has the extension 
27410 \begin_inset Quotes eld
27411 \end_inset
27412
27413
27414 \family typewriter
27415 .ps
27416 \family default
27417
27418 \begin_inset Quotes erd
27419 \end_inset
27420
27421 .
27422  PostScript was developed by the company 
27423 \family typewriter
27424 Adobe
27425 \family default
27426  as printer language.
27427  The file contains therefore commands that the printer uses to print the
27428  file.
27429  PostScript can be seen as 
27430 \begin_inset Quotes eld
27431 \end_inset
27432
27433 programming language
27434 \begin_inset Quotes erd
27435 \end_inset
27436
27437 ; you can calculate with it and draw diagrams and images
27438 \begin_inset Foot
27439 status collapsed
27440
27441 \begin_layout Standard
27442 If you are interested to learn more about this, have a look at the LaTeX-package
27443  
27444 \series bold
27445 PSTricks
27446 \series default
27447  
27448 \begin_inset LatexCommand cite
27449 key "pstricks"
27450
27451 \end_inset
27452
27453 .
27454 \end_layout
27455
27456 \end_inset
27457
27458 .
27459  Due to this ability, the files are often bigger than PDFs.
27460 \end_layout
27461
27462 \begin_layout Standard
27463 PostScript can only contain images in the format 
27464 \begin_inset Quotes eld
27465 \end_inset
27466
27467 Encapsulated PostScript
27468 \begin_inset Quotes erd
27469 \end_inset
27470
27471  (EPS, file extension 
27472 \begin_inset Quotes eld
27473 \end_inset
27474
27475
27476 \family typewriter
27477 .eps
27478 \family default
27479
27480 \begin_inset Quotes erd
27481 \end_inset
27482
27483 ).
27484  As LyX allows you to use any known image format in your document, it has
27485  to convert images in the background to EPS.
27486  If you have e.g 50 images in your document, LyX has to do 50 conversions
27487  whenever you view or export your document.
27488  This will slow down your work flow with LyX drastically.
27489  So if you plan to use PostScript, you can insert your images directly as
27490  EPS to avoid this problem.
27491 \end_layout
27492
27493 \begin_layout Standard
27494 You can export your document to PostScript using the menu 
27495 \family sans
27496 File\SpecialChar \menuseparator
27497 Export\SpecialChar \menuseparator
27498 Postscript
27499 \family default
27500 .
27501  You can view your document as PostScript via the 
27502 \family sans
27503 View
27504 \family default
27505  menu or by using the toolbar button 
27506 \begin_inset Graphics
27507         filename ../images/buffer-view_ps.xpm
27508         scale 85
27509
27510 \end_inset
27511
27512 .
27513 \end_layout
27514
27515 \begin_layout Section
27516 PDF
27517 \begin_inset LatexCommand label
27518 name "sec:PDF"
27519
27520 \end_inset
27521
27522
27523 \begin_inset LatexCommand index
27524 name "File Formats ! PDF"
27525
27526 \end_inset
27527
27528
27529 \begin_inset LatexCommand index
27530 name "PDF"
27531
27532 \end_inset
27533
27534
27535 \end_layout
27536
27537 \begin_layout Standard
27538 This file type has the extension 
27539 \begin_inset Quotes eld
27540 \end_inset
27541
27542
27543 \family typewriter
27544 .pdf
27545 \family default
27546
27547 \begin_inset Quotes erd
27548 \end_inset
27549
27550 .
27551  The 
27552 \begin_inset Quotes eld
27553 \end_inset
27554
27555 Portable Document Format
27556 \begin_inset Quotes erd
27557 \end_inset
27558
27559  (PDF) is developed by 
27560 \family typewriter
27561 Adobe
27562 \family default
27563  as derivative from PostScript.
27564  It is more compressed and it uses much less commands than PostScript.
27565  As the name 
27566 \begin_inset Quotes eld
27567 \end_inset
27568
27569 portable
27570 \begin_inset Quotes erd
27571 \end_inset
27572
27573  implies, it can be processed at any computer system and the printed output
27574  looks exactly the same.
27575 \end_layout
27576
27577 \begin_layout Standard
27578 PDF can contain images in its own PDF format, in the format 
27579 \begin_inset Quotes eld
27580 \end_inset
27581
27582 Joint Photographic Experts Group
27583 \begin_inset Quotes erd
27584 \end_inset
27585
27586  (JPG, file extension 
27587 \begin_inset Quotes eld
27588 \end_inset
27589
27590
27591 \family typewriter
27592 .jpg
27593 \family default
27594
27595 \begin_inset Quotes erd
27596 \end_inset
27597
27598  or 
27599 \begin_inset Quotes eld
27600 \end_inset
27601
27602
27603 \family typewriter
27604 .jpeg
27605 \family default
27606
27607 \begin_inset Quotes erd
27608 \end_inset
27609
27610 ), and in the format 
27611 \begin_inset Quotes eld
27612 \end_inset
27613
27614 Portable Network Graphics
27615 \begin_inset Quotes erd
27616 \end_inset
27617
27618  (PNG, file extension 
27619 \begin_inset Quotes eld
27620 \end_inset
27621
27622
27623 \family typewriter
27624 .png
27625 \family default
27626
27627 \begin_inset Quotes erd
27628 \end_inset
27629
27630 ).
27631  You can although use any other image format, because LyX converts them
27632  in the background to one of these formats.
27633  But as described in the section about PostScript, the image conversion
27634  will slow down your work flow.
27635  So it is recommended to use images in one of the three mentioned formats.
27636 \end_layout
27637
27638 \begin_layout Standard
27639 You can export your document to PDF via the menu 
27640 \family sans
27641 File\SpecialChar \menuseparator
27642 Export
27643 \family default
27644  in three different ways:
27645 \end_layout
27646
27647 \begin_layout Description
27648 PDF This uses the program 
27649 \family typewriter
27650 ps2pdf
27651 \family default
27652  that creates a PDF from a PostScript-version of your file.
27653  The PostScript-version is produced by the program 
27654 \family typewriter
27655 dvips
27656 \family default
27657  which uses a DVI-version as intermediate step.
27658  So this export variant consist of three conversions.
27659 \end_layout
27660
27661 \begin_layout Description
27662 PDF\InsetSpace ~
27663 (dvipdfm) This uses the program 
27664 \family typewriter
27665 dvipdfm
27666 \family default
27667  that converts your file in the background to DVI and in a second step to
27668  PDF.
27669 \end_layout
27670
27671 \begin_layout Description
27672 PDF\InsetSpace ~
27673 (pdflatex) This uses the program 
27674 \family typewriter
27675 pdftex
27676 \family default
27677  that converts your file directly to PDF.
27678 \end_layout
27679
27680 \begin_layout Standard
27681 It is recommended to use 
27682 \family sans
27683 PDF\InsetSpace ~
27684 (pdflatex)
27685 \family default
27686  because 
27687 \family typewriter
27688 pdftex
27689 \family default
27690  supports all features of actual PDF-versions, is quick and works stable
27691  without problems.
27692  The program 
27693 \family typewriter
27694 dvipdfm
27695 \family default
27696  is not under development and therefore a bit outdated.
27697 \end_layout
27698
27699 \begin_layout Standard
27700 You can view your document as PDF via the 
27701 \family sans
27702 View
27703 \family default
27704  menu or by using the toolbar button 
27705 \begin_inset Graphics
27706         filename ../images/buffer-view_pdf2.xpm
27707         scale 85
27708
27709 \end_inset
27710
27711  
27712 \family sans
27713 (
27714 \family default
27715 that uses 
27716 \family sans
27717 PDF\InsetSpace ~
27718 (pdflatex)
27719 \family default
27720 ).
27721 \end_layout
27722
27723 \begin_layout Chapter
27724 Explanation of Equation\InsetSpace ~
27725
27726 \begin_inset LatexCommand eqref
27727 reference "eq:Wgn"
27728
27729 \end_inset
27730
27731
27732 \begin_inset LatexCommand label
27733 name "cha:Explanation-of-Equation"
27734
27735 \end_inset
27736
27737
27738 \end_layout
27739
27740 \begin_layout Standard
27741 The total width of 
27742 \emph on
27743 n
27744 \emph default
27745  table cells 
27746 \begin_inset Formula $W_{\mathrm{tot\, n}}$
27747 \end_inset
27748
27749  can be calculated to
27750 \end_layout
27751
27752 \begin_layout Standard
27753 \begin_inset Formula \begin{equation}
27754 W_{\mathrm{tot}\, n}=n·(W_{g\, n}+2·\backslash\mbox{tabcolsep})+(n+1)·\backslash\mbox{arrayrulewidth}\label{eq:Wtot_n}\end{equation}
27755
27756 \end_inset
27757
27758
27759 \end_layout
27760
27761 \begin_layout Standard
27762 Where 
27763 \begin_inset Formula $W_{g\, n}$
27764 \end_inset
27765
27766  is the given width of all cells.
27767  
27768 \series bold
27769
27770 \backslash
27771 tabcolsep
27772 \series default
27773  is the LaTeX-length between the cell text and the cell border, its default
27774  value is 6\InsetSpace \thinspace{}
27775 pt.
27776  
27777 \series bold
27778
27779 \backslash
27780 arrayrulewidth
27781 \series default
27782  is the thickness of the cell border line, the default is 0.4\InsetSpace \thinspace{}
27783 pt.
27784 \end_layout
27785
27786 \begin_layout Standard
27787 Following equation\InsetSpace ~
27788
27789 \begin_inset LatexCommand eqref
27790 reference "eq:Wtot_n"
27791
27792 \end_inset
27793
27794 , the total width of a multicolumn 
27795 \begin_inset Formula $W_{\mathrm{tot\, mult}}$
27796 \end_inset
27797
27798  is
27799 \end_layout
27800
27801 \begin_layout Standard
27802 \begin_inset Formula \begin{equation}
27803 W_{\mathrm{tot\, mult}}=W_{g\,\mathrm{mult}}+2·\backslash\mbox{tabcolsep}+2·\backslash\mbox{arrayrulewidth}\label{eq:Wtot_mult}\end{equation}
27804
27805 \end_inset
27806
27807
27808 \end_layout
27809
27810 \begin_layout Standard
27811 By setting equation\InsetSpace ~
27812
27813 \begin_inset LatexCommand eqref
27814 reference "eq:Wtot_n"
27815
27816 \end_inset
27817
27818  and 
27819 \begin_inset LatexCommand eqref
27820 reference "eq:Wtot_mult"
27821
27822 \end_inset
27823
27824  equal we can calculate the needed given width 
27825 \begin_inset Formula $W_{g\, n}$
27826 \end_inset
27827
27828  when 
27829 \emph on
27830 n
27831 \emph default
27832  columns are spanned, so that each column has a total width of 
27833 \begin_inset Formula $W_{\mathrm{tot\, mult}}/n$
27834 \end_inset
27835
27836 :
27837 \end_layout
27838
27839 \begin_layout Standard
27840 \begin_inset Formula \begin{equation}
27841 W_{g\, n}=(W_{g\,\mathrm{mult}}+(1-n)·(2·\backslash\mbox{tabcolsep}+\backslash\mbox{arrayrulewidth}))/n\end{equation}
27842
27843 \end_inset
27844
27845
27846 \end_layout
27847
27848 \begin_layout Bibliography
27849 \begin_inset LatexCommand bibitem
27850 key "latexcompanion"
27851
27852 \end_inset
27853
27854 Frank Mittelbach and Michel Goossens: 
27855 \emph on
27856 The LaTeX Companion Second Edition.
27857  
27858 \emph default
27859 Addison-Wesley, 2004
27860 \end_layout
27861
27862 \begin_layout Bibliography
27863 \begin_inset LatexCommand bibitem
27864 key "latexguide"
27865
27866 \end_inset
27867
27868 Helmut Kopka and Patrick W.
27869  Daly: 
27870 \emph on
27871 A Guide to LaTeX Fourth Edition.
27872  
27873 \emph default
27874 Addison-Wesley, 2003
27875 \end_layout
27876
27877 \begin_layout Bibliography
27878 \begin_inset LatexCommand bibitem
27879 key "latexbook"
27880
27881 \end_inset
27882
27883 Leslie Lamport: 
27884 \emph on
27885 LaTeX: A Document Preparation System.
27886  
27887 \emph default
27888 Addison-Wesley, second edition, 1994
27889 \end_layout
27890
27891 \begin_layout Bibliography
27892 \begin_inset LatexCommand bibitem
27893 key "booktabs"
27894
27895 \end_inset
27896
27897
27898 \begin_inset ERT
27899 status collapsed
27900
27901 \begin_layout Standard
27902
27903
27904 \backslash
27905 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/booktabs/booktabs.pdf}
27906 {
27907 \end_layout
27908
27909 \end_inset
27910
27911 Documentation
27912 \begin_inset ERT
27913 status collapsed
27914
27915 \begin_layout Standard
27916
27917 }
27918 \end_layout
27919
27920 \end_inset
27921
27922  of the LaTeX-package 
27923 \series bold
27924 booktabs
27925 \series default
27926
27927 \begin_inset LatexCommand index
27928 name "LaTeX-packages ! booktabs"
27929
27930 \end_inset
27931
27932
27933 \end_layout
27934
27935 \begin_layout Bibliography
27936 \begin_inset LatexCommand bibitem
27937 key "caption"
27938
27939 \end_inset
27940
27941
27942 \begin_inset ERT
27943 status collapsed
27944
27945 \begin_layout Standard
27946
27947
27948 \backslash
27949 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/caption/caption.pdf}{
27950 \end_layout
27951
27952 \end_inset
27953
27954 Documentation
27955 \begin_inset ERT
27956 status collapsed
27957
27958 \begin_layout Standard
27959
27960 }
27961 \end_layout
27962
27963 \end_inset
27964
27965  of the LaTeX-package 
27966 \series bold
27967 caption
27968 \series default
27969
27970 \begin_inset LatexCommand index
27971 name "LaTeX-packages ! caption"
27972
27973 \end_inset
27974
27975
27976 \end_layout
27977
27978 \begin_layout Bibliography
27979 \begin_inset LatexCommand bibitem
27980 key "caption-de"
27981
27982 \end_inset
27983
27984 German 
27985 \begin_inset ERT
27986 status collapsed
27987
27988 \begin_layout Standard
27989
27990
27991 \backslash
27992 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/caption/anleitung.pdf}
27993 {
27994 \end_layout
27995
27996 \end_inset
27997
27998 documentation
27999 \begin_inset ERT
28000 status collapsed
28001
28002 \begin_layout Standard
28003
28004 }
28005 \end_layout
28006
28007 \end_inset
28008
28009  of the LaTeX-package 
28010 \series bold
28011 caption
28012 \end_layout
28013
28014 \begin_layout Bibliography
28015 \begin_inset LatexCommand bibitem
28016 key "endfloat"
28017
28018 \end_inset
28019
28020
28021 \begin_inset ERT
28022 status collapsed
28023
28024 \begin_layout Standard
28025
28026
28027 \backslash
28028 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/endfloat/endfloat.pdf}
28029 {
28030 \end_layout
28031
28032 \end_inset
28033
28034 Documentation
28035 \begin_inset ERT
28036 status collapsed
28037
28038 \begin_layout Standard
28039
28040 }
28041 \end_layout
28042
28043 \end_inset
28044
28045  of the LaTeX-package 
28046 \series bold
28047 endf\SpecialChar \textcompwordmark{}
28048 loat
28049 \series default
28050
28051 \begin_inset LatexCommand index
28052 name "LaTeX-packages ! endfloat"
28053
28054 \end_inset
28055
28056
28057 \end_layout
28058
28059 \begin_layout Bibliography
28060 \begin_inset LatexCommand bibitem
28061 key "floatflt"
28062
28063 \end_inset
28064
28065
28066 \begin_inset ERT
28067 status collapsed
28068
28069 \begin_layout Standard
28070
28071
28072 \backslash
28073 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/floatflt/floatflt.pdf}
28074 {
28075 \end_layout
28076
28077 \end_inset
28078
28079 Documentation
28080 \begin_inset ERT
28081 status collapsed
28082
28083 \begin_layout Standard
28084
28085 }
28086 \end_layout
28087
28088 \end_inset
28089
28090  of the LaTeX-package 
28091 \series bold
28092 floatf\SpecialChar \textcompwordmark{}
28093 lt
28094 \series default
28095
28096 \begin_inset LatexCommand index
28097 name "LaTeX-packages ! floatflt"
28098
28099 \end_inset
28100
28101
28102 \end_layout
28103
28104 \begin_layout Bibliography
28105 \begin_inset LatexCommand bibitem
28106 key "footmisc"
28107
28108 \end_inset
28109
28110
28111 \begin_inset ERT
28112 status collapsed
28113
28114 \begin_layout Standard
28115
28116
28117 \backslash
28118 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/footmisc/footmisc.pdf}
28119 {
28120 \end_layout
28121
28122 \end_inset
28123
28124 Documentation
28125 \begin_inset ERT
28126 status collapsed
28127
28128 \begin_layout Standard
28129
28130 }
28131 \end_layout
28132
28133 \end_inset
28134
28135  of the LaTeX-package 
28136 \series bold
28137 footmisc
28138 \series default
28139
28140 \begin_inset LatexCommand index
28141 name "LaTeX-packages ! footmisc"
28142
28143 \end_inset
28144
28145
28146 \end_layout
28147
28148 \begin_layout Bibliography
28149 \begin_inset LatexCommand bibitem
28150 key "hypcap"
28151
28152 \end_inset
28153
28154
28155 \begin_inset ERT
28156 status collapsed
28157
28158 \begin_layout Standard
28159
28160
28161 \backslash
28162 href{http://www.ctan.org/tex-archive/macros/latex/contrib/oberdiek/hypcap.pdf}{
28163 \end_layout
28164
28165 \end_inset
28166
28167 Documentation
28168 \begin_inset ERT
28169 status collapsed
28170
28171 \begin_layout Standard
28172
28173 }
28174 \end_layout
28175
28176 \end_inset
28177
28178  of the LaTeX-package 
28179 \series bold
28180 hypcap
28181 \series default
28182
28183 \begin_inset LatexCommand index
28184 name "LaTeX-packages ! hyperref"
28185
28186 \end_inset
28187
28188
28189 \end_layout
28190
28191 \begin_layout Bibliography
28192 \begin_inset LatexCommand bibitem
28193 key "hyperref"
28194
28195 \end_inset
28196
28197
28198 \begin_inset ERT
28199 status collapsed
28200
28201 \begin_layout Standard
28202
28203
28204 \backslash
28205 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/hyperref/hyperref.pdf}
28206 {
28207 \end_layout
28208
28209 \end_inset
28210
28211 Documentation
28212 \begin_inset ERT
28213 status collapsed
28214
28215 \begin_layout Standard
28216
28217 }
28218 \end_layout
28219
28220 \end_inset
28221
28222  of the LaTeX-package 
28223 \series bold
28224 hyperref
28225 \series default
28226
28227 \begin_inset LatexCommand index
28228 name "LaTeX-packages ! hyperref"
28229
28230 \end_inset
28231
28232
28233 \end_layout
28234
28235 \begin_layout Bibliography
28236 \begin_inset LatexCommand bibitem
28237 key "koma-script"
28238
28239 \end_inset
28240
28241
28242 \begin_inset ERT
28243 status collapsed
28244
28245 \begin_layout Standard
28246
28247
28248 \backslash
28249 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/koma-script/scrguien.p
28250 df}{
28251 \end_layout
28252
28253 \end_inset
28254
28255 Documentation
28256 \begin_inset ERT
28257 status collapsed
28258
28259 \begin_layout Standard
28260
28261 }
28262 \end_layout
28263
28264 \end_inset
28265
28266  of the LaTeX-package 
28267 \series bold
28268 koma-script
28269 \series default
28270
28271 \begin_inset LatexCommand index
28272 name "LaTeX-packages ! koma-script"
28273
28274 \end_inset
28275
28276
28277 \end_layout
28278
28279 \begin_layout Bibliography
28280 \begin_inset LatexCommand bibitem
28281 key "koma-script-de"
28282
28283 \end_inset
28284
28285 German 
28286 \begin_inset ERT
28287 status collapsed
28288
28289 \begin_layout Standard
28290
28291
28292 \backslash
28293 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/koma-script/scrguide.p
28294 df}{
28295 \end_layout
28296
28297 \end_inset
28298
28299 documentation
28300 \begin_inset ERT
28301 status collapsed
28302
28303 \begin_layout Standard
28304
28305 }
28306 \end_layout
28307
28308 \end_inset
28309
28310  of the LaTeX-package 
28311 \series bold
28312 koma-script
28313 \series default
28314
28315 \begin_inset LatexCommand index
28316 name "LaTeX-packages ! koma-script"
28317
28318 \end_inset
28319
28320
28321 \end_layout
28322
28323 \begin_layout Bibliography
28324 \begin_inset LatexCommand bibitem
28325 key "marginnote"
28326
28327 \end_inset
28328
28329
28330 \begin_inset ERT
28331 status collapsed
28332
28333 \begin_layout Standard
28334
28335
28336 \backslash
28337 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/marginnote/marginnote.
28338 pdf}{
28339 \end_layout
28340
28341 \end_inset
28342
28343 Documentation
28344 \begin_inset ERT
28345 status collapsed
28346
28347 \begin_layout Standard
28348
28349 }
28350 \end_layout
28351
28352 \end_inset
28353
28354  of the LaTeX-package 
28355 \series bold
28356 marginnote
28357 \series default
28358
28359 \begin_inset LatexCommand index
28360 name "LaTeX-packages ! marginnote"
28361
28362 \end_inset
28363
28364
28365 \end_layout
28366
28367 \begin_layout Bibliography
28368 \begin_inset LatexCommand bibitem
28369 key "pstricks"
28370
28371 \end_inset
28372
28373
28374 \begin_inset ERT
28375 status collapsed
28376
28377 \begin_layout Standard
28378
28379
28380 \backslash
28381 href{http://tug.org/PSTricks/main.cgi/}{
28382 \end_layout
28383
28384 \end_inset
28385
28386 Web page
28387 \begin_inset ERT
28388 status collapsed
28389
28390 \begin_layout Standard
28391
28392 }
28393 \end_layout
28394
28395 \end_inset
28396
28397  of the LaTeX-package 
28398 \series bold
28399 PSTricks
28400 \series default
28401
28402 \begin_inset LatexCommand index
28403 name "LaTeX-packages ! PSTricks"
28404
28405 \end_inset
28406
28407
28408 \end_layout
28409
28410 \begin_layout Bibliography
28411 \begin_inset LatexCommand bibitem
28412 key "sidecap"
28413
28414 \end_inset
28415
28416
28417 \begin_inset ERT
28418 status collapsed
28419
28420 \begin_layout Standard
28421
28422
28423 \backslash
28424 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/sidecap/sidecap.pdf}{
28425 \end_layout
28426
28427 \end_inset
28428
28429 Documentation
28430 \begin_inset ERT
28431 status collapsed
28432
28433 \begin_layout Standard
28434
28435 }
28436 \end_layout
28437
28438 \end_inset
28439
28440  of the LaTeX-package 
28441 \series bold
28442 sidecap
28443 \series default
28444
28445 \begin_inset LatexCommand index
28446 name "LaTeX-packages ! sidecap"
28447
28448 \end_inset
28449
28450
28451 \end_layout
28452
28453 \begin_layout Bibliography
28454 \begin_inset LatexCommand bibitem
28455 key "NewInLyX15"
28456
28457 \end_inset
28458
28459
28460 \begin_inset ERT
28461 status collapsed
28462
28463 \begin_layout Standard
28464
28465
28466 \backslash
28467 href{http://wiki.lyx.org/LyX/NewInLyX15}{
28468 \end_layout
28469
28470 \end_inset
28471
28472 Wiki page
28473 \begin_inset ERT
28474 status collapsed
28475
28476 \begin_layout Standard
28477
28478 }
28479 \end_layout
28480
28481 \end_inset
28482
28483  about new LyX-features planned for the release 
28484 \family sans
28485 LyX 1.5
28486 \family default
28487 .
28488 \end_layout
28489
28490 \begin_layout Standard
28491 \begin_inset LatexCommand printindex
28492
28493 \end_inset
28494
28495
28496 \end_layout
28497
28498 \begin_layout Standard
28499 \begin_inset FloatList figure
28500
28501 \end_inset
28502
28503
28504 \end_layout
28505
28506 \begin_layout Standard
28507 \begin_inset FloatList table
28508
28509 \end_inset
28510
28511
28512 \end_layout
28513
28514 \end_body
28515 \end_document