]> git.lyx.org Git - lyx.git/blob - lib/doc/de/EmbeddedObjects.lyx
ba93b1130a772ac6c186411ea0f1ebd6638a51a6
[lyx.git] / lib / doc / de / EmbeddedObjects.lyx
1 #LyX 1.6.0svn created this file. For more info see http://www.lyx.org/
2 \lyxformat 332
3 \begin_document
4 \begin_header
5 \textclass scrbook
6 \begin_preamble
7 % wenn pdflatex benutzt wird:
8 \usepackage{ifpdf}
9 \ifpdf
10
11 % Schriften für bessere PDF-Ansichten
12 \IfFileExists{lmodern.sty}
13  {\usepackage{lmodern}}{}
14
15 \fi % Ende von: wenn pdflatex benutzt wird
16
17 % Setzt den Link fuer Sprünge zu Gleitabbildungen
18 % auf den Anfang des Gelitobjekts und nicht aufs Ende
19 \usepackage[figure]{hypcap}
20
21 % Die Seiten des Inhaltsverzeichnisses werden römisch numeriert,
22 % ein PDF-Lesezeichen für das Inhaltsverzeichnis wird hinzugefügt
23 \pagenumbering{roman}
24 \let\myTOC\tableofcontents
25 \renewcommand{\tableofcontents}{%
26  \pdfbookmark[1]{Inhaltsverzeichnis}{}
27  \myTOC
28  \cleardoublepage
29  \pagenumbering{arabic}}
30
31 % Formatierung von Legenden
32 \usepackage[labelfont={bf,sf}, tableposition=top]{caption}[2004/07/16]
33
34 % Befehle, um Legenden neben Tabellen und Abbildungen zu setzen
35 \usepackage{sidecap}
36
37 \newcommand{\TabBesBeg}{%
38  \let\MyTable\table
39  \let\MyEndtable\endtable
40  \renewenvironment{table}{\begin{SCtable}}{\end{SCtable}}}
41
42 \newcommand{\TabBesEnd}{%
43  \let\table\MyTable
44  \let\endtable\MyEndtable}
45
46 \newcommand{\FigBesBeg}{%
47  \let\MyFigure\figure
48  \let\MyEndfigure\endfigure
49  \renewenvironment{figure}{\begin{SCfigure}}{\end{SCfigure}}}
50
51 \newcommand{\FigBesEnd}{%
52  \let\figure\MyFigure
53  \let\endfigure\MyEndfigure}
54
55 % ermöglicht das Berechnen von Werten
56 \usepackage{calc}
57
58 % Ermöglicht besondere Tabellenzellen-Ausrichtungen
59 \usepackage{dcolumn}
60
61 %Vergrößert den Teil der Seite, in dem Gleitobjekte
62 % unten angeordnet werden dürfen
63 \renewcommand{\bottomfraction}{0.5}
64
65 % Vermeidet, dass Gleitobjekte vor ihrem Abschnitt gedruckt werden
66 \let\mySection\section\renewcommand{\section}{\suppressfloats[t]\mySection}
67
68 % beschleunigt die Berechnung von langen Tabellen
69 \setcounter{LTchunksize}{100}
70
71 % wird für skalierte und rotierte Boxen benötigt
72 \@ifundefined{rotatebox}{\usepackage{graphicx}}{}
73
74 % wird bei farbigen Tabellen benutzt
75 \@ifundefined{textcolor}
76  {\usepackage{color}}{}
77 \definecolor{dunkelgruen}{cmyk}{0.5, 0, 1, 0}
78 \definecolor{hellgrau}{gray}{0.8}
79
80 % testen ob paket colortbl installiert ist
81 % wird für farbige Tabellenzellen benutzt
82 \newboolean{colortbl}
83 \IfFileExists{colortbl.sty}
84  {\usepackage{colortbl}
85   \setboolean{colortbl}{true}}
86  {\setboolean{colortbl}{false}}
87
88 % wird für Mehrfachzeilen benutzt
89 \usepackage{multirow}
90 %\renewcommand{\multirowsetup}{\centering}
91
92 % wird fuer Tabellen im Buchstil benutzt
93 \usepackage{booktabs}
94
95 % wird benutzt, um Tabellenzellen zu vergrößern
96 \@ifundefined{extrarowheight}
97  {\usepackage{array}}{}
98 \setlength{\extrarowheight}{2pt}
99
100 % wird fuer benutzerdefinierte Tabellen benutzt
101 % ---
102 \newcolumntype{M}[1]
103  {>{\centering\hspace{0pt}}m{#1}}
104
105 \newcolumntype{S}[2]
106  {>{\centering\hspace{0pt}}m{(#1+(2\tabcolsep+\arrayrulewidth)*(1-#2))/#2}}
107
108 \newcolumntype{K}[1]
109  {>{\columncolor{#1}\hspace{0pt}}c}
110
111 \newcolumntype{V}{!{\vrule width 1.5pt}}
112
113 \newcolumntype{W}{!{\color{green}\vline}}
114 % ---
115
116 % Setzt einen zusaetzlichen Abstand von
117 % 1.5 mm zwischen Fussnoten
118 \let\myFoot\footnote
119 \renewcommand{\footnote}[1]{\myFoot{#1\vspace{1.5mm}}}
120
121 % Gleit-Algorithmen werden innerhalb von Kapiteln numeriert
122 \numberwithin{algorithm}{chapter}
123
124 % Grauschrift-Notizen in blauer Farbe
125 \renewenvironment{lyxgreyedout}
126  {\textcolor{blue}\bgroup}{\egroup}
127
128 % ------------------------------------
129 % Prüfung auf benötigte LaTeXPakete
130 \usepackage{ifthen}
131
132 % Pruefung auf arydshln
133 % für Tabellen mit gestrichelten Linien
134 \newboolean{arydshln}
135 \IfFileExists{arydshln.sty}
136  {\usepackage{arydshln}
137   \setboolean{arydshln}{true}}
138  {\setboolean{arydshln}{false}}
139
140 % Prüfung auf marginnote
141 % für Randnotizen
142 \newboolean{marginnote}
143 \IfFileExists{marginnote.sty}
144  {\usepackage{marginnote}
145   \let\marginpar\marginnote
146   \setboolean{marginnote}{true}}
147  {\setboolean{marginnote}{false}}
148
149 % Prüfung auf sidecap
150 % für seitliche Beschriftungen
151 \newboolean{sidecap}
152 \IfFileExists{sidecap.sty}
153  {\usepackage{sidecap}
154   \let\marginpar\marginnote
155   \setboolean{sidecap}{true}}
156  {\setboolean{sidecap}{false}}
157
158 % Umdefinieren des Makros \LyX für PDF-Lesezeichen
159 \def\LyX{\texorpdfstring{%
160   L\kern-.1667em\lower.25em\hbox{Y}\kern-.125emX\@}
161   {LyX }}
162
163 % Damit der Index den Namen "Stichwortverzeichnis" erhält
164 \usepackage[ngerman]{babel}
165 \addto\captionsngerman{\renewcommand{\indexname}{Stichwortverzeichnis}}
166 \end_preamble
167 \options fleqn,liststotoc,bibtotoc,idxtotoc,BCOR7.5mm,titlepage,tablecaptionabove
168 \language ngerman
169 \inputencoding auto
170 \font_roman default
171 \font_sans default
172 \font_typewriter default
173 \font_default_family default
174 \font_sc false
175 \font_osf false
176 \font_sf_scale 100
177 \font_tt_scale 100
178 \graphics default
179 \paperfontsize 12
180 \spacing single
181 \use_hyperref true
182 \pdf_title "Das LyX-Handbuch der Einfügungen: Abbildungen, Tabellen, Gleitobjekte, Notizen und Boxen"
183 \pdf_author "LyX Team, Uwe Stöhr, deutsche Übersetzung: Hartmut Haase"
184 \pdf_subject "LyX-Dokumentation über Abbildungen, Tabellen, Gleitobjekte, Notizen und Boxen"
185 \pdf_keywords "LyX, Abbildungen, Tabellen, Gleitobjekte, Notizen, Boxen"
186 \pdf_bookmarks true
187 \pdf_bookmarksnumbered true
188 \pdf_bookmarksopen true
189 \pdf_bookmarksopenlevel 1
190 \pdf_breaklinks false
191 \pdf_pdfborder false
192 \pdf_colorlinks true
193 \pdf_backref false
194 \pdf_pagebackref false
195 \pdf_pdfusetitle false
196 \pdf_quoted_options "linkcolor=black, citecolor=black, urlcolor=blue, filecolor=blue,  pdfpagelayout=OneColumn, pdfnewwindow=true,  pdfstartview=XYZ, plainpages=false, pdfpagelabel"
197 \papersize a4paper
198 \use_geometry false
199 \use_amsmath 2
200 \use_esint 0
201 \cite_engine basic
202 \use_bibtopic false
203 \paperorientation portrait
204 \secnumdepth 3
205 \tocdepth 3
206 \paragraph_separation skip
207 \defskip medskip
208 \quotes_language german
209 \papercolumns 1
210 \papersides 2
211 \paperpagestyle default
212 \bullet 1 0 9 -1
213 \bullet 2 2 35 -1
214 \bullet 3 2 7 -1
215 \tracking_changes false
216 \output_changes false
217 \author "" 
218 \author "" 
219 \end_header
220
221 \begin_body
222
223 \begin_layout Title
224 Das LyX-Handbuch der Einfügungen:
225 \begin_inset Newline newline
226 \end_inset
227
228  
229 \size larger
230 Abbildungen, Tabellen, Gleitobjekte, Notizen und Boxen
231 \end_layout
232
233 \begin_layout Author
234 vom LyX Team
235 \size normal
236
237 \begin_inset Foot
238 status collapsed
239
240 \begin_layout Plain Layout
241
242 \size normal
243 Übersetzung und Bearbeitung: Hartmut Haase
244 \end_layout
245
246 \end_inset
247
248
249 \size default
250
251 \begin_inset Foot
252 status collapsed
253
254 \begin_layout Plain Layout
255 \noindent
256 Wenn Sie Anmerkungen oder Korrekturvorschläge machen wollen, schreiben Sie
257  bitte an: 
258 \family typewriter
259
260 \begin_inset ERT
261 status collapsed
262
263 \begin_layout Plain Layout
264
265
266 \backslash
267 href{mailto:lyx-docs@lists.lyx.org?subject=LyX's ExtendedInsets manual}{
268 \end_layout
269
270 \end_inset
271
272 lyx-docs@lists.lyx.org
273 \begin_inset ERT
274 status collapsed
275
276 \begin_layout Plain Layout
277
278 }
279 \end_layout
280
281 \end_inset
282
283
284 \end_layout
285
286 \end_inset
287
288
289 \begin_inset Note Note
290 status collapsed
291
292 \begin_layout Plain Layout
293 Autor: Uwe Stöhr <uwestoehr@web.de>
294 \end_layout
295
296 \end_inset
297
298
299 \begin_inset Newline newline
300 \end_inset
301
302
303 \begin_inset Newline newline
304 \end_inset
305
306
307 \family sans
308 Version 1.6svn
309 \end_layout
310
311 \begin_layout Date
312 letzte Änderung: 18.
313  März 2008
314 \end_layout
315
316 \begin_layout Standard
317 \begin_inset CommandInset toc
318 LatexCommand tableofcontents
319
320 \end_inset
321
322
323 \end_layout
324
325 \begin_layout Standard
326 \begin_inset Note Note
327 status open
328
329 \begin_layout Plain Layout
330 Um alle Teile diese Handbuches als DVI, HTML, PDF, PostScript oder Rich
331  Text exportieren zu können oder es auszudrucken, benötigen Sie die LaTeX-Pakte
332  
333 \series bold
334 arydshln
335 \series default
336
337 \series bold
338 colortbl
339 \series default
340
341 \series bold
342 marginnote
343 \series default
344  und 
345 \series bold
346 sidecap
347 \series default
348 .
349  Wenn sie nicht installiert sind, erfolgt die Ausgabe ohne die Teile, in
350  denen sie benötigt werden.
351 \end_layout
352
353 \begin_layout Plain Layout
354 Wenn es Ihnen trotzdem nicht gelingen sollte, können Sie die neueste PDF-Version
355  des englischen Originals hier finden:
356 \begin_inset Newline newline
357 \end_inset
358
359
360 \series bold
361 http://wiki.lyx.org/LyX/DocumentationDevelopment#EmbeddedObjects
362 \end_layout
363
364 \end_inset
365
366
367 \end_layout
368
369 \begin_layout Chapter
370 Abbildungen
371 \begin_inset CommandInset label
372 LatexCommand label
373 name "kap:Abbildungen"
374
375 \end_inset
376
377
378 \begin_inset Index
379 status collapsed
380
381 \begin_layout Plain Layout
382 Abbildungen
383 \end_layout
384
385 \end_inset
386
387
388 \end_layout
389
390 \begin_layout Section
391 Grafik-Dialog
392 \begin_inset Index
393 status collapsed
394
395 \begin_layout Plain Layout
396 Abbildungen ! Grafik-Dialog
397 \end_layout
398
399 \end_inset
400
401
402 \begin_inset CommandInset label
403 LatexCommand label
404 name "abs:Grafik-Dialog"
405
406 \end_inset
407
408
409 \end_layout
410
411 \begin_layout Standard
412 Um eine Abbildung in Ihr Dokument einzufügen, klicken Sie auf das Symbol
413  
414 \begin_inset Graphics
415         filename ../../images/dialog-show-new-inset_graphics.png
416         scale 70
417         scaleBeforeRotation
418         BoundingBox 0bp 6bp 22bp 22bp
419
420 \end_inset
421
422  in der Werkzeugleiste oder wählen das Menü 
423 \family sans
424 Einfügen\SpecialChar \menuseparator
425 Grafik
426 \family default
427 .
428  Ein Dialogfenster erscheint, in dem Sie einen Dateinamen direkt oder über
429  
430 \family sans
431 Durchsuchen
432 \family default
433  eingeben können.
434  Die Abbildung wird in der druckfertigen Ausgabe genau dort erscheinen,
435  an der Sie es eingefügt haben.
436 \end_layout
437
438 \begin_layout Standard
439 \begin_inset Note Greyedout
440 status open
441
442 \begin_layout Quote
443
444 \series bold
445 Bemerkung
446 \series default
447 : Wenn Sie einen Dateinamen über 
448 \family sans
449 Durchsuchen
450 \family default
451  eingeben, wird LyX den gesamten Pfad in das Feld 
452 \family sans
453 Datei
454 \family default
455  eintragen.
456  Das ist etwas lästig, wenn Sie relative Pfade benötigen.
457 \end_layout
458
459 \end_inset
460
461
462 \end_layout
463
464 \begin_layout Standard
465 Der Grafik-Dialog wird immer dann geöffnet, wenn Sie auf eine Abbildung
466  klicken.
467  Der Dialog hat drei Karteikarten:
468 \end_layout
469
470 \begin_layout Description
471
472 \family sans
473 Grafik
474 \family default
475  Hier können Sie eine Grafik-Datei auswählen und ihr Aussehen in der druckbaren
476  Version festlegen.
477  Die für die Bildgröße verfügbaren Einheiten werden im Anhang
478 \begin_inset Space ~
479 \end_inset
480
481
482 \begin_inset CommandInset ref
483 LatexCommand ref
484 reference "kap:In-LyX-verfügbare"
485
486 \end_inset
487
488  erklärt.
489 \begin_inset Newline newline
490 \end_inset
491
492
493 \begin_inset Index
494 status collapsed
495
496 \begin_layout Plain Layout
497 Abbildungen ! rotierte
498 \end_layout
499
500 \end_inset
501
502 Sie können Abbildungen durch Angabe eines 
503 \family sans
504 Winkel
505 \family default
506
507 \begin_inset Space ~
508 \end_inset
509
510
511 \family sans
512 (Grad)
513 \family default
514  und Festlegung eines 
515 \family sans
516 Drehpunktes
517 \family default
518  drehen.
519  Negative Winkel drehen Uhrzeigersinn.
520  Die Abbildung wird auch in LyX gedreht.
521 \begin_inset Newline newline
522 \end_inset
523
524
525 \begin_inset Index
526 status collapsed
527
528 \begin_layout Plain Layout
529 Abbildungen ! skalierte
530 \end_layout
531
532 \end_inset
533
534 Abbildungen können in der Größe verändert werden, indem man Prozentwerte
535  oder Höhe und Breite definiert.
536  Wenn man nur einen Wert angibt, wird der andere automatisch berechnet.
537  Wenn Sie beide Werte angeben, wird die Abbildung an die Größe angepasst,
538  wobei sie möglicherweise verzerrt wird.
539  Um das zu vermeiden, sollten Sie 
540 \family sans
541 Seitenverhältnis
542 \begin_inset Space ~
543 \end_inset
544
545 beibehalten
546 \family default
547  ankreuzen.
548  Die Abbildung wird dann so angepasst, dass die vorgegebenen Werte für 
549 \family sans
550 Höhe
551 \family default
552  und 
553 \family sans
554 Breite
555 \family default
556  nicht überschritten werden.
557 \begin_inset Newline newline
558 \end_inset
559
560 Wenn Sie auf 
561 \family sans
562 Bearbeiten
563 \family default
564  klicken, können Abbildungen mit einem Programm, das in 
565 \family sans
566 Werkzeuge\SpecialChar \menuseparator
567 Einstellungen\SpecialChar \menuseparator
568 Dateiformate
569 \family default
570  im Feld 
571 \family sans
572 Bearbeiter
573 \family default
574  festgelegt wurde, bearbeitet werden.
575 \end_layout
576
577 \begin_layout Description
578
579 \family sans
580 Ausschnitt
581 \family default
582  Alternativ zur Festlegung der 
583 \family sans
584 Ausgabegröße
585 \family default
586  unter 
587 \family sans
588 \series bold
589 Grafik
590 \family default
591 \series default
592  kann man hier Koordinaten angeben, um Höhe und Breite der Abbildung für
593  die Ausgabe festzulegen.
594  Wenn Sie auf 
595 \family sans
596 Lese
597 \begin_inset Space ~
598 \end_inset
599
600 aus
601 \begin_inset Space ~
602 \end_inset
603
604 Datei
605 \family default
606  klicken, werden die Koordinaten automatisch berechnet.
607  Die Option 
608 \family sans
609 Auf
610 \begin_inset Space ~
611 \end_inset
612
613 Begrenzungsbox
614 \begin_inset Space ~
615 \end_inset
616
617 zuschneiden
618 \family default
619  wird nur den Teil der Abbildung drucken, der innerhalb der vorgegebenen
620  Koordinaten liegt.
621  Normalerweise können Sie die Karteikarte 
622 \family sans
623 \series bold
624 Ausschnitt
625 \family default
626 \series default
627  ignorieren, weil Sie sich um die Koordinaten nicht kümmern müssen.
628 \end_layout
629
630 \begin_layout Description
631
632 \family sans
633 LaTeX-
634 \begin_inset Space ~
635 \end_inset
636
637 und
638 \begin_inset Space ~
639 \end_inset
640
641 LyX-Optionen
642 \family default
643  Hier können Sie das Aussehen einer Abbildung innerhalb von LyX ändern und
644  festlegen, ob die Abbildung ein Teil einer gleitenden Abbildung mit eigener
645  Beschriftung sein soll.
646  Teilabbildungen werden in Abschnitt
647 \begin_inset Space ~
648 \end_inset
649
650
651 \begin_inset CommandInset ref
652 LatexCommand ref
653 reference "abs:Gleitende-Abbildungen"
654
655 \end_inset
656
657  beschrieben.
658 \begin_inset Newline newline
659 \end_inset
660
661  LaTeX-Experten können hier weitere LaTeX-Optionen definieren.
662 \begin_inset Newline newline
663 \end_inset
664
665 Ist die Option 
666 \family sans
667 Entwurfsmodus 
668 \family default
669 angekreuzt, wird nur ein Rahmen in der Größe der Abbildung mit dem Dateinamen
670  darin gedruckt.
671 \begin_inset Newline newline
672 \end_inset
673
674 Die Option 
675 \family sans
676 Beim
677 \begin_inset Space ~
678 \end_inset
679
680 Exportieren
681 \begin_inset Space ~
682 \end_inset
683
684 nicht
685 \begin_inset Space ~
686 \end_inset
687
688 entpacken
689 \family default
690  betrifft nur gepackte EPS-Dateien, zum Beispiel 
691 \emph on
692 x.eps.gz
693 \emph default
694 .
695  LaTeX kann so mit ihnen umgehen.
696 \begin_inset Newline newline
697 \end_inset
698
699 Gepackte EPS-Dateien sparen Platz, wenn Sie als Ausgebe-Format PostScript
700  wählen, siehe Anhang
701 \begin_inset Space ~
702 \end_inset
703
704
705 \begin_inset CommandInset ref
706 LatexCommand ref
707 reference "abs:PostScript"
708
709 \end_inset
710
711 .
712  Um EPS-Dateien zu packen, benutzen Sie folgende Kommandozeilenbefehle:
713 \begin_inset Newline newline
714 \end_inset
715
716
717 \series bold
718 gzip x.eps
719 \begin_inset Newline newline
720 \end_inset
721
722 zgrep %%Bounding x.eps.gz > x.eps.bb
723 \series default
724
725 \begin_inset Newline newline
726 \end_inset
727
728 Der zweite Befehl erzeugt die Begrenzungsbox 
729 \begin_inset Quotes gld
730 \end_inset
731
732 x.eps.bb
733 \begin_inset Quotes grd
734 \end_inset
735
736 , die LaTeX für gepackte Abbildungen benötigt.
737 \end_layout
738
739 \begin_layout Standard
740 \begin_inset VSpace bigskip
741 \end_inset
742
743
744 \end_layout
745
746 \begin_layout Standard
747 Hier ist eine zentrierte .eps-Abbildung
748 \begin_inset Foot
749 status open
750
751 \begin_layout Plain Layout
752 Abbildungsformate sind in Abschnitt
753 \begin_inset Space ~
754 \end_inset
755
756
757 \begin_inset CommandInset ref
758 LatexCommand ref
759 reference "abs:Bildformate"
760
761 \end_inset
762
763  beschrieben.
764 \end_layout
765
766 \end_inset
767
768  in einem eigenen Absatz:
769 \end_layout
770
771 \begin_layout Standard
772 \align center
773 \begin_inset Graphics
774         filename ../clipart/mobius.eps
775         display color
776         scale 70
777         scaleBeforeRotation
778         rotateOrigin center
779
780 \end_inset
781
782
783 \end_layout
784
785 \begin_layout Standard
786 \noindent
787 Hier ist dieselbe Abbildung, aber im Entwurfsmodus gedruckt:
788 \end_layout
789
790 \begin_layout Standard
791 \align center
792 \begin_inset Graphics
793         filename ../clipart/mobius.eps
794         display color
795         scale 70
796         draft
797         scaleBeforeRotation
798         rotateOrigin center
799
800 \end_inset
801
802
803 \end_layout
804
805 \begin_layout Section
806 Gleitende Abbildungen
807 \begin_inset CommandInset label
808 LatexCommand label
809 name "abs:Gleitende-Abbildungen"
810
811 \end_inset
812
813
814 \begin_inset Index
815 status collapsed
816
817 \begin_layout Plain Layout
818 Abbildungen ! gleitende
819 \end_layout
820
821 \end_inset
822
823
824 \begin_inset Index
825 status collapsed
826
827 \begin_layout Plain Layout
828 Gleitobjekte ! Abbildungen
829 \end_layout
830
831 \end_inset
832
833
834 \end_layout
835
836 \begin_layout Standard
837 Allgemeine Erläuterungen zu Gleitobjekten finden Sie in Abschnitt
838 \begin_inset CommandInset ref
839 LatexCommand ref
840 reference "abs:Gleitobjekte-Einleitung"
841
842 \end_inset
843
844 .
845 \end_layout
846
847 \begin_layout Standard
848 Wenn Sie auf das Werkzeugleisten-Symbol 
849 \begin_inset Graphics
850         filename ../../images/float-insert_figure.png
851         scale 70
852         scaleBeforeRotation
853         BoundingBox 0bp 6bp 22bp 22bp
854
855 \end_inset
856
857  klicken oder 
858 \family sans
859 Einfügen\SpecialChar \menuseparator
860 Gleit\SpecialChar \-
861 objekt\SpecialChar \menuseparator
862 Abbildung
863 \family default
864  wählen, erhalten Sie einen leeren roten Rahmen ohne Abbildung.
865  In das rot umrahmte Feld rechts von 
866 \emph on
867 Abbildung
868 \begin_inset Space ~
869 \end_inset
870
871 Nr:
872 \emph default
873  schreiben Sie den Bildbeschriftung.
874  Nach einem Klick oberhalb oder unterhalb von 
875 \emph on
876 Abbildung
877 \begin_inset Space ~
878 \end_inset
879
880 Nr:
881 \emph default
882  können Sie dann eine Abbildung wie 
883 \begin_inset CommandInset ref
884 LatexCommand ref
885 reference "abb:kill-plat"
886
887 \end_inset
888
889  oberhalb oder wie Abbildung
890 \begin_inset Space ~
891 \end_inset
892
893
894 \begin_inset CommandInset ref
895 LatexCommand ref
896 reference "abb:escher"
897
898 \end_inset
899
900  unterhalb der Bildbeschriftung einfügen.
901  Näheres über Bildbeschriftungen erfahren Sie in Abschnitt
902 \begin_inset Space ~
903 \end_inset
904
905
906 \begin_inset CommandInset ref
907 LatexCommand ref
908 reference "abs:Titel-Platzierung"
909
910 \end_inset
911
912 .
913 \end_layout
914
915 \begin_layout Standard
916 \begin_inset Float figure
917 wide false
918 sideways false
919 status open
920
921 \begin_layout Plain Layout
922 \align center
923 \begin_inset Graphics
924         filename ../clipart/platypus.eps
925         display color
926         width 50col%
927         scaleBeforeRotation
928         rotateOrigin center
929
930 \end_inset
931
932
933 \end_layout
934
935 \begin_layout Plain Layout
936 \begin_inset Caption
937
938 \begin_layout Plain Layout
939 \begin_inset CommandInset label
940 LatexCommand label
941 name "abb:kill-plat"
942
943 \end_inset
944
945 Platypus in einem Gleitobjekt
946 \end_layout
947
948 \end_inset
949
950
951 \end_layout
952
953 \end_inset
954
955
956 \end_layout
957
958 \begin_layout Standard
959 \begin_inset Float figure
960 wide false
961 sideways false
962 status open
963
964 \begin_layout Plain Layout
965 \begin_inset Caption
966
967 \begin_layout Plain Layout
968 \begin_inset CommandInset label
969 LatexCommand label
970 name "abb:escher"
971
972 \end_inset
973
974 M.C.
975  Escher
976 \end_layout
977
978 \end_inset
979
980
981 \end_layout
982
983 \begin_layout Plain Layout
984 \align center
985 \begin_inset Graphics
986         filename ../clipart/escher-lsd.eps
987         display color
988         scale 80
989         scaleBeforeRotation
990         rotateOrigin center
991
992 \end_inset
993
994
995 \end_layout
996
997 \end_inset
998
999
1000 \end_layout
1001
1002 \begin_layout Standard
1003 \begin_inset Index
1004 status collapsed
1005
1006 \begin_layout Plain Layout
1007 Abbildungen ! Beispiele
1008 \end_layout
1009
1010 \end_inset
1011
1012 Abbildung
1013 \begin_inset Space ~
1014 \end_inset
1015
1016
1017 \begin_inset CommandInset ref
1018 LatexCommand ref
1019 reference "abb:kill-plat"
1020
1021 \end_inset
1022
1023  und 
1024 \begin_inset CommandInset ref
1025 LatexCommand ref
1026 reference "abb:escher"
1027
1028 \end_inset
1029
1030  sind Beispiele für Abbildungen, auf die verwiesen werden kann.
1031  Dafür fügen Sie in der Beschriftung mit 
1032 \family sans
1033 Einfügen\SpecialChar \menuseparator
1034 Marke
1035 \family default
1036  oder durch Klicken auf 
1037 \begin_inset Graphics
1038         filename ../../images/label-insert.png
1039         scale 70
1040         scaleBeforeRotation
1041         BoundingBox 0bp 6bp 20bp 20bp
1042
1043 \end_inset
1044
1045  eine Marke ein.
1046  Auf diese können Sie dann wie gewohnt mit 
1047 \family sans
1048 Einfügen\SpecialChar \menuseparator
1049 Querverweis
1050 \family default
1051  oder durch Klicken auf 
1052 \begin_inset Graphics
1053         filename ../../images/dialog-show-new-inset_ref.png
1054         scale 70
1055         scaleBeforeRotation
1056         BoundingBox 0bp 6bp 22bp 22bp
1057
1058 \end_inset
1059
1060  verweisen.
1061  Das ist besser als eine vage Formulierung wie 
1062 \begin_inset Quotes gld
1063 \end_inset
1064
1065 die obige Abbildung
1066 \begin_inset Quotes grd
1067 \end_inset
1068
1069  zu benutzen, weil LaTeX die Abbildung dort platzieren wird, wo es sinnvoll
1070  erscheint, und das muss nicht 
1071 \emph on
1072 oben
1073 \emph default
1074  sein.
1075  Verweise werden detailliert in Abschnitt
1076 \begin_inset Space ~
1077 \end_inset
1078
1079
1080 \begin_inset CommandInset ref
1081 LatexCommand ref
1082 reference "abs:Auf-Gleitobjekte-verweisen"
1083
1084 \end_inset
1085
1086  beschrieben.
1087 \end_layout
1088
1089 \begin_layout Standard
1090 Normalerweise wird eine Gleitabbildung nur aus einem Bild bestehen, aber
1091  manchmal benötigt man mehrere Bilder mit unterschiedlichen Beschriftungen
1092  nebeneinander.
1093  Das erreicht man mit der Karteikarte 
1094 \family sans
1095 LaTe
1096 \begin_inset ERT
1097 status collapsed
1098
1099 \begin_layout Plain Layout
1100
1101 {}
1102 \end_layout
1103
1104 \end_inset
1105
1106 X-
1107 \begin_inset Space ~
1108 \end_inset
1109
1110 und
1111 \begin_inset Space ~
1112 \end_inset
1113
1114 LyX-Optionen
1115 \family default
1116  des 
1117 \family sans
1118 Grafik
1119 \family default
1120 -Dialoges.
1121  Kreuzen Sie dort 
1122 \family sans
1123 Teilabbildung
1124 \family default
1125  an und geben die Beschriftung des Bildes im Feld 
1126 \family sans
1127 Legende
1128 \family default
1129  ein.
1130  Beachten Sie, dass im Abbildungsverzeichnis nur die Hauptbeschriftung erscheint.
1131  Verweise auf Teilabbildungen werden in Abschnitt
1132 \begin_inset Space ~
1133 \end_inset
1134
1135
1136 \begin_inset CommandInset ref
1137 LatexCommand ref
1138 reference "uab:Auf-Teilabbildungen-verweisen"
1139
1140 \end_inset
1141
1142  beschrieben.
1143 \end_layout
1144
1145 \begin_layout Standard
1146 Abbildung
1147 \begin_inset Space ~
1148 \end_inset
1149
1150
1151 \begin_inset CommandInset ref
1152 LatexCommand ref
1153 reference "abb:Zwei-Teilabbildungen"
1154
1155 \end_inset
1156
1157  ist ein Beispiel für eine Gleitabbildung mit zwei Teilabbildungen nebeneinander
1158 - Sie können sie auch untereinander setzen, indem Sie nach dem ersten Bild
1159  auf Eingabe drücken.
1160 \end_layout
1161
1162 \begin_layout Standard
1163 \begin_inset Float figure
1164 wide false
1165 sideways false
1166 status open
1167
1168 \begin_layout Plain Layout
1169 \begin_inset Space \hfill{}
1170 \end_inset
1171
1172
1173 \begin_inset Float figure
1174 wide false
1175 sideways false
1176 status open
1177
1178 \begin_layout Plain Layout
1179 \begin_inset Caption
1180
1181 \begin_layout Plain Layout
1182 M.
1183  C.
1184  Escher
1185 \end_layout
1186
1187 \end_inset
1188
1189
1190 \end_layout
1191
1192 \begin_layout Plain Layout
1193 \begin_inset Graphics
1194         filename ../clipart/escher-lsd.eps
1195         width 35col%
1196         scaleBeforeRotation
1197
1198 \end_inset
1199
1200
1201 \end_layout
1202
1203 \end_inset
1204
1205
1206 \begin_inset Space \hfill{}
1207 \end_inset
1208
1209
1210 \begin_inset Float figure
1211 wide false
1212 sideways false
1213 status open
1214
1215 \begin_layout Plain Layout
1216 \begin_inset Caption
1217
1218 \begin_layout Plain Layout
1219
1220 \end_layout
1221
1222 \end_inset
1223
1224
1225 \end_layout
1226
1227 \begin_layout Plain Layout
1228 \begin_inset Graphics
1229         filename ../clipart/platypus.eps
1230         lyxscale 60
1231         width 45col%
1232         scaleBeforeRotation
1233
1234 \end_inset
1235
1236
1237 \end_layout
1238
1239 \end_inset
1240
1241
1242 \begin_inset Space \hfill{}
1243 \end_inset
1244
1245
1246 \end_layout
1247
1248 \begin_layout Plain Layout
1249 \begin_inset Caption
1250
1251 \begin_layout Plain Layout
1252 \begin_inset CommandInset label
1253 LatexCommand label
1254 name "abb:Zwei-Teilabbildungen"
1255
1256 \end_inset
1257
1258 Zwei Teilabbildungen nebeneinander.
1259 \end_layout
1260
1261 \end_inset
1262
1263
1264 \end_layout
1265
1266 \end_inset
1267
1268
1269 \end_layout
1270
1271 \begin_layout Section
1272 Bildformate
1273 \begin_inset CommandInset label
1274 LatexCommand label
1275 name "abs:Bildformate"
1276
1277 \end_inset
1278
1279
1280 \begin_inset Index
1281 status collapsed
1282
1283 \begin_layout Plain Layout
1284 Abbildungen ! Bildformate
1285 \end_layout
1286
1287 \end_inset
1288
1289
1290 \end_layout
1291
1292 \begin_layout Standard
1293 Sie können Bilder in jedem bekannten Dateiformat einfügen.
1294  Aber wie in Anhang
1295 \begin_inset Space ~
1296 \end_inset
1297
1298
1299 \begin_inset CommandInset ref
1300 LatexCommand ref
1301 reference "kap:Ausgabedatei-Formate"
1302
1303 \end_inset
1304
1305  beschrieben, erlaubt jedes Ausgabeformat nur ein paar Bildformate.
1306  LyX benutzt im Hintergrund das Programm
1307 \family typewriter
1308  Imagemagick
1309 \family default
1310 , um Bilder ins richtige Ausgabeformat zu konvertieren.
1311  Sie beschleunigen Ihre Arbeit, wenn Sie solche Konvertierungen im Hintergrund
1312  vermeiden.
1313  Dazu sollten Sie nur Bildformate benutzen, die direkt in die Ausgabe eingefügt
1314  werden können.
1315  Diese Formate werden in Anhang
1316 \begin_inset Space ~
1317 \end_inset
1318
1319
1320 \begin_inset CommandInset ref
1321 LatexCommand ref
1322 reference "kap:Ausgabedatei-Formate"
1323
1324 \end_inset
1325
1326  beschrieben.
1327 \end_layout
1328
1329 \begin_layout Standard
1330 Ähnlich wie bei Fonts gibt es zwei Bildformate:
1331 \end_layout
1332
1333 \begin_layout Description
1334 Pixelbilder bestehen aus Pixeln, meist in komprimierter Form.
1335  Sie sind deshalb nicht völlig skalierbar und sehen bei starken Vergrößerungen
1336  
1337 \emph on
1338 pixelig
1339 \emph default
1340  aus.
1341  Bekannte Pixel-Formate sind 
1342 \begin_inset Quotes gld
1343 \end_inset
1344
1345 Graphics Interchange Format
1346 \begin_inset Quotes grd
1347 \end_inset
1348
1349  (GIF, Dateiendung
1350 \family typewriter
1351  
1352 \family default
1353
1354 \begin_inset Quotes gld
1355 \end_inset
1356
1357
1358 \family typewriter
1359 .gif
1360 \family default
1361
1362 \begin_inset Quotes grd
1363 \end_inset
1364
1365 )
1366 \begin_inset Index
1367 status collapsed
1368
1369 \begin_layout Plain Layout
1370 GIF
1371 \end_layout
1372
1373 \end_inset
1374
1375
1376 \begin_inset Quotes gld
1377 \end_inset
1378
1379 Portable Network Graphics
1380 \begin_inset Quotes grd
1381 \end_inset
1382
1383  (PNG, Dateiendung 
1384 \begin_inset Quotes gld
1385 \end_inset
1386
1387
1388 \family typewriter
1389 .png
1390 \family default
1391
1392 \begin_inset Quotes grd
1393 \end_inset
1394
1395 )
1396 \begin_inset Index
1397 status collapsed
1398
1399 \begin_layout Plain Layout
1400 PNG
1401 \end_layout
1402
1403 \end_inset
1404
1405
1406 \begin_inset Quotes gld
1407 \end_inset
1408
1409 Joint Photographic Experts Group
1410 \begin_inset Quotes grd
1411 \end_inset
1412
1413  (JPG, Dateiendung
1414 \family typewriter
1415  
1416 \family default
1417
1418 \begin_inset Quotes gld
1419 \end_inset
1420
1421
1422 \family typewriter
1423 .jpg
1424 \family default
1425
1426 \begin_inset Quotes grd
1427 \end_inset
1428
1429  oder 
1430 \begin_inset Quotes gld
1431 \end_inset
1432
1433
1434 \family typewriter
1435 .jpeg
1436 \family default
1437
1438 \begin_inset Quotes grd
1439 \end_inset
1440
1441 )
1442 \begin_inset Index
1443 status collapsed
1444
1445 \begin_layout Plain Layout
1446 JPG, JPEG
1447 \end_layout
1448
1449 \end_inset
1450
1451  und 
1452 \begin_inset Quotes gld
1453 \end_inset
1454
1455 Windows Bitmap
1456 \begin_inset Quotes grd
1457 \end_inset
1458
1459  (BMP, Dateiendung 
1460 \begin_inset Quotes gld
1461 \end_inset
1462
1463
1464 \family typewriter
1465 .bmp
1466 \family default
1467
1468 \begin_inset Quotes grd
1469 \end_inset
1470
1471 )
1472 \begin_inset Index
1473 status collapsed
1474
1475 \begin_layout Plain Layout
1476 BMP
1477 \end_layout
1478
1479 \end_inset
1480
1481 .
1482 \end_layout
1483
1484 \begin_layout Description
1485 Vektorbilder bestehen aus Vektoren und können deshalb ohne Datenverlust
1486  auf jede beliebige Größe skaliert werden.
1487  Das ist wichtig bei Präsentationen und Online-Dokumenten, um in Diagramme
1488  zoomen zu können.
1489 \begin_inset Newline newline
1490 \end_inset
1491
1492 Bekannte Formate sind 
1493 \begin_inset Quotes gld
1494 \end_inset
1495
1496 Scalable Vector Graphics
1497 \begin_inset Quotes grd
1498 \end_inset
1499
1500  (SVG, Dateiendung
1501 \family typewriter
1502  
1503 \family default
1504
1505 \begin_inset Quotes gld
1506 \end_inset
1507
1508
1509 \family typewriter
1510 .svg
1511 \family default
1512
1513 \begin_inset Quotes grd
1514 \end_inset
1515
1516 )
1517 \begin_inset Index
1518 status collapsed
1519
1520 \begin_layout Plain Layout
1521 SVG
1522 \end_layout
1523
1524 \end_inset
1525
1526
1527 \begin_inset Quotes gld
1528 \end_inset
1529
1530 Encapsulated PostScript
1531 \begin_inset Quotes grd
1532 \end_inset
1533
1534  (EPS, Dateiendung 
1535 \begin_inset Quotes gld
1536 \end_inset
1537
1538
1539 \family typewriter
1540 .eps
1541 \family default
1542
1543 \begin_inset Quotes grd
1544 \end_inset
1545
1546 )
1547 \begin_inset Index
1548 status collapsed
1549
1550 \begin_layout Plain Layout
1551 EPS
1552 \end_layout
1553
1554 \end_inset
1555
1556
1557 \begin_inset Quotes gld
1558 \end_inset
1559
1560 Portable Document Format
1561 \begin_inset Quotes grd
1562 \end_inset
1563
1564  (PDF, Dateiendung
1565 \family typewriter
1566  
1567 \family default
1568
1569 \begin_inset Quotes gld
1570 \end_inset
1571
1572
1573 \family typewriter
1574 .pdf
1575 \family default
1576
1577 \begin_inset Quotes grd
1578 \end_inset
1579
1580 )
1581 \begin_inset Index
1582 status collapsed
1583
1584 \begin_layout Plain Layout
1585 PDF
1586 \end_layout
1587
1588 \end_inset
1589
1590  und 
1591 \begin_inset Quotes gld
1592 \end_inset
1593
1594 Windows Metafile
1595 \begin_inset Quotes grd
1596 \end_inset
1597
1598  (WMF, Dateiendung 
1599 \begin_inset Quotes gld
1600 \end_inset
1601
1602
1603 \family typewriter
1604 .wmf
1605 \family default
1606
1607 \begin_inset Quotes grd
1608 \end_inset
1609
1610 )
1611 \begin_inset Index
1612 status collapsed
1613
1614 \begin_layout Plain Layout
1615 WMF
1616 \end_layout
1617
1618 \end_inset
1619
1620 .
1621 \end_layout
1622
1623 \begin_layout Standard
1624 Pixelbilder können auch ins PDF- oder EPS-Format konvertiert werden, und
1625  das Ergebnis ist immer noch ein Pixelbild.
1626  In diesem Fall wird ein Kopf mit den Bildeigenschaften zum Originalbild
1627  hinzugefügt.
1628 \begin_inset Foot
1629 status open
1630
1631 \begin_layout Plain Layout
1632 Bei PDF wird das Originalbild auch noch komprimiert.
1633 \end_layout
1634
1635 \end_inset
1636
1637  Die PDF-Dateien, die 
1638 \family typewriter
1639 Adobe Photoshop
1640 \family default
1641  erzeugt, sind zum Beispiel Pixelbilder.
1642 \end_layout
1643
1644 \begin_layout Standard
1645 Normalerweise kann man Pixelbilder nicht in Vektorbilder konvertieren oder
1646  umgekehrt.
1647  Nur die Bildformate PDF und EPS können direkt in PDF- und PostScript-Dateien
1648  eingefügt werden.
1649  SVG- und WMF-Bilder werden in Pixelbilder umgerechnet, wenn die Ausgabedatei
1650  erzeugt wird, weil es zur Zeit keine WMF/SVG
1651 \begin_inset Formula $\to$
1652 \end_inset
1653
1654 PDF/EPS Konverter gibt.
1655 \end_layout
1656
1657 \begin_layout Chapter
1658 Tabellen
1659 \begin_inset CommandInset label
1660 LatexCommand label
1661 name "kap:Tabellen"
1662
1663 \end_inset
1664
1665
1666 \begin_inset Index
1667 status collapsed
1668
1669 \begin_layout Plain Layout
1670 Tabellen
1671 \end_layout
1672
1673 \end_inset
1674
1675
1676 \end_layout
1677
1678 \begin_layout Section
1679 Einführung
1680 \begin_inset Index
1681 status collapsed
1682
1683 \begin_layout Plain Layout
1684 Tabellen ! Einführung
1685 \end_layout
1686
1687 \end_inset
1688
1689
1690 \end_layout
1691
1692 \begin_layout Standard
1693 Eine Tabelle können Sie mit dem Werkzeugleistenknopf 
1694 \begin_inset Graphics
1695         filename ../../images/tabular-insert.png
1696         scale 70
1697         scaleBeforeRotation
1698         BoundingBox 0bp 6bp 22bp 22bp
1699
1700 \end_inset
1701
1702  oder das Menü 
1703 \family sans
1704 Einfügen\SpecialChar \menuseparator
1705 Tabelle
1706 \family default
1707  einfügen.
1708  Wenn Sie auf den Werkzeugleistenknopf klicken, sehen Sie eine 5×5
1709 \begin_inset Space \thinspace{}
1710 \end_inset
1711
1712 -Tabelle.
1713  Wenn Sie mit dem Mauszeiger darüberfahren, werden die Felder dunkelblau
1714  und die Größe der dunkelblauen Tabelle angezeigt.
1715  Ein weiterer Mausklick fügt die so definierte Tabelle an der Cursorposition
1716  ein.
1717  Wenn Sie das Menü benutzen, erscheint ein Fenster, in dem Sie Zeilen- und
1718  Spaltenanzahl festlegen können.
1719 \end_layout
1720
1721 \begin_layout Standard
1722 In der so erstellten Tabelle ist jede Zelle umrandet.
1723  Die erste Zeile ist vom Rest durch eine doppelte Linie abgetrennt.
1724  Das wird dadurch erreicht, dass die erste Zeile eine Linie unterhalb und
1725  die zweite Zeile eine Linie oberhalb haben.Hier ist ein Beispiel:
1726 \end_layout
1727
1728 \begin_layout Standard
1729 \align center
1730 \begin_inset Tabular
1731 <lyxtabular version="3" rows="5" columns="4">
1732 <features>
1733 <column alignment="center" valignment="top" width="0">
1734 <column alignment="center" valignment="top" width="0">
1735 <column alignment="center" valignment="top" width="0">
1736 <column alignment="center" valignment="top" width="0">
1737 <row>
1738 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1739 \begin_inset Text
1740
1741 \begin_layout Plain Layout
1742
1743 \end_layout
1744
1745 \end_inset
1746 </cell>
1747 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1748 \begin_inset Text
1749
1750 \begin_layout Plain Layout
1751
1752 \family roman
1753 \series medium
1754 \shape up
1755 \size normal
1756 \emph off
1757 \bar no
1758 \noun off
1759 \color none
1760 1
1761 \end_layout
1762
1763 \end_inset
1764 </cell>
1765 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1766 \begin_inset Text
1767
1768 \begin_layout Plain Layout
1769 2
1770 \end_layout
1771
1772 \end_inset
1773 </cell>
1774 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1775 \begin_inset Text
1776
1777 \begin_layout Plain Layout
1778 3
1779 \end_layout
1780
1781 \end_inset
1782 </cell>
1783 </row>
1784 <row>
1785 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1786 \begin_inset Text
1787
1788 \begin_layout Plain Layout
1789
1790 \family roman
1791 \series medium
1792 \shape up
1793 \size normal
1794 \emph off
1795 \bar no
1796 \noun off
1797 \color none
1798 A
1799 \end_layout
1800
1801 \end_inset
1802 </cell>
1803 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1804 \begin_inset Text
1805
1806 \begin_layout Plain Layout
1807
1808 \end_layout
1809
1810 \end_inset
1811 </cell>
1812 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1813 \begin_inset Text
1814
1815 \begin_layout Plain Layout
1816
1817 \end_layout
1818
1819 \end_inset
1820 </cell>
1821 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1822 \begin_inset Text
1823
1824 \begin_layout Plain Layout
1825
1826 \end_layout
1827
1828 \end_inset
1829 </cell>
1830 </row>
1831 <row>
1832 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1833 \begin_inset Text
1834
1835 \begin_layout Plain Layout
1836
1837 \family roman
1838 \series medium
1839 \shape up
1840 \size normal
1841 \emph off
1842 \bar no
1843 \noun off
1844 \color none
1845 B
1846 \end_layout
1847
1848 \end_inset
1849 </cell>
1850 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1851 \begin_inset Text
1852
1853 \begin_layout Plain Layout
1854
1855 \end_layout
1856
1857 \end_inset
1858 </cell>
1859 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1860 \begin_inset Text
1861
1862 \begin_layout Plain Layout
1863
1864 \end_layout
1865
1866 \end_inset
1867 </cell>
1868 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1869 \begin_inset Text
1870
1871 \begin_layout Plain Layout
1872
1873 \end_layout
1874
1875 \end_inset
1876 </cell>
1877 </row>
1878 <row>
1879 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1880 \begin_inset Text
1881
1882 \begin_layout Plain Layout
1883
1884 \family roman
1885 \series medium
1886 \shape up
1887 \size normal
1888 \emph off
1889 \bar no
1890 \noun off
1891 \color none
1892 C
1893 \end_layout
1894
1895 \end_inset
1896 </cell>
1897 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1898 \begin_inset Text
1899
1900 \begin_layout Plain Layout
1901
1902 \end_layout
1903
1904 \end_inset
1905 </cell>
1906 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1907 \begin_inset Text
1908
1909 \begin_layout Plain Layout
1910
1911 \end_layout
1912
1913 \end_inset
1914 </cell>
1915 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1916 \begin_inset Text
1917
1918 \begin_layout Plain Layout
1919
1920 \end_layout
1921
1922 \end_inset
1923 </cell>
1924 </row>
1925 <row>
1926 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1927 \begin_inset Text
1928
1929 \begin_layout Plain Layout
1930 D
1931 \end_layout
1932
1933 \end_inset
1934 </cell>
1935 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1936 \begin_inset Text
1937
1938 \begin_layout Plain Layout
1939
1940 \end_layout
1941
1942 \end_inset
1943 </cell>
1944 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1945 \begin_inset Text
1946
1947 \begin_layout Plain Layout
1948
1949 \end_layout
1950
1951 \end_inset
1952 </cell>
1953 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1954 \begin_inset Text
1955
1956 \begin_layout Plain Layout
1957
1958 \end_layout
1959
1960 \end_inset
1961 </cell>
1962 </row>
1963 </lyxtabular>
1964
1965 \end_inset
1966
1967
1968 \end_layout
1969
1970 \begin_layout Section
1971 Tabellen-Einstellungen
1972 \begin_inset Index
1973 status collapsed
1974
1975 \begin_layout Plain Layout
1976 Tabellen ! Einstellungen
1977 \end_layout
1978
1979 \end_inset
1980
1981
1982 \end_layout
1983
1984 \begin_layout Standard
1985 Sie können das Aussehen einer Tabelle ändern, indem Sie mit der rechten
1986  Maustaste draufklicken.
1987  Dadurch wird das Fenster 
1988 \family sans
1989 Tabellen-Einstellungen
1990 \family default
1991  geöffnet.
1992  Hier können die Einstellungen der Zelle, in der der Mauszeiger beim Rechtsklick
1993  gerade war, geändert werden und auch die der zugehörigen Zeile und Spalte.
1994  Viele Optionen sind auch für eine Zellenauswahl wirksam.
1995  Das bedeutet, wenn Sie mehrere Zellen, Zeilen oder Spalten markiert haben
1996  -- sie sind dann hellblau hinterlegt -- gilt eine Aktion für die gesamte
1997  Auswahl.
1998  Beachten Sie, dass ein Unterschied besteht, ob Sie den 
1999 \emph on
2000 Inhalt
2001 \emph default
2002  einer Zelle oder die Zelle selber ausgewählt haben.
2003  Das 
2004 \family sans
2005 Tabellen-Einstellungen
2006 \family default
2007 -Menü hat folgende Karteikarten:
2008 \end_layout
2009
2010 \begin_layout Description
2011
2012 \family sans
2013 Tabellen-Einstellungen
2014 \family default
2015  Hier können Sie die 
2016 \family sans
2017 Horizontale
2018 \begin_inset Space ~
2019 \end_inset
2020
2021 Ausrichtung
2022 \family default
2023  der momentanen Spalte und die 
2024 \family sans
2025 Spaltenbreite
2026 \family default
2027  festlegen.
2028  Wenn Sie eine 
2029 \family sans
2030 Spaltenbreite
2031 \family default
2032  festgelegt haben, können Sie auch eine 
2033 \family sans
2034 Vertikale
2035 \begin_inset Space ~
2036 \end_inset
2037
2038 Ausrichtung
2039 \family default
2040  der momentanen Zeile wählen.
2041  Bei einer festen Spaltenbreite können Zellen Zeilenumbrüche und mehrere
2042  Absätze haben, wie in Abschnitt
2043 \begin_inset Space ~
2044 \end_inset
2045
2046
2047 \begin_inset CommandInset ref
2048 LatexCommand ref
2049 reference "uab:Mehrfache-Zeilen-in"
2050
2051 \end_inset
2052
2053  beschrieben.
2054  Ohne feste Spaltenbreite ist die Spalte so breit wie ihre breiteste Zelle.
2055 \begin_inset Newline newline
2056 \end_inset
2057
2058 Außerdem können Sie mehrere Zellen einer Zeile markieren und die Auswahl
2059  als 
2060 \family sans
2061 Mehrfachspalte
2062 \family default
2063  definieren, wie in Abschnitt
2064 \begin_inset Space ~
2065 \end_inset
2066
2067
2068 \begin_inset CommandInset ref
2069 LatexCommand ref
2070 reference "uab:Mehrfachspalten"
2071
2072 \end_inset
2073
2074  beschrieben.
2075 \begin_inset Newline newline
2076 \end_inset
2077
2078 Weiterhin können Sie eine Zelle, eine Auswahl oder die gesamte Tabelle gegen
2079  den Uhrzeigersinn um 90° drehen.
2080  LyX zeigt diese Drehung nicht, nur die druckfertige Ausgabe.
2081 \begin_inset Newline newline
2082 \end_inset
2083
2084
2085 \begin_inset Note Greyedout
2086 status open
2087
2088 \begin_layout Plain Layout
2089
2090 \series bold
2091 Achtung:
2092 \series default
2093  Nicht alle DVI-Betrachter können Rotationen anzeigen.
2094 \end_layout
2095
2096 \end_inset
2097
2098
2099 \begin_inset Newline newline
2100 \end_inset
2101
2102 Man kann auch ein 
2103 \family sans
2104 LaTe
2105 \begin_inset ERT
2106 status collapsed
2107
2108 \begin_layout Plain Layout
2109
2110 {}
2111 \end_layout
2112
2113 \end_inset
2114
2115 X-Argument
2116 \family default
2117  für besondere Tabellen-Formatierun\SpecialChar \-
2118 gen einfügen, wie in Abschnitten 
2119 \begin_inset CommandInset ref
2120 LatexCommand ref
2121 reference "uab:Mehrfachspalten-Berechnungen"
2122
2123 \end_inset
2124
2125  und 
2126 \begin_inset CommandInset ref
2127 LatexCommand ref
2128 reference "abs:Farbige-Tabellen"
2129
2130 \end_inset
2131
2132  beschrieben.
2133 \end_layout
2134
2135 \begin_layout Description
2136
2137 \family sans
2138 Rahmen
2139 \family default
2140  Hier können Sie Begrenzungslinien für die momentane Zeile(n) und Spalte(n)
2141  hinzufügen und löschen.
2142 \begin_inset Newline newline
2143 \end_inset
2144
2145 Wenn Sie die Stil-Option
2146 \family sans
2147  Formal
2148 \family default
2149  benutzen, wird die Tabelle in eine formale Tabelle, wie in Abschnitt
2150 \begin_inset Space ~
2151 \end_inset
2152
2153
2154 \begin_inset CommandInset ref
2155 LatexCommand ref
2156 reference "abs:Formale-Tabellen"
2157
2158 \end_inset
2159
2160  beschrieben, konvertiert.
2161 \begin_inset Newline newline
2162 \end_inset
2163
2164 Hier können Sie auch zusätzliche Abstände für Zeilen festlegen, wie in Abschnitt
2165 \begin_inset Space ~
2166 \end_inset
2167
2168
2169 \begin_inset CommandInset ref
2170 LatexCommand ref
2171 reference "uab:Zeilenabstand"
2172
2173 \end_inset
2174
2175  beschrieben.
2176 \end_layout
2177
2178 \begin_layout Description
2179
2180 \family sans
2181 Lange
2182 \begin_inset Space ~
2183 \end_inset
2184
2185 Tabelle
2186 \family default
2187  Hier kann eine Tabelle als 
2188 \family sans
2189 Lange
2190 \begin_inset Space ~
2191 \end_inset
2192
2193 Tabelle
2194 \family default
2195  definiert werden, die über mehrere Seiten reicht.
2196  Die Abschnitte
2197 \begin_inset Space ~
2198 \end_inset
2199
2200
2201 \begin_inset CommandInset ref
2202 LatexCommand ref
2203 reference "abs:Lange-Tabellen"
2204
2205 \end_inset
2206
2207  und 
2208 \begin_inset CommandInset ref
2209 LatexCommand ref
2210 reference "abs:Special-Longtable-Issues"
2211
2212 \end_inset
2213
2214  beschreiben diese Funktion genauer.
2215 \end_layout
2216
2217 \begin_layout Standard
2218 Wenn das Menü 
2219 \family sans
2220 Tabellen-Einstellungen
2221 \family default
2222  geöffnet ist, können Sie den Cursor mit den Pfeiltasten von Zelle zu Zelle
2223  bewegen, und die Eigenschaften der jeweiligen Zelle werden angezeigt.
2224 \end_layout
2225
2226 \begin_layout Section
2227 Tabellen-Werkzeugleiste
2228 \begin_inset Index
2229 status collapsed
2230
2231 \begin_layout Plain Layout
2232 Tabellen ! Werkzeugleiste
2233 \end_layout
2234
2235 \end_inset
2236
2237
2238 \end_layout
2239
2240 \begin_layout Standard
2241 Die Tabellen-Werkzeugleiste ist eine Alternative zum Menü 
2242 \family sans
2243 Tabellen-Einstellungen
2244 \family default
2245 , wenn man Tabellen-Einstellungen schneller ändern möchte.
2246  Wenn der Cursor in einer Tabelle steht, erscheint sie am unteren Rand des
2247  LyX-Fensters.
2248 \end_layout
2249
2250 \begin_layout Standard
2251 Die Werkzeugleiste hat folgende Knöpfe:
2252 \end_layout
2253
2254 \begin_layout Labeling
2255 \labelwidthstring 00.00.0000
2256 \begin_inset Graphics
2257         filename ../../images/tabular-feature_append-row.png
2258         scale 70
2259         scaleBeforeRotation
2260         BoundingBox 0bp 6bp 22bp 22bp
2261
2262 \end_inset
2263
2264  Fügt eine Zeile unterhalb der momentanen an
2265 \end_layout
2266
2267 \begin_layout Labeling
2268 \labelwidthstring 00.00.0000
2269 \begin_inset Graphics
2270         filename ../../images/tabular-feature_append-column.png
2271         scale 70
2272         scaleBeforeRotation
2273         BoundingBox 0bp 6bp 22bp 22bp
2274
2275 \end_inset
2276
2277  Fügt eine Spalte rechts von der momentanen an
2278 \end_layout
2279
2280 \begin_layout Labeling
2281 \labelwidthstring 00.00.0000
2282 \begin_inset Graphics
2283         filename ../../images/tabular-feature_delete-row.png
2284         scale 70
2285         scaleBeforeRotation
2286         BoundingBox 0bp 6bp 22bp 22bp
2287
2288 \end_inset
2289
2290  Löscht die ausgewählte(n) Zeile(n)
2291 \end_layout
2292
2293 \begin_layout Labeling
2294 \labelwidthstring 00.00.0000
2295 \begin_inset Graphics
2296         filename ../../images/tabular-feature_delete-column.png
2297         scale 70
2298         scaleBeforeRotation
2299         BoundingBox 0bp 6bp 22bp 22bp
2300
2301 \end_inset
2302
2303  Löscht die ausgewählte(n) Spalte(n)
2304 \end_layout
2305
2306 \begin_layout Labeling
2307 \labelwidthstring 00.00.0000
2308 \begin_inset Graphics
2309         filename ../../images/tabular-feature_toggle-line-top.png
2310         scale 70
2311         scaleBeforeRotation
2312         BoundingBox 0bp 6bp 22bp 22bp
2313
2314 \end_inset
2315
2316  Fügt eine Linie oberhalb der ausgewählte(n) Zeile(n) an oder löscht sie,
2317  wenn der Knopf grau hinterlegt ist
2318 \end_layout
2319
2320 \begin_layout Labeling
2321 \labelwidthstring 00.00.0000
2322 \begin_inset Graphics
2323         filename ../../images/tabular-feature_toggle-line-bottom.png
2324         scale 70
2325         scaleBeforeRotation
2326         BoundingBox 0bp 6bp 22bp 22bp
2327
2328 \end_inset
2329
2330  Fügt eine Linie unterhalb der ausgewählte(n) Zeile(n) an oder löscht sie,
2331  wenn der Knopf grau hinterlegt ist
2332 \end_layout
2333
2334 \begin_layout Labeling
2335 \labelwidthstring 00.00.0000
2336 \begin_inset Graphics
2337         filename ../../images/tabular-feature_toggle-line-left.png
2338         scale 70
2339         scaleBeforeRotation
2340         BoundingBox 0bp 6bp 22bp 22bp
2341
2342 \end_inset
2343
2344  Fügt eine Linie links der ausgewählte(n) Spalte(n) an oder löscht sie,
2345  wenn der Knopf grau hinterlegt ist
2346 \end_layout
2347
2348 \begin_layout Labeling
2349 \labelwidthstring 00.00.0000
2350 \begin_inset Graphics
2351         filename ../../images/tabular-feature_toggle-line-right.png
2352         scale 70
2353         scaleBeforeRotation
2354         BoundingBox 0bp 6bp 22bp 22bp
2355
2356 \end_inset
2357
2358  Fügt eine Linie rechts der ausgewählte(n) Spalte(n) an oder löscht sie,
2359  wenn der Knopf grau hinterlegt ist
2360 \end_layout
2361
2362 \begin_layout Labeling
2363 \labelwidthstring 00.00.0000
2364 \begin_inset Graphics
2365         filename ../../images/tabular-feature_set-all-lines.png
2366         scale 70
2367         scaleBeforeRotation
2368         BoundingBox 0bp 6bp 22bp 22bp
2369
2370 \end_inset
2371
2372  Setzt alle Linien um die ausgewählte(n) Zelle(n)
2373 \end_layout
2374
2375 \begin_layout Labeling
2376 \labelwidthstring 00.00.0000
2377 \begin_inset Graphics
2378         filename ../../images/tabular-feature_unset-all-lines.png
2379         scale 70
2380         scaleBeforeRotation
2381         BoundingBox 0bp 6bp 22bp 22bp
2382
2383 \end_inset
2384
2385  Löscht alle Linien um die ausgewählte(n) Zelle(n)
2386 \end_layout
2387
2388 \begin_layout Labeling
2389 \labelwidthstring 00.00.0000
2390 \begin_inset Graphics
2391         filename ../../images/tabular-feature_align-left.png
2392         scale 70
2393         scaleBeforeRotation
2394         BoundingBox 0bp 6bp 22bp 22bp
2395
2396 \end_inset
2397
2398  Richtet den Inhalt der ausgewählte(n) Spalte(n) linksbündig aus
2399 \end_layout
2400
2401 \begin_layout Labeling
2402 \labelwidthstring 00.00.0000
2403 \begin_inset Graphics
2404         filename ../../images/tabular-feature_align-center.png
2405         scale 70
2406         scaleBeforeRotation
2407         BoundingBox 0bp 6bp 22bp 22bp
2408
2409 \end_inset
2410
2411  Zentriert den Inhalt der ausgewählte(n) Spalte(n)
2412 \end_layout
2413
2414 \begin_layout Labeling
2415 \labelwidthstring 00.00.0000
2416 \begin_inset Graphics
2417         filename ../../images/tabular-feature_align-right.png
2418         scale 70
2419         scaleBeforeRotation
2420         BoundingBox 0bp 6bp 22bp 22bp
2421
2422 \end_inset
2423
2424  Richtet den Inhalt der ausgewählte(n) Spalte(n) rechtsbündig aus
2425 \end_layout
2426
2427 \begin_layout Labeling
2428 \labelwidthstring 00.00.0000
2429 \begin_inset Graphics
2430         filename ../../images/tabular-feature_valign-top.png
2431         scale 70
2432         scaleBeforeRotation
2433         BoundingBox 0bp 6bp 22bp 22bp
2434
2435 \end_inset
2436
2437  Richtet den Inhalt der ausgewählte(n) Zeile(n) oben aus
2438 \end_layout
2439
2440 \begin_layout Labeling
2441 \labelwidthstring 00.00.0000
2442 \begin_inset Graphics
2443         filename ../../images/tabular-feature_valign-middle.png
2444         scale 70
2445         scaleBeforeRotation
2446         BoundingBox 0bp 6bp 22bp 22bp
2447
2448 \end_inset
2449
2450  Zentriert den Inhalt der ausgewählte(n) Zeile(n) 
2451 \end_layout
2452
2453 \begin_layout Labeling
2454 \labelwidthstring 00.00.0000
2455 \begin_inset Graphics
2456         filename ../../images/tabular-feature_valign-bottom.png
2457         scale 70
2458         scaleBeforeRotation
2459         BoundingBox 0bp 6bp 22bp 22bp
2460
2461 \end_inset
2462
2463  Richtet den Inhalt der ausgewählte(n) Zeile(n) unten aus
2464 \end_layout
2465
2466 \begin_layout Labeling
2467 \labelwidthstring 00.00.0000
2468 \begin_inset Graphics
2469         filename ../../images/tabular-feature_set-rotate-cell.png
2470         scale 70
2471         scaleBeforeRotation
2472         BoundingBox 0bp 6bp 22bp 22bp
2473
2474 \end_inset
2475
2476  Dreht den Inhalt der ausgewählte(n) Zelle(n) um 90° gegen den Uhrzeigersinn
2477 \end_layout
2478
2479 \begin_layout Labeling
2480 \labelwidthstring 00.00.0000
2481 \begin_inset Graphics
2482         filename ../../images/tabular-feature_set-rotate-tabular.png
2483         scale 70
2484         scaleBeforeRotation
2485         BoundingBox 0bp 6bp 22bp 22bp
2486
2487 \end_inset
2488
2489  Dreht die Tabelle um 90° im gegen den Uhrzeigersinn
2490 \end_layout
2491
2492 \begin_layout Labeling
2493 \labelwidthstring 00.00.0000
2494 \begin_inset Graphics
2495         filename ../../images/tabular-feature_multicolumn.png
2496         scale 70
2497         scaleBeforeRotation
2498         BoundingBox 0bp 6bp 22bp 22bp
2499
2500 \end_inset
2501
2502  Setzt die ausgewählte(n) Zelle(n) einer Zeile als Mehrfachspalte
2503 \end_layout
2504
2505 \begin_layout Standard
2506 \begin_inset Note Greyedout
2507 status open
2508
2509 \begin_layout Plain Layout
2510
2511 \series bold
2512 Note:
2513 \series default
2514  Für die Ausgabe wird die vertikale Ausrichtung der ersten Zelle in einer
2515  Reihe für alle Zelle der Reihe verwendet.
2516 \end_layout
2517
2518 \end_inset
2519
2520
2521 \end_layout
2522
2523 \begin_layout Section
2524 Bearbeiten-Menü
2525 \begin_inset Index
2526 status collapsed
2527
2528 \begin_layout Plain Layout
2529 Tabellen ! Bearbeiten-Menü
2530 \end_layout
2531
2532 \end_inset
2533
2534
2535 \end_layout
2536
2537 \begin_layout Standard
2538 Es gibt noch eine dritte Möglichkeit, Tabellen-Einstellungen zu ändern.
2539  Wenn der Cursor in einer Tabelle steht, sind im 
2540 \family sans
2541 Bearbeiten
2542 \family default
2543 -Menü folgende Punkte aktiviert: 
2544 \family sans
2545 Tabelle
2546 \family default
2547
2548 \family sans
2549 Zeilen
2550 \begin_inset Space ~
2551 \end_inset
2552
2553 &
2554 \begin_inset Space ~
2555 \end_inset
2556
2557 Spalten
2558 \family default
2559  und 
2560 \family sans
2561 Tabellen-Einstellungen
2562 \family default
2563 .
2564  Unter den ersten beiden Punkten sind einige der bereits beschriebenen Einstellu
2565 ngsmöglichkeiten zu erreichen.
2566 \end_layout
2567
2568 \begin_layout Section
2569 Gleitende Tabellen
2570 \begin_inset CommandInset label
2571 LatexCommand label
2572 name "abs:Gleitende-Tabellen"
2573
2574 \end_inset
2575
2576
2577 \begin_inset Index
2578 status collapsed
2579
2580 \begin_layout Plain Layout
2581 Gleitobjekte ! Tabellen
2582 \end_layout
2583
2584 \end_inset
2585
2586
2587 \begin_inset Index
2588 status collapsed
2589
2590 \begin_layout Plain Layout
2591 Tabellen ! gleitende
2592 \end_layout
2593
2594 \end_inset
2595
2596
2597 \end_layout
2598
2599 \begin_layout Standard
2600 Allgemeine Erklärungen über Gleitobjekte finden Sie in Abschnitt
2601 \begin_inset Space ~
2602 \end_inset
2603
2604
2605 \begin_inset CommandInset ref
2606 LatexCommand ref
2607 reference "abs:Gleitobjekte-Einleitung"
2608
2609 \end_inset
2610
2611 .
2612 \end_layout
2613
2614 \begin_layout Standard
2615 \begin_inset Float table
2616 placement h
2617 wide false
2618 sideways false
2619 status open
2620
2621 \begin_layout Plain Layout
2622 \begin_inset Caption
2623
2624 \begin_layout Plain Layout
2625 \begin_inset CommandInset label
2626 LatexCommand label
2627 name "tab:a table float"
2628
2629 \end_inset
2630
2631 Eine gleitende Tabelle
2632 \end_layout
2633
2634 \end_inset
2635
2636
2637 \end_layout
2638
2639 \begin_layout Plain Layout
2640 \align center
2641 \begin_inset Tabular
2642 <lyxtabular version="3" rows="3" columns="3">
2643 <features>
2644 <column alignment="center" valignment="top" width="0pt">
2645 <column alignment="center" valignment="top" width="0pt">
2646 <column alignment="center" valignment="top" width="0pt">
2647 <row>
2648 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2649 \begin_inset Text
2650
2651 \begin_layout Plain Layout
2652
2653 \family roman
2654 \series medium
2655 \shape up
2656 \size normal
2657 \emph off
2658 \bar no
2659 \noun off
2660 \color none
2661 1
2662 \end_layout
2663
2664 \end_inset
2665 </cell>
2666 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2667 \begin_inset Text
2668
2669 \begin_layout Plain Layout
2670
2671 \family roman
2672 \series medium
2673 \shape up
2674 \size normal
2675 \emph off
2676 \bar no
2677 \noun off
2678 \color none
2679 2
2680 \end_layout
2681
2682 \end_inset
2683 </cell>
2684 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2685 \begin_inset Text
2686
2687 \begin_layout Plain Layout
2688
2689 \family roman
2690 \series medium
2691 \shape up
2692 \size normal
2693 \emph off
2694 \bar no
2695 \noun off
2696 \color none
2697 3
2698 \end_layout
2699
2700 \end_inset
2701 </cell>
2702 </row>
2703 <row>
2704 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2705 \begin_inset Text
2706
2707 \begin_layout Plain Layout
2708
2709 \family roman
2710 \series medium
2711 \shape up
2712 \size normal
2713 \emph off
2714 \bar no
2715 \noun off
2716 \color none
2717 Martin
2718 \end_layout
2719
2720 \end_inset
2721 </cell>
2722 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2723 \begin_inset Text
2724
2725 \begin_layout Plain Layout
2726
2727 \family roman
2728 \series medium
2729 \shape up
2730 \size normal
2731 \emph off
2732 \bar no
2733 \noun off
2734 \color none
2735 Lena
2736 \end_layout
2737
2738 \end_inset
2739 </cell>
2740 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2741 \begin_inset Text
2742
2743 \begin_layout Plain Layout
2744
2745 \family roman
2746 \series medium
2747 \shape up
2748 \size normal
2749 \emph off
2750 \bar no
2751 \noun off
2752 \color none
2753 Alina
2754 \end_layout
2755
2756 \end_inset
2757 </cell>
2758 </row>
2759 <row>
2760 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2761 \begin_inset Text
2762
2763 \begin_layout Plain Layout
2764
2765 \family roman
2766 \series medium
2767 \shape up
2768 \size normal
2769 \emph off
2770 \bar no
2771 \noun off
2772 \color none
2773 \begin_inset Formula $\int x^{2}dx$
2774 \end_inset
2775
2776
2777 \end_layout
2778
2779 \end_inset
2780 </cell>
2781 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2782 \begin_inset Text
2783
2784 \begin_layout Plain Layout
2785
2786 \family roman
2787 \series medium
2788 \shape up
2789 \size normal
2790 \emph off
2791 \bar no
2792 \noun off
2793 \color none
2794 \begin_inset Formula $\left[\begin{array}{cc}
2795 a & b\\
2796 c & d\end{array}\right]$
2797 \end_inset
2798
2799
2800 \end_layout
2801
2802 \end_inset
2803 </cell>
2804 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2805 \begin_inset Text
2806
2807 \begin_layout Plain Layout
2808
2809 \family roman
2810 \series medium
2811 \shape up
2812 \size normal
2813 \emph off
2814 \bar no
2815 \noun off
2816 \color none
2817 \begin_inset Formula $1+1=2$
2818 \end_inset
2819
2820
2821 \end_layout
2822
2823 \end_inset
2824 </cell>
2825 </row>
2826 </lyxtabular>
2827
2828 \end_inset
2829
2830
2831 \end_layout
2832
2833 \end_inset
2834
2835
2836 \end_layout
2837
2838 \begin_layout Standard
2839 Gleitende Tabellen können über 
2840 \family sans
2841 Einfügen\SpecialChar \menuseparator
2842 Gleitobjekt\SpecialChar \menuseparator
2843 Tabelle
2844 \family default
2845  oder einen Klick auf den Werkzeugleistenknopf 
2846 \begin_inset Graphics
2847         filename ../../images/float-insert_table.png
2848         scale 70
2849         scaleBeforeRotation
2850         BoundingBox 0bp 6bp 22bp 22bp
2851
2852 \end_inset
2853
2854  erzeugt werden.
2855  Sie erhalten zunächst einen leeren roten Rahmen ohne Tabelle.
2856  In das rot umrahmte Feld rechts von 
2857 \emph on
2858 Tabelle
2859 \begin_inset Space ~
2860 \end_inset
2861
2862 Nr:
2863 \emph default
2864  schreiben Sie die Tabellenbeschriftung.
2865  Nach einem Klick oberhalb oder unterhalb von 
2866 \emph on
2867 Tabelle
2868 \begin_inset Space ~
2869 \end_inset
2870
2871 Nr:
2872 \emph default
2873  können Sie dann eine Tabelle mit dem Werkzeugleistenknopf 
2874 \begin_inset Graphics
2875         filename ../../images/tabular-insert.png
2876         scale 70
2877         scaleBeforeRotation
2878         BoundingBox 0bp 6bp 22bp 22bp
2879
2880 \end_inset
2881
2882  oder dem Menü 
2883 \family sans
2884 Einfügen\SpecialChar \menuseparator
2885 Tabelle
2886 \family default
2887  einfügen.
2888 \end_layout
2889
2890 \begin_layout Standard
2891 Tabelle
2892 \begin_inset Space ~
2893 \end_inset
2894
2895
2896 \begin_inset CommandInset ref
2897 LatexCommand ref
2898 reference "tab:a table float"
2899
2900 \end_inset
2901
2902  ist ein Beispiel für eine gleitende Tabelle.
2903 \end_layout
2904
2905 \begin_layout Standard
2906 Normalerweise steht die Tabellenbeschriftung über einer Tabelle, aber unglücklic
2907 herweise wird das von LaTeX Standard-Klassen nicht unterstützt.
2908  Das bedeutet, dass bei den Klassen 
2909 \family sans
2910 article
2911 \family default
2912
2913 \family sans
2914 book
2915 \family default
2916
2917 \family sans
2918 letter
2919 \family default
2920 , und 
2921 \family sans
2922 report
2923 \family default
2924  kein Abstand zwischen dem Titel und der Tabelle sein wird.
2925  Um den einzufügen, können Sie zum Ladebefehl des LaTeX-Paketes 
2926 \series bold
2927 caption
2928 \series default
2929
2930 \begin_inset Index
2931 status collapsed
2932
2933 \begin_layout Plain Layout
2934 LaTeX-Pakete ! caption
2935 \end_layout
2936
2937 \end_inset
2938
2939  im LaTeX-Vorspann Ihres Dokuments folgende Option einfügen:
2940 \begin_inset Foot
2941 status open
2942
2943 \begin_layout Plain Layout
2944 Näheres finden Sie im Abschnitt
2945 \begin_inset Space ~
2946 \end_inset
2947
2948
2949 \begin_inset CommandInset ref
2950 LatexCommand ref
2951 reference "abs:Titel-Platzierung"
2952
2953 \end_inset
2954
2955 .
2956 \end_layout
2957
2958 \end_inset
2959
2960
2961 \end_layout
2962
2963 \begin_layout Standard
2964
2965 \series bold
2966 tableposition=top
2967 \end_layout
2968
2969 \begin_layout Standard
2970 Das Paket 
2971 \series bold
2972 caption
2973 \series default
2974 , das in Abschnitt
2975 \begin_inset Space ~
2976 \end_inset
2977
2978
2979 \begin_inset CommandInset ref
2980 LatexCommand ref
2981 reference "abs:Titel-Formatierung"
2982
2983 \end_inset
2984
2985 beschrieben wird, wird zum Einstellen der Legende-Optionen benutzt.
2986 \end_layout
2987
2988 \begin_layout Standard
2989 \begin_inset Index
2990 status collapsed
2991
2992 \begin_layout Plain Layout
2993 Tabellen ! zitieren
2994 \end_layout
2995
2996 \end_inset
2997
2998 Auf Tabellen kann über ihre Marke verwiesen werden.
2999  Dafür fügen Sie in der Beschriftung mit 
3000 \family sans
3001 Einfügen\SpecialChar \menuseparator
3002 Marke
3003 \family default
3004  oder durch Klicken auf 
3005 \begin_inset Graphics
3006         filename ../../images/label-insert.png
3007         scale 70
3008         scaleBeforeRotation
3009         BoundingBox 0bp 6bp 20bp 20bp
3010
3011 \end_inset
3012
3013  eine Marke ein.
3014  Auf diese können Sie dann wie gewohnt mit 
3015 \family sans
3016 Einfügen\SpecialChar \menuseparator
3017 Querverweis
3018 \family default
3019  oder durch Klicken auf 
3020 \begin_inset Graphics
3021         filename ../../images/dialog-show-new-inset_ref.png
3022         scale 70
3023         scaleBeforeRotation
3024         BoundingBox 0bp 6bp 22bp 22bp
3025
3026 \end_inset
3027
3028  verweisen.
3029  Verweise werden detailliert in Abschnitt
3030 \begin_inset Space ~
3031 \end_inset
3032
3033
3034 \begin_inset CommandInset ref
3035 LatexCommand ref
3036 reference "abs:Auf-Gleitobjekte-verweisen"
3037
3038 \end_inset
3039
3040  beschrieben.
3041 \end_layout
3042
3043 \begin_layout Section
3044 Lange Tabellen
3045 \begin_inset CommandInset label
3046 LatexCommand label
3047 name "abs:Lange-Tabellen"
3048
3049 \end_inset
3050
3051
3052 \begin_inset Index
3053 status collapsed
3054
3055 \begin_layout Plain Layout
3056 Tabellen ! lange
3057 \end_layout
3058
3059 \end_inset
3060
3061
3062 \end_layout
3063
3064 \begin_layout Standard
3065 Wenn eine Tabelle zu lang ist, um auf eine Seite zu passen, können Sie im
3066  Dialogfenster 
3067 \family sans
3068 Tabellen-Einstellungen
3069 \family default
3070  auf der Karteikarte  
3071 \family sans
3072 Lange
3073 \begin_inset Space ~
3074 \end_inset
3075
3076 Tabelle
3077 \family default
3078  die Option 
3079 \family sans
3080 Lange
3081 \begin_inset Space ~
3082 \end_inset
3083
3084 Tabelle
3085 \begin_inset Space ~
3086 \end_inset
3087
3088 verwenden
3089 \family default
3090  ankreuzen, damit die Tabelle automatisch auf mehrere Seiten verteilt wird.
3091  Außerdem werden weitere Optionen aktiviert, die im 
3092 \emph on
3093 Benutzerhandbuch
3094 \emph default
3095  beschrieben sind.
3096 \end_layout
3097
3098 \begin_layout Standard
3099 Hier ist ein Beispiel einer langen Tabelle:
3100 \end_layout
3101
3102 \begin_layout Standard
3103 \align center
3104 \begin_inset Tabular
3105 <lyxtabular version="3" rows="69" columns="3">
3106 <features islongtable="true">
3107 <column alignment="left" valignment="top" width="0cm">
3108 <column alignment="left" valignment="top" width="0pt">
3109 <column alignment="right" valignment="top" width="0pt">
3110 <row endfirsthead="true">
3111 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3112 \begin_inset Text
3113
3114 \begin_layout Plain Layout
3115
3116 \series bold
3117 Telefonliste (ignoriere die Namen)
3118 \end_layout
3119
3120 \end_inset
3121 </cell>
3122 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
3123 \begin_inset Text
3124
3125 \begin_layout Plain Layout
3126
3127 \end_layout
3128
3129 \end_inset
3130 </cell>
3131 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3132 \begin_inset Text
3133
3134 \begin_layout Plain Layout
3135
3136 \end_layout
3137
3138 \end_inset
3139 </cell>
3140 </row>
3141 <row endfirsthead="true">
3142 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
3143 \begin_inset Text
3144
3145 \begin_layout Plain Layout
3146
3147 \series bold
3148 NAME
3149 \end_layout
3150
3151 \end_inset
3152 </cell>
3153 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
3154 \begin_inset Text
3155
3156 \begin_layout Plain Layout
3157
3158 \end_layout
3159
3160 \end_inset
3161 </cell>
3162 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
3163 \begin_inset Text
3164
3165 \begin_layout Plain Layout
3166
3167 \series bold
3168 TEL.
3169 \end_layout
3170
3171 \end_inset
3172 </cell>
3173 </row>
3174 <row endhead="true">
3175 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3176 \begin_inset Text
3177
3178 \begin_layout Plain Layout
3179
3180 \series bold
3181 Telefonliste
3182 \end_layout
3183
3184 \end_inset
3185 </cell>
3186 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
3187 \begin_inset Text
3188
3189 \begin_layout Plain Layout
3190
3191 \end_layout
3192
3193 \end_inset
3194 </cell>
3195 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3196 \begin_inset Text
3197
3198 \begin_layout Plain Layout
3199
3200 \end_layout
3201
3202 \end_inset
3203 </cell>
3204 </row>
3205 <row endhead="true">
3206 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
3207 \begin_inset Text
3208
3209 \begin_layout Plain Layout
3210
3211 \series bold
3212 NAME
3213 \end_layout
3214
3215 \end_inset
3216 </cell>
3217 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
3218 \begin_inset Text
3219
3220 \begin_layout Plain Layout
3221
3222 \end_layout
3223
3224 \end_inset
3225 </cell>
3226 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
3227 \begin_inset Text
3228
3229 \begin_layout Plain Layout
3230
3231 \series bold
3232 TEL.
3233 \end_layout
3234
3235 \end_inset
3236 </cell>
3237 </row>
3238 <row endfoot="true">
3239 <cell multicolumn="1" alignment="right" valignment="top" topline="true" usebox="none">
3240 \begin_inset Text
3241
3242 \begin_layout Plain Layout
3243
3244 \series bold
3245 wird fortgesetzt
3246 \series default
3247  \SpecialChar \ldots{}
3248
3249 \end_layout
3250
3251 \end_inset
3252 </cell>
3253 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
3254 \begin_inset Text
3255
3256 \begin_layout Plain Layout
3257
3258 \end_layout
3259
3260 \end_inset
3261 </cell>
3262 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3263 \begin_inset Text
3264
3265 \begin_layout Plain Layout
3266
3267 \end_layout
3268
3269 \end_inset
3270 </cell>
3271 </row>
3272 <row>
3273 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3274 \begin_inset Text
3275
3276 \begin_layout Plain Layout
3277
3278 \series bold
3279 Annovi
3280 \end_layout
3281
3282 \end_inset
3283 </cell>
3284 <cell alignment="center" valignment="top" usebox="none">
3285 \begin_inset Text
3286
3287 \begin_layout Plain Layout
3288 Silvia
3289 \end_layout
3290
3291 \end_inset
3292 </cell>
3293 <cell alignment="right" valignment="top" leftline="true" rightline="true" usebox="none">
3294 \begin_inset Text
3295
3296 \begin_layout Plain Layout
3297 111
3298 \end_layout
3299
3300 \end_inset
3301 </cell>
3302 </row>
3303 <row>
3304 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3305 \begin_inset Text
3306
3307 \begin_layout Plain Layout
3308
3309 \series bold
3310 Bertoli
3311 \end_layout
3312
3313 \end_inset
3314 </cell>
3315 <cell alignment="center" valignment="top" usebox="none">
3316 \begin_inset Text
3317
3318 \begin_layout Plain Layout
3319 Stefano
3320 \end_layout
3321
3322 \end_inset
3323 </cell>
3324 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
3325 \begin_inset Text
3326
3327 \begin_layout Plain Layout
3328 111
3329 \end_layout
3330
3331 \end_inset
3332 </cell>
3333 </row>
3334 <row>
3335 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3336 \begin_inset Text
3337
3338 \begin_layout Plain Layout
3339
3340 \series bold
3341 Bozzi
3342 \end_layout
3343
3344 \end_inset
3345 </cell>
3346 <cell alignment="center" valignment="top" usebox="none">
3347 \begin_inset Text
3348
3349 \begin_layout Plain Layout
3350 Walter
3351 \end_layout
3352
3353 \end_inset
3354 </cell>
3355 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
3356 \begin_inset Text
3357
3358 \begin_layout Plain Layout
3359 111
3360 \end_layout
3361
3362 \end_inset
3363 </cell>
3364 </row>
3365 <row>
3366 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3367 \begin_inset Text
3368
3369 \begin_layout Plain Layout
3370
3371 \series bold
3372 Cachia
3373 \end_layout
3374
3375 \end_inset
3376 </cell>
3377 <cell alignment="center" valignment="top" usebox="none">
3378 \begin_inset Text
3379
3380 \begin_layout Plain Layout
3381 Maria
3382 \end_layout
3383
3384 \end_inset
3385 </cell>
3386 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
3387 \begin_inset Text
3388
3389 \begin_layout Plain Layout
3390 111
3391 \end_layout
3392
3393 \end_inset
3394 </cell>
3395 </row>
3396 <row>
3397 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3398 \begin_inset Text
3399
3400 \begin_layout Plain Layout
3401
3402 \series bold
3403 Cachia
3404 \end_layout
3405
3406 \end_inset
3407 </cell>
3408 <cell alignment="center" valignment="top" usebox="none">
3409 \begin_inset Text
3410
3411 \begin_layout Plain Layout
3412 Maurizio
3413 \end_layout
3414
3415 \end_inset
3416 </cell>
3417 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
3418 \begin_inset Text
3419
3420 \begin_layout Plain Layout
3421 111
3422 \end_layout
3423
3424 \end_inset
3425 </cell>
3426 </row>
3427 <row>
3428 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3429 \begin_inset Text
3430
3431 \begin_layout Plain Layout
3432
3433 \series bold
3434 Cinquemani
3435 \end_layout
3436
3437 \end_inset
3438 </cell>
3439 <cell alignment="center" valignment="top" usebox="none">
3440 \begin_inset Text
3441
3442 \begin_layout Plain Layout
3443 Giusi
3444 \end_layout
3445
3446 \end_inset
3447 </cell>
3448 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
3449 \begin_inset Text
3450
3451 \begin_layout Plain Layout
3452 111
3453 \end_layout
3454
3455 \end_inset
3456 </cell>
3457 </row>
3458 <row>
3459 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3460 \begin_inset Text
3461
3462 \begin_layout Plain Layout
3463
3464 \series bold
3465 Colin
3466 \end_layout
3467
3468 \end_inset
3469 </cell>
3470 <cell alignment="center" valignment="top" usebox="none">
3471 \begin_inset Text
3472
3473 \begin_layout Plain Layout
3474 Bernard
3475 \end_layout
3476
3477 \end_inset
3478 </cell>
3479 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
3480 \begin_inset Text
3481
3482 \begin_layout Plain Layout
3483 111
3484 \end_layout
3485
3486 \end_inset
3487 </cell>
3488 </row>
3489 <row>
3490 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3491 \begin_inset Text
3492
3493 \begin_layout Plain Layout
3494
3495 \series bold
3496 Concli
3497 \end_layout
3498
3499 \end_inset
3500 </cell>
3501 <cell alignment="center" valignment="top" usebox="none">
3502 \begin_inset Text
3503
3504 \begin_layout Plain Layout
3505 Gianfranco
3506 \end_layout
3507
3508 \end_inset
3509 </cell>
3510 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
3511 \begin_inset Text
3512
3513 \begin_layout Plain Layout
3514 111
3515 \end_layout
3516
3517 \end_inset
3518 </cell>
3519 </row>
3520 <row>
3521 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3522 \begin_inset Text
3523
3524 \begin_layout Plain Layout
3525
3526 \series bold
3527 Dal Bosco
3528 \end_layout
3529
3530 \end_inset
3531 </cell>
3532 <cell alignment="center" valignment="top" usebox="none">
3533 \begin_inset Text
3534
3535 \begin_layout Plain Layout
3536 Carolina
3537 \end_layout
3538
3539 \end_inset
3540 </cell>
3541 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
3542 \begin_inset Text
3543
3544 \begin_layout Plain Layout
3545 111
3546 \end_layout
3547
3548 \end_inset
3549 </cell>
3550 </row>
3551 <row>
3552 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3553 \begin_inset Text
3554
3555 \begin_layout Plain Layout
3556
3557 \series bold
3558 Dalpiaz
3559 \end_layout
3560
3561 \end_inset
3562 </cell>
3563 <cell alignment="center" valignment="top" usebox="none">
3564 \begin_inset Text
3565
3566 \begin_layout Plain Layout
3567 Annamaria
3568 \end_layout
3569
3570 \end_inset
3571 </cell>
3572 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
3573 \begin_inset Text
3574
3575 \begin_layout Plain Layout
3576 111
3577 \end_layout
3578
3579 \end_inset
3580 </cell>
3581 </row>
3582 <row>
3583 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3584 \begin_inset Text
3585
3586 \begin_layout Plain Layout
3587
3588 \series bold
3589 Feliciello
3590 \end_layout
3591
3592 \end_inset
3593 </cell>
3594 <cell alignment="center" valignment="top" usebox="none">
3595 \begin_inset Text
3596
3597 \begin_layout Plain Layout
3598 Domenico
3599 \end_layout
3600
3601 \end_inset
3602 </cell>
3603 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
3604 \begin_inset Text
3605
3606 \begin_layout Plain Layout
3607 111
3608 \end_layout
3609
3610 \end_inset
3611 </cell>
3612 </row>
3613 <row>
3614 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3615 \begin_inset Text
3616
3617 \begin_layout Plain Layout
3618
3619 \series bold
3620 Focarelli
3621 \end_layout
3622
3623 \end_inset
3624 </cell>
3625 <cell alignment="center" valignment="top" usebox="none">
3626 \begin_inset Text
3627
3628 \begin_layout Plain Layout
3629 Paola
3630 \end_layout
3631
3632 \end_inset
3633 </cell>
3634 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
3635 \begin_inset Text
3636
3637 \begin_layout Plain Layout
3638 111
3639 \end_layout
3640
3641 \end_inset
3642 </cell>
3643 </row>
3644 <row>
3645 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3646 \begin_inset Text
3647
3648 \begin_layout Plain Layout
3649
3650 \series bold
3651 Galletti
3652 \end_layout
3653
3654 \end_inset
3655 </cell>
3656 <cell alignment="center" valignment="top" usebox="none">
3657 \begin_inset Text
3658
3659 \begin_layout Plain Layout
3660 Oreste
3661 \end_layout
3662
3663 \end_inset
3664 </cell>
3665 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
3666 \begin_inset Text
3667
3668 \begin_layout Plain Layout
3669 111
3670 \end_layout
3671
3672 \end_inset
3673 </cell>
3674 </row>
3675 <row>
3676 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3677 \begin_inset Text
3678
3679 \begin_layout Plain Layout
3680
3681 \series bold
3682 Gasparini
3683 \end_layout
3684
3685 \end_inset
3686 </cell>
3687 <cell alignment="center" valignment="top" usebox="none">
3688 \begin_inset Text
3689
3690 \begin_layout Plain Layout
3691 Franca
3692 \end_layout
3693
3694 \end_inset
3695 </cell>
3696 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
3697 \begin_inset Text
3698
3699 \begin_layout Plain Layout
3700 111
3701 \end_layout
3702
3703 \end_inset
3704 </cell>
3705 </row>
3706 <row>
3707 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3708 \begin_inset Text
3709
3710 \begin_layout Plain Layout
3711
3712 \series bold
3713 Rizzardi
3714 \end_layout
3715
3716 \end_inset
3717 </cell>
3718 <cell alignment="center" valignment="top" usebox="none">
3719 \begin_inset Text
3720
3721 \begin_layout Plain Layout
3722 Paola
3723 \end_layout
3724
3725 \end_inset
3726 </cell>
3727 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
3728 \begin_inset Text
3729
3730 \begin_layout Plain Layout
3731 111
3732 \end_layout
3733
3734 \end_inset
3735 </cell>
3736 </row>
3737 <row>
3738 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3739 \begin_inset Text
3740
3741 \begin_layout Plain Layout
3742
3743 \series bold
3744 Lassini
3745 \end_layout
3746
3747 \end_inset
3748 </cell>
3749 <cell alignment="center" valignment="top" usebox="none">
3750 \begin_inset Text
3751
3752 \begin_layout Plain Layout
3753 Giancarlo
3754 \end_layout
3755
3756 \end_inset
3757 </cell>
3758 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
3759 \begin_inset Text
3760
3761 \begin_layout Plain Layout
3762 111
3763 \end_layout
3764
3765 \end_inset
3766 </cell>
3767 </row>
3768 <row>
3769 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3770 \begin_inset Text
3771
3772 \begin_layout Plain Layout
3773
3774 \series bold
3775 Malfatti
3776 \end_layout
3777
3778 \end_inset
3779 </cell>
3780 <cell alignment="center" valignment="top" usebox="none">
3781 \begin_inset Text
3782
3783 \begin_layout Plain Layout
3784 Luciano
3785 \end_layout
3786
3787 \end_inset
3788 </cell>
3789 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
3790 \begin_inset Text
3791
3792 \begin_layout Plain Layout
3793 111
3794 \end_layout
3795
3796 \end_inset
3797 </cell>
3798 </row>
3799 <row>
3800 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3801 \begin_inset Text
3802
3803 \begin_layout Plain Layout
3804
3805 \series bold
3806 Malfatti
3807 \end_layout
3808
3809 \end_inset
3810 </cell>
3811 <cell alignment="center" valignment="top" usebox="none">
3812 \begin_inset Text
3813
3814 \begin_layout Plain Layout
3815 Valeriano
3816 \end_layout
3817
3818 \end_inset
3819 </cell>
3820 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
3821 \begin_inset Text
3822
3823 \begin_layout Plain Layout
3824 111
3825 \end_layout
3826
3827 \end_inset
3828 </cell>
3829 </row>
3830 <row>
3831 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3832 \begin_inset Text
3833
3834 \begin_layout Plain Layout
3835
3836 \series bold
3837 Meneguzzo
3838 \end_layout
3839
3840 \end_inset
3841 </cell>
3842 <cell alignment="center" valignment="top" usebox="none">
3843 \begin_inset Text
3844
3845 \begin_layout Plain Layout
3846 Roberto
3847 \end_layout
3848
3849 \end_inset
3850 </cell>
3851 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
3852 \begin_inset Text
3853
3854 \begin_layout Plain Layout
3855 111
3856 \end_layout
3857
3858 \end_inset
3859 </cell>
3860 </row>
3861 <row>
3862 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3863 \begin_inset Text
3864
3865 \begin_layout Plain Layout
3866
3867 \series bold
3868 Mezzadra
3869 \end_layout
3870
3871 \end_inset
3872 </cell>
3873 <cell alignment="center" valignment="top" usebox="none">
3874 \begin_inset Text
3875
3876 \begin_layout Plain Layout
3877 Roberto
3878 \end_layout
3879
3880 \end_inset
3881 </cell>
3882 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
3883 \begin_inset Text
3884
3885 \begin_layout Plain Layout
3886 111
3887 \end_layout
3888
3889 \end_inset
3890 </cell>
3891 </row>
3892 <row>
3893 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3894 \begin_inset Text
3895
3896 \begin_layout Plain Layout
3897
3898 \series bold
3899 Pirpamer
3900 \end_layout
3901
3902 \end_inset
3903 </cell>
3904 <cell alignment="center" valignment="top" usebox="none">
3905 \begin_inset Text
3906
3907 \begin_layout Plain Layout
3908 Erich
3909 \end_layout
3910
3911 \end_inset
3912 </cell>
3913 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
3914 \begin_inset Text
3915
3916 \begin_layout Plain Layout
3917 111
3918 \end_layout
3919
3920 \end_inset
3921 </cell>
3922 </row>
3923 <row>
3924 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3925 \begin_inset Text
3926
3927 \begin_layout Plain Layout
3928
3929 \series bold
3930 Pochiesa
3931 \end_layout
3932
3933 \end_inset
3934 </cell>
3935 <cell alignment="center" valignment="top" usebox="none">
3936 \begin_inset Text
3937
3938 \begin_layout Plain Layout
3939 Paolo
3940 \end_layout
3941
3942 \end_inset
3943 </cell>
3944 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
3945 \begin_inset Text
3946
3947 \begin_layout Plain Layout
3948 111, 222
3949 \end_layout
3950
3951 \end_inset
3952 </cell>
3953 </row>
3954 <row>
3955 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3956 \begin_inset Text
3957
3958 \begin_layout Plain Layout
3959
3960 \series bold
3961 Radina
3962 \end_layout
3963
3964 \end_inset
3965 </cell>
3966 <cell alignment="center" valignment="top" usebox="none">
3967 \begin_inset Text
3968
3969 \begin_layout Plain Layout
3970 Claudio
3971 \end_layout
3972
3973 \end_inset
3974 </cell>
3975 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
3976 \begin_inset Text
3977
3978 \begin_layout Plain Layout
3979 111
3980 \end_layout
3981
3982 \end_inset
3983 </cell>
3984 </row>
3985 <row>
3986 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3987 \begin_inset Text
3988
3989 \begin_layout Plain Layout
3990
3991 \series bold
3992 Stuffer
3993 \end_layout
3994
3995 \end_inset
3996 </cell>
3997 <cell alignment="center" valignment="top" usebox="none">
3998 \begin_inset Text
3999
4000 \begin_layout Plain Layout
4001 Oskar
4002 \end_layout
4003
4004 \end_inset
4005 </cell>
4006 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4007 \begin_inset Text
4008
4009 \begin_layout Plain Layout
4010 111
4011 \end_layout
4012
4013 \end_inset
4014 </cell>
4015 </row>
4016 <row>
4017 <cell alignment="center" valignment="top" leftline="true" usebox="none">
4018 \begin_inset Text
4019
4020 \begin_layout Plain Layout
4021
4022 \series bold
4023 Tacchelli
4024 \end_layout
4025
4026 \end_inset
4027 </cell>
4028 <cell alignment="center" valignment="top" usebox="none">
4029 \begin_inset Text
4030
4031 \begin_layout Plain Layout
4032 Ugo
4033 \end_layout
4034
4035 \end_inset
4036 </cell>
4037 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4038 \begin_inset Text
4039
4040 \begin_layout Plain Layout
4041 111
4042 \end_layout
4043
4044 \end_inset
4045 </cell>
4046 </row>
4047 <row>
4048 <cell alignment="center" valignment="top" leftline="true" usebox="none">
4049 \begin_inset Text
4050
4051 \begin_layout Plain Layout
4052
4053 \series bold
4054 Tezzele
4055 \end_layout
4056
4057 \end_inset
4058 </cell>
4059 <cell alignment="center" valignment="top" usebox="none">
4060 \begin_inset Text
4061
4062 \begin_layout Plain Layout
4063 Margit
4064 \end_layout
4065
4066 \end_inset
4067 </cell>
4068 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4069 \begin_inset Text
4070
4071 \begin_layout Plain Layout
4072 111
4073 \end_layout
4074
4075 \end_inset
4076 </cell>
4077 </row>
4078 <row>
4079 <cell alignment="center" valignment="top" leftline="true" usebox="none">
4080 \begin_inset Text
4081
4082 \begin_layout Plain Layout
4083
4084 \series bold
4085 Unterkalmsteiner
4086 \end_layout
4087
4088 \end_inset
4089 </cell>
4090 <cell alignment="center" valignment="top" usebox="none">
4091 \begin_inset Text
4092
4093 \begin_layout Plain Layout
4094 Frieda
4095 \end_layout
4096
4097 \end_inset
4098 </cell>
4099 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4100 \begin_inset Text
4101
4102 \begin_layout Plain Layout
4103 111
4104 \end_layout
4105
4106 \end_inset
4107 </cell>
4108 </row>
4109 <row>
4110 <cell alignment="center" valignment="top" leftline="true" usebox="none">
4111 \begin_inset Text
4112
4113 \begin_layout Plain Layout
4114
4115 \series bold
4116 Vieider
4117 \end_layout
4118
4119 \end_inset
4120 </cell>
4121 <cell alignment="center" valignment="top" usebox="none">
4122 \begin_inset Text
4123
4124 \begin_layout Plain Layout
4125 Hilde
4126 \end_layout
4127
4128 \end_inset
4129 </cell>
4130 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4131 \begin_inset Text
4132
4133 \begin_layout Plain Layout
4134 111
4135 \end_layout
4136
4137 \end_inset
4138 </cell>
4139 </row>
4140 <row>
4141 <cell alignment="center" valignment="top" leftline="true" usebox="none">
4142 \begin_inset Text
4143
4144 \begin_layout Plain Layout
4145
4146 \series bold
4147 Vigna
4148 \end_layout
4149
4150 \end_inset
4151 </cell>
4152 <cell alignment="center" valignment="top" usebox="none">
4153 \begin_inset Text
4154
4155 \begin_layout Plain Layout
4156 Jürgen
4157 \end_layout
4158
4159 \end_inset
4160 </cell>
4161 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4162 \begin_inset Text
4163
4164 \begin_layout Plain Layout
4165 111
4166 \end_layout
4167
4168 \end_inset
4169 </cell>
4170 </row>
4171 <row>
4172 <cell alignment="center" valignment="top" leftline="true" usebox="none">
4173 \begin_inset Text
4174
4175 \begin_layout Plain Layout
4176
4177 \series bold
4178 Weber
4179 \end_layout
4180
4181 \end_inset
4182 </cell>
4183 <cell alignment="center" valignment="top" usebox="none">
4184 \begin_inset Text
4185
4186 \begin_layout Plain Layout
4187 Maurizio
4188 \end_layout
4189
4190 \end_inset
4191 </cell>
4192 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4193 \begin_inset Text
4194
4195 \begin_layout Plain Layout
4196 111
4197 \end_layout
4198
4199 \end_inset
4200 </cell>
4201 </row>
4202 <row>
4203 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
4204 \begin_inset Text
4205
4206 \begin_layout Plain Layout
4207
4208 \series bold
4209 Winkler
4210 \end_layout
4211
4212 \end_inset
4213 </cell>
4214 <cell alignment="center" valignment="top" bottomline="true" usebox="none">
4215 \begin_inset Text
4216
4217 \begin_layout Plain Layout
4218 Franz
4219 \end_layout
4220
4221 \end_inset
4222 </cell>
4223 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
4224 \begin_inset Text
4225
4226 \begin_layout Plain Layout
4227 111
4228 \end_layout
4229
4230 \end_inset
4231 </cell>
4232 </row>
4233 <row>
4234 <cell multicolumn="1" alignment="left" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
4235 \begin_inset Text
4236
4237 \begin_layout Plain Layout
4238  
4239 \end_layout
4240
4241 \end_inset
4242 </cell>
4243 <cell multicolumn="2" alignment="center" valignment="top" topline="true" usebox="none">
4244 \begin_inset Text
4245
4246 \begin_layout Plain Layout
4247
4248 \end_layout
4249
4250 \end_inset
4251 </cell>
4252 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4253 \begin_inset Text
4254
4255 \begin_layout Plain Layout
4256
4257 \end_layout
4258
4259 \end_inset
4260 </cell>
4261 </row>
4262 <row>
4263 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4264 \begin_inset Text
4265
4266 \begin_layout Plain Layout
4267
4268 \series bold
4269 Annovi
4270 \end_layout
4271
4272 \end_inset
4273 </cell>
4274 <cell alignment="center" valignment="top" usebox="none">
4275 \begin_inset Text
4276
4277 \begin_layout Plain Layout
4278 Silvia
4279 \end_layout
4280
4281 \end_inset
4282 </cell>
4283 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4284 \begin_inset Text
4285
4286 \begin_layout Plain Layout
4287 555
4288 \end_layout
4289
4290 \end_inset
4291 </cell>
4292 </row>
4293 <row>
4294 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4295 \begin_inset Text
4296
4297 \begin_layout Plain Layout
4298
4299 \series bold
4300 Bertoli
4301 \end_layout
4302
4303 \end_inset
4304 </cell>
4305 <cell alignment="center" valignment="top" usebox="none">
4306 \begin_inset Text
4307
4308 \begin_layout Plain Layout
4309 Stefano
4310 \end_layout
4311
4312 \end_inset
4313 </cell>
4314 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4315 \begin_inset Text
4316
4317 \begin_layout Plain Layout
4318 555
4319 \end_layout
4320
4321 \end_inset
4322 </cell>
4323 </row>
4324 <row>
4325 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4326 \begin_inset Text
4327
4328 \begin_layout Plain Layout
4329
4330 \series bold
4331 Bozzi
4332 \end_layout
4333
4334 \end_inset
4335 </cell>
4336 <cell alignment="center" valignment="top" usebox="none">
4337 \begin_inset Text
4338
4339 \begin_layout Plain Layout
4340 Walter
4341 \end_layout
4342
4343 \end_inset
4344 </cell>
4345 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4346 \begin_inset Text
4347
4348 \begin_layout Plain Layout
4349 555
4350 \end_layout
4351
4352 \end_inset
4353 </cell>
4354 </row>
4355 <row>
4356 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4357 \begin_inset Text
4358
4359 \begin_layout Plain Layout
4360
4361 \series bold
4362 Cachia
4363 \end_layout
4364
4365 \end_inset
4366 </cell>
4367 <cell alignment="center" valignment="top" usebox="none">
4368 \begin_inset Text
4369
4370 \begin_layout Plain Layout
4371 Maria
4372 \end_layout
4373
4374 \end_inset
4375 </cell>
4376 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4377 \begin_inset Text
4378
4379 \begin_layout Plain Layout
4380 555
4381 \end_layout
4382
4383 \end_inset
4384 </cell>
4385 </row>
4386 <row>
4387 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4388 \begin_inset Text
4389
4390 \begin_layout Plain Layout
4391
4392 \series bold
4393 Cachia
4394 \end_layout
4395
4396 \end_inset
4397 </cell>
4398 <cell alignment="center" valignment="top" usebox="none">
4399 \begin_inset Text
4400
4401 \begin_layout Plain Layout
4402 Maurizio
4403 \end_layout
4404
4405 \end_inset
4406 </cell>
4407 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4408 \begin_inset Text
4409
4410 \begin_layout Plain Layout
4411 555
4412 \end_layout
4413
4414 \end_inset
4415 </cell>
4416 </row>
4417 <row>
4418 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4419 \begin_inset Text
4420
4421 \begin_layout Plain Layout
4422
4423 \series bold
4424 Cinquemani
4425 \end_layout
4426
4427 \end_inset
4428 </cell>
4429 <cell alignment="center" valignment="top" usebox="none">
4430 \begin_inset Text
4431
4432 \begin_layout Plain Layout
4433 Giusi
4434 \end_layout
4435
4436 \end_inset
4437 </cell>
4438 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4439 \begin_inset Text
4440
4441 \begin_layout Plain Layout
4442 555
4443 \end_layout
4444
4445 \end_inset
4446 </cell>
4447 </row>
4448 <row>
4449 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4450 \begin_inset Text
4451
4452 \begin_layout Plain Layout
4453
4454 \series bold
4455 Colin
4456 \end_layout
4457
4458 \end_inset
4459 </cell>
4460 <cell alignment="center" valignment="top" usebox="none">
4461 \begin_inset Text
4462
4463 \begin_layout Plain Layout
4464 Bernard
4465 \end_layout
4466
4467 \end_inset
4468 </cell>
4469 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4470 \begin_inset Text
4471
4472 \begin_layout Plain Layout
4473 555
4474 \end_layout
4475
4476 \end_inset
4477 </cell>
4478 </row>
4479 <row>
4480 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4481 \begin_inset Text
4482
4483 \begin_layout Plain Layout
4484
4485 \series bold
4486 Concli
4487 \end_layout
4488
4489 \end_inset
4490 </cell>
4491 <cell alignment="center" valignment="top" usebox="none">
4492 \begin_inset Text
4493
4494 \begin_layout Plain Layout
4495 Gianfranco
4496 \end_layout
4497
4498 \end_inset
4499 </cell>
4500 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4501 \begin_inset Text
4502
4503 \begin_layout Plain Layout
4504 555
4505 \end_layout
4506
4507 \end_inset
4508 </cell>
4509 </row>
4510 <row>
4511 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4512 \begin_inset Text
4513
4514 \begin_layout Plain Layout
4515
4516 \series bold
4517 Dal Bosco
4518 \end_layout
4519
4520 \end_inset
4521 </cell>
4522 <cell alignment="center" valignment="top" usebox="none">
4523 \begin_inset Text
4524
4525 \begin_layout Plain Layout
4526 Carolina
4527 \end_layout
4528
4529 \end_inset
4530 </cell>
4531 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4532 \begin_inset Text
4533
4534 \begin_layout Plain Layout
4535 555
4536 \end_layout
4537
4538 \end_inset
4539 </cell>
4540 </row>
4541 <row>
4542 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4543 \begin_inset Text
4544
4545 \begin_layout Plain Layout
4546
4547 \series bold
4548 Dalpiaz
4549 \end_layout
4550
4551 \end_inset
4552 </cell>
4553 <cell alignment="center" valignment="top" usebox="none">
4554 \begin_inset Text
4555
4556 \begin_layout Plain Layout
4557 Annamaria
4558 \end_layout
4559
4560 \end_inset
4561 </cell>
4562 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4563 \begin_inset Text
4564
4565 \begin_layout Plain Layout
4566 555
4567 \end_layout
4568
4569 \end_inset
4570 </cell>
4571 </row>
4572 <row>
4573 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4574 \begin_inset Text
4575
4576 \begin_layout Plain Layout
4577
4578 \series bold
4579 Feliciello
4580 \end_layout
4581
4582 \end_inset
4583 </cell>
4584 <cell alignment="center" valignment="top" usebox="none">
4585 \begin_inset Text
4586
4587 \begin_layout Plain Layout
4588 Domenico
4589 \end_layout
4590
4591 \end_inset
4592 </cell>
4593 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4594 \begin_inset Text
4595
4596 \begin_layout Plain Layout
4597 555
4598 \end_layout
4599
4600 \end_inset
4601 </cell>
4602 </row>
4603 <row>
4604 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4605 \begin_inset Text
4606
4607 \begin_layout Plain Layout
4608
4609 \series bold
4610 Focarelli
4611 \end_layout
4612
4613 \end_inset
4614 </cell>
4615 <cell alignment="center" valignment="top" usebox="none">
4616 \begin_inset Text
4617
4618 \begin_layout Plain Layout
4619 Paola
4620 \end_layout
4621
4622 \end_inset
4623 </cell>
4624 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4625 \begin_inset Text
4626
4627 \begin_layout Plain Layout
4628 555
4629 \end_layout
4630
4631 \end_inset
4632 </cell>
4633 </row>
4634 <row>
4635 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4636 \begin_inset Text
4637
4638 \begin_layout Plain Layout
4639
4640 \series bold
4641 Galletti
4642 \end_layout
4643
4644 \end_inset
4645 </cell>
4646 <cell alignment="center" valignment="top" usebox="none">
4647 \begin_inset Text
4648
4649 \begin_layout Plain Layout
4650 Oreste
4651 \end_layout
4652
4653 \end_inset
4654 </cell>
4655 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4656 \begin_inset Text
4657
4658 \begin_layout Plain Layout
4659 555
4660 \end_layout
4661
4662 \end_inset
4663 </cell>
4664 </row>
4665 <row>
4666 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4667 \begin_inset Text
4668
4669 \begin_layout Plain Layout
4670
4671 \series bold
4672 Gasparini
4673 \end_layout
4674
4675 \end_inset
4676 </cell>
4677 <cell alignment="center" valignment="top" usebox="none">
4678 \begin_inset Text
4679
4680 \begin_layout Plain Layout
4681 Franca
4682 \end_layout
4683
4684 \end_inset
4685 </cell>
4686 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4687 \begin_inset Text
4688
4689 \begin_layout Plain Layout
4690 555
4691 \end_layout
4692
4693 \end_inset
4694 </cell>
4695 </row>
4696 <row>
4697 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4698 \begin_inset Text
4699
4700 \begin_layout Plain Layout
4701
4702 \series bold
4703 Rizzardi
4704 \end_layout
4705
4706 \end_inset
4707 </cell>
4708 <cell alignment="center" valignment="top" usebox="none">
4709 \begin_inset Text
4710
4711 \begin_layout Plain Layout
4712 Paola
4713 \end_layout
4714
4715 \end_inset
4716 </cell>
4717 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4718 \begin_inset Text
4719
4720 \begin_layout Plain Layout
4721 555
4722 \end_layout
4723
4724 \end_inset
4725 </cell>
4726 </row>
4727 <row>
4728 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4729 \begin_inset Text
4730
4731 \begin_layout Plain Layout
4732
4733 \series bold
4734 Lassini
4735 \end_layout
4736
4737 \end_inset
4738 </cell>
4739 <cell alignment="center" valignment="top" usebox="none">
4740 \begin_inset Text
4741
4742 \begin_layout Plain Layout
4743 Giancarlo
4744 \end_layout
4745
4746 \end_inset
4747 </cell>
4748 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4749 \begin_inset Text
4750
4751 \begin_layout Plain Layout
4752 555
4753 \end_layout
4754
4755 \end_inset
4756 </cell>
4757 </row>
4758 <row>
4759 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4760 \begin_inset Text
4761
4762 \begin_layout Plain Layout
4763
4764 \series bold
4765 Malfatti
4766 \end_layout
4767
4768 \end_inset
4769 </cell>
4770 <cell alignment="center" valignment="top" usebox="none">
4771 \begin_inset Text
4772
4773 \begin_layout Plain Layout
4774 Luciano
4775 \end_layout
4776
4777 \end_inset
4778 </cell>
4779 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4780 \begin_inset Text
4781
4782 \begin_layout Plain Layout
4783 555
4784 \end_layout
4785
4786 \end_inset
4787 </cell>
4788 </row>
4789 <row>
4790 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4791 \begin_inset Text
4792
4793 \begin_layout Plain Layout
4794
4795 \series bold
4796 Malfatti
4797 \end_layout
4798
4799 \end_inset
4800 </cell>
4801 <cell alignment="center" valignment="top" usebox="none">
4802 \begin_inset Text
4803
4804 \begin_layout Plain Layout
4805 Valeriano
4806 \end_layout
4807
4808 \end_inset
4809 </cell>
4810 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4811 \begin_inset Text
4812
4813 \begin_layout Plain Layout
4814 555
4815 \end_layout
4816
4817 \end_inset
4818 </cell>
4819 </row>
4820 <row>
4821 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4822 \begin_inset Text
4823
4824 \begin_layout Plain Layout
4825
4826 \series bold
4827 Meneguzzo
4828 \end_layout
4829
4830 \end_inset
4831 </cell>
4832 <cell alignment="center" valignment="top" usebox="none">
4833 \begin_inset Text
4834
4835 \begin_layout Plain Layout
4836 Roberto
4837 \end_layout
4838
4839 \end_inset
4840 </cell>
4841 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4842 \begin_inset Text
4843
4844 \begin_layout Plain Layout
4845 555
4846 \end_layout
4847
4848 \end_inset
4849 </cell>
4850 </row>
4851 <row>
4852 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4853 \begin_inset Text
4854
4855 \begin_layout Plain Layout
4856
4857 \series bold
4858 Mezzadra
4859 \end_layout
4860
4861 \end_inset
4862 </cell>
4863 <cell alignment="center" valignment="top" usebox="none">
4864 \begin_inset Text
4865
4866 \begin_layout Plain Layout
4867 Roberto
4868 \end_layout
4869
4870 \end_inset
4871 </cell>
4872 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4873 \begin_inset Text
4874
4875 \begin_layout Plain Layout
4876 555
4877 \end_layout
4878
4879 \end_inset
4880 </cell>
4881 </row>
4882 <row>
4883 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4884 \begin_inset Text
4885
4886 \begin_layout Plain Layout
4887
4888 \series bold
4889 Pirpamer
4890 \end_layout
4891
4892 \end_inset
4893 </cell>
4894 <cell alignment="center" valignment="top" usebox="none">
4895 \begin_inset Text
4896
4897 \begin_layout Plain Layout
4898 Erich
4899 \end_layout
4900
4901 \end_inset
4902 </cell>
4903 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4904 \begin_inset Text
4905
4906 \begin_layout Plain Layout
4907 555
4908 \end_layout
4909
4910 \end_inset
4911 </cell>
4912 </row>
4913 <row>
4914 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4915 \begin_inset Text
4916
4917 \begin_layout Plain Layout
4918
4919 \series bold
4920 Pochiesa
4921 \end_layout
4922
4923 \end_inset
4924 </cell>
4925 <cell alignment="center" valignment="top" usebox="none">
4926 \begin_inset Text
4927
4928 \begin_layout Plain Layout
4929 Paolo
4930 \end_layout
4931
4932 \end_inset
4933 </cell>
4934 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4935 \begin_inset Text
4936
4937 \begin_layout Plain Layout
4938 555, 222
4939 \end_layout
4940
4941 \end_inset
4942 </cell>
4943 </row>
4944 <row>
4945 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4946 \begin_inset Text
4947
4948 \begin_layout Plain Layout
4949
4950 \series bold
4951 Radina
4952 \end_layout
4953
4954 \end_inset
4955 </cell>
4956 <cell alignment="center" valignment="top" usebox="none">
4957 \begin_inset Text
4958
4959 \begin_layout Plain Layout
4960 Claudio
4961 \end_layout
4962
4963 \end_inset
4964 </cell>
4965 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4966 \begin_inset Text
4967
4968 \begin_layout Plain Layout
4969 555
4970 \end_layout
4971
4972 \end_inset
4973 </cell>
4974 </row>
4975 <row>
4976 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4977 \begin_inset Text
4978
4979 \begin_layout Plain Layout
4980
4981 \series bold
4982 Stuffer
4983 \end_layout
4984
4985 \end_inset
4986 </cell>
4987 <cell alignment="center" valignment="top" usebox="none">
4988 \begin_inset Text
4989
4990 \begin_layout Plain Layout
4991 Oskar
4992 \end_layout
4993
4994 \end_inset
4995 </cell>
4996 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4997 \begin_inset Text
4998
4999 \begin_layout Plain Layout
5000 555
5001 \end_layout
5002
5003 \end_inset
5004 </cell>
5005 </row>
5006 <row>
5007 <cell alignment="left" valignment="top" leftline="true" usebox="none">
5008 \begin_inset Text
5009
5010 \begin_layout Plain Layout
5011
5012 \series bold
5013 Tacchelli
5014 \end_layout
5015
5016 \end_inset
5017 </cell>
5018 <cell alignment="center" valignment="top" usebox="none">
5019 \begin_inset Text
5020
5021 \begin_layout Plain Layout
5022 Ugo
5023 \end_layout
5024
5025 \end_inset
5026 </cell>
5027 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
5028 \begin_inset Text
5029
5030 \begin_layout Plain Layout
5031 555
5032 \end_layout
5033
5034 \end_inset
5035 </cell>
5036 </row>
5037 <row>
5038 <cell alignment="left" valignment="top" leftline="true" usebox="none">
5039 \begin_inset Text
5040
5041 \begin_layout Plain Layout
5042
5043 \series bold
5044 Tezzele
5045 \end_layout
5046
5047 \end_inset
5048 </cell>
5049 <cell alignment="center" valignment="top" usebox="none">
5050 \begin_inset Text
5051
5052 \begin_layout Plain Layout
5053 Margit
5054 \end_layout
5055
5056 \end_inset
5057 </cell>
5058 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
5059 \begin_inset Text
5060
5061 \begin_layout Plain Layout
5062 555
5063 \end_layout
5064
5065 \end_inset
5066 </cell>
5067 </row>
5068 <row>
5069 <cell alignment="left" valignment="top" leftline="true" usebox="none">
5070 \begin_inset Text
5071
5072 \begin_layout Plain Layout
5073
5074 \series bold
5075 Unterkalmsteiner
5076 \end_layout
5077
5078 \end_inset
5079 </cell>
5080 <cell alignment="center" valignment="top" usebox="none">
5081 \begin_inset Text
5082
5083 \begin_layout Plain Layout
5084 Frieda
5085 \end_layout
5086
5087 \end_inset
5088 </cell>
5089 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
5090 \begin_inset Text
5091
5092 \begin_layout Plain Layout
5093 555
5094 \end_layout
5095
5096 \end_inset
5097 </cell>
5098 </row>
5099 <row>
5100 <cell alignment="left" valignment="top" leftline="true" usebox="none">
5101 \begin_inset Text
5102
5103 \begin_layout Plain Layout
5104
5105 \series bold
5106 Vieider
5107 \end_layout
5108
5109 \end_inset
5110 </cell>
5111 <cell alignment="center" valignment="top" usebox="none">
5112 \begin_inset Text
5113
5114 \begin_layout Plain Layout
5115 Hilde
5116 \end_layout
5117
5118 \end_inset
5119 </cell>
5120 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
5121 \begin_inset Text
5122
5123 \begin_layout Plain Layout
5124 555
5125 \end_layout
5126
5127 \end_inset
5128 </cell>
5129 </row>
5130 <row>
5131 <cell alignment="left" valignment="top" leftline="true" usebox="none">
5132 \begin_inset Text
5133
5134 \begin_layout Plain Layout
5135
5136 \series bold
5137 Vigna
5138 \end_layout
5139
5140 \end_inset
5141 </cell>
5142 <cell alignment="center" valignment="top" usebox="none">
5143 \begin_inset Text
5144
5145 \begin_layout Plain Layout
5146 Jürgen
5147 \end_layout
5148
5149 \end_inset
5150 </cell>
5151 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
5152 \begin_inset Text
5153
5154 \begin_layout Plain Layout
5155 999
5156 \end_layout
5157
5158 \end_inset
5159 </cell>
5160 </row>
5161 <row>
5162 <cell alignment="left" valignment="top" leftline="true" usebox="none">
5163 \begin_inset Text
5164
5165 \begin_layout Plain Layout
5166
5167 \series bold
5168 Weber
5169 \end_layout
5170
5171 \end_inset
5172 </cell>
5173 <cell alignment="center" valignment="top" usebox="none">
5174 \begin_inset Text
5175
5176 \begin_layout Plain Layout
5177 Maurizio
5178 \end_layout
5179
5180 \end_inset
5181 </cell>
5182 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
5183 \begin_inset Text
5184
5185 \begin_layout Plain Layout
5186 555
5187 \end_layout
5188
5189 \end_inset
5190 </cell>
5191 </row>
5192 <row>
5193 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
5194 \begin_inset Text
5195
5196 \begin_layout Plain Layout
5197
5198 \series bold
5199 Winkler
5200 \end_layout
5201
5202 \end_inset
5203 </cell>
5204 <cell alignment="center" valignment="top" bottomline="true" usebox="none">
5205 \begin_inset Text
5206
5207 \begin_layout Plain Layout
5208 Franz
5209 \end_layout
5210
5211 \end_inset
5212 </cell>
5213 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
5214 \begin_inset Text
5215
5216 \begin_layout Plain Layout
5217 555
5218 \end_layout
5219
5220 \end_inset
5221 </cell>
5222 </row>
5223 <row endlastfoot="true">
5224 <cell multicolumn="1" alignment="right" valignment="top" usebox="none">
5225 \begin_inset Text
5226
5227 \begin_layout Plain Layout
5228
5229 \series bold
5230 Ende
5231 \end_layout
5232
5233 \end_inset
5234 </cell>
5235 <cell multicolumn="2" alignment="center" valignment="top" topline="true" usebox="none">
5236 \begin_inset Text
5237
5238 \begin_layout Plain Layout
5239
5240 \end_layout
5241
5242 \end_inset
5243 </cell>
5244 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5245 \begin_inset Text
5246
5247 \begin_layout Plain Layout
5248
5249 \end_layout
5250
5251 \end_inset
5252 </cell>
5253 </row>
5254 </lyxtabular>
5255
5256 \end_inset
5257
5258
5259 \begin_inset ERT
5260 status collapsed
5261
5262 \begin_layout Plain Layout
5263
5264
5265 \backslash
5266 addtocounter{table}{-1}
5267 \end_layout
5268
5269 \end_inset
5270
5271
5272 \begin_inset Note Note
5273 status collapsed
5274
5275 \begin_layout Plain Layout
5276 Die Bedeutung diese Befehle finden Sie in der Bemerkung 1 von Abschnitt
5277 \begin_inset Space ~
5278 \end_inset
5279
5280
5281 \begin_inset CommandInset ref
5282 LatexCommand ref
5283 reference "uab:Titel-für-lange"
5284
5285 \end_inset
5286
5287
5288 \end_layout
5289
5290 \end_inset
5291
5292
5293 \end_layout
5294
5295 \begin_layout Subsection
5296 Fußnoten in langen Tabellen
5297 \begin_inset CommandInset label
5298 LatexCommand label
5299 name "uab:Fußnoten-in-langen"
5300
5301 \end_inset
5302
5303
5304 \begin_inset Index
5305 status collapsed
5306
5307 \begin_layout Plain Layout
5308 Tabellen ! lange ! Fußnoten
5309 \end_layout
5310
5311 \end_inset
5312
5313
5314 \end_layout
5315
5316 \begin_layout Standard
5317 Fußnoten kann man in jede Zelle einer langen Tabelle einfügen.
5318  Sie werden auf der Seite erscheinen, auf der auch die Zelle gedruckt wird.
5319  Tabelle
5320 \begin_inset Space ~
5321 \end_inset
5322
5323
5324 \begin_inset CommandInset ref
5325 LatexCommand ref
5326 reference "tab:DiffCaptions"
5327
5328 \end_inset
5329
5330  hat zum Beispiel eine Fußnote.
5331 \end_layout
5332
5333 \begin_layout Subsection
5334 Ausrichtung langer Tabellen
5335 \begin_inset Index
5336 status collapsed
5337
5338 \begin_layout Plain Layout
5339 Tabellen ! lange ! Ausrichtung
5340 \end_layout
5341
5342 \end_inset
5343
5344
5345 \end_layout
5346
5347 \begin_layout Standard
5348 Lange Tabellen sind standardmäßig zentriert ausgerichtet.
5349  Im Gegensatz zur Ausrichtung von Tabellenspalten und -zeilen kann die Ausrichtu
5350 ng von Tabellen nicht im Tabellen-Dialogfenster geändert werden.
5351  Um die Ausrichtung von langen Tabellen zu ändern, müssen die Werte der
5352  Längen 
5353 \series bold
5354
5355 \backslash
5356 LTleft 
5357 \series default
5358 und 
5359 \series bold
5360
5361 \backslash
5362 LTright
5363 \series default
5364  geändert werden, indem diese Zeile als TeX-Code vor die lange Tabelle eingefügt
5365  wird:
5366 \end_layout
5367
5368 \begin_layout Standard
5369
5370 \series bold
5371
5372 \backslash
5373 setlength{
5374 \backslash
5375 LTleft}{Wert}
5376 \end_layout
5377
5378 \begin_layout Standard
5379 Wobei der Wert eine der in Tabelle
5380 \begin_inset Space ~
5381 \end_inset
5382
5383
5384 \begin_inset CommandInset ref
5385 LatexCommand ref
5386 reference "tab:Maßeinheiten"
5387
5388 \end_inset
5389
5390  aufgelisteten Einheiten haben kann.
5391  
5392 \series bold
5393
5394 \backslash
5395 LTleft
5396 \series default
5397  legt den horizontalen Abstand vom linken Seitenrand bis zur Tabelle fest,
5398  
5399 \series bold
5400
5401 \backslash
5402 LTright
5403 \series default
5404  den Abstand von rechts.
5405  Die Voreinstellung für beide Werte ist 
5406 \series bold
5407
5408 \backslash
5409 fill
5410 \series default
5411 , was in diesem Fall gleichbedeutend mit einem variablen horizontalen Abstand
5412  in LyX ist.
5413 \end_layout
5414
5415 \begin_layout Standard
5416 Die folgende lange Tabelle wurde links ausgerichtet, indem 
5417 \series bold
5418
5419 \backslash
5420 LTleft
5421 \series default
5422  auf den Wert 0
5423 \begin_inset Space \thinspace{}
5424 \end_inset
5425
5426 pt gesetzt wurde.
5427 \begin_inset ERT
5428 status collapsed
5429
5430 \begin_layout Plain Layout
5431
5432
5433 \backslash
5434 setlength{
5435 \backslash
5436 LTleft}{0pt}
5437 \end_layout
5438
5439 \end_inset
5440
5441
5442 \end_layout
5443
5444 \begin_layout Standard
5445 \begin_inset Tabular
5446 <lyxtabular version="3" rows="5" columns="5">
5447 <features islongtable="true">
5448 <column alignment="center" valignment="top" width="0">
5449 <column alignment="center" valignment="top" width="0">
5450 <column alignment="center" valignment="top" width="0">
5451 <column alignment="center" valignment="top" width="0">
5452 <column alignment="center" valignment="top" width="0">
5453 <row>
5454 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5455 \begin_inset Text
5456
5457 \begin_layout Plain Layout
5458 1
5459 \end_layout
5460
5461 \end_inset
5462 </cell>
5463 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5464 \begin_inset Text
5465
5466 \begin_layout Plain Layout
5467 2
5468 \end_layout
5469
5470 \end_inset
5471 </cell>
5472 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5473 \begin_inset Text
5474
5475 \begin_layout Plain Layout
5476 3
5477 \end_layout
5478
5479 \end_inset
5480 </cell>
5481 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5482 \begin_inset Text
5483
5484 \begin_layout Plain Layout
5485 4
5486 \end_layout
5487
5488 \end_inset
5489 </cell>
5490 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5491 \begin_inset Text
5492
5493 \begin_layout Plain Layout
5494 5
5495 \end_layout
5496
5497 \end_inset
5498 </cell>
5499 </row>
5500 <row>
5501 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5502 \begin_inset Text
5503
5504 \begin_layout Plain Layout
5505 asd
5506 \end_layout
5507
5508 \end_inset
5509 </cell>
5510 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5511 \begin_inset Text
5512
5513 \begin_layout Plain Layout
5514 s
5515 \end_layout
5516
5517 \end_inset
5518 </cell>
5519 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5520 \begin_inset Text
5521
5522 \begin_layout Plain Layout
5523 s
5524 \end_layout
5525
5526 \end_inset
5527 </cell>
5528 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5529 \begin_inset Text
5530
5531 \begin_layout Plain Layout
5532 s
5533 \end_layout
5534
5535 \end_inset
5536 </cell>
5537 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5538 \begin_inset Text
5539
5540 \begin_layout Plain Layout
5541 asd
5542 \end_layout
5543
5544 \end_inset
5545 </cell>
5546 </row>
5547 <row>
5548 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5549 \begin_inset Text
5550
5551 \begin_layout Plain Layout
5552 asd
5553 \end_layout
5554
5555 \end_inset
5556 </cell>
5557 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5558 \begin_inset Text
5559
5560 \begin_layout Plain Layout
5561 s
5562 \end_layout
5563
5564 \end_inset
5565 </cell>
5566 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5567 \begin_inset Text
5568
5569 \begin_layout Plain Layout
5570 s
5571 \end_layout
5572
5573 \end_inset
5574 </cell>
5575 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5576 \begin_inset Text
5577
5578 \begin_layout Plain Layout
5579 s
5580 \end_layout
5581
5582 \end_inset
5583 </cell>
5584 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5585 \begin_inset Text
5586
5587 \begin_layout Plain Layout
5588 asd
5589 \end_layout
5590
5591 \end_inset
5592 </cell>
5593 </row>
5594 <row>
5595 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5596 \begin_inset Text
5597
5598 \begin_layout Plain Layout
5599 asd
5600 \end_layout
5601
5602 \end_inset
5603 </cell>
5604 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5605 \begin_inset Text
5606
5607 \begin_layout Plain Layout
5608 s
5609 \end_layout
5610
5611 \end_inset
5612 </cell>
5613 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5614 \begin_inset Text
5615
5616 \begin_layout Plain Layout
5617 s
5618 \end_layout
5619
5620 \end_inset
5621 </cell>
5622 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5623 \begin_inset Text
5624
5625 \begin_layout Plain Layout
5626 s
5627 \end_layout
5628
5629 \end_inset
5630 </cell>
5631 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5632 \begin_inset Text
5633
5634 \begin_layout Plain Layout
5635 asd
5636 \end_layout
5637
5638 \end_inset
5639 </cell>
5640 </row>
5641 <row>
5642 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5643 \begin_inset Text
5644
5645 \begin_layout Plain Layout
5646 asd
5647 \end_layout
5648
5649 \end_inset
5650 </cell>
5651 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5652 \begin_inset Text
5653
5654 \begin_layout Plain Layout
5655 asd
5656 \end_layout
5657
5658 \end_inset
5659 </cell>
5660 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5661 \begin_inset Text
5662
5663 \begin_layout Plain Layout
5664 asd
5665 \end_layout
5666
5667 \end_inset
5668 </cell>
5669 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5670 \begin_inset Text
5671
5672 \begin_layout Plain Layout
5673 asd
5674 \end_layout
5675
5676 \end_inset
5677 </cell>
5678 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5679 \begin_inset Text
5680
5681 \begin_layout Plain Layout
5682 asd
5683 \end_layout
5684
5685 \end_inset
5686 </cell>
5687 </row>
5688 </lyxtabular>
5689
5690 \end_inset
5691
5692
5693 \begin_inset ERT
5694 status collapsed
5695
5696 \begin_layout Plain Layout
5697
5698
5699 \backslash
5700 setlength{
5701 \backslash
5702 LTleft}{
5703 \backslash
5704 fill}
5705 \end_layout
5706
5707 \end_inset
5708
5709
5710 \end_layout
5711
5712 \begin_layout Subsection
5713 Beschriftungen lange Tabellen
5714 \begin_inset Index
5715 status collapsed
5716
5717 \begin_layout Plain Layout
5718 Tabellen ! lange ! Titel
5719 \end_layout
5720
5721 \end_inset
5722
5723
5724 \begin_inset CommandInset label
5725 LatexCommand label
5726 name "uab:Titel-für-lange"
5727
5728 \end_inset
5729
5730
5731 \end_layout
5732
5733 \begin_layout Standard
5734 Eine 
5735 \family sans
5736 lange
5737 \begin_inset Space ~
5738 \end_inset
5739
5740 Tabelle
5741 \family default
5742  kann man nicht in ein Gleitobjekt packen, weil Gleitobjekte nur auf eine
5743  Seite gedruckt werden können.
5744  Aber die 
5745 \family sans
5746 Legende
5747 \family default
5748 -Umgebung von Gleitobjekten kann auch in langen Tabellen benutzt werden.
5749 \end_layout
5750
5751 \begin_layout Standard
5752 Weil LyX das noch nicht völlig unterstützt, muss man ein wenig tricksen:
5753 \end_layout
5754
5755 \begin_layout Enumerate
5756 Erstellen Sie eine 
5757 \family sans
5758 lange
5759 \begin_inset Space ~
5760 \end_inset
5761
5762 Tabelle
5763 \family default
5764 .
5765 \end_layout
5766
5767 \begin_layout Enumerate
5768 Markieren Sie die erste Zeile und entfernen Sie die obere Linie.
5769 \end_layout
5770
5771 \begin_layout Enumerate
5772 Fügen Sie 
5773 \family sans
5774 mit Einfügen\SpecialChar \menuseparator
5775 Legende
5776 \family default
5777  eine Beschriftung in die erste Tabellenzelle.
5778  Sie können auch noch einen Kurztitel hinzufügen, 
5779 \family sans
5780 Einfügen\SpecialChar \menuseparator
5781 Kurztitel
5782 \family default
5783 .
5784 \end_layout
5785
5786 \begin_layout Enumerate
5787 Fügen Sie hinter dem Titel 
5788 \series bold
5789
5790 \begin_inset Quotes gld
5791 \end_inset
5792
5793
5794 \backslash
5795
5796 \backslash
5797 %
5798 \series default
5799
5800 \begin_inset Quotes grd
5801 \end_inset
5802
5803  als TeX-Code ein.
5804 \end_layout
5805
5806 \begin_layout Standard
5807 Ein Kurztitel wird anstatt der richtigen Beschriftung im Tabellenverzeichnis
5808  gedruckt.
5809  Die Zeichen 
5810 \series bold
5811
5812 \begin_inset Quotes gld
5813 \end_inset
5814
5815
5816 \backslash
5817
5818 \backslash
5819 %
5820 \series default
5821
5822 \begin_inset Quotes grd
5823 \end_inset
5824
5825  hinter dem Titel lässt die vertikalen Linien aller Zellen der ersten Zeile
5826  weg.
5827  Die erste Tabellenzeile ist damit nur so eine Platzhalter für die Beschriftung,
5828  und die eigentliche Tabelle beginnt mit der zweiten Zeile.
5829 \end_layout
5830
5831 \begin_layout Standard
5832 Hier ist eine kleine 
5833 \family sans
5834 lange
5835 \begin_inset Space ~
5836 \end_inset
5837
5838 Tabelle
5839 \family default
5840 , die zeigt, wie das funktioniert:
5841 \end_layout
5842
5843 \begin_layout Standard
5844 \begin_inset Tabular
5845 <lyxtabular version="3" rows="6" columns="5">
5846 <features islongtable="true">
5847 <column alignment="center" valignment="top" width="0">
5848 <column alignment="center" valignment="top" width="0">
5849 <column alignment="center" valignment="top" width="0">
5850 <column alignment="center" valignment="top" width="0">
5851 <column alignment="center" valignment="top" width="0">
5852 <row caption="true">
5853 <cell multicolumn="1" alignment="center" valignment="top" usebox="none">
5854 \begin_inset Text
5855
5856 \begin_layout Plain Layout
5857 \begin_inset Caption
5858
5859 \begin_layout Plain Layout
5860 Eine 
5861 \family sans
5862 lange
5863 \begin_inset Space ~
5864 \end_inset
5865
5866 Tabelle
5867 \family default
5868  mit Titel
5869 \begin_inset OptArg
5870 status open
5871
5872 \begin_layout Plain Layout
5873 Lange Tabelle
5874 \end_layout
5875
5876 \end_inset
5877
5878
5879 \end_layout
5880
5881 \end_inset
5882
5883
5884 \end_layout
5885
5886 \end_inset
5887 </cell>
5888 <cell multicolumn="2" alignment="center" valignment="top" leftline="true" usebox="none">
5889 \begin_inset Text
5890
5891 \begin_layout Plain Layout
5892
5893 \end_layout
5894
5895 \end_inset
5896 </cell>
5897 <cell multicolumn="2" alignment="center" valignment="top" leftline="true" usebox="none">
5898 \begin_inset Text
5899
5900 \begin_layout Plain Layout
5901
5902 \end_layout
5903
5904 \end_inset
5905 </cell>
5906 <cell multicolumn="2" alignment="center" valignment="top" leftline="true" usebox="none">
5907 \begin_inset Text
5908
5909 \begin_layout Plain Layout
5910
5911 \end_layout
5912
5913 \end_inset
5914 </cell>
5915 <cell multicolumn="2" alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
5916 \begin_inset Text
5917
5918 \begin_layout Plain Layout
5919
5920 \end_layout
5921
5922 \end_inset
5923 </cell>
5924 </row>
5925 <row>
5926 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5927 \begin_inset Text
5928
5929 \begin_layout Plain Layout
5930 1
5931 \end_layout
5932
5933 \end_inset
5934 </cell>
5935 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5936 \begin_inset Text
5937
5938 \begin_layout Plain Layout
5939 2
5940 \end_layout
5941
5942 \end_inset
5943 </cell>
5944 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5945 \begin_inset Text
5946
5947 \begin_layout Plain Layout
5948 3
5949 \end_layout
5950
5951 \end_inset
5952 </cell>
5953 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5954 \begin_inset Text
5955
5956 \begin_layout Plain Layout
5957 4
5958 \end_layout
5959
5960 \end_inset
5961 </cell>
5962 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5963 \begin_inset Text
5964
5965 \begin_layout Plain Layout
5966 5
5967 \end_layout
5968
5969 \end_inset
5970 </cell>
5971 </row>
5972 <row>
5973 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5974 \begin_inset Text
5975
5976 \begin_layout Plain Layout
5977 asd
5978 \end_layout
5979
5980 \end_inset
5981 </cell>
5982 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5983 \begin_inset Text
5984
5985 \begin_layout Plain Layout
5986 s
5987 \end_layout
5988
5989 \end_inset
5990 </cell>
5991 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5992 \begin_inset Text
5993
5994 \begin_layout Plain Layout
5995 s
5996 \end_layout
5997
5998 \end_inset
5999 </cell>
6000 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6001 \begin_inset Text
6002
6003 \begin_layout Plain Layout
6004 s
6005 \end_layout
6006
6007 \end_inset
6008 </cell>
6009 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6010 \begin_inset Text
6011
6012 \begin_layout Plain Layout
6013 asd
6014 \end_layout
6015
6016 \end_inset
6017 </cell>
6018 </row>
6019 <row>
6020 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6021 \begin_inset Text
6022
6023 \begin_layout Plain Layout
6024 asd
6025 \end_layout
6026
6027 \end_inset
6028 </cell>
6029 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6030 \begin_inset Text
6031
6032 \begin_layout Plain Layout
6033 s
6034 \end_layout
6035
6036 \end_inset
6037 </cell>
6038 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6039 \begin_inset Text
6040
6041 \begin_layout Plain Layout
6042 s
6043 \end_layout
6044
6045 \end_inset
6046 </cell>
6047 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6048 \begin_inset Text
6049
6050 \begin_layout Plain Layout
6051 s
6052 \end_layout
6053
6054 \end_inset
6055 </cell>
6056 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6057 \begin_inset Text
6058
6059 \begin_layout Plain Layout
6060 asd
6061 \end_layout
6062
6063 \end_inset
6064 </cell>
6065 </row>
6066 <row>
6067 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6068 \begin_inset Text
6069
6070 \begin_layout Plain Layout
6071 asd
6072 \end_layout
6073
6074 \end_inset
6075 </cell>
6076 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6077 \begin_inset Text
6078
6079 \begin_layout Plain Layout
6080 s
6081 \end_layout
6082
6083 \end_inset
6084 </cell>
6085 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6086 \begin_inset Text
6087
6088 \begin_layout Plain Layout
6089 s
6090 \end_layout
6091
6092 \end_inset
6093 </cell>
6094 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6095 \begin_inset Text
6096
6097 \begin_layout Plain Layout
6098 s
6099 \end_layout
6100
6101 \end_inset
6102 </cell>
6103 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6104 \begin_inset Text
6105
6106 \begin_layout Plain Layout
6107 asd
6108 \end_layout
6109
6110 \end_inset
6111 </cell>
6112 </row>
6113 <row>
6114 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6115 \begin_inset Text
6116
6117 \begin_layout Plain Layout
6118 asd
6119 \end_layout
6120
6121 \end_inset
6122 </cell>
6123 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6124 \begin_inset Text
6125
6126 \begin_layout Plain Layout
6127 asd
6128 \end_layout
6129
6130 \end_inset
6131 </cell>
6132 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6133 \begin_inset Text
6134
6135 \begin_layout Plain Layout
6136 asd
6137 \end_layout
6138
6139 \end_inset
6140 </cell>
6141 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6142 \begin_inset Text
6143
6144 \begin_layout Plain Layout
6145 asd
6146 \end_layout
6147
6148 \end_inset
6149 </cell>
6150 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6151 \begin_inset Text
6152
6153 \begin_layout Plain Layout
6154 asd
6155 \end_layout
6156
6157 \end_inset
6158 </cell>
6159 </row>
6160 </lyxtabular>
6161
6162 \end_inset
6163
6164
6165 \end_layout
6166
6167 \begin_layout Standard
6168 \begin_inset VSpace medskip
6169 \end_inset
6170
6171
6172 \begin_inset Note Greyedout
6173 status open
6174
6175 \begin_layout Plain Layout
6176
6177 \series bold
6178 Bemerkung
6179 \begin_inset Space ~
6180 \end_inset
6181
6182 1:
6183 \series default
6184  Die Tabellennummer wird für jede 
6185 \family sans
6186 lange
6187 \begin_inset Space ~
6188 \end_inset
6189
6190 Tabelle
6191 \family default
6192  erhöht, auch wenn Sie keinen Titel vergeben.
6193  Deshalb könnte es passieren, dass zum Beispiel Tabelle
6194 \begin_inset Space ~
6195 \end_inset
6196
6197 2.4 auf Tabelle
6198 \begin_inset Space ~
6199 \end_inset
6200
6201 2.1 im Tabellenverzeichnis folgt, wenn dazwischen zwei
6202 \family sans
6203  lange
6204 \begin_inset Space ~
6205 \end_inset
6206
6207 Tabellen
6208 \family default
6209  ohne Titel sind.
6210  Um das zu vermeiden, können Sie hinter jede 
6211 \family sans
6212 lange
6213 \begin_inset Space ~
6214 \end_inset
6215
6216 Tabelle
6217 \family default
6218  ohne Titel folgenden LaTeX-Befehl als TeX-Code einfügen:
6219 \end_layout
6220
6221 \begin_layout Plain Layout
6222
6223 \series bold
6224
6225 \backslash
6226 addtocounter{table}{-1}
6227 \end_layout
6228
6229 \end_inset
6230
6231
6232 \end_layout
6233
6234 \begin_layout Standard
6235 \begin_inset Note Greyedout
6236 status open
6237
6238 \begin_layout Plain Layout
6239
6240 \series bold
6241 Bemerkung
6242 \begin_inset Space ~
6243 \end_inset
6244
6245 2:
6246 \series default
6247  Wenn Sie das LaTeX-Paket 
6248 \series bold
6249 hyperref
6250 \series default
6251
6252 \begin_inset Index
6253 status collapsed
6254
6255 \begin_layout Plain Layout
6256 LaTeX-Pakete ! hyperref
6257 \end_layout
6258
6259 \end_inset
6260
6261  für Querverweise benutzen, wird der Verweis auf eine 
6262 \family sans
6263 lange
6264 \begin_inset Space ~
6265 \end_inset
6266
6267 Tabelle
6268 \family default
6269  immer auf den Anfang des Dokuments zeigen.
6270 \end_layout
6271
6272 \end_inset
6273
6274
6275 \begin_inset Newpage newpage
6276 \end_inset
6277
6278
6279 \end_layout
6280
6281 \begin_layout Subsubsection
6282 Querverweise auf 
6283 \family sans
6284 lange
6285 \begin_inset Space ~
6286 \end_inset
6287
6288 Tabelle
6289 \family default
6290 n
6291 \begin_inset Index
6292 status collapsed
6293
6294 \begin_layout Plain Layout
6295 Tabellen ! lange ! Querverweis
6296 \end_layout
6297
6298 \end_inset
6299
6300
6301 \end_layout
6302
6303 \begin_layout Standard
6304 \begin_inset Tabular
6305 <lyxtabular version="3" rows="6" columns="5">
6306 <features islongtable="true">
6307 <column alignment="center" valignment="top" width="0">
6308 <column alignment="center" valignment="top" width="0">
6309 <column alignment="center" valignment="top" width="0">
6310 <column alignment="center" valignment="top" width="0">
6311 <column alignment="center" valignment="top" width="0">
6312 <row caption="true">
6313 <cell multicolumn="1" alignment="center" valignment="top" usebox="none">
6314 \begin_inset Text
6315
6316 \begin_layout Plain Layout
6317 \begin_inset Caption
6318
6319 \begin_layout Plain Layout
6320
6321 \family sans
6322 Lange
6323 \begin_inset Space ~
6324 \end_inset
6325
6326 Tabelle
6327 \family default
6328  mit Marke
6329 \begin_inset CommandInset label
6330 LatexCommand label
6331 name "tab:LangeTabelle-mit-Marke"
6332
6333 \end_inset
6334
6335
6336 \end_layout
6337
6338 \end_inset
6339
6340
6341 \end_layout
6342
6343 \end_inset
6344 </cell>
6345 <cell multicolumn="2" alignment="center" valignment="top" leftline="true" usebox="none">
6346 \begin_inset Text
6347
6348 \begin_layout Plain Layout
6349
6350 \end_layout
6351
6352 \end_inset
6353 </cell>
6354 <cell multicolumn="2" alignment="center" valignment="top" leftline="true" usebox="none">
6355 \begin_inset Text
6356
6357 \begin_layout Plain Layout
6358
6359 \end_layout
6360
6361 \end_inset
6362 </cell>
6363 <cell multicolumn="2" alignment="center" valignment="top" leftline="true" usebox="none">
6364 \begin_inset Text
6365
6366 \begin_layout Plain Layout
6367
6368 \end_layout
6369
6370 \end_inset
6371 </cell>
6372 <cell multicolumn="2" alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
6373 \begin_inset Text
6374
6375 \begin_layout Plain Layout
6376
6377 \end_layout
6378
6379 \end_inset
6380 </cell>
6381 </row>
6382 <row>
6383 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6384 \begin_inset Text
6385
6386 \begin_layout Plain Layout
6387 1
6388 \end_layout
6389
6390 \end_inset
6391 </cell>
6392 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6393 \begin_inset Text
6394
6395 \begin_layout Plain Layout
6396 2
6397 \end_layout
6398
6399 \end_inset
6400 </cell>
6401 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6402 \begin_inset Text
6403
6404 \begin_layout Plain Layout
6405 3
6406 \end_layout
6407
6408 \end_inset
6409 </cell>
6410 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6411 \begin_inset Text
6412
6413 \begin_layout Plain Layout
6414 4
6415 \end_layout
6416
6417 \end_inset
6418 </cell>
6419 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6420 \begin_inset Text
6421
6422 \begin_layout Plain Layout
6423 5
6424 \end_layout
6425
6426 \end_inset
6427 </cell>
6428 </row>
6429 <row>
6430 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6431 \begin_inset Text
6432
6433 \begin_layout Plain Layout
6434 asd
6435 \end_layout
6436
6437 \end_inset
6438 </cell>
6439 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6440 \begin_inset Text
6441
6442 \begin_layout Plain Layout
6443 s
6444 \end_layout
6445
6446 \end_inset
6447 </cell>
6448 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6449 \begin_inset Text
6450
6451 \begin_layout Plain Layout
6452 s
6453 \end_layout
6454
6455 \end_inset
6456 </cell>
6457 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6458 \begin_inset Text
6459
6460 \begin_layout Plain Layout
6461 s
6462 \end_layout
6463
6464 \end_inset
6465 </cell>
6466 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6467 \begin_inset Text
6468
6469 \begin_layout Plain Layout
6470 asd
6471 \end_layout
6472
6473 \end_inset
6474 </cell>
6475 </row>
6476 <row>
6477 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6478 \begin_inset Text
6479
6480 \begin_layout Plain Layout
6481 asd
6482 \end_layout
6483
6484 \end_inset
6485 </cell>
6486 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6487 \begin_inset Text
6488
6489 \begin_layout Plain Layout
6490 s
6491 \end_layout
6492
6493 \end_inset
6494 </cell>
6495 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6496 \begin_inset Text
6497
6498 \begin_layout Plain Layout
6499 s
6500 \end_layout
6501
6502 \end_inset
6503 </cell>
6504 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6505 \begin_inset Text
6506
6507 \begin_layout Plain Layout
6508 s
6509 \end_layout
6510
6511 \end_inset
6512 </cell>
6513 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6514 \begin_inset Text
6515
6516 \begin_layout Plain Layout
6517 asd
6518 \end_layout
6519
6520 \end_inset
6521 </cell>
6522 </row>
6523 <row>
6524 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6525 \begin_inset Text
6526
6527 \begin_layout Plain Layout
6528 asd
6529 \end_layout
6530
6531 \end_inset
6532 </cell>
6533 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6534 \begin_inset Text
6535
6536 \begin_layout Plain Layout
6537 s
6538 \end_layout
6539
6540 \end_inset
6541 </cell>
6542 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6543 \begin_inset Text
6544
6545 \begin_layout Plain Layout
6546 s
6547 \end_layout
6548
6549 \end_inset
6550 </cell>
6551 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6552 \begin_inset Text
6553
6554 \begin_layout Plain Layout
6555 s
6556 \end_layout
6557
6558 \end_inset
6559 </cell>
6560 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6561 \begin_inset Text
6562
6563 \begin_layout Plain Layout
6564 asd
6565 \end_layout
6566
6567 \end_inset
6568 </cell>
6569 </row>
6570 <row>
6571 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6572 \begin_inset Text
6573
6574 \begin_layout Plain Layout
6575 asd
6576 \end_layout
6577
6578 \end_inset
6579 </cell>
6580 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6581 \begin_inset Text
6582
6583 \begin_layout Plain Layout
6584 sad
6585 \end_layout
6586
6587 \end_inset
6588 </cell>
6589 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6590 \begin_inset Text
6591
6592 \begin_layout Plain Layout
6593 asd
6594 \end_layout
6595
6596 \end_inset
6597 </cell>
6598 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6599 \begin_inset Text
6600
6601 \begin_layout Plain Layout
6602 asd
6603 \end_layout
6604
6605 \end_inset
6606 </cell>
6607 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6608 \begin_inset Text
6609
6610 \begin_layout Plain Layout
6611 asd
6612 \end_layout
6613
6614 \end_inset
6615 </cell>
6616 </row>
6617 </lyxtabular>
6618
6619 \end_inset
6620
6621
6622 \end_layout
6623
6624 \begin_layout Standard
6625 Damit auf eine 
6626 \family sans
6627 lange
6628 \begin_inset Space ~
6629 \end_inset
6630
6631 Tabelle
6632 \family default
6633  verwiesen werden kann, müssen Sie eine 
6634 \family sans
6635 Marke
6636 \family default
6637  im Titel einfügen.
6638  Beachten Sie dabei, dass Sie 
6639 \emph on
6640
6641 \begin_inset Quotes gld
6642 \end_inset
6643
6644 tab:
6645 \emph default
6646
6647 \begin_inset Quotes grd
6648 \end_inset
6649
6650  selber ins Markenfeld schreiben müssen.
6651 \end_layout
6652
6653 \begin_layout Standard
6654 Dies ist ein Verweis auf Tabelle
6655 \begin_inset Space ~
6656 \end_inset
6657
6658
6659 \begin_inset CommandInset ref
6660 LatexCommand ref
6661 reference "tab:LangeTabelle-mit-Marke"
6662
6663 \end_inset
6664
6665 .
6666 \end_layout
6667
6668 \begin_layout Standard
6669 Mit dem LaTeX-Paket 
6670 \series bold
6671 caption
6672 \series default
6673
6674 \begin_inset Index
6675 status collapsed
6676
6677 \begin_layout Plain Layout
6678 LaTeX-Pakete ! caption
6679 \end_layout
6680
6681 \end_inset
6682
6683 , siehe Abschnitt
6684 \begin_inset Space ~
6685 \end_inset
6686
6687
6688 \begin_inset CommandInset ref
6689 LatexCommand ref
6690 reference "abs:Titel-Formatierung"
6691
6692 \end_inset
6693
6694 , können Sie alle anderen 
6695 \family sans
6696 Legende
6697 \family default
6698 -Optionen benutzen.
6699 \end_layout
6700
6701 \begin_layout Subsubsection
6702 Titelbreite
6703 \begin_inset Index
6704 status collapsed
6705
6706 \begin_layout Plain Layout
6707 Tabellen ! lange ! Beschriftungsbreite
6708 \end_layout
6709
6710 \end_inset
6711
6712
6713 \end_layout
6714
6715 \begin_layout Standard
6716 Die maximale Titelbreite wird durch die Variable 
6717 \series bold
6718
6719 \backslash
6720 LTcapwidth
6721 \series default
6722  definiert.
6723  Ihr Standardwert ist 4
6724 \begin_inset Space \thinspace{}
6725 \end_inset
6726
6727 Zoll (
6728 \begin_inset Formula $\approx10$
6729 \end_inset
6730
6731
6732 \begin_inset Space \thinspace{}
6733 \end_inset
6734
6735 cm).
6736  Um das zu ändern, können Sie entweder im LaTeX-Vorspann oder als TeX-Code
6737  vor der betreffenden Tabelle folgenden Befehl einsetzen:
6738 \end_layout
6739
6740 \begin_layout Standard
6741
6742 \series bold
6743
6744 \backslash
6745 setlength{
6746 \backslash
6747 LTcapwidth}{Breite}
6748 \end_layout
6749
6750 \begin_layout Standard
6751 wobei 
6752 \family typewriter
6753 Breite
6754 \family default
6755  eine der in Anhang
6756 \begin_inset Space ~
6757 \end_inset
6758
6759
6760 \begin_inset CommandInset ref
6761 LatexCommand ref
6762 reference "kap:In-LyX-verfügbare"
6763
6764 \end_inset
6765
6766  aufgelisteten Einheiten haben kann.
6767 \end_layout
6768
6769 \begin_layout Standard
6770 Die beiden folgenden Tabellen zeigen den Unterschied:
6771 \end_layout
6772
6773 \begin_layout Standard
6774 \begin_inset Tabular
6775 <lyxtabular version="3" rows="6" columns="5">
6776 <features islongtable="true">
6777 <column alignment="center" valignment="top" width="0">
6778 <column alignment="center" valignment="top" width="0">
6779 <column alignment="center" valignment="top" width="0">
6780 <column alignment="center" valignment="top" width="0">
6781 <column alignment="center" valignment="top" width="0">
6782 <row caption="true">
6783 <cell multicolumn="1" alignment="center" valignment="top" usebox="none">
6784 \begin_inset Text
6785
6786 \begin_layout Plain Layout
6787 \begin_inset Caption
6788
6789 \begin_layout Plain Layout
6790 Langer Titel mit Standardbreite, Langer Titel mit Standardbreite, Langer
6791  Titel 
6792 \begin_inset OptArg
6793 status open
6794
6795 \begin_layout Plain Layout
6796 Titel mit Standardbreite
6797 \end_layout
6798
6799 \end_inset
6800
6801
6802 \end_layout
6803
6804 \end_inset
6805
6806
6807 \end_layout
6808
6809 \end_inset
6810 </cell>
6811 <cell multicolumn="2" alignment="center" valignment="top" leftline="true" usebox="none">
6812 \begin_inset Text
6813
6814 \begin_layout Plain Layout
6815
6816 \end_layout
6817
6818 \end_inset
6819 </cell>
6820 <cell multicolumn="2" alignment="center" valignment="top" leftline="true" usebox="none">
6821 \begin_inset Text
6822
6823 \begin_layout Plain Layout
6824
6825 \end_layout
6826
6827 \end_inset
6828 </cell>
6829 <cell multicolumn="2" alignment="center" valignment="top" leftline="true" usebox="none">
6830 \begin_inset Text
6831
6832 \begin_layout Plain Layout
6833
6834 \end_layout
6835
6836 \end_inset
6837 </cell>
6838 <cell multicolumn="2" alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
6839 \begin_inset Text
6840
6841 \begin_layout Plain Layout
6842
6843 \end_layout
6844
6845 \end_inset
6846 </cell>
6847 </row>
6848 <row>
6849 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6850 \begin_inset Text
6851
6852 \begin_layout Plain Layout
6853 1
6854 \end_layout
6855
6856 \end_inset
6857 </cell>
6858 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6859 \begin_inset Text
6860
6861 \begin_layout Plain Layout
6862 2
6863 \end_layout
6864
6865 \end_inset
6866 </cell>
6867 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6868 \begin_inset Text
6869
6870 \begin_layout Plain Layout
6871 3
6872 \end_layout
6873
6874 \end_inset
6875 </cell>
6876 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6877 \begin_inset Text
6878
6879 \begin_layout Plain Layout
6880 4
6881 \end_layout
6882
6883 \end_inset
6884 </cell>
6885 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6886 \begin_inset Text
6887
6888 \begin_layout Plain Layout
6889 5
6890 \end_layout
6891
6892 \end_inset
6893 </cell>
6894 </row>
6895 <row>
6896 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6897 \begin_inset Text
6898
6899 \begin_layout Plain Layout
6900 asd
6901 \end_layout
6902
6903 \end_inset
6904 </cell>
6905 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6906 \begin_inset Text
6907
6908 \begin_layout Plain Layout
6909 s
6910 \end_layout
6911
6912 \end_inset
6913 </cell>
6914 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6915 \begin_inset Text
6916
6917 \begin_layout Plain Layout
6918 s
6919 \end_layout
6920
6921 \end_inset
6922 </cell>
6923 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6924 \begin_inset Text
6925
6926 \begin_layout Plain Layout
6927 s
6928 \end_layout
6929
6930 \end_inset
6931 </cell>
6932 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6933 \begin_inset Text
6934
6935 \begin_layout Plain Layout
6936 asd
6937 \end_layout
6938
6939 \end_inset
6940 </cell>
6941 </row>
6942 <row>
6943 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6944 \begin_inset Text
6945
6946 \begin_layout Plain Layout
6947 asd
6948 \end_layout
6949
6950 \end_inset
6951 </cell>
6952 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6953 \begin_inset Text
6954
6955 \begin_layout Plain Layout
6956 s
6957 \end_layout
6958
6959 \end_inset
6960 </cell>
6961 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6962 \begin_inset Text
6963
6964 \begin_layout Plain Layout
6965 s
6966 \end_layout
6967
6968 \end_inset
6969 </cell>
6970 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6971 \begin_inset Text
6972
6973 \begin_layout Plain Layout
6974 s
6975 \end_layout
6976
6977 \end_inset
6978 </cell>
6979 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6980 \begin_inset Text
6981
6982 \begin_layout Plain Layout
6983 asd
6984 \end_layout
6985
6986 \end_inset
6987 </cell>
6988 </row>
6989 <row>
6990 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6991 \begin_inset Text
6992
6993 \begin_layout Plain Layout
6994 asd
6995 \end_layout
6996
6997 \end_inset
6998 </cell>
6999 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7000 \begin_inset Text
7001
7002 \begin_layout Plain Layout
7003 s
7004 \end_layout
7005
7006 \end_inset
7007 </cell>
7008 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7009 \begin_inset Text
7010
7011 \begin_layout Plain Layout
7012 s
7013 \end_layout
7014
7015 \end_inset
7016 </cell>
7017 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7018 \begin_inset Text
7019
7020 \begin_layout Plain Layout
7021 s
7022 \end_layout
7023
7024 \end_inset
7025 </cell>
7026 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7027 \begin_inset Text
7028
7029 \begin_layout Plain Layout
7030 asd
7031 \end_layout
7032
7033 \end_inset
7034 </cell>
7035 </row>
7036 <row>
7037 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7038 \begin_inset Text
7039
7040 \begin_layout Plain Layout
7041 asd
7042 \end_layout
7043
7044 \end_inset
7045 </cell>
7046 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7047 \begin_inset Text
7048
7049 \begin_layout Plain Layout
7050 sad
7051 \end_layout
7052
7053 \end_inset
7054 </cell>
7055 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7056 \begin_inset Text
7057
7058 \begin_layout Plain Layout
7059 asd
7060 \end_layout
7061
7062 \end_inset
7063 </cell>
7064 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7065 \begin_inset Text
7066
7067 \begin_layout Plain Layout
7068 asd
7069 \end_layout
7070
7071 \end_inset
7072 </cell>
7073 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7074 \begin_inset Text
7075
7076 \begin_layout Plain Layout
7077 asd
7078 \end_layout
7079
7080 \end_inset
7081 </cell>
7082 </row>
7083 </lyxtabular>
7084
7085 \end_inset
7086
7087
7088 \end_layout
7089
7090 \begin_layout Standard
7091 \begin_inset ERT
7092 status collapsed
7093
7094 \begin_layout Plain Layout
7095
7096
7097 \backslash
7098 setlength{
7099 \backslash
7100 LTcapwidth}{5cm}
7101 \end_layout
7102
7103 \end_inset
7104
7105
7106 \begin_inset Tabular
7107 <lyxtabular version="3" rows="6" columns="5">
7108 <features islongtable="true">
7109 <column alignment="center" valignment="top" width="0">
7110 <column alignment="center" valignment="top" width="0">
7111 <column alignment="center" valignment="top" width="0">
7112 <column alignment="center" valignment="top" width="0">
7113 <column alignment="center" valignment="top" width="0">
7114 <row caption="true">
7115 <cell multicolumn="1" alignment="center" valignment="top" usebox="none">
7116 \begin_inset Text
7117
7118 \begin_layout Plain Layout
7119 \begin_inset Caption
7120
7121 \begin_layout Plain Layout
7122 Langer Titel mit 5
7123 \begin_inset Space \thinspace{}
7124 \end_inset
7125
7126 cm Breite, Langer Titel mit 5
7127 \begin_inset Space \thinspace{}
7128 \end_inset
7129
7130 cm Breite, Langer Titel mit 5
7131 \begin_inset Space \thinspace{}
7132 \end_inset
7133
7134 cm Breite, Langer Titel mit 5
7135 \begin_inset Space \thinspace{}
7136 \end_inset
7137
7138 cm Breite 
7139 \begin_inset OptArg
7140 status open
7141
7142 \begin_layout Plain Layout
7143 Titel mit 5
7144 \begin_inset Space \thinspace{}
7145 \end_inset
7146
7147 cm Breite
7148 \end_layout
7149
7150 \end_inset
7151
7152
7153 \end_layout
7154
7155 \end_inset
7156
7157
7158 \end_layout
7159
7160 \end_inset
7161 </cell>
7162 <cell multicolumn="2" alignment="center" valignment="top" leftline="true" usebox="none">
7163 \begin_inset Text
7164
7165 \begin_layout Plain Layout
7166
7167 \end_layout
7168
7169 \end_inset
7170 </cell>
7171 <cell multicolumn="2" alignment="center" valignment="top" leftline="true" usebox="none">
7172 \begin_inset Text
7173
7174 \begin_layout Plain Layout
7175
7176 \end_layout
7177
7178 \end_inset
7179 </cell>
7180 <cell multicolumn="2" alignment="center" valignment="top" leftline="true" usebox="none">
7181 \begin_inset Text
7182
7183 \begin_layout Plain Layout
7184
7185 \end_layout
7186
7187 \end_inset
7188 </cell>
7189 <cell multicolumn="2" alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
7190 \begin_inset Text
7191
7192 \begin_layout Plain Layout
7193
7194 \end_layout
7195
7196 \end_inset
7197 </cell>
7198 </row>
7199 <row>
7200 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7201 \begin_inset Text
7202
7203 \begin_layout Plain Layout
7204 1
7205 \end_layout
7206
7207 \end_inset
7208 </cell>
7209 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7210 \begin_inset Text
7211
7212 \begin_layout Plain Layout
7213 2
7214 \end_layout
7215
7216 \end_inset
7217 </cell>
7218 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7219 \begin_inset Text
7220
7221 \begin_layout Plain Layout
7222 3
7223 \end_layout
7224
7225 \end_inset
7226 </cell>
7227 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7228 \begin_inset Text
7229
7230 \begin_layout Plain Layout
7231 4
7232 \end_layout
7233
7234 \end_inset
7235 </cell>
7236 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7237 \begin_inset Text
7238
7239 \begin_layout Plain Layout
7240 5
7241 \end_layout
7242
7243 \end_inset
7244 </cell>
7245 </row>
7246 <row>
7247 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7248 \begin_inset Text
7249
7250 \begin_layout Plain Layout
7251 asd
7252 \end_layout
7253
7254 \end_inset
7255 </cell>
7256 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7257 \begin_inset Text
7258
7259 \begin_layout Plain Layout
7260 s
7261 \end_layout
7262
7263 \end_inset
7264 </cell>
7265 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7266 \begin_inset Text
7267
7268 \begin_layout Plain Layout
7269 s
7270 \end_layout
7271
7272 \end_inset
7273 </cell>
7274 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7275 \begin_inset Text
7276
7277 \begin_layout Plain Layout
7278 s
7279 \end_layout
7280
7281 \end_inset
7282 </cell>
7283 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7284 \begin_inset Text
7285
7286 \begin_layout Plain Layout
7287 asd
7288 \end_layout
7289
7290 \end_inset
7291 </cell>
7292 </row>
7293 <row>
7294 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7295 \begin_inset Text
7296
7297 \begin_layout Plain Layout
7298 asd
7299 \end_layout
7300
7301 \end_inset
7302 </cell>
7303 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7304 \begin_inset Text
7305
7306 \begin_layout Plain Layout
7307 s
7308 \end_layout
7309
7310 \end_inset
7311 </cell>
7312 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7313 \begin_inset Text
7314
7315 \begin_layout Plain Layout
7316 s
7317 \end_layout
7318
7319 \end_inset
7320 </cell>
7321 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7322 \begin_inset Text
7323
7324 \begin_layout Plain Layout
7325 s
7326 \end_layout
7327
7328 \end_inset
7329 </cell>
7330 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7331 \begin_inset Text
7332
7333 \begin_layout Plain Layout
7334 asd
7335 \end_layout
7336
7337 \end_inset
7338 </cell>
7339 </row>
7340 <row>
7341 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7342 \begin_inset Text
7343
7344 \begin_layout Plain Layout
7345 asd
7346 \end_layout
7347
7348 \end_inset
7349 </cell>
7350 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7351 \begin_inset Text
7352
7353 \begin_layout Plain Layout
7354 s
7355 \end_layout
7356
7357 \end_inset
7358 </cell>
7359 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7360 \begin_inset Text
7361
7362 \begin_layout Plain Layout
7363 s
7364 \end_layout
7365
7366 \end_inset
7367 </cell>
7368 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7369 \begin_inset Text
7370
7371 \begin_layout Plain Layout
7372 s
7373 \end_layout
7374
7375 \end_inset
7376 </cell>
7377 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7378 \begin_inset Text
7379
7380 \begin_layout Plain Layout
7381 asd
7382 \end_layout
7383
7384 \end_inset
7385 </cell>
7386 </row>
7387 <row>
7388 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7389 \begin_inset Text
7390
7391 \begin_layout Plain Layout
7392 asd
7393 \end_layout
7394
7395 \end_inset
7396 </cell>
7397 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7398 \begin_inset Text
7399
7400 \begin_layout Plain Layout
7401 sad
7402 \end_layout
7403
7404 \end_inset
7405 </cell>
7406 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7407 \begin_inset Text
7408
7409 \begin_layout Plain Layout
7410 asd
7411 \end_layout
7412
7413 \end_inset
7414 </cell>
7415 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7416 \begin_inset Text
7417
7418 \begin_layout Plain Layout
7419 asd
7420 \end_layout
7421
7422 \end_inset
7423 </cell>
7424 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7425 \begin_inset Text
7426
7427 \begin_layout Plain Layout
7428 asd
7429 \end_layout
7430
7431 \end_inset
7432 </cell>
7433 </row>
7434 </lyxtabular>
7435
7436 \end_inset
7437
7438
7439 \begin_inset ERT
7440 status collapsed
7441
7442 \begin_layout Plain Layout
7443
7444
7445 \backslash
7446 setlength{
7447 \backslash
7448 LTcapwidth}{4in}
7449 \end_layout
7450
7451 \end_inset
7452
7453
7454 \begin_inset Note Note
7455 status collapsed
7456
7457 \begin_layout Plain Layout
7458 Beschriftungsbreite zurücksetzen
7459 \end_layout
7460
7461 \end_inset
7462
7463
7464 \end_layout
7465
7466 \begin_layout Standard
7467 \begin_inset Note Greyedout
7468 status open
7469
7470 \begin_layout Plain Layout
7471
7472 \series bold
7473 Achtung:
7474 \series default
7475  Wenn das LaTeX-Paket 
7476 \series bold
7477 caption
7478 \series default
7479
7480 \begin_inset Index
7481 status collapsed
7482
7483 \begin_layout Plain Layout
7484 LaTeX-Pakete ! caption
7485 \end_layout
7486
7487 \end_inset
7488
7489  verwendet wird, so wie in diesem Dokument, wird die ganze Seitenbreite
7490  für die Beschriftung verwendet, wenn Sie den voreingestellten Wert von
7491  4
7492 \begin_inset Space \thinspace{}
7493 \end_inset
7494
7495 Zoll für 
7496 \series bold
7497
7498 \backslash
7499 LTcapwidth
7500 \series default
7501  benutzen.
7502  Um in diesem Fall eine genau a 4
7503 \begin_inset Space \thinspace{}
7504 \end_inset
7505
7506 Zoll breite Beschriftung zu erhalten, können Sie entweder einen leicht von
7507  4
7508 \begin_inset Space \thinspace{}
7509 \end_inset
7510
7511 Zoll veränderten Wert wie z.
7512 \begin_inset Space \thinspace{}
7513 \end_inset
7514
7515 B.
7516  3.99
7517 \begin_inset Space \thinspace{}
7518 \end_inset
7519
7520 Zoll verwenden oder den LaTeX-Befehl 
7521 \series bold
7522
7523 \backslash
7524 captionsetup{width=Wert}
7525 \series default
7526  benutzen, der vom 
7527 \series bold
7528 caption
7529 \series default
7530 -Paket bereitgestellt wird.
7531 \end_layout
7532
7533 \end_inset
7534
7535
7536 \end_layout
7537
7538 \begin_layout Subsubsection
7539 Unterschiedliche Titel für Tabellenseiten
7540 \begin_inset Index
7541 status collapsed
7542
7543 \begin_layout Plain Layout
7544 Tabellen ! lange ! mehrere Titel
7545 \end_layout
7546
7547 \end_inset
7548
7549
7550 \end_layout
7551
7552 \begin_layout Standard
7553 Wenn die anderen Tabellenseiten einen anderen Titel bekommen sollen als
7554  die erste, müssen Sie eine 
7555 \family sans
7556 Legende
7557 \family default
7558  mit einem nicht-leeren 
7559 \family sans
7560 Kurztitel
7561 \family default
7562  in eine leere Legende-Zeile, die als 
7563 \family sans
7564 Erste
7565 \begin_inset Space ~
7566 \end_inset
7567
7568 Kopfzeile
7569 \family default
7570  definiert wurde, einfügen.
7571  Der Titel für die anderen Tabellenseiten wird als 
7572 \family sans
7573 Legende
7574 \family default
7575  ohne 
7576 \family sans
7577 Kurztitel
7578 \family default
7579  in eine leere Legende-Zeile, die als 
7580 \family sans
7581 Kopfzeile
7582 \family default
7583  definiert wurde, einfügen.
7584  Wenn dieser Titel nicht die Tabellennummer enthalten soll, müssen Sie den
7585  Befehl
7586 \end_layout
7587
7588 \begin_layout Standard
7589
7590 \series bold
7591
7592 \backslash
7593 caption*{caption text}
7594 \end_layout
7595
7596 \begin_layout Standard
7597 anstatt der 
7598 \family sans
7599 Legende
7600 \family default
7601 -Umgebung von LyX benutzen.
7602  Die Marke, die zum Verweis auf die Tabelle benutzt werden soll, muss in
7603  den Titel der 
7604 \family sans
7605 Ersten
7606 \begin_inset Space ~
7607 \end_inset
7608
7609 Kopfzeile
7610 \family default
7611  eingefügt werden.
7612  Tabelle
7613 \begin_inset Space ~
7614 \end_inset
7615
7616
7617 \begin_inset CommandInset ref
7618 LatexCommand ref
7619 reference "tab:DiffCaptions"
7620
7621 \end_inset
7622
7623  ist ein Beispiel für eine 
7624 \family sans
7625 lange
7626 \begin_inset Space ~
7627 \end_inset
7628
7629 Tabelle
7630 \family default
7631  mit unterschiedlichen Titeln und ohne Tabellennummer auf der zweiten Seite.
7632 \end_layout
7633
7634 \begin_layout Standard
7635 \align center
7636 \begin_inset Tabular
7637 <lyxtabular version="3" rows="60" columns="3">
7638 <features islongtable="true">
7639 <column alignment="left" valignment="top" width="0cm">
7640 <column alignment="left" valignment="top" width="0pt">
7641 <column alignment="right" valignment="top" width="0pt">
7642 <row endfirsthead="true" caption="true">
7643 <cell multicolumn="1" alignment="right" valignment="top" usebox="none">
7644 \begin_inset Text
7645
7646 \begin_layout Plain Layout
7647 \begin_inset Caption
7648
7649 \begin_layout Plain Layout
7650 Telefonliste
7651 \begin_inset CommandInset label
7652 LatexCommand label
7653 name "tab:DiffCaptions"
7654
7655 \end_inset
7656
7657
7658 \begin_inset OptArg
7659 status collapsed
7660
7661 \begin_layout Plain Layout
7662 Telefonliste
7663 \end_layout
7664
7665 \end_inset
7666
7667
7668 \end_layout
7669
7670 \end_inset
7671
7672
7673 \end_layout
7674
7675 \end_inset
7676 </cell>
7677 <cell multicolumn="2" alignment="center" valignment="top" rightline="true" usebox="none">
7678 \begin_inset Text
7679
7680 \begin_layout Plain Layout
7681
7682 \end_layout
7683
7684 \end_inset
7685 </cell>
7686 <cell multicolumn="2" alignment="center" valignment="top" rightline="true" usebox="none">
7687 \begin_inset Text
7688
7689 \begin_layout Plain Layout
7690
7691 \end_layout
7692
7693 \end_inset
7694 </cell>
7695 </row>
7696 <row endfirsthead="true">
7697 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7698 \begin_inset Text
7699
7700 \begin_layout Plain Layout
7701
7702 \series bold
7703 Telefonliste (ignoriere die Namen)
7704 \end_layout
7705
7706 \end_inset
7707 </cell>
7708 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7709 \begin_inset Text
7710
7711 \begin_layout Plain Layout
7712
7713 \end_layout
7714
7715 \end_inset
7716 </cell>
7717 <cell multicolumn="2" alignment="right" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7718 \begin_inset Text
7719
7720 \begin_layout Plain Layout
7721
7722 \end_layout
7723
7724 \end_inset
7725 </cell>
7726 </row>
7727 <row endfirsthead="true">
7728 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
7729 \begin_inset Text
7730
7731 \begin_layout Plain Layout
7732
7733 \series bold
7734 NAME
7735 \end_layout
7736
7737 \end_inset
7738 </cell>
7739 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
7740 \begin_inset Text
7741
7742 \begin_layout Plain Layout
7743
7744 \end_layout
7745
7746 \end_inset
7747 </cell>
7748 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
7749 \begin_inset Text
7750
7751 \begin_layout Plain Layout
7752
7753 \series bold
7754 TEL.
7755 \end_layout
7756
7757 \end_inset
7758 </cell>
7759 </row>
7760 <row endhead="true" caption="true">
7761 <cell multicolumn="1" alignment="center" valignment="top" usebox="none">
7762 \begin_inset Text
7763
7764 \begin_layout Plain Layout
7765 \begin_inset ERT
7766 status open
7767
7768 \begin_layout Plain Layout
7769
7770
7771 \backslash
7772 caption*{Fortsetzung der Telefonliste}
7773 \backslash
7774
7775 \backslash
7776 %
7777 \end_layout
7778
7779 \end_inset
7780
7781
7782 \end_layout
7783
7784 \end_inset
7785 </cell>
7786 <cell multicolumn="2" alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
7787 \begin_inset Text
7788
7789 \begin_layout Plain Layout
7790
7791 \end_layout
7792
7793 \end_inset
7794 </cell>
7795 <cell multicolumn="2" alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
7796 \begin_inset Text
7797
7798 \begin_layout Plain Layout
7799
7800 \end_layout
7801
7802 \end_inset
7803 </cell>
7804 </row>
7805 <row endhead="true">
7806 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
7807 \begin_inset Text
7808
7809 \begin_layout Plain Layout
7810
7811 \series bold
7812 Telefonliste
7813 \end_layout
7814
7815 \end_inset
7816 </cell>
7817 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
7818 \begin_inset Text
7819
7820 \begin_layout Plain Layout
7821
7822 \end_layout
7823
7824 \end_inset
7825 </cell>
7826 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7827 \begin_inset Text
7828
7829 \begin_layout Plain Layout
7830
7831 \end_layout
7832
7833 \end_inset
7834 </cell>
7835 </row>
7836 <row endhead="true">
7837 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
7838 \begin_inset Text
7839
7840 \begin_layout Plain Layout
7841
7842 \series bold
7843 NAME
7844 \end_layout
7845
7846 \end_inset
7847 </cell>
7848 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
7849 \begin_inset Text
7850
7851 \begin_layout Plain Layout
7852
7853 \end_layout
7854
7855 \end_inset
7856 </cell>
7857 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
7858 \begin_inset Text
7859
7860 \begin_layout Plain Layout
7861
7862 \series bold
7863 TEL.
7864 \end_layout
7865
7866 \end_inset
7867 </cell>
7868 </row>
7869 <row endfoot="true">
7870 <cell multicolumn="1" alignment="right" valignment="top" topline="true" usebox="none">
7871 \begin_inset Text
7872
7873 \begin_layout Plain Layout
7874 wird fortgesetzt\SpecialChar \ldots{}
7875
7876 \end_layout
7877
7878 \end_inset
7879 </cell>
7880 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
7881 \begin_inset Text
7882
7883 \begin_layout Plain Layout
7884
7885 \end_layout
7886
7887 \end_inset
7888 </cell>
7889 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7890 \begin_inset Text
7891
7892 \begin_layout Plain Layout
7893
7894 \end_layout
7895
7896 \end_inset
7897 </cell>
7898 </row>
7899 <row>
7900 <cell alignment="center" valignment="top" leftline="true" usebox="none">
7901 \begin_inset Text
7902
7903 \begin_layout Plain Layout
7904
7905 \series bold
7906 Annovi
7907 \end_layout
7908
7909 \end_inset
7910 </cell>
7911 <cell alignment="center" valignment="top" rightline="true" usebox="none">
7912 \begin_inset Text
7913
7914 \begin_layout Plain Layout
7915 Silvia
7916 \end_layout
7917
7918 \end_inset
7919 </cell>
7920 <cell alignment="right" valignment="top" rightline="true" usebox="none">
7921 \begin_inset Text
7922
7923 \begin_layout Plain Layout
7924 111
7925 \end_layout
7926
7927 \end_inset
7928 </cell>
7929 </row>
7930 <row>
7931 <cell alignment="center" valignment="top" leftline="true" usebox="none">
7932 \begin_inset Text
7933
7934 \begin_layout Plain Layout
7935
7936 \series bold
7937 Bertoli
7938 \end_layout
7939
7940 \end_inset
7941 </cell>
7942 <cell alignment="center" valignment="top" rightline="true" usebox="none">
7943 \begin_inset Text
7944
7945 \begin_layout Plain Layout
7946 Stefano
7947 \end_layout
7948
7949 \end_inset
7950 </cell>
7951 <cell alignment="center" valignment="top" rightline="true" usebox="none">
7952 \begin_inset Text
7953
7954 \begin_layout Plain Layout
7955 111
7956 \end_layout
7957
7958 \end_inset
7959 </cell>
7960 </row>
7961 <row>
7962 <cell alignment="center" valignment="top" leftline="true" usebox="none">
7963 \begin_inset Text
7964
7965 \begin_layout Plain Layout
7966
7967 \series bold
7968 Bozzi
7969 \end_layout
7970
7971 \end_inset
7972 </cell>
7973 <cell alignment="center" valignment="top" rightline="true" usebox="none">
7974 \begin_inset Text
7975
7976 \begin_layout Plain Layout
7977 Walter
7978 \end_layout
7979
7980 \end_inset
7981 </cell>
7982 <cell alignment="center" valignment="top" rightline="true" usebox="none">
7983 \begin_inset Text
7984
7985 \begin_layout Plain Layout
7986 111
7987 \end_layout
7988
7989 \end_inset
7990 </cell>
7991 </row>
7992 <row>
7993 <cell alignment="center" valignment="top" leftline="true" usebox="none">
7994 \begin_inset Text
7995
7996 \begin_layout Plain Layout
7997
7998 \series bold
7999 Cachia
8000 \end_layout
8001
8002 \end_inset
8003 </cell>
8004 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8005 \begin_inset Text
8006
8007 \begin_layout Plain Layout
8008 Maria
8009 \end_layout
8010
8011 \end_inset
8012 </cell>
8013 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8014 \begin_inset Text
8015
8016 \begin_layout Plain Layout
8017 111
8018 \end_layout
8019
8020 \end_inset
8021 </cell>
8022 </row>
8023 <row>
8024 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8025 \begin_inset Text
8026
8027 \begin_layout Plain Layout
8028
8029 \series bold
8030 Cachia
8031 \end_layout
8032
8033 \end_inset
8034 </cell>
8035 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8036 \begin_inset Text
8037
8038 \begin_layout Plain Layout
8039 Maurizio
8040 \end_layout
8041
8042 \end_inset
8043 </cell>
8044 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8045 \begin_inset Text
8046
8047 \begin_layout Plain Layout
8048 111
8049 \end_layout
8050
8051 \end_inset
8052 </cell>
8053 </row>
8054 <row>
8055 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8056 \begin_inset Text
8057
8058 \begin_layout Plain Layout
8059
8060 \series bold
8061 Cinquemani
8062 \end_layout
8063
8064 \end_inset
8065 </cell>
8066 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8067 \begin_inset Text
8068
8069 \begin_layout Plain Layout
8070 Giusi
8071 \end_layout
8072
8073 \end_inset
8074 </cell>
8075 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8076 \begin_inset Text
8077
8078 \begin_layout Plain Layout
8079 111
8080 \end_layout
8081
8082 \end_inset
8083 </cell>
8084 </row>
8085 <row>
8086 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8087 \begin_inset Text
8088
8089 \begin_layout Plain Layout
8090
8091 \series bold
8092 Colin
8093 \end_layout
8094
8095 \end_inset
8096 </cell>
8097 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8098 \begin_inset Text
8099
8100 \begin_layout Plain Layout
8101 Bernard
8102 \end_layout
8103
8104 \end_inset
8105 </cell>
8106 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8107 \begin_inset Text
8108
8109 \begin_layout Plain Layout
8110 111
8111 \end_layout
8112
8113 \end_inset
8114 </cell>
8115 </row>
8116 <row>
8117 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8118 \begin_inset Text
8119
8120 \begin_layout Plain Layout
8121
8122 \series bold
8123 Concli
8124 \end_layout
8125
8126 \end_inset
8127 </cell>
8128 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8129 \begin_inset Text
8130
8131 \begin_layout Plain Layout
8132 Gianfranco
8133 \end_layout
8134
8135 \end_inset
8136 </cell>
8137 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8138 \begin_inset Text
8139
8140 \begin_layout Plain Layout
8141 111
8142 \end_layout
8143
8144 \end_inset
8145 </cell>
8146 </row>
8147 <row>
8148 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8149 \begin_inset Text
8150
8151 \begin_layout Plain Layout
8152
8153 \series bold
8154 Dal Bosco
8155 \end_layout
8156
8157 \end_inset
8158 </cell>
8159 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8160 \begin_inset Text
8161
8162 \begin_layout Plain Layout
8163 Carolina
8164 \end_layout
8165
8166 \end_inset
8167 </cell>
8168 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8169 \begin_inset Text
8170
8171 \begin_layout Plain Layout
8172 111
8173 \end_layout
8174
8175 \end_inset
8176 </cell>
8177 </row>
8178 <row>
8179 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8180 \begin_inset Text
8181
8182 \begin_layout Plain Layout
8183
8184 \series bold
8185 Dalpiaz
8186 \end_layout
8187
8188 \end_inset
8189 </cell>
8190 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8191 \begin_inset Text
8192
8193 \begin_layout Plain Layout
8194 Annamaria
8195 \end_layout
8196
8197 \end_inset
8198 </cell>
8199 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8200 \begin_inset Text
8201
8202 \begin_layout Plain Layout
8203 111
8204 \end_layout
8205
8206 \end_inset
8207 </cell>
8208 </row>
8209 <row>
8210 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8211 \begin_inset Text
8212
8213 \begin_layout Plain Layout
8214
8215 \series bold
8216 Feliciello
8217 \end_layout
8218
8219 \end_inset
8220 </cell>
8221 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8222 \begin_inset Text
8223
8224 \begin_layout Plain Layout
8225 Domenico
8226 \end_layout
8227
8228 \end_inset
8229 </cell>
8230 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8231 \begin_inset Text
8232
8233 \begin_layout Plain Layout
8234 111
8235 \end_layout
8236
8237 \end_inset
8238 </cell>
8239 </row>
8240 <row>
8241 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8242 \begin_inset Text
8243
8244 \begin_layout Plain Layout
8245
8246 \series bold
8247 Focarelli
8248 \end_layout
8249
8250 \end_inset
8251 </cell>
8252 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8253 \begin_inset Text
8254
8255 \begin_layout Plain Layout
8256 Paola
8257 \end_layout
8258
8259 \end_inset
8260 </cell>
8261 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8262 \begin_inset Text
8263
8264 \begin_layout Plain Layout
8265 111
8266 \end_layout
8267
8268 \end_inset
8269 </cell>
8270 </row>
8271 <row>
8272 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8273 \begin_inset Text
8274
8275 \begin_layout Plain Layout
8276
8277 \series bold
8278 Galletti
8279 \end_layout
8280
8281 \end_inset
8282 </cell>
8283 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8284 \begin_inset Text
8285
8286 \begin_layout Plain Layout
8287 Oreste
8288 \end_layout
8289
8290 \end_inset
8291 </cell>
8292 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8293 \begin_inset Text
8294
8295 \begin_layout Plain Layout
8296 111
8297 \end_layout
8298
8299 \end_inset
8300 </cell>
8301 </row>
8302 <row>
8303 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8304 \begin_inset Text
8305
8306 \begin_layout Plain Layout
8307
8308 \series bold
8309 Gasparini
8310 \end_layout
8311
8312 \end_inset
8313 </cell>
8314 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8315 \begin_inset Text
8316
8317 \begin_layout Plain Layout
8318 Franca
8319 \end_layout
8320
8321 \end_inset
8322 </cell>
8323 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8324 \begin_inset Text
8325
8326 \begin_layout Plain Layout
8327 111
8328 \end_layout
8329
8330 \end_inset
8331 </cell>
8332 </row>
8333 <row>
8334 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8335 \begin_inset Text
8336
8337 \begin_layout Plain Layout
8338
8339 \series bold
8340 Rizzardi
8341 \series default
8342
8343 \begin_inset Foot
8344 status open
8345
8346 \begin_layout Plain Layout
8347 Beispielfußnote
8348 \end_layout
8349
8350 \end_inset
8351
8352
8353 \end_layout
8354
8355 \end_inset
8356 </cell>
8357 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8358 \begin_inset Text
8359
8360 \begin_layout Plain Layout
8361 Paola
8362 \end_layout
8363
8364 \end_inset
8365 </cell>
8366 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8367 \begin_inset Text
8368
8369 \begin_layout Plain Layout
8370 111
8371 \end_layout
8372
8373 \end_inset
8374 </cell>
8375 </row>
8376 <row>
8377 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8378 \begin_inset Text
8379
8380 \begin_layout Plain Layout
8381
8382 \series bold
8383 Lassini
8384 \end_layout
8385
8386 \end_inset
8387 </cell>
8388 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8389 \begin_inset Text
8390
8391 \begin_layout Plain Layout
8392 Giancarlo
8393 \end_layout
8394
8395 \end_inset
8396 </cell>
8397 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8398 \begin_inset Text
8399
8400 \begin_layout Plain Layout
8401 111
8402 \end_layout
8403
8404 \end_inset
8405 </cell>
8406 </row>
8407 <row>
8408 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8409 \begin_inset Text
8410
8411 \begin_layout Plain Layout
8412
8413 \series bold
8414 Malfatti
8415 \end_layout
8416
8417 \end_inset
8418 </cell>
8419 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8420 \begin_inset Text
8421
8422 \begin_layout Plain Layout
8423 Luciano
8424 \end_layout
8425
8426 \end_inset
8427 </cell>
8428 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8429 \begin_inset Text
8430
8431 \begin_layout Plain Layout
8432 111
8433 \end_layout
8434
8435 \end_inset
8436 </cell>
8437 </row>
8438 <row>
8439 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8440 \begin_inset Text
8441
8442 \begin_layout Plain Layout
8443
8444 \series bold
8445 Malfatti
8446 \end_layout
8447
8448 \end_inset
8449 </cell>
8450 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8451 \begin_inset Text
8452
8453 \begin_layout Plain Layout
8454 Valeriano
8455 \end_layout
8456
8457 \end_inset
8458 </cell>
8459 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8460 \begin_inset Text
8461
8462 \begin_layout Plain Layout
8463 111
8464 \end_layout
8465
8466 \end_inset
8467 </cell>
8468 </row>
8469 <row>
8470 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8471 \begin_inset Text
8472
8473 \begin_layout Plain Layout
8474
8475 \series bold
8476 Meneguzzo
8477 \end_layout
8478
8479 \end_inset
8480 </cell>
8481 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8482 \begin_inset Text
8483
8484 \begin_layout Plain Layout
8485 Roberto
8486 \end_layout
8487
8488 \end_inset
8489 </cell>
8490 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8491 \begin_inset Text
8492
8493 \begin_layout Plain Layout
8494 111
8495 \end_layout
8496
8497 \end_inset
8498 </cell>
8499 </row>
8500 <row>
8501 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8502 \begin_inset Text
8503
8504 \begin_layout Plain Layout
8505
8506 \series bold
8507 Mezzadra
8508 \end_layout
8509
8510 \end_inset
8511 </cell>
8512 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8513 \begin_inset Text
8514
8515 \begin_layout Plain Layout
8516 Roberto
8517 \end_layout
8518
8519 \end_inset
8520 </cell>
8521 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8522 \begin_inset Text
8523
8524 \begin_layout Plain Layout
8525 111
8526 \end_layout
8527
8528 \end_inset
8529 </cell>
8530 </row>
8531 <row>
8532 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8533 \begin_inset Text
8534
8535 \begin_layout Plain Layout
8536
8537 \series bold
8538 Pirpamer
8539 \end_layout
8540
8541 \end_inset
8542 </cell>
8543 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8544 \begin_inset Text
8545
8546 \begin_layout Plain Layout
8547 Erich
8548 \end_layout
8549
8550 \end_inset
8551 </cell>
8552 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8553 \begin_inset Text
8554
8555 \begin_layout Plain Layout
8556 111
8557 \end_layout
8558
8559 \end_inset
8560 </cell>
8561 </row>
8562 <row>
8563 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8564 \begin_inset Text
8565
8566 \begin_layout Plain Layout
8567
8568 \series bold
8569 Pochiesa
8570 \end_layout
8571
8572 \end_inset
8573 </cell>
8574 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8575 \begin_inset Text
8576
8577 \begin_layout Plain Layout
8578 Paolo
8579 \end_layout
8580
8581 \end_inset
8582 </cell>
8583 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8584 \begin_inset Text
8585
8586 \begin_layout Plain Layout
8587 111, 222
8588 \end_layout
8589
8590 \end_inset
8591 </cell>
8592 </row>
8593 <row>
8594 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8595 \begin_inset Text
8596
8597 \begin_layout Plain Layout
8598
8599 \series bold
8600 Radina
8601 \end_layout
8602
8603 \end_inset
8604 </cell>
8605 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8606 \begin_inset Text
8607
8608 \begin_layout Plain Layout
8609 Claudio
8610 \end_layout
8611
8612 \end_inset
8613 </cell>
8614 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8615 \begin_inset Text
8616
8617 \begin_layout Plain Layout
8618 111
8619 \end_layout
8620
8621 \end_inset
8622 </cell>
8623 </row>
8624 <row>
8625 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8626 \begin_inset Text
8627
8628 \begin_layout Plain Layout
8629
8630 \series bold
8631 Stuffer
8632 \end_layout
8633
8634 \end_inset
8635 </cell>
8636 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8637 \begin_inset Text
8638
8639 \begin_layout Plain Layout
8640 Oskar
8641 \end_layout
8642
8643 \end_inset
8644 </cell>
8645 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8646 \begin_inset Text
8647
8648 \begin_layout Plain Layout
8649 111
8650 \end_layout
8651
8652 \end_inset
8653 </cell>
8654 </row>
8655 <row>
8656 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8657 \begin_inset Text
8658
8659 \begin_layout Plain Layout
8660
8661 \series bold
8662 Tacchelli
8663 \end_layout
8664
8665 \end_inset
8666 </cell>
8667 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8668 \begin_inset Text
8669
8670 \begin_layout Plain Layout
8671 Ugo
8672 \end_layout
8673
8674 \end_inset
8675 </cell>
8676 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8677 \begin_inset Text
8678
8679 \begin_layout Plain Layout
8680 111
8681 \end_layout
8682
8683 \end_inset
8684 </cell>
8685 </row>
8686 <row>
8687 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8688 \begin_inset Text
8689
8690 \begin_layout Plain Layout
8691
8692 \series bold
8693 Tezzele
8694 \end_layout
8695
8696 \end_inset
8697 </cell>
8698 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8699 \begin_inset Text
8700
8701 \begin_layout Plain Layout
8702 Margit
8703 \end_layout
8704
8705 \end_inset
8706 </cell>
8707 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8708 \begin_inset Text
8709
8710 \begin_layout Plain Layout
8711 111
8712 \end_layout
8713
8714 \end_inset
8715 </cell>
8716 </row>
8717 <row>
8718 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8719 \begin_inset Text
8720
8721 \begin_layout Plain Layout
8722
8723 \series bold
8724 Unterkalmsteiner
8725 \end_layout
8726
8727 \end_inset
8728 </cell>
8729 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8730 \begin_inset Text
8731
8732 \begin_layout Plain Layout
8733 Frieda
8734 \end_layout
8735
8736 \end_inset
8737 </cell>
8738 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8739 \begin_inset Text
8740
8741 \begin_layout Plain Layout
8742 111
8743 \end_layout
8744
8745 \end_inset
8746 </cell>
8747 </row>
8748 <row>
8749 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8750 \begin_inset Text
8751
8752 \begin_layout Plain Layout
8753
8754 \series bold
8755 Vieider
8756 \end_layout
8757
8758 \end_inset
8759 </cell>
8760 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8761 \begin_inset Text
8762
8763 \begin_layout Plain Layout
8764 Hilde
8765 \end_layout
8766
8767 \end_inset
8768 </cell>
8769 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8770 \begin_inset Text
8771
8772 \begin_layout Plain Layout
8773 111
8774 \end_layout
8775
8776 \end_inset
8777 </cell>
8778 </row>
8779 <row>
8780 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8781 \begin_inset Text
8782
8783 \begin_layout Plain Layout
8784
8785 \series bold
8786 Vigna
8787 \end_layout
8788
8789 \end_inset
8790 </cell>
8791 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8792 \begin_inset Text
8793
8794 \begin_layout Plain Layout
8795 Jürgen
8796 \end_layout
8797
8798 \end_inset
8799 </cell>
8800 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8801 \begin_inset Text
8802
8803 \begin_layout Plain Layout
8804 111
8805 \end_layout
8806
8807 \end_inset
8808 </cell>
8809 </row>
8810 <row>
8811 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8812 \begin_inset Text
8813
8814 \begin_layout Plain Layout
8815
8816 \series bold
8817 Weber
8818 \end_layout
8819
8820 \end_inset
8821 </cell>
8822 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8823 \begin_inset Text
8824
8825 \begin_layout Plain Layout
8826 Maurizio
8827 \end_layout
8828
8829 \end_inset
8830 </cell>
8831 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8832 \begin_inset Text
8833
8834 \begin_layout Plain Layout
8835 111
8836 \end_layout
8837
8838 \end_inset
8839 </cell>
8840 </row>
8841 <row>
8842 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8843 \begin_inset Text
8844
8845 \begin_layout Plain Layout
8846
8847 \series bold
8848 Winkler
8849 \end_layout
8850
8851 \end_inset
8852 </cell>
8853 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
8854 \begin_inset Text
8855
8856 \begin_layout Plain Layout
8857 Franz
8858 \end_layout
8859
8860 \end_inset
8861 </cell>
8862 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
8863 \begin_inset Text
8864
8865 \begin_layout Plain Layout
8866 111
8867 \end_layout
8868
8869 \end_inset
8870 </cell>
8871 </row>
8872 <row>
8873 <cell multicolumn="1" alignment="left" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8874 \begin_inset Text
8875
8876 \begin_layout Plain Layout
8877  
8878 \end_layout
8879
8880 \end_inset
8881 </cell>
8882 <cell multicolumn="2" alignment="center" valignment="top" topline="true" usebox="none">
8883 \begin_inset Text
8884
8885 \begin_layout Plain Layout
8886
8887 \end_layout
8888
8889 \end_inset
8890 </cell>
8891 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8892 \begin_inset Text
8893
8894 \begin_layout Plain Layout
8895
8896 \end_layout
8897
8898 \end_inset
8899 </cell>
8900 </row>
8901 <row>
8902 <cell alignment="left" valignment="top" leftline="true" usebox="none">
8903 \begin_inset Text
8904
8905 \begin_layout Plain Layout
8906
8907 \series bold
8908 Annovi
8909 \end_layout
8910
8911 \end_inset
8912 </cell>
8913 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8914 \begin_inset Text
8915
8916 \begin_layout Plain Layout
8917 Silvia
8918 \end_layout
8919
8920 \end_inset
8921 </cell>
8922 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8923 \begin_inset Text
8924
8925 \begin_layout Plain Layout
8926 555
8927 \end_layout
8928
8929 \end_inset
8930 </cell>
8931 </row>
8932 <row>
8933 <cell alignment="left" valignment="top" leftline="true" usebox="none">
8934 \begin_inset Text
8935
8936 \begin_layout Plain Layout
8937
8938 \series bold
8939 Bertoli
8940 \end_layout
8941
8942 \end_inset
8943 </cell>
8944 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8945 \begin_inset Text
8946
8947 \begin_layout Plain Layout
8948 Stefano
8949 \end_layout
8950
8951 \end_inset
8952 </cell>
8953 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8954 \begin_inset Text
8955
8956 \begin_layout Plain Layout
8957 555
8958 \end_layout
8959
8960 \end_inset
8961 </cell>
8962 </row>
8963 <row>
8964 <cell alignment="left" valignment="top" leftline="true" usebox="none">
8965 \begin_inset Text
8966
8967 \begin_layout Plain Layout
8968
8969 \series bold
8970 Bozzi
8971 \end_layout
8972
8973 \end_inset
8974 </cell>
8975 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8976 \begin_inset Text
8977
8978 \begin_layout Plain Layout
8979 Walter
8980 \end_layout
8981
8982 \end_inset
8983 </cell>
8984 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8985 \begin_inset Text
8986
8987 \begin_layout Plain Layout
8988 555
8989 \end_layout
8990
8991 \end_inset
8992 </cell>
8993 </row>
8994 <row>
8995 <cell alignment="left" valignment="top" leftline="true" usebox="none">
8996 \begin_inset Text
8997
8998 \begin_layout Plain Layout
8999
9000 \series bold
9001 Cachia
9002 \end_layout
9003
9004 \end_inset
9005 </cell>
9006 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9007 \begin_inset Text
9008
9009 \begin_layout Plain Layout
9010 Maria
9011 \end_layout
9012
9013 \end_inset
9014 </cell>
9015 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9016 \begin_inset Text
9017
9018 \begin_layout Plain Layout
9019 555
9020 \end_layout
9021
9022 \end_inset
9023 </cell>
9024 </row>
9025 <row>
9026 <cell alignment="left" valignment="top" leftline="true" usebox="none">
9027 \begin_inset Text
9028
9029 \begin_layout Plain Layout
9030
9031 \series bold
9032 Cachia
9033 \end_layout
9034
9035 \end_inset
9036 </cell>
9037 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9038 \begin_inset Text
9039
9040 \begin_layout Plain Layout
9041 Maurizio
9042 \end_layout
9043
9044 \end_inset
9045 </cell>
9046 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9047 \begin_inset Text
9048
9049 \begin_layout Plain Layout
9050 555
9051 \end_layout
9052
9053 \end_inset
9054 </cell>
9055 </row>
9056 <row>
9057 <cell alignment="left" valignment="top" leftline="true" usebox="none">
9058 \begin_inset Text
9059
9060 \begin_layout Plain Layout
9061
9062 \series bold
9063 Cinquemani
9064 \end_layout
9065
9066 \end_inset
9067 </cell>
9068 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9069 \begin_inset Text
9070
9071 \begin_layout Plain Layout
9072 Giusi
9073 \end_layout
9074
9075 \end_inset
9076 </cell>
9077 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9078 \begin_inset Text
9079
9080 \begin_layout Plain Layout
9081 555
9082 \end_layout
9083
9084 \end_inset
9085 </cell>
9086 </row>
9087 <row>
9088 <cell alignment="left" valignment="top" leftline="true" usebox="none">
9089 \begin_inset Text
9090
9091 \begin_layout Plain Layout
9092
9093 \series bold
9094 Colin
9095 \end_layout
9096
9097 \end_inset
9098 </cell>
9099 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9100 \begin_inset Text
9101
9102 \begin_layout Plain Layout
9103 Bernard
9104 \end_layout
9105
9106 \end_inset
9107 </cell>
9108 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9109 \begin_inset Text
9110
9111 \begin_layout Plain Layout
9112 555
9113 \end_layout
9114
9115 \end_inset
9116 </cell>
9117 </row>
9118 <row>
9119 <cell alignment="left" valignment="top" leftline="true" usebox="none">
9120 \begin_inset Text
9121
9122 \begin_layout Plain Layout
9123
9124 \series bold
9125 Concli
9126 \end_layout
9127
9128 \end_inset
9129 </cell>
9130 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9131 \begin_inset Text
9132
9133 \begin_layout Plain Layout
9134 Gianfranco
9135 \end_layout
9136
9137 \end_inset
9138 </cell>
9139 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9140 \begin_inset Text
9141
9142 \begin_layout Plain Layout
9143 555
9144 \end_layout
9145
9146 \end_inset
9147 </cell>
9148 </row>
9149 <row>
9150 <cell alignment="left" valignment="top" leftline="true" usebox="none">
9151 \begin_inset Text
9152
9153 \begin_layout Plain Layout
9154
9155 \series bold
9156 Dal Bosco
9157 \end_layout
9158
9159 \end_inset
9160 </cell>
9161 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9162 \begin_inset Text
9163
9164 \begin_layout Plain Layout
9165 Carolina
9166 \end_layout
9167
9168 \end_inset
9169 </cell>
9170 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9171 \begin_inset Text
9172
9173 \begin_layout Plain Layout
9174 555
9175 \end_layout
9176
9177 \end_inset
9178 </cell>
9179 </row>
9180 <row>
9181 <cell alignment="left" valignment="top" leftline="true" usebox="none">
9182 \begin_inset Text
9183
9184 \begin_layout Plain Layout
9185
9186 \series bold
9187 Dalpiaz
9188 \end_layout
9189
9190 \end_inset
9191 </cell>
9192 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9193 \begin_inset Text
9194
9195 \begin_layout Plain Layout
9196 Annamaria
9197 \end_layout
9198
9199 \end_inset
9200 </cell>
9201 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9202 \begin_inset Text
9203
9204 \begin_layout Plain Layout
9205 555
9206 \end_layout
9207
9208 \end_inset
9209 </cell>
9210 </row>
9211 <row>
9212 <cell alignment="left" valignment="top" leftline="true" usebox="none">
9213 \begin_inset Text
9214
9215 \begin_layout Plain Layout
9216
9217 \series bold
9218 Feliciello
9219 \end_layout
9220
9221 \end_inset
9222 </cell>
9223 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9224 \begin_inset Text
9225
9226 \begin_layout Plain Layout
9227 Domenico
9228 \end_layout
9229
9230 \end_inset
9231 </cell>
9232 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9233 \begin_inset Text
9234
9235 \begin_layout Plain Layout
9236 555
9237 \end_layout
9238
9239 \end_inset
9240 </cell>
9241 </row>
9242 <row>
9243 <cell alignment="left" valignment="top" leftline="true" usebox="none">
9244 \begin_inset Text
9245
9246 \begin_layout Plain Layout
9247
9248 \series bold
9249 Focarelli
9250 \end_layout
9251
9252 \end_inset
9253 </cell>
9254 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9255 \begin_inset Text
9256
9257 \begin_layout Plain Layout
9258 Paola
9259 \end_layout
9260
9261 \end_inset
9262 </cell>
9263 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9264 \begin_inset Text
9265
9266 \begin_layout Plain Layout
9267 555
9268 \end_layout
9269
9270 \end_inset
9271 </cell>
9272 </row>
9273 <row>
9274 <cell alignment="left" valignment="top" leftline="true" usebox="none">
9275 \begin_inset Text
9276
9277 \begin_layout Plain Layout
9278
9279 \series bold
9280 Galletti
9281 \end_layout
9282
9283 \end_inset
9284 </cell>
9285 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9286 \begin_inset Text
9287
9288 \begin_layout Plain Layout
9289 Oreste
9290 \end_layout
9291
9292 \end_inset
9293 </cell>
9294 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9295 \begin_inset Text
9296
9297 \begin_layout Plain Layout
9298 555
9299 \end_layout
9300
9301 \end_inset
9302 </cell>
9303 </row>
9304 <row>
9305 <cell alignment="left" valignment="top" leftline="true" usebox="none">
9306 \begin_inset Text
9307
9308 \begin_layout Plain Layout
9309
9310 \series bold
9311 Gasparini
9312 \end_layout
9313
9314 \end_inset
9315 </cell>
9316 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9317 \begin_inset Text
9318
9319 \begin_layout Plain Layout
9320 Franca
9321 \end_layout
9322
9323 \end_inset
9324 </cell>
9325 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9326 \begin_inset Text
9327
9328 \begin_layout Plain Layout
9329 555
9330 \end_layout
9331
9332 \end_inset
9333 </cell>
9334 </row>
9335 <row>
9336 <cell alignment="left" valignment="top" leftline="true" usebox="none">
9337 \begin_inset Text
9338
9339 \begin_layout Plain Layout
9340
9341 \series bold
9342 Rizzardi
9343 \end_layout
9344
9345 \end_inset
9346 </cell>
9347 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9348 \begin_inset Text
9349
9350 \begin_layout Plain Layout
9351 Paola
9352 \end_layout
9353
9354 \end_inset
9355 </cell>
9356 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9357 \begin_inset Text
9358
9359 \begin_layout Plain Layout
9360 555
9361 \end_layout
9362
9363 \end_inset
9364 </cell>
9365 </row>
9366 <row>
9367 <cell alignment="left" valignment="top" leftline="true" usebox="none">
9368 \begin_inset Text
9369
9370 \begin_layout Plain Layout
9371
9372 \series bold
9373 Lassini
9374 \end_layout
9375
9376 \end_inset
9377 </cell>
9378 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9379 \begin_inset Text
9380
9381 \begin_layout Plain Layout
9382 Giancarlo
9383 \end_layout
9384
9385 \end_inset
9386 </cell>
9387 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9388 \begin_inset Text
9389
9390 \begin_layout Plain Layout
9391 555
9392 \end_layout
9393
9394 \end_inset
9395 </cell>
9396 </row>
9397 <row>
9398 <cell alignment="left" valignment="top" leftline="true" usebox="none">
9399 \begin_inset Text
9400
9401 \begin_layout Plain Layout
9402
9403 \series bold
9404 Malfatti
9405 \end_layout
9406
9407 \end_inset
9408 </cell>
9409 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9410 \begin_inset Text
9411
9412 \begin_layout Plain Layout
9413 Luciano
9414 \end_layout
9415
9416 \end_inset
9417 </cell>
9418 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9419 \begin_inset Text
9420
9421 \begin_layout Plain Layout
9422 555
9423 \end_layout
9424
9425 \end_inset
9426 </cell>
9427 </row>
9428 <row>
9429 <cell alignment="left" valignment="top" leftline="true" usebox="none">
9430 \begin_inset Text
9431
9432 \begin_layout Plain Layout
9433
9434 \series bold
9435 Malfatti
9436 \end_layout
9437
9438 \end_inset
9439 </cell>
9440 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9441 \begin_inset Text
9442
9443 \begin_layout Plain Layout
9444 Valeriano
9445 \end_layout
9446
9447 \end_inset
9448 </cell>
9449 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9450 \begin_inset Text
9451
9452 \begin_layout Plain Layout
9453 555
9454 \end_layout
9455
9456 \end_inset
9457 </cell>
9458 </row>
9459 <row>
9460 <cell alignment="left" valignment="top" leftline="true" usebox="none">
9461 \begin_inset Text
9462
9463 \begin_layout Plain Layout
9464
9465 \series bold
9466 Meneguzzo
9467 \end_layout
9468
9469 \end_inset
9470 </cell>
9471 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9472 \begin_inset Text
9473
9474 \begin_layout Plain Layout
9475 Roberto
9476 \end_layout
9477
9478 \end_inset
9479 </cell>
9480 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9481 \begin_inset Text
9482
9483 \begin_layout Plain Layout
9484 555
9485 \end_layout
9486
9487 \end_inset
9488 </cell>
9489 </row>
9490 <row>
9491 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
9492 \begin_inset Text
9493
9494 \begin_layout Plain Layout
9495
9496 \series bold
9497 Mezzadra
9498 \end_layout
9499
9500 \end_inset
9501 </cell>
9502 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
9503 \begin_inset Text
9504
9505 \begin_layout Plain Layout
9506 Roberto
9507 \end_layout
9508
9509 \end_inset
9510 </cell>
9511 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
9512 \begin_inset Text
9513
9514 \begin_layout Plain Layout
9515 555
9516 \end_layout
9517
9518 \end_inset
9519 </cell>
9520 </row>
9521 <row endlastfoot="true">
9522 <cell multicolumn="1" alignment="left" valignment="top" usebox="none">
9523 \begin_inset Text
9524
9525 \begin_layout Plain Layout
9526
9527 \end_layout
9528
9529 \end_inset
9530 </cell>
9531 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9532 \begin_inset Text
9533
9534 \begin_layout Plain Layout
9535
9536 \end_layout
9537
9538 \end_inset
9539 </cell>
9540 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9541 \begin_inset Text
9542
9543 \begin_layout Plain Layout
9544
9545 \end_layout
9546
9547 \end_inset
9548 </cell>
9549 </row>
9550 </lyxtabular>
9551
9552 \end_inset
9553
9554
9555 \end_layout
9556
9557 \begin_layout Section
9558 Weitere Möglichkeiten für 
9559 \family sans
9560 lange Tabelle
9561 \family default
9562 n
9563 \begin_inset CommandInset label
9564 LatexCommand label
9565 name "abs:Special-Longtable-Issues"
9566
9567 \end_inset
9568
9569
9570 \end_layout
9571
9572 \begin_layout Subsection
9573 L
9574 \family sans
9575 ange Tabelle
9576 \family default
9577 n: Berechnung
9578 \begin_inset Index
9579 status collapsed
9580
9581 \begin_layout Plain Layout
9582 Tabellen ! lange ! Berechnung
9583 \end_layout
9584
9585 \end_inset
9586
9587
9588 \end_layout
9589
9590 \begin_layout Standard
9591 LaTeX berechnet die Länge von Tabellenseiten und die Seitenumbrüche mit
9592  sogenannten 
9593 \emph on
9594 chunks
9595 \emph default
9596  (chunks).
9597  Chunks sind Tabellenteile, die LaTeX gleichzeitig im Speicher hält.
9598  Aus historischen Gründen wurde der Standardwert auf 20 Tabellenzeilen gesetzt.
9599  Wenn Sie Tabellen benutzen, die über mehrere Seiten gehen, verlangsamt
9600  das die Druckausgabe.
9601  Sie können also die Chunkgröße ohne Gefahr auf Werte zwischen 100-1000
9602  setzen, indem Sie in den LaTeX-Vorspann Ihres Dokumentes folgende Zeile
9603  einfügen:
9604 \end_layout
9605
9606 \begin_layout Standard
9607
9608 \series bold
9609
9610 \backslash
9611 setcounter{LTchunksize}{100}
9612 \end_layout
9613
9614 \begin_layout Subsection
9615 Gleitobjekte und L
9616 \family sans
9617 ange Tabelle
9618 \family default
9619 n
9620 \begin_inset Index
9621 status collapsed
9622
9623 \begin_layout Plain Layout
9624 Tabellen ! lange ! und Gleitobjekte
9625 \end_layout
9626
9627 \end_inset
9628
9629
9630 \end_layout
9631
9632 \begin_layout Standard
9633 Es kann Probleme geben, wenn sich auf derselben Seite, auf der eine 
9634 \family sans
9635 lange
9636 \begin_inset Space ~
9637 \end_inset
9638
9639 Tabelle
9640 \family default
9641  beginnt, ein Gleitobjekt befindet.
9642  Um das zu vermeiden, können Sie vor der 
9643 \family sans
9644 langen
9645 \begin_inset Space ~
9646 \end_inset
9647
9648 Tabelle
9649 \family default
9650  den LaTeX-Befehl
9651 \series bold
9652  
9653 \backslash
9654 clearpage
9655 \series default
9656  als TeX-Code einfügen.
9657 \end_layout
9658
9659 \begin_layout Subsection
9660 Manuelle Seitenumbrüche
9661 \begin_inset Index
9662 status collapsed
9663
9664 \begin_layout Plain Layout
9665 Tabellen ! lange ! manueller Seitenumbruch
9666 \end_layout
9667
9668 \end_inset
9669
9670
9671 \end_layout
9672
9673 \begin_layout Standard
9674 Standardmäßig werden Tabellen nur zwischen Zeilen umgebrochen.
9675  Wenn Sie aber eine Zelle mit mehreren Zeilen haben und die Seite innerhalb
9676  der Zelle umbrechen wollen, fügen Sie den Befehl  
9677 \begin_inset Quotes gld
9678 \end_inset
9679
9680
9681 \series bold
9682
9683 \backslash
9684
9685 \backslash
9686
9687 \series default
9688
9689 \begin_inset Quotes grd
9690 \end_inset
9691
9692  für einen neue Zeile als TeX-Code an der Stelle in der Zelle ein, wo umgebroche
9693 n werden soll.
9694  Vor dem 
9695 \begin_inset Quotes gld
9696 \end_inset
9697
9698
9699 \series bold
9700
9701 \backslash
9702
9703 \backslash
9704
9705 \series default
9706
9707 \begin_inset Quotes grd
9708 \end_inset
9709
9710 -Befehl müssen Sie so viele 
9711 \begin_inset Quotes gld
9712 \end_inset
9713
9714
9715 \series bold
9716 &
9717 \series default
9718
9719 \begin_inset Quotes grd
9720 \end_inset
9721
9722  als TeX-Code einfügen wie noch Spalten in der Zeile folgen.
9723  Mit 
9724 \begin_inset Quotes gld
9725 \end_inset
9726
9727
9728 \series bold
9729 &
9730 \series default
9731
9732 \begin_inset Quotes grd
9733 \end_inset
9734
9735   werden in LaTeX Tabellenzellen getrennt.
9736  Hinter jedes 
9737 \begin_inset Quotes gld
9738 \end_inset
9739
9740
9741 \series bold
9742 &
9743 \series default
9744
9745 \begin_inset Quotes grd
9746 \end_inset
9747
9748  schreiben Sie ebenfalls in TeX-Code den Inhalt der entsprechenden Zelle
9749  und löschen den Inhalt dieser Zellen.
9750 \end_layout
9751
9752 \begin_layout Standard
9753 Hinter dem 
9754 \begin_inset Quotes gld
9755 \end_inset
9756
9757
9758 \series bold
9759
9760 \backslash
9761
9762 \backslash
9763
9764 \series default
9765
9766 \begin_inset Quotes grd
9767 \end_inset
9768
9769 -Befehl müssen Sie so viele 
9770 \begin_inset Quotes gld
9771 \end_inset
9772
9773
9774 \series bold
9775 &
9776 \series default
9777
9778 \begin_inset Quotes grd
9779 \end_inset
9780
9781  als TeX-Code einfügen wie Spalten vor der momentanen Spalte sind.
9782  In Tabelle
9783 \begin_inset Space ~
9784 \end_inset
9785
9786
9787 \begin_inset CommandInset ref
9788 LatexCommand ref
9789 reference "tab:ForcedPagebreak"
9790
9791 \end_inset
9792
9793  soll eine Zelle in der zweiten Spalte umgebrochen werden.
9794  Es folgt noch eine weitere Spalte.
9795  Deshalb wurde hinter dem Wort 
9796 \emph on
9797 Castelchiodato, 
9798 \emph default
9799 folgendes eingefügt:
9800 \end_layout
9801
9802 \begin_layout Standard
9803
9804 \series bold
9805 & 111
9806 \backslash
9807
9808 \backslash
9809
9810 \begin_inset Newline newline
9811 \end_inset
9812
9813 &
9814 \end_layout
9815
9816 \begin_layout Standard
9817 Die 
9818 \begin_inset Quotes gld
9819 \end_inset
9820
9821 111
9822 \begin_inset Quotes grd
9823 \end_inset
9824
9825  in der dritten Spalte wurde gelöscht.
9826  Wenn die Fußzeile Ihrer 
9827 \family sans
9828 langen
9829 \begin_inset Space ~
9830 \end_inset
9831
9832 Tabelle
9833 \family default
9834  keine obere Linie besitzt, Sie aber eine wünschen, sollten Sie folgende
9835  Befehle benutzen:
9836 \end_layout
9837
9838 \begin_layout Standard
9839
9840 \series bold
9841 & 111
9842 \backslash
9843
9844 \backslash
9845
9846 \begin_inset Newline newline
9847 \end_inset
9848
9849
9850 \backslash
9851 hline &
9852 \end_layout
9853
9854 \begin_layout Standard
9855 Wenn die Zelle, die umgebrochen werden soll, in der letzten Spalte steht,
9856  muss folgender Befehl als TeX-Code am Anfang der Zelle eingefügt werden:
9857 \end_layout
9858
9859 \begin_layout Standard
9860
9861 \series bold
9862
9863 \backslash
9864 setlength{
9865 \backslash
9866 parfillskip}{0pt}
9867 \end_layout
9868
9869 \begin_layout Standard
9870 Damit wird sichergestellt, dass der Teil auf der neuen Seite in voller Breite
9871  erscheint.
9872 \end_layout
9873
9874 \begin_layout Standard
9875 \align center
9876 \begin_inset Tabular
9877 <lyxtabular version="3" rows="39" columns="3">
9878 <features islongtable="true">
9879 <column alignment="left" valignment="top" width="0cm">
9880 <column alignment="left" valignment="top" width="3cm">
9881 <column alignment="right" valignment="top" width="0pt">
9882 <row endfirsthead="true" caption="true">
9883 <cell multicolumn="1" alignment="right" valignment="top" usebox="none">
9884 \begin_inset Text
9885
9886 \begin_layout Plain Layout
9887 \begin_inset Caption
9888
9889 \begin_layout Plain Layout
9890 Tabelle mit manuellem Seitenumbruch in einer Zelle
9891 \begin_inset CommandInset label
9892 LatexCommand label
9893 name "tab:ForcedPagebreak"
9894
9895 \end_inset
9896
9897
9898 \begin_inset OptArg
9899 status collapsed
9900
9901 \begin_layout Plain Layout
9902 Tabelle mit manuellem Seitenumbruch in einer Zelle
9903 \end_layout
9904
9905 \end_inset
9906
9907
9908 \end_layout
9909
9910 \end_inset
9911
9912
9913 \end_layout
9914
9915 \end_inset
9916 </cell>
9917 <cell multicolumn="2" alignment="center" valignment="top" rightline="true" usebox="none">
9918 \begin_inset Text
9919
9920 \begin_layout Plain Layout
9921
9922 \end_layout
9923
9924 \end_inset
9925 </cell>
9926 <cell multicolumn="2" alignment="center" valignment="top" rightline="true" usebox="none">
9927 \begin_inset Text
9928
9929 \begin_layout Plain Layout
9930
9931 \end_layout
9932
9933 \end_inset
9934 </cell>
9935 </row>
9936 <row endfirsthead="true">
9937 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9938 \begin_inset Text
9939
9940 \begin_layout Plain Layout
9941
9942 \series bold
9943 Telefonliste (ignoriere die Namen)
9944 \end_layout
9945
9946 \end_inset
9947 </cell>
9948 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9949 \begin_inset Text
9950
9951 \begin_layout Plain Layout
9952
9953 \end_layout
9954
9955 \end_inset
9956 </cell>
9957 <cell multicolumn="2" alignment="right" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9958 \begin_inset Text
9959
9960 \begin_layout Plain Layout
9961
9962 \end_layout
9963
9964 \end_inset
9965 </cell>
9966 </row>
9967 <row endfirsthead="true">
9968 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9969 \begin_inset Text
9970
9971 \begin_layout Plain Layout
9972
9973 \series bold
9974 NAME
9975 \end_layout
9976
9977 \end_inset
9978 </cell>
9979 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
9980 \begin_inset Text
9981
9982 \begin_layout Plain Layout
9983
9984 \end_layout
9985
9986 \end_inset
9987 </cell>
9988 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9989 \begin_inset Text
9990
9991 \begin_layout Plain Layout
9992
9993 \series bold
9994 TEL.
9995 \end_layout
9996
9997 \end_inset
9998 </cell>
9999 </row>
10000 <row endhead="true" caption="true">
10001 <cell multicolumn="1" alignment="center" valignment="top" usebox="none">
10002 \begin_inset Text
10003
10004 \begin_layout Plain Layout
10005 \begin_inset ERT
10006 status collapsed
10007
10008 \begin_layout Plain Layout
10009
10010
10011 \backslash
10012 caption*{Fortsetzung der Tabelle mit manuellem Seitenumbruch in einer Zelle}
10013 \backslash
10014
10015 \backslash
10016 %
10017 \end_layout
10018
10019 \end_inset
10020
10021
10022 \end_layout
10023
10024 \end_inset
10025 </cell>
10026 <cell multicolumn="2" alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
10027 \begin_inset Text
10028
10029 \begin_layout Plain Layout
10030
10031 \end_layout
10032
10033 \end_inset
10034 </cell>
10035 <cell multicolumn="2" alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
10036 \begin_inset Text
10037
10038 \begin_layout Plain Layout
10039
10040 \end_layout
10041
10042 \end_inset
10043 </cell>
10044 </row>
10045 <row endhead="true">
10046 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10047 \begin_inset Text
10048
10049 \begin_layout Plain Layout
10050
10051 \series bold
10052 Telefonliste
10053 \end_layout
10054
10055 \end_inset
10056 </cell>
10057 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
10058 \begin_inset Text
10059
10060 \begin_layout Plain Layout
10061
10062 \end_layout
10063
10064 \end_inset
10065 </cell>
10066 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10067 \begin_inset Text
10068
10069 \begin_layout Plain Layout
10070
10071 \end_layout
10072
10073 \end_inset
10074 </cell>
10075 </row>
10076 <row endhead="true">
10077 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10078 \begin_inset Text
10079
10080 \begin_layout Plain Layout
10081
10082 \series bold
10083 NAME
10084 \end_layout
10085
10086 \end_inset
10087 </cell>
10088 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
10089 \begin_inset Text
10090
10091 \begin_layout Plain Layout
10092
10093 \end_layout
10094
10095 \end_inset
10096 </cell>
10097 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10098 \begin_inset Text
10099
10100 \begin_layout Plain Layout
10101
10102 \series bold
10103 TEL.
10104 \end_layout
10105
10106 \end_inset
10107 </cell>
10108 </row>
10109 <row endfoot="true">
10110 <cell multicolumn="1" alignment="right" valignment="top" topline="true" usebox="none">
10111 \begin_inset Text
10112
10113 \begin_layout Plain Layout
10114 wird fortgesetzt\SpecialChar \ldots{}
10115
10116 \end_layout
10117
10118 \end_inset
10119 </cell>
10120 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
10121 \begin_inset Text
10122
10123 \begin_layout Plain Layout
10124
10125 \end_layout
10126
10127 \end_inset
10128 </cell>
10129 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10130 \begin_inset Text
10131
10132 \begin_layout Plain Layout
10133
10134 \end_layout
10135
10136 \end_inset
10137 </cell>
10138 </row>
10139 <row>
10140 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10141 \begin_inset Text
10142
10143 \begin_layout Plain Layout
10144
10145 \series bold
10146 Annovi
10147 \end_layout
10148
10149 \end_inset
10150 </cell>
10151 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10152 \begin_inset Text
10153
10154 \begin_layout Plain Layout
10155 Silvia
10156 \end_layout
10157
10158 \end_inset
10159 </cell>
10160 <cell alignment="right" valignment="top" rightline="true" usebox="none">
10161 \begin_inset Text
10162
10163 \begin_layout Plain Layout
10164 111
10165 \end_layout
10166
10167 \end_inset
10168 </cell>
10169 </row>
10170 <row>
10171 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10172 \begin_inset Text
10173
10174 \begin_layout Plain Layout
10175
10176 \series bold
10177 Bertoli
10178 \end_layout
10179
10180 \end_inset
10181 </cell>
10182 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10183 \begin_inset Text
10184
10185 \begin_layout Plain Layout
10186 Stefano
10187 \end_layout
10188
10189 \end_inset
10190 </cell>
10191 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10192 \begin_inset Text
10193
10194 \begin_layout Plain Layout
10195 111
10196 \end_layout
10197
10198 \end_inset
10199 </cell>
10200 </row>
10201 <row>
10202 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10203 \begin_inset Text
10204
10205 \begin_layout Plain Layout
10206
10207 \series bold
10208 Bozzi
10209 \end_layout
10210
10211 \end_inset
10212 </cell>
10213 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10214 \begin_inset Text
10215
10216 \begin_layout Plain Layout
10217 Walter
10218 \end_layout
10219
10220 \end_inset
10221 </cell>
10222 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10223 \begin_inset Text
10224
10225 \begin_layout Plain Layout
10226 111
10227 \end_layout
10228
10229 \end_inset
10230 </cell>
10231 </row>
10232 <row>
10233 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10234 \begin_inset Text
10235
10236 \begin_layout Plain Layout
10237
10238 \series bold
10239 Cachia
10240 \end_layout
10241
10242 \end_inset
10243 </cell>
10244 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10245 \begin_inset Text
10246
10247 \begin_layout Plain Layout
10248 Maria
10249 \end_layout
10250
10251 \end_inset
10252 </cell>
10253 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10254 \begin_inset Text
10255
10256 \begin_layout Plain Layout
10257 111
10258 \end_layout
10259
10260 \end_inset
10261 </cell>
10262 </row>
10263 <row>
10264 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10265 \begin_inset Text
10266
10267 \begin_layout Plain Layout
10268
10269 \series bold
10270 Cachia
10271 \end_layout
10272
10273 \end_inset
10274 </cell>
10275 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10276 \begin_inset Text
10277
10278 \begin_layout Plain Layout
10279 Maurizio
10280 \end_layout
10281
10282 \end_inset
10283 </cell>
10284 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10285 \begin_inset Text
10286
10287 \begin_layout Plain Layout
10288 111
10289 \end_layout
10290
10291 \end_inset
10292 </cell>
10293 </row>
10294 <row>
10295 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10296 \begin_inset Text
10297
10298 \begin_layout Plain Layout
10299
10300 \series bold
10301 Cinquemani
10302 \end_layout
10303
10304 \end_inset
10305 </cell>
10306 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10307 \begin_inset Text
10308
10309 \begin_layout Plain Layout
10310 Giusi
10311 \end_layout
10312
10313 \end_inset
10314 </cell>
10315 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10316 \begin_inset Text
10317
10318 \begin_layout Plain Layout
10319 111
10320 \end_layout
10321
10322 \end_inset
10323 </cell>
10324 </row>
10325 <row>
10326 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10327 \begin_inset Text
10328
10329 \begin_layout Plain Layout
10330
10331 \series bold
10332 Colin
10333 \end_layout
10334
10335 \end_inset
10336 </cell>
10337 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10338 \begin_inset Text
10339
10340 \begin_layout Plain Layout
10341 Bernard
10342 \end_layout
10343
10344 \end_inset
10345 </cell>
10346 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10347 \begin_inset Text
10348
10349 \begin_layout Plain Layout
10350 111
10351 \end_layout
10352
10353 \end_inset
10354 </cell>
10355 </row>
10356 <row>
10357 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10358 \begin_inset Text
10359
10360 \begin_layout Plain Layout
10361
10362 \series bold
10363 Concli
10364 \end_layout
10365
10366 \end_inset
10367 </cell>
10368 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10369 \begin_inset Text
10370
10371 \begin_layout Plain Layout
10372 Gianfranco
10373 \end_layout
10374
10375 \end_inset
10376 </cell>
10377 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10378 \begin_inset Text
10379
10380 \begin_layout Plain Layout
10381 111
10382 \end_layout
10383
10384 \end_inset
10385 </cell>
10386 </row>
10387 <row>
10388 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10389 \begin_inset Text
10390
10391 \begin_layout Plain Layout
10392
10393 \series bold
10394 Dal Bosco
10395 \end_layout
10396
10397 \end_inset
10398 </cell>
10399 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10400 \begin_inset Text
10401
10402 \begin_layout Plain Layout
10403 Carolina
10404 \end_layout
10405
10406 \end_inset
10407 </cell>
10408 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10409 \begin_inset Text
10410
10411 \begin_layout Plain Layout
10412 111
10413 \end_layout
10414
10415 \end_inset
10416 </cell>
10417 </row>
10418 <row>
10419 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10420 \begin_inset Text
10421
10422 \begin_layout Plain Layout
10423
10424 \series bold
10425 Dalpiaz
10426 \end_layout
10427
10428 \end_inset
10429 </cell>
10430 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10431 \begin_inset Text
10432
10433 \begin_layout Plain Layout
10434 Annamaria
10435 \end_layout
10436
10437 \end_inset
10438 </cell>
10439 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10440 \begin_inset Text
10441
10442 \begin_layout Plain Layout
10443 111
10444 \end_layout
10445
10446 \end_inset
10447 </cell>
10448 </row>
10449 <row>
10450 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10451 \begin_inset Text
10452
10453 \begin_layout Plain Layout
10454
10455 \series bold
10456 Feliciello
10457 \end_layout
10458
10459 \end_inset
10460 </cell>
10461 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10462 \begin_inset Text
10463
10464 \begin_layout Plain Layout
10465 Domenico
10466 \end_layout
10467
10468 \end_inset
10469 </cell>
10470 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10471 \begin_inset Text
10472
10473 \begin_layout Plain Layout
10474 111
10475 \end_layout
10476
10477 \end_inset
10478 </cell>
10479 </row>
10480 <row>
10481 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10482 \begin_inset Text
10483
10484 \begin_layout Plain Layout
10485
10486 \series bold
10487 Focarelli
10488 \end_layout
10489
10490 \end_inset
10491 </cell>
10492 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10493 \begin_inset Text
10494
10495 \begin_layout Plain Layout
10496 Paola
10497 \end_layout
10498
10499 \end_inset
10500 </cell>
10501 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10502 \begin_inset Text
10503
10504 \begin_layout Plain Layout
10505 111
10506 \end_layout
10507
10508 \end_inset
10509 </cell>
10510 </row>
10511 <row>
10512 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10513 \begin_inset Text
10514
10515 \begin_layout Plain Layout
10516
10517 \series bold
10518 Galletti
10519 \end_layout
10520
10521 \end_inset
10522 </cell>
10523 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10524 \begin_inset Text
10525
10526 \begin_layout Plain Layout
10527 Oreste
10528 \end_layout
10529
10530 \end_inset
10531 </cell>
10532 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10533 \begin_inset Text
10534
10535 \begin_layout Plain Layout
10536 111
10537 \end_layout
10538
10539 \end_inset
10540 </cell>
10541 </row>
10542 <row>
10543 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10544 \begin_inset Text
10545
10546 \begin_layout Plain Layout
10547
10548 \series bold
10549 Gasparini
10550 \end_layout
10551
10552 \end_inset
10553 </cell>
10554 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10555 \begin_inset Text
10556
10557 \begin_layout Plain Layout
10558 Franca
10559 \end_layout
10560
10561 \end_inset
10562 </cell>
10563 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10564 \begin_inset Text
10565
10566 \begin_layout Plain Layout
10567 111
10568 \end_layout
10569
10570 \end_inset
10571 </cell>
10572 </row>
10573 <row>
10574 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10575 \begin_inset Text
10576
10577 \begin_layout Plain Layout
10578
10579 \series bold
10580 Lassini
10581 \end_layout
10582
10583 \end_inset
10584 </cell>
10585 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10586 \begin_inset Text
10587
10588 \begin_layout Plain Layout
10589 Giancarlo
10590 \end_layout
10591
10592 \end_inset
10593 </cell>
10594 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10595 \begin_inset Text
10596
10597 \begin_layout Plain Layout
10598 111
10599 \end_layout
10600
10601 \end_inset
10602 </cell>
10603 </row>
10604 <row>
10605 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10606 \begin_inset Text
10607
10608 \begin_layout Plain Layout
10609
10610 \series bold
10611 Malfatti
10612 \end_layout
10613
10614 \end_inset
10615 </cell>
10616 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10617 \begin_inset Text
10618
10619 \begin_layout Plain Layout
10620 Luciano
10621 \end_layout
10622
10623 \end_inset
10624 </cell>
10625 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10626 \begin_inset Text
10627
10628 \begin_layout Plain Layout
10629 111
10630 \end_layout
10631
10632 \end_inset
10633 </cell>
10634 </row>
10635 <row>
10636 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10637 \begin_inset Text
10638
10639 \begin_layout Plain Layout
10640
10641 \series bold
10642 Malfatti
10643 \end_layout
10644
10645 \end_inset
10646 </cell>
10647 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10648 \begin_inset Text
10649
10650 \begin_layout Plain Layout
10651 Valeriano
10652 \end_layout
10653
10654 \end_inset
10655 </cell>
10656 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10657 \begin_inset Text
10658
10659 \begin_layout Plain Layout
10660 111
10661 \end_layout
10662
10663 \end_inset
10664 </cell>
10665 </row>
10666 <row>
10667 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10668 \begin_inset Text
10669
10670 \begin_layout Plain Layout
10671
10672 \series bold
10673 Meneguzzo
10674 \end_layout
10675
10676 \end_inset
10677 </cell>
10678 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10679 \begin_inset Text
10680
10681 \begin_layout Plain Layout
10682 Roberto
10683 \end_layout
10684
10685 \end_inset
10686 </cell>
10687 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10688 \begin_inset Text
10689
10690 \begin_layout Plain Layout
10691 111
10692 \end_layout
10693
10694 \end_inset
10695 </cell>
10696 </row>
10697 <row>
10698 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10699 \begin_inset Text
10700
10701 \begin_layout Plain Layout
10702
10703 \series bold
10704 Mezzadra
10705 \end_layout
10706
10707 \end_inset
10708 </cell>
10709 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10710 \begin_inset Text
10711
10712 \begin_layout Plain Layout
10713 Roberto
10714 \end_layout
10715
10716 \end_inset
10717 </cell>
10718 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10719 \begin_inset Text
10720
10721 \begin_layout Plain Layout
10722 111
10723 \end_layout
10724
10725 \end_inset
10726 </cell>
10727 </row>
10728 <row>
10729 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10730 \begin_inset Text
10731
10732 \begin_layout Plain Layout
10733
10734 \series bold
10735 Pirpamer
10736 \end_layout
10737
10738 \end_inset
10739 </cell>
10740 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10741 \begin_inset Text
10742
10743 \begin_layout Plain Layout
10744 Erich
10745 \end_layout
10746
10747 \end_inset
10748 </cell>
10749 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10750 \begin_inset Text
10751
10752 \begin_layout Plain Layout
10753 111
10754 \end_layout
10755
10756 \end_inset
10757 </cell>
10758 </row>
10759 <row>
10760 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10761 \begin_inset Text
10762
10763 \begin_layout Plain Layout
10764
10765 \series bold
10766 Pochiesa
10767 \end_layout
10768
10769 \end_inset
10770 </cell>
10771 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10772 \begin_inset Text
10773
10774 \begin_layout Plain Layout
10775 Paolo
10776 \end_layout
10777
10778 \end_inset
10779 </cell>
10780 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10781 \begin_inset Text
10782
10783 \begin_layout Plain Layout
10784 111, 222
10785 \end_layout
10786
10787 \end_inset
10788 </cell>
10789 </row>
10790 <row>
10791 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10792 \begin_inset Text
10793
10794 \begin_layout Plain Layout
10795
10796 \series bold
10797 Radina
10798 \end_layout
10799
10800 \end_inset
10801 </cell>
10802 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10803 \begin_inset Text
10804
10805 \begin_layout Plain Layout
10806 Claudio
10807 \end_layout
10808
10809 \end_inset
10810 </cell>
10811 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10812 \begin_inset Text
10813
10814 \begin_layout Plain Layout
10815 111
10816 \end_layout
10817
10818 \end_inset
10819 </cell>
10820 </row>
10821 <row>
10822 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10823 \begin_inset Text
10824
10825 \begin_layout Plain Layout
10826
10827 \series bold
10828 Rizzardi
10829 \end_layout
10830
10831 \end_inset
10832 </cell>
10833 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10834 \begin_inset Text
10835
10836 \begin_layout Plain Layout
10837 Paolo, 11.
10838  Fürst von Monte\SpecialChar \-
10839 com\SpecialChar \-
10840 patri, 11.
10841  Fürst von Sulmona und Vivaro, 10.
10842  Fürst von Rossano, 5.
10843  Herzog von Canemorte, 11.
10844  Herzog von Palombara, 5.
10845  Herzog von Castelchiodato,
10846 \begin_inset ERT
10847 status open
10848
10849 \begin_layout Plain Layout
10850
10851 & 111
10852 \backslash
10853
10854 \backslash
10855
10856 \end_layout
10857
10858 \begin_layout Plain Layout
10859
10860 &
10861 \end_layout
10862
10863 \end_inset
10864
10865  11.
10866  Herzog von Poggionativo, 11.
10867  Markis von Mentana, Norma, Civitella, Pratica, Moricone und Percille, 11.
10868  Graf von Valinfreda, 11.
10869  Baron von Cropalati, 11.
10870  Herr von Scarpa, Edelmann von Rom, Patrizier von Venedig, Neapel und Genua
10871 \end_layout
10872
10873 \end_inset
10874 </cell>
10875 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10876 \begin_inset Text
10877
10878 \begin_layout Plain Layout
10879
10880 \end_layout
10881
10882 \end_inset
10883 </cell>
10884 </row>
10885 <row>
10886 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10887 \begin_inset Text
10888
10889 \begin_layout Plain Layout
10890
10891 \series bold
10892 Stuffer
10893 \end_layout
10894
10895 \end_inset
10896 </cell>
10897 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10898 \begin_inset Text
10899
10900 \begin_layout Plain Layout
10901 Oskar
10902 \end_layout
10903
10904 \end_inset
10905 </cell>
10906 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10907 \begin_inset Text
10908
10909 \begin_layout Plain Layout
10910 111
10911 \end_layout
10912
10913 \end_inset
10914 </cell>
10915 </row>
10916 <row>
10917 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10918 \begin_inset Text
10919
10920 \begin_layout Plain Layout
10921
10922 \series bold
10923 Tacchelli
10924 \end_layout
10925
10926 \end_inset
10927 </cell>
10928 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10929 \begin_inset Text
10930
10931 \begin_layout Plain Layout
10932 Ugo
10933 \end_layout
10934
10935 \end_inset
10936 </cell>
10937 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10938 \begin_inset Text
10939
10940 \begin_layout Plain Layout
10941 111
10942 \end_layout
10943
10944 \end_inset
10945 </cell>
10946 </row>
10947 <row>
10948 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10949 \begin_inset Text
10950
10951 \begin_layout Plain Layout
10952
10953 \series bold
10954 Tezzele
10955 \end_layout
10956
10957 \end_inset
10958 </cell>
10959 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10960 \begin_inset Text
10961
10962 \begin_layout Plain Layout
10963 Margit
10964 \end_layout
10965
10966 \end_inset
10967 </cell>
10968 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10969 \begin_inset Text
10970
10971 \begin_layout Plain Layout
10972 111
10973 \end_layout
10974
10975 \end_inset
10976 </cell>
10977 </row>
10978 <row>
10979 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10980 \begin_inset Text
10981
10982 \begin_layout Plain Layout
10983
10984 \series bold
10985 Unterkalmsteiner
10986 \end_layout
10987
10988 \end_inset
10989 </cell>
10990 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10991 \begin_inset Text
10992
10993 \begin_layout Plain Layout
10994 Frieda
10995 \end_layout
10996
10997 \end_inset
10998 </cell>
10999 <cell alignment="center" valignment="top" rightline="true" usebox="none">
11000 \begin_inset Text
11001
11002 \begin_layout Plain Layout
11003 111
11004 \end_layout
11005
11006 \end_inset
11007 </cell>
11008 </row>
11009 <row>
11010 <cell alignment="center" valignment="top" leftline="true" usebox="none">
11011 \begin_inset Text
11012
11013 \begin_layout Plain Layout
11014
11015 \series bold
11016 Vieider
11017 \end_layout
11018
11019 \end_inset
11020 </cell>
11021 <cell alignment="center" valignment="top" rightline="true" usebox="none">
11022 \begin_inset Text
11023
11024 \begin_layout Plain Layout
11025 Hilde
11026 \end_layout
11027
11028 \end_inset
11029 </cell>
11030 <cell alignment="center" valignment="top" rightline="true" usebox="none">
11031 \begin_inset Text
11032
11033 \begin_layout Plain Layout
11034 111
11035 \end_layout
11036
11037 \end_inset
11038 </cell>
11039 </row>
11040 <row>
11041 <cell alignment="center" valignment="top" leftline="true" usebox="none">
11042 \begin_inset Text
11043
11044 \begin_layout Plain Layout
11045
11046 \series bold
11047 Vigna
11048 \end_layout
11049
11050 \end_inset
11051 </cell>
11052 <cell alignment="center" valignment="top" rightline="true" usebox="none">
11053 \begin_inset Text
11054
11055 \begin_layout Plain Layout
11056 Jürgen
11057 \end_layout
11058
11059 \end_inset
11060 </cell>
11061 <cell alignment="center" valignment="top" rightline="true" usebox="none">
11062 \begin_inset Text
11063
11064 \begin_layout Plain Layout
11065 111
11066 \end_layout
11067
11068 \end_inset
11069 </cell>
11070 </row>
11071 <row>
11072 <cell alignment="center" valignment="top" leftline="true" usebox="none">
11073 \begin_inset Text
11074
11075 \begin_layout Plain Layout
11076
11077 \series bold
11078 Weber
11079 \end_layout
11080
11081 \end_inset
11082 </cell>
11083 <cell alignment="center" valignment="top" rightline="true" usebox="none">
11084 \begin_inset Text
11085
11086 \begin_layout Plain Layout
11087 Maurizio
11088 \end_layout
11089
11090 \end_inset
11091 </cell>
11092 <cell alignment="center" valignment="top" rightline="true" usebox="none">
11093 \begin_inset Text
11094
11095 \begin_layout Plain Layout
11096 111
11097 \end_layout
11098
11099 \end_inset
11100 </cell>
11101 </row>
11102 <row>
11103 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11104 \begin_inset Text
11105
11106 \begin_layout Plain Layout
11107
11108 \series bold
11109 Winkler
11110 \end_layout
11111
11112 \end_inset
11113 </cell>
11114 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
11115 \begin_inset Text
11116
11117 \begin_layout Plain Layout
11118 Franz
11119 \end_layout
11120
11121 \end_inset
11122 </cell>
11123 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
11124 \begin_inset Text
11125
11126 \begin_layout Plain Layout
11127 111
11128 \end_layout
11129
11130 \end_inset
11131 </cell>
11132 </row>
11133 <row endlastfoot="true">
11134 <cell multicolumn="1" alignment="left" valignment="top" usebox="none">
11135 \begin_inset Text
11136
11137 \begin_layout Plain Layout
11138
11139 \end_layout
11140
11141 \end_inset
11142 </cell>
11143 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11144 \begin_inset Text
11145
11146 \begin_layout Plain Layout
11147
11148 \end_layout
11149
11150 \end_inset
11151 </cell>
11152 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11153 \begin_inset Text
11154
11155 \begin_layout Plain Layout
11156
11157 \end_layout
11158
11159 \end_inset
11160 </cell>
11161 </row>
11162 </lyxtabular>
11163
11164 \end_inset
11165
11166
11167 \end_layout
11168
11169 \begin_layout Section
11170 Mehrfache Zeilen, Spalten und Zeilen in Zellen
11171 \end_layout
11172
11173 \begin_layout Subsection
11174 Mehrfache Zeilen in Zellen
11175 \begin_inset CommandInset label
11176 LatexCommand label
11177 name "uab:Mehrfache-Zeilen-in"
11178
11179 \end_inset
11180
11181
11182 \begin_inset Index
11183 status collapsed
11184
11185 \begin_layout Plain Layout
11186 Mehrfache ! Zeilen in Zellen
11187 \end_layout
11188
11189 \end_inset
11190
11191
11192 \begin_inset Index
11193 status collapsed
11194
11195 \begin_layout Plain Layout
11196 Tabellen ! Zeilenumbrüche
11197 \end_layout
11198
11199 \end_inset
11200
11201
11202 \end_layout
11203
11204 \begin_layout Standard
11205 \align center
11206 \begin_inset Float table
11207 placement H
11208 wide false
11209 sideways false
11210 status open
11211
11212 \begin_layout Plain Layout
11213 \begin_inset Caption
11214
11215 \begin_layout Plain Layout
11216 \begin_inset CommandInset label
11217 LatexCommand label
11218 name "tab:Table-with-multiple"
11219
11220 \end_inset
11221
11222 Tabelle mit mehrfachen Zeilen in einer Zelle
11223 \end_layout
11224
11225 \end_inset
11226
11227
11228 \end_layout
11229
11230 \begin_layout Plain Layout
11231 \align center
11232 \begin_inset Tabular
11233 <lyxtabular version="3" rows="3" columns="3">
11234 <features>
11235 <column alignment="center" valignment="middle" width="2.5cm">
11236 <column alignment="center" valignment="middle" width="0.5cm">
11237 <column alignment="center" valignment="middle" width="0.5cm">
11238 <row>
11239 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11240 \begin_inset Text
11241
11242 \begin_layout Plain Layout
11243 zwei
11244 \begin_inset ERT
11245 status collapsed
11246
11247 \begin_layout Plain Layout
11248
11249
11250 \backslash
11251 linebreak 
11252 \end_layout
11253
11254 \end_inset
11255
11256  Zeilen
11257 \end_layout
11258
11259 \end_inset
11260 </cell>
11261 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11262 \begin_inset Text
11263
11264 \begin_layout Plain Layout
11265 b
11266 \end_layout
11267
11268 \end_inset
11269 </cell>
11270 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11271 \begin_inset Text
11272
11273 \begin_layout Plain Layout
11274 c
11275 \end_layout
11276
11277 \end_inset
11278 </cell>
11279 </row>
11280 <row>
11281 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11282 \begin_inset Text
11283
11284 \begin_layout Plain Layout
11285 d
11286 \end_layout
11287
11288 \end_inset
11289 </cell>
11290 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11291 \begin_inset Text
11292
11293 \begin_layout Plain Layout
11294 e
11295 \end_layout
11296
11297 \end_inset
11298 </cell>
11299 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11300 \begin_inset Text
11301
11302 \begin_layout Plain Layout
11303 f
11304 \end_layout
11305
11306 \end_inset
11307 </cell>
11308 </row>
11309 <row>
11310 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11311 \begin_inset Text
11312
11313 \begin_layout Plain Layout
11314 g
11315 \end_layout
11316
11317 \end_inset
11318 </cell>
11319 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11320 \begin_inset Text
11321
11322 \begin_layout Plain Layout
11323 h
11324 \end_layout
11325
11326 \end_inset
11327 </cell>
11328 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11329 \begin_inset Text
11330
11331 \begin_layout Plain Layout
11332 i
11333 \end_layout
11334
11335 \end_inset
11336 </cell>
11337 </row>
11338 </lyxtabular>
11339
11340 \end_inset
11341
11342
11343 \end_layout
11344
11345 \end_inset
11346
11347
11348 \end_layout
11349
11350 \begin_layout Standard
11351 Wenn Sie für eine Spalte eine feste Breite definieren, können Sie Text als
11352  Absätze mit mehrfachen Zeilen und Silbentrennung eingeben.
11353  Tabelle
11354 \begin_inset Space ~
11355 \end_inset
11356
11357
11358 \begin_inset CommandInset ref
11359 LatexCommand ref
11360 reference "tab:Table-with-multiple"
11361
11362 \end_inset
11363
11364  wurde als 3×3-Tabelle erstellt, dann die Breite der ersten Spalte im 
11365 \family sans
11366 Tabellen-Einstellungen
11367 \family default
11368 -Dialog auf 2.5
11369 \begin_inset Space \thinspace{}
11370 \end_inset
11371
11372 cm gesetzt und die vertikalen und horizontalen Ausrichtungen zentriert.
11373  Weil unser Text schmaler als 2.5
11374 \begin_inset Space \thinspace{}
11375 \end_inset
11376
11377 cm ist, würde er in einer Zeile gedruckt werden.
11378  Um zwei Zeilen zu bekommen, wurde folgender Befehl als TeX-Code zwischen
11379  die beiden Worten eingefügt:
11380 \end_layout
11381
11382 \begin_layout Standard
11383
11384 \series bold
11385
11386 \backslash
11387 linebreak
11388 \end_layout
11389
11390 \begin_layout Standard
11391 Wenn der Text länger ist, wird er automatisch umgebrochen.
11392 \end_layout
11393
11394 \begin_layout Standard
11395 Um den Text der beiden anderen Zellen der ersten Zeile vertikal auszurichten,
11396  setzen Sie die Breite der beiden Spalten im 
11397 \family sans
11398 Tabellen-Einstellungen
11399 \family default
11400 -Dialog auf 0.5
11401 \begin_inset Space \thinspace{}
11402 \end_inset
11403
11404 cm und die vertikale Ausrichtung auf zentriert.
11405 \end_layout
11406
11407 \begin_layout Standard
11408 Wenn Sie in einer Zelle mit fester Breite als erstes ein sehr langes Wort
11409  haben, kann LaTeX es ohne Trennhilfen nicht trennen.
11410  Wenn Sie LaTeX trotzdem die Trennung überlassen wollen, müssen Sie vor
11411  dem Wort etwas einfügen, damit es nicht wie der erste Eintrag aussieht.
11412  Fügen Sie den Befehl
11413 \end_layout
11414
11415 \begin_layout Standard
11416
11417 \series bold
11418
11419 \backslash
11420 hspace{0pt}
11421 \end_layout
11422
11423 \begin_layout Standard
11424 als TeX-Code vor dem Wort ein.
11425  Weil er keinen Platz belegt, ändert er die Druckausgabe nicht.
11426  Tabelle
11427 \begin_inset Space ~
11428 \end_inset
11429
11430
11431 \begin_inset CommandInset ref
11432 LatexCommand ref
11433 reference "tab:Table-with-and"
11434
11435 \end_inset
11436
11437  zeigt die Wirkungen.
11438 \end_layout
11439
11440 \begin_layout Standard
11441 \begin_inset Float table
11442 wide false
11443 sideways false
11444 status open
11445
11446 \begin_layout Plain Layout
11447 \begin_inset Caption
11448
11449 \begin_layout Plain Layout
11450 \begin_inset CommandInset label
11451 LatexCommand label
11452 name "tab:Table-with-and"
11453
11454 \end_inset
11455
11456 Tabelle ohne und mit Silbentrennung
11457 \end_layout
11458
11459 \end_inset
11460
11461
11462 \end_layout
11463
11464 \begin_layout Plain Layout
11465 \begin_inset Tabular
11466 <lyxtabular version="3" rows="3" columns="3">
11467 <features>
11468 <column alignment="center" valignment="middle" width="2.5cm">
11469 <column alignment="center" valignment="middle" width="0.5cm">
11470 <column alignment="center" valignment="middle" width="0.5cm">
11471 <row>
11472 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11473 \begin_inset Text
11474
11475 \begin_layout Plain Layout
11476 einsehrlangesZellenwort
11477 \end_layout
11478
11479 \end_inset
11480 </cell>
11481 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11482 \begin_inset Text
11483
11484 \begin_layout Plain Layout
11485 b
11486 \end_layout
11487
11488 \end_inset
11489 </cell>
11490 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11491 \begin_inset Text
11492
11493 \begin_layout Plain Layout
11494 c
11495 \end_layout
11496
11497 \end_inset
11498 </cell>
11499 </row>
11500 <row>
11501 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11502 \begin_inset Text
11503
11504 \begin_layout Plain Layout
11505 d
11506 \end_layout
11507
11508 \end_inset
11509 </cell>
11510 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11511 \begin_inset Text
11512
11513 \begin_layout Plain Layout
11514 e
11515 \end_layout
11516
11517 \end_inset
11518 </cell>
11519 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11520 \begin_inset Text
11521
11522 \begin_layout Plain Layout
11523 f
11524 \end_layout
11525
11526 \end_inset
11527 </cell>
11528 </row>
11529 <row>
11530 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11531 \begin_inset Text
11532
11533 \begin_layout Plain Layout
11534 g
11535 \end_layout
11536
11537 \end_inset
11538 </cell>
11539 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11540 \begin_inset Text
11541
11542 \begin_layout Plain Layout
11543 h
11544 \end_layout
11545
11546 \end_inset
11547 </cell>
11548 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11549 \begin_inset Text
11550
11551 \begin_layout Plain Layout
11552 i
11553 \end_layout
11554
11555 \end_inset
11556 </cell>
11557 </row>
11558 </lyxtabular>
11559
11560 \end_inset
11561
11562
11563 \begin_inset Space \hfill{}
11564 \end_inset
11565
11566
11567 \begin_inset Tabular
11568 <lyxtabular version="3" rows="3" columns="3">
11569 <features>
11570 <column alignment="center" valignment="middle" width="2.5cm">
11571 <column alignment="center" valignment="middle" width="0.5cm">
11572 <column alignment="center" valignment="middle" width="0.5cm">
11573 <row>
11574 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11575 \begin_inset Text
11576
11577 \begin_layout Plain Layout
11578 \begin_inset ERT
11579 status collapsed
11580
11581 \begin_layout Plain Layout
11582
11583
11584 \backslash
11585 hspace{0pt}
11586 \end_layout
11587
11588 \end_inset
11589
11590 einsehrlangesZellenwort
11591 \end_layout
11592
11593 \end_inset
11594 </cell>
11595 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11596 \begin_inset Text
11597
11598 \begin_layout Plain Layout
11599 b
11600 \end_layout
11601
11602 \end_inset
11603 </cell>
11604 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11605 \begin_inset Text
11606
11607 \begin_layout Plain Layout
11608 c
11609 \end_layout
11610
11611 \end_inset
11612 </cell>
11613 </row>
11614 <row>
11615 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11616 \begin_inset Text
11617
11618 \begin_layout Plain Layout
11619 d
11620 \end_layout
11621
11622 \end_inset
11623 </cell>
11624 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11625 \begin_inset Text
11626
11627 \begin_layout Plain Layout
11628 e
11629 \end_layout
11630
11631 \end_inset
11632 </cell>
11633 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11634 \begin_inset Text
11635
11636 \begin_layout Plain Layout
11637 f
11638 \end_layout
11639
11640 \end_inset
11641 </cell>
11642 </row>
11643 <row>
11644 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11645 \begin_inset Text
11646
11647 \begin_layout Plain Layout
11648 g
11649 \end_layout
11650
11651 \end_inset
11652 </cell>
11653 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11654 \begin_inset Text
11655
11656 \begin_layout Plain Layout
11657 h
11658 \end_layout
11659
11660 \end_inset
11661 </cell>
11662 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11663 \begin_inset Text
11664
11665 \begin_layout Plain Layout
11666 i
11667 \end_layout
11668
11669 \end_inset
11670 </cell>
11671 </row>
11672 </lyxtabular>
11673
11674 \end_inset
11675
11676
11677 \begin_inset Space \hfill{}
11678 \end_inset
11679
11680
11681 \begin_inset Tabular
11682 <lyxtabular version="3" rows="3" columns="3">
11683 <features>
11684 <column alignment="center" valignment="middle" width="2.5cm">
11685 <column alignment="center" valignment="top" width="0">
11686 <column alignment="center" valignment="top" width="0">
11687 <row>
11688 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11689 \begin_inset Text
11690
11691 \begin_layout Plain Layout
11692 ein\SpecialChar \-
11693 sehr\SpecialChar \-
11694 lan\SpecialChar \-
11695 ges\SpecialChar \-
11696 Zel\SpecialChar \-
11697 len\SpecialChar \-
11698 wort
11699 \end_layout
11700
11701 \end_inset
11702 </cell>
11703 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11704 \begin_inset Text
11705
11706 \begin_layout Plain Layout
11707 c
11708 \end_layout
11709
11710 \end_inset
11711 </cell>
11712 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11713 \begin_inset Text
11714
11715 \begin_layout Plain Layout
11716 d
11717 \end_layout
11718
11719 \end_inset
11720 </cell>
11721 </row>
11722 <row>
11723 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11724 \begin_inset Text
11725
11726 \begin_layout Plain Layout
11727 d
11728 \end_layout
11729
11730 \end_inset
11731 </cell>
11732 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11733 \begin_inset Text
11734
11735 \begin_layout Plain Layout
11736 e
11737 \end_layout
11738
11739 \end_inset
11740 </cell>
11741 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11742 \begin_inset Text
11743
11744 \begin_layout Plain Layout
11745 f
11746 \end_layout
11747
11748 \end_inset
11749 </cell>
11750 </row>
11751 <row>
11752 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11753 \begin_inset Text
11754
11755 \begin_layout Plain Layout
11756 g
11757 \end_layout
11758
11759 \end_inset
11760 </cell>
11761 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11762 \begin_inset Text
11763
11764 \begin_layout Plain Layout
11765 h
11766 \end_layout
11767
11768 \end_inset
11769 </cell>
11770 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11771 \begin_inset Text
11772
11773 \begin_layout Plain Layout
11774 i
11775 \end_layout
11776
11777 \end_inset
11778 </cell>
11779 </row>
11780 </lyxtabular>
11781
11782 \end_inset
11783
11784
11785 \end_layout
11786
11787 \end_inset
11788
11789
11790 \end_layout
11791
11792 \begin_layout Subsection
11793 Mehrfachspalten
11794 \begin_inset CommandInset label
11795 LatexCommand label
11796 name "uab:Mehrfachspalten"
11797
11798 \end_inset
11799
11800
11801 \begin_inset Index
11802 status collapsed
11803
11804 \begin_layout Plain Layout
11805 Mahrfachspalten
11806 \end_layout
11807
11808 \end_inset
11809
11810
11811 \begin_inset Index
11812 status collapsed
11813
11814 \begin_layout Plain Layout
11815 Tabellen ! Mahrfachspalten
11816 \end_layout
11817
11818 \end_inset
11819
11820
11821 \end_layout
11822
11823 \begin_layout Subsubsection
11824 Grundlagen
11825 \end_layout
11826
11827 \begin_layout Standard
11828 Um mehrere Zellen einer Zeile zu einer zu verbinden, markieren Sie diese
11829  und verwenden dann den Knopf 
11830 \begin_inset Graphics
11831         filename ../../images/tabular-feature_multicolumn.png
11832         scale 70
11833         scaleBeforeRotation
11834         BoundingBox 0bp 6bp 22bp 22bp
11835
11836 \end_inset
11837
11838 in der Werkzeugleiste, das Menü 
11839 \family sans
11840 Bearbeiten\SpecialChar \menuseparator
11841 Tabelle\SpecialChar \menuseparator
11842 Mehrfachspalte
11843 \family default
11844  oder den 
11845 \family sans
11846 Tabellen-Einstellungen
11847 \family default
11848 -Dialog, in dem Sie auf der Karteikarte 
11849 \family sans
11850 Tabellen-Einstellungen
11851 \family default
11852  
11853 \family sans
11854 Mehrfachspalte
11855 \family default
11856  ankreuzen.
11857 \end_layout
11858
11859 \begin_layout Standard
11860 Mehrfachspalten haben ihre eigenen Einstellungen.
11861  Das bedeutet, dass sie sich nur auf die Mehrfachspalte auswirken.
11862  Hier ist ein Beispiel, wobei 
11863 \begin_inset Quotes gld
11864 \end_inset
11865
11866 B 2
11867 \begin_inset Quotes grd
11868 \end_inset
11869
11870  keine Mehrfachzeile ist, wie in Abschnitt
11871 \begin_inset Space ~
11872 \end_inset
11873
11874
11875 \begin_inset CommandInset ref
11876 LatexCommand ref
11877 reference "uab:Mehrfachzeilen"
11878
11879 \end_inset
11880
11881  beschrieben.
11882  Es wurde nur eine Linie weggelassen:
11883 \end_layout
11884
11885 \begin_layout Standard
11886 \align center
11887 \begin_inset Tabular
11888 <lyxtabular version="3" rows="3" columns="4">
11889 <features firstHeadTopDL="true" firstHeadBottomDL="true">
11890 <column alignment="center" valignment="top" width="0pt">
11891 <column alignment="center" valignment="middle" width="0">
11892 <column alignment="center" valignment="top" width="0in">
11893 <column alignment="center" valignment="top" width="0pt">
11894 <row>
11895 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11896 \begin_inset Text
11897
11898 \begin_layout Plain Layout
11899 abc
11900 \end_layout
11901
11902 \end_inset
11903 </cell>
11904 <cell multicolumn="1" alignment="center" valignment="middle" topline="true" bottomline="true" leftline="true" usebox="none">
11905 \begin_inset Text
11906
11907 \begin_layout Plain Layout
11908 def ghi
11909 \end_layout
11910
11911 \end_inset
11912 </cell>
11913 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11914 \begin_inset Text
11915
11916 \begin_layout Plain Layout
11917
11918 \end_layout
11919
11920 \end_inset
11921 </cell>
11922 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11923 \begin_inset Text
11924
11925 \begin_layout Plain Layout
11926 jkl
11927 \end_layout
11928
11929 \end_inset
11930 </cell>
11931 </row>
11932 <row>
11933 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11934 \begin_inset Text
11935
11936 \begin_layout Plain Layout
11937
11938 \family roman
11939 \series medium
11940 \shape up
11941 \size normal
11942 \emph off
11943 \bar no
11944 \noun off
11945 \color none
11946 A
11947 \end_layout
11948
11949 \end_inset
11950 </cell>
11951 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11952 \begin_inset Text
11953
11954 \begin_layout Plain Layout
11955 B
11956 \end_layout
11957
11958 \end_inset
11959 </cell>
11960 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11961 \begin_inset Text
11962
11963 \begin_layout Plain Layout
11964 C
11965 \end_layout
11966
11967 \end_inset
11968 </cell>
11969 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11970 \begin_inset Text
11971
11972 \begin_layout Plain Layout
11973 D
11974 \end_layout
11975
11976 \end_inset
11977 </cell>
11978 </row>
11979 <row>
11980 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11981 \begin_inset Text
11982
11983 \begin_layout Plain Layout
11984 1
11985 \end_layout
11986
11987 \end_inset
11988 </cell>
11989 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11990 \begin_inset Text
11991
11992 \begin_layout Plain Layout
11993 2
11994 \end_layout
11995
11996 \end_inset
11997 </cell>
11998 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11999 \begin_inset Text
12000
12001 \begin_layout Plain Layout
12002 3
12003 \end_layout
12004
12005 \end_inset
12006 </cell>
12007 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12008 \begin_inset Text
12009
12010 \begin_layout Plain Layout
12011 4
12012 \end_layout
12013
12014 \end_inset
12015 </cell>
12016 </row>
12017 </lyxtabular>
12018
12019 \end_inset
12020
12021
12022 \end_layout
12023
12024 \begin_layout Subsubsection
12025 Mehrfachspalten-Berechnungen
12026 \begin_inset CommandInset label
12027 LatexCommand label
12028 name "uab:Mehrfachspalten-Berechnungen"
12029
12030 \end_inset
12031
12032
12033 \begin_inset Index
12034 status collapsed
12035
12036 \begin_layout Plain Layout
12037 Mahrfachspalten ! Berechnung
12038 \end_layout
12039
12040 \end_inset
12041
12042
12043 \begin_inset Index
12044 status collapsed
12045
12046 \begin_layout Plain Layout
12047 Tabellen ! Mahrfachspalten ! Berechnung
12048 \end_layout
12049
12050 \end_inset
12051
12052
12053 \end_layout
12054
12055 \begin_layout Standard
12056 LyX unterstützt Mehrfachspalten direkt, aber wir müssen die Breite der neuen
12057  Zellen beachten.
12058 \end_layout
12059
12060 \begin_layout Standard
12061 \begin_inset Float table
12062 placement h
12063 wide false
12064 sideways false
12065 status open
12066
12067 \begin_layout Plain Layout
12068 \begin_inset Caption
12069
12070 \begin_layout Plain Layout
12071 \begin_inset CommandInset label
12072 LatexCommand label
12073 name "tab:Table-with-centered"
12074
12075 \end_inset
12076
12077 Tabelle mit zentriertem Mehrfachspalten-Text über zwei Spalten, die genau
12078  die halbe Breite der Mehrfachspalten-Zelle haben
12079 \begin_inset OptArg
12080 status collapsed
12081
12082 \begin_layout Plain Layout
12083 Eine Mehrfachspalten-Tabelle
12084 \end_layout
12085
12086 \end_inset
12087
12088
12089 \end_layout
12090
12091 \end_inset
12092
12093
12094 \end_layout
12095
12096 \begin_layout Plain Layout
12097 \align center
12098 \begin_inset Tabular
12099 <lyxtabular version="3" rows="3" columns="3">
12100 <features>
12101 <column alignment="center" valignment="middle" width="0" special=">{\centering}m{1.25cm-6.2pt}">
12102 <column alignment="center" valignment="middle" width="0">
12103 <column alignment="center" valignment="top" width="0">
12104 <row>
12105 <cell multicolumn="1" alignment="center" valignment="middle" topline="true" leftline="true" usebox="none" special=">{\centering}m{2.5cm}">
12106 \begin_inset Text
12107
12108 \begin_layout Plain Layout
12109 Dies ist eine Mehrfach\SpecialChar \-
12110 spalten-Zelle
12111 \end_layout
12112
12113 \end_inset
12114 </cell>
12115 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12116 \begin_inset Text
12117
12118 \begin_layout Plain Layout
12119
12120 \end_layout
12121
12122 \end_inset
12123 </cell>
12124 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12125 \begin_inset Text
12126
12127 \begin_layout Plain Layout
12128 c
12129 \end_layout
12130
12131 \end_inset
12132 </cell>
12133 </row>
12134 <row>
12135 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12136 \begin_inset Text
12137
12138 \begin_layout Plain Layout
12139 d
12140 \end_layout
12141
12142 \end_inset
12143 </cell>
12144 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12145 \begin_inset Text
12146
12147 \begin_layout Plain Layout
12148 e
12149 \end_layout
12150
12151 \end_inset
12152 </cell>
12153 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12154 \begin_inset Text
12155
12156 \begin_layout Plain Layout
12157 f
12158 \end_layout
12159
12160 \end_inset
12161 </cell>
12162 </row>
12163 <row>
12164 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12165 \begin_inset Text
12166
12167 \begin_layout Plain Layout
12168 g
12169 \end_layout
12170
12171 \end_inset
12172 </cell>
12173 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12174 \begin_inset Text
12175
12176 \begin_layout Plain Layout
12177 h
12178 \end_layout
12179
12180 \end_inset
12181 </cell>
12182 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12183 \begin_inset Text
12184
12185 \begin_layout Plain Layout
12186 i
12187 \end_layout
12188
12189 \end_inset
12190 </cell>
12191 </row>
12192 </lyxtabular>
12193
12194 \end_inset
12195
12196
12197 \end_layout
12198
12199 \end_inset
12200
12201
12202 \end_layout
12203
12204 \begin_layout Standard
12205 Um Tabelle
12206 \begin_inset Space ~
12207 \end_inset
12208
12209
12210 \begin_inset CommandInset ref
12211 LatexCommand ref
12212 reference "tab:Table-with-centered"
12213
12214 \end_inset
12215
12216  zu erhalten, markieren Sie die ersten beiden Zellen der ersten Zeile einer
12217  3×3-Tabelle, kreuzen im 
12218 \family sans
12219 Tabellen-Einstellungen
12220 \family default
12221 -Dialog 
12222 \family sans
12223 Mehrfachspalte
12224 \family default
12225  an, setzen die 
12226 \family sans
12227 Horizontale
12228 \begin_inset Space ~
12229 \end_inset
12230
12231 Ausrichtung
12232 \family default
12233  auf 
12234 \family sans
12235 Zentriert
12236 \family default
12237  und die 
12238 \family sans
12239 Breite
12240 \family default
12241  auf 2.5
12242 \begin_inset Space \thinspace{}
12243 \end_inset
12244
12245 cm.
12246  Die überspannten Spalten werden dann auf die halbe Breite gesetzt, indem
12247  Sie die Breite der ersten Spalte auf 1.25
12248 \begin_inset Space \thinspace{}
12249 \end_inset
12250
12251 cm setzen.
12252  Die zweite Spalte wird dann automatisch 1.25
12253 \begin_inset Space \thinspace{}
12254 \end_inset
12255
12256 cm breit (Breite der 
12257 \family sans
12258 Mehrfachspalte
12259 \family default
12260  
12261 \begin_inset Formula $-$
12262 \end_inset
12263
12264  Breite der ersten Spalte).
12265  Dies wurde so für Tabelle
12266 \begin_inset Space ~
12267 \end_inset
12268
12269
12270 \begin_inset CommandInset ref
12271 LatexCommand ref
12272 reference "tab:Table-without-half"
12273
12274 \end_inset
12275
12276  gemacht.
12277 \end_layout
12278
12279 \begin_layout Standard
12280 \begin_inset Float table
12281 wide false
12282 sideways false
12283 status open
12284
12285 \begin_layout Plain Layout
12286 \begin_inset Caption
12287
12288 \begin_layout Plain Layout
12289 \begin_inset CommandInset label
12290 LatexCommand label
12291 name "tab:Table-without-half"
12292
12293 \end_inset
12294
12295 Tabelle, in der die überspannten Spalten nicht genau halb so breit sind
12296  wie die Mehrfachspalte
12297 \begin_inset OptArg
12298 status collapsed
12299
12300 \begin_layout Plain Layout
12301 Eine unvollkommene Mehrfachspalten-Tabelle
12302 \end_layout
12303
12304 \end_inset
12305
12306
12307 \end_layout
12308
12309 \end_inset
12310
12311
12312 \end_layout
12313
12314 \begin_layout Plain Layout
12315 \align center
12316 \begin_inset Tabular
12317 <lyxtabular version="3" rows="3" columns="3">
12318 <features>
12319 <column alignment="center" valignment="top" width="1.25cm">
12320 <column alignment="center" valignment="top" width="0">
12321 <column alignment="center" valignment="top" width="0">
12322 <row>
12323 <cell multicolumn="1" alignment="center" valignment="top" topline="true" leftline="true" usebox="none" width="2.5cm">
12324 \begin_inset Text
12325
12326 \begin_layout Plain Layout
12327 Dies ist auch eine Mehr\SpecialChar \-
12328 fach\SpecialChar \-
12329 spalten-Zelle
12330 \end_layout
12331
12332 \end_inset
12333 </cell>
12334 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12335 \begin_inset Text
12336
12337 \begin_layout Plain Layout
12338
12339 \end_layout
12340
12341 \end_inset
12342 </cell>
12343 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12344 \begin_inset Text
12345
12346 \begin_layout Plain Layout
12347 c
12348 \end_layout
12349
12350 \end_inset
12351 </cell>
12352 </row>
12353 <row>
12354 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12355 \begin_inset Text
12356
12357 \begin_layout Plain Layout
12358 d
12359 \end_layout
12360
12361 \end_inset
12362 </cell>
12363 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12364 \begin_inset Text
12365
12366 \begin_layout Plain Layout
12367 e
12368 \end_layout
12369
12370 \end_inset
12371 </cell>
12372 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12373 \begin_inset Text
12374
12375 \begin_layout Plain Layout
12376 f
12377 \end_layout
12378
12379 \end_inset
12380 </cell>
12381 </row>
12382 <row>
12383 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12384 \begin_inset Text
12385
12386 \begin_layout Plain Layout
12387 g
12388 \end_layout
12389
12390 \end_inset
12391 </cell>
12392 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12393 \begin_inset Text
12394
12395 \begin_layout Plain Layout
12396 h
12397 \end_layout
12398
12399 \end_inset
12400 </cell>
12401 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12402 \begin_inset Text
12403
12404 \begin_layout Plain Layout
12405 i
12406 \end_layout
12407
12408 \end_inset
12409 </cell>
12410 </row>
12411 </lyxtabular>
12412
12413 \end_inset
12414
12415
12416 \end_layout
12417
12418 \end_inset
12419
12420
12421 \end_layout
12422
12423 \begin_layout Standard
12424 In der druckfertigen Version sehen Sie, dass die erste Spalte etwas breiter
12425  als die zweite ist.
12426  Das liegt daran, dass die Zellenbreite 
12427 \begin_inset Formula $W_{\mathrm{tot}}$
12428 \end_inset
12429
12430  nicht ihre definierte Breite 
12431 \begin_inset Formula $W_{g}$
12432 \end_inset
12433
12434  ist, sondern ein wenig mehr.
12435  Anhang
12436 \begin_inset Space ~
12437 \end_inset
12438
12439
12440 \begin_inset CommandInset ref
12441 LatexCommand ref
12442 reference "kap:Exläuterung-einer-Gleichung"
12443
12444 \end_inset
12445
12446  erklärt das genauer.
12447 \end_layout
12448
12449 \begin_layout Standard
12450 Wenn 
12451 \emph on
12452 n
12453 \emph default
12454  Spalten zu einer Mehrfachspalte zusammengefasst werden, errechnet sich
12455  die definierte Breite 
12456 \begin_inset Formula $W_{g\, n}$
12457 \end_inset
12458
12459  einer Spalte, deren totale Breite = 
12460 \begin_inset Formula $W_{\mathrm{tot\, multicolumn}}/n$
12461 \end_inset
12462
12463  sein soll, wie folgt:
12464 \begin_inset Formula \begin{equation}
12465 W_{g\, n}=(W_{g\,\mathrm{multicolumn}}+(1-n)\cdot(12.4\,\mathrm{pt}))/n\label{eq:Wgn}\end{equation}
12466
12467 \end_inset
12468
12469
12470 \end_layout
12471
12472 \begin_layout Standard
12473 In unserem Falls ist 
12474 \begin_inset Formula $n=2$
12475 \end_inset
12476
12477
12478 \begin_inset Formula $W_{g\,\mathrm{multicolumn}}=2.5\,$
12479 \end_inset
12480
12481 cm, und damit wird aus Gleichung
12482 \begin_inset Space ~
12483 \end_inset
12484
12485
12486 \begin_inset CommandInset ref
12487 LatexCommand ref
12488 reference "eq:Wgn"
12489
12490 \end_inset
12491
12492  
12493 \begin_inset Formula \begin{equation}
12494 W_{g\,2}=1.25\,\mathrm{cm}-6.2\,\mathrm{pt}\end{equation}
12495
12496 \end_inset
12497
12498
12499 \end_layout
12500
12501 \begin_layout Standard
12502 Damit LaTeX rechnen kann, muss das Paket 
12503 \series bold
12504 calc
12505 \series default
12506  im Vorspann geladen werden.
12507 \begin_inset Index
12508 status collapsed
12509
12510 \begin_layout Plain Layout
12511 LaTeX-Pakete ! calc
12512 \end_layout
12513
12514 \end_inset
12515
12516
12517 \end_layout
12518
12519 \begin_layout Standard
12520
12521 \series bold
12522
12523 \backslash
12524 usepackage{calc}
12525 \end_layout
12526
12527 \begin_layout Standard
12528 LyX erlaubt im 
12529 \family sans
12530 Breite
12531 \family default
12532 -Feld des 
12533 \family sans
12534 Tabellen-Einstellungen
12535 \family default
12536 -Dialogs keine Berechnungen.
12537  Deshalb müssen Sie die Formel für die Breite im Feld 
12538 \family sans
12539 LaTe
12540 \begin_inset ERT
12541 status collapsed
12542
12543 \begin_layout Plain Layout
12544
12545 {}
12546 \end_layout
12547
12548 \end_inset
12549
12550 X-Argument
12551 \family default
12552  eingeben.
12553  Hier iss ein Überblick über die Argumente:
12554 \end_layout
12555
12556 \begin_layout Itemize
12557
12558 \series bold
12559 p{Breite}
12560 \series default
12561  die Zelle bekommt eine feste 
12562 \series bold
12563 Breite
12564 \series default
12565 , und die vertikale Ausrichtung ist 
12566 \family sans
12567 Oben
12568 \end_layout
12569
12570 \begin_layout Itemize
12571
12572 \series bold
12573 m{Breite}
12574 \series default
12575  die Zelle bekommt eine feste 
12576 \series bold
12577 Breite
12578 \series default
12579 , und die vertikale Ausrichtung ist 
12580 \family sans
12581 Mitte
12582 \end_layout
12583
12584 \begin_layout Itemize
12585
12586 \series bold
12587 b{Breite}
12588 \series default
12589  die Zelle bekommt eine feste 
12590 \series bold
12591 Breite
12592 \series default
12593 , und die vertikale Ausrichtung ist 
12594 \family sans
12595 Unten
12596 \end_layout
12597
12598 \begin_layout Standard
12599 Wenn Sie ein LaTeX-Argument eingeben, werden alle anderen Einstellungen
12600  für diese Zelle überschrieben.
12601 \end_layout
12602
12603 \begin_layout Standard
12604 \begin_inset Note Greyedout
12605 status open
12606
12607 \begin_layout Plain Layout
12608
12609 \series bold
12610 Bemerkung:
12611 \series default
12612  Wegen eines Fehlers in LyX, werden die überschriebenen Einstellungen dennoch
12613  angezeigt.
12614 \end_layout
12615
12616 \end_inset
12617
12618
12619 \end_layout
12620
12621 \begin_layout Standard
12622 Weil der Text horizontal zentriert sein soll, wurde in den Einstellungen
12623  der Zelle mit dem Inhalt 
12624 \begin_inset Quotes gld
12625 \end_inset
12626
12627 d
12628 \begin_inset Quotes grd
12629 \end_inset
12630
12631  der Tabelle
12632 \begin_inset Space ~
12633 \end_inset
12634
12635
12636 \begin_inset CommandInset ref
12637 LatexCommand ref
12638 reference "tab:Table-with-centered"
12639
12640 \end_inset
12641
12642  auch noch der Befehl
12643 \family typewriter
12644 \series bold
12645  
12646 \family default
12647
12648 \backslash
12649 centering
12650 \series default
12651  hinzugefügt.
12652  Das Ganze sieht dann so aus:
12653 \end_layout
12654
12655 \begin_layout Standard
12656
12657 \series bold
12658 |>{
12659 \backslash
12660 centering}m{1.25cm-6.2pt}
12661 \end_layout
12662
12663 \begin_layout Standard
12664 Der vertikale Strich 
12665 \series bold
12666
12667 \begin_inset Quotes gld
12668 \end_inset
12669
12670 |
12671 \series default
12672
12673 \begin_inset Quotes grd
12674 \end_inset
12675
12676  am Anfang zeichnet die linke Linie, und der Befehl 
12677 \series bold
12678
12679 \begin_inset Quotes gld
12680 \end_inset
12681
12682 >{ }
12683 \begin_inset Quotes grd
12684 \end_inset
12685
12686
12687 \series default
12688  bedeutet, dass die Befehle in der geschweiften Klammer vor dem Erstellen
12689  der Zelle benutzt werden sollen.
12690 \end_layout
12691
12692 \begin_layout Standard
12693 Obwohl wir eine zentrierte Ausrichtung für die Mehrfachspalte festgelegt
12694  haben, ist der Text noch immer linksbündig, weil LyX Ausrichtungen nur
12695  für einzelne Spalten anwendet.
12696  Deswegen musste für die Mehrfachspalte folgendes LaTeX-Argument benutzt
12697  werden:
12698 \end_layout
12699
12700 \begin_layout Standard
12701
12702 \series bold
12703 |>{
12704 \backslash
12705 centering}m{2.5cm}|
12706 \end_layout
12707
12708 \begin_layout Subsection
12709 Mehrfachzeilen
12710 \begin_inset CommandInset label
12711 LatexCommand label
12712 name "uab:Mehrfachzeilen"
12713
12714 \end_inset
12715
12716
12717 \begin_inset Index
12718 status collapsed
12719
12720 \begin_layout Plain Layout
12721 Mehrfachzeilen
12722 \end_layout
12723
12724 \end_inset
12725
12726
12727 \begin_inset Index
12728 status collapsed
12729
12730 \begin_layout Plain Layout
12731 Tabellen ! Mehrfachzeilen
12732 \end_layout
12733
12734 \end_inset
12735
12736
12737 \end_layout
12738
12739 \begin_layout Standard
12740 Im Gegensatz zu Mehrfachspalten werden Mehrfachzeilen noch nicht durch LyX
12741  unterstützt, sodass etwas TeX-Code notwendig.
12742  Damit LaTeX Mehrfachzeilen erzeugen kann, muss das Paket 
12743 \series bold
12744 multirow
12745 \series default
12746
12747 \begin_inset Index
12748 status collapsed
12749
12750 \begin_layout Plain Layout
12751 LaTeX-Pakete ! multirow
12752 \end_layout
12753
12754 \end_inset
12755
12756  im Vorspann geladen werden:
12757 \end_layout
12758
12759 \begin_layout Standard
12760
12761 \series bold
12762
12763 \backslash
12764 usepackage{multirow}
12765 \end_layout
12766
12767 \begin_layout Standard
12768 Mehrfachzeilen werden mit folgendem Befehl erzeugt:
12769 \end_layout
12770
12771 \begin_layout Standard
12772
12773 \series bold
12774
12775 \backslash
12776 multirow{Zeilenzahl}{Zellenbreite}{Zelleninhalt}
12777 \end_layout
12778
12779 \begin_layout Standard
12780 In der folgenden 3×3-Tabelle wurde die letzte Zelle  der ersten Spalte als
12781  Mehrfachspalte definiert und die obere Linie entfernt.
12782 \end_layout
12783
12784 \begin_layout Standard
12785 \align center
12786 \begin_inset ERT
12787 status collapsed
12788
12789 \begin_layout Plain Layout
12790
12791
12792 \backslash
12793 renewcommand{
12794 \backslash
12795 multirowsetup}{
12796 \backslash
12797 centering}
12798 \end_layout
12799
12800 \end_inset
12801
12802
12803 \begin_inset Tabular
12804 <lyxtabular version="3" rows="3" columns="3">
12805 <features>
12806 <column alignment="center" valignment="top" width="0">
12807 <column alignment="center" valignment="top" width="0">
12808 <column alignment="center" valignment="top" width="0">
12809 <row>
12810 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12811 \begin_inset Text
12812
12813 \begin_layout Plain Layout
12814 a
12815 \end_layout
12816
12817 \end_inset
12818 </cell>
12819 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12820 \begin_inset Text
12821
12822 \begin_layout Plain Layout
12823 b
12824 \end_layout
12825
12826 \end_inset
12827 </cell>
12828 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12829 \begin_inset Text
12830
12831 \begin_layout Plain Layout
12832 c
12833 \end_layout
12834
12835 \end_inset
12836 </cell>
12837 </row>
12838 <row>
12839 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12840 \begin_inset Text
12841
12842 \begin_layout Plain Layout
12843 \begin_inset ERT
12844 status collapsed
12845
12846 \begin_layout Plain Layout
12847
12848
12849 \backslash
12850 multirow{2}{2.5cm}{
12851 \end_layout
12852
12853 \end_inset
12854
12855 Mehrfach\SpecialChar \-
12856 zeilen-Text
12857 \begin_inset ERT
12858 status collapsed
12859
12860 \begin_layout Plain Layout
12861
12862 }
12863 \end_layout
12864
12865 \end_inset
12866
12867
12868 \end_layout
12869
12870 \end_inset
12871 </cell>
12872 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12873 \begin_inset Text
12874
12875 \begin_layout Plain Layout
12876 e
12877 \end_layout
12878
12879 \end_inset
12880 </cell>
12881 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12882 \begin_inset Text
12883
12884 \begin_layout Plain Layout
12885 f
12886 \end_layout
12887
12888 \end_inset
12889 </cell>
12890 </row>
12891 <row>
12892 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
12893 \begin_inset Text
12894
12895 \begin_layout Plain Layout
12896
12897 \end_layout
12898
12899 \end_inset
12900 </cell>
12901 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12902 \begin_inset Text
12903
12904 \begin_layout Plain Layout
12905 h
12906 \end_layout
12907
12908 \end_inset
12909 </cell>
12910 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12911 \begin_inset Text
12912
12913 \begin_layout Plain Layout
12914 i
12915 \end_layout
12916
12917 \end_inset
12918 </cell>
12919 </row>
12920 </lyxtabular>
12921
12922 \end_inset
12923
12924
12925 \begin_inset ERT
12926 status collapsed
12927
12928 \begin_layout Plain Layout
12929
12930
12931 \backslash
12932 renewcommand{
12933 \backslash
12934 multirowsetup}{
12935 \backslash
12936 raggedright}
12937 \end_layout
12938
12939 \end_inset
12940
12941
12942 \end_layout
12943
12944 \begin_layout Standard
12945 In der Zelle darüber wurde dann mit dem Befehl
12946 \end_layout
12947
12948 \begin_layout Standard
12949
12950 \series bold
12951
12952 \backslash
12953 multirow{2}{2.5cm}{
12954 \end_layout
12955
12956 \begin_layout Standard
12957 als TeX-Code die Mehrfachzeile definiert.
12958  Sie besteht aus zwei Zeilen und einer Breite von 2.5
12959 \begin_inset Space \thinspace{}
12960 \end_inset
12961
12962 cm.
12963  Der Inhalt steht außerhalb des TeX-Code-Kästchens, und der Befehl wird
12964  mit der Klammer 
12965 \begin_inset Quotes gld
12966 \end_inset
12967
12968
12969 \series bold
12970 }
12971 \series default
12972
12973 \begin_inset Quotes grd
12974 \end_inset
12975
12976  in einem weiteren TeX-Code-Kästchen abgeschlossen.
12977 \end_layout
12978
12979 \begin_layout Standard
12980
12981 \series bold
12982
12983 \backslash
12984 multirow
12985 \series default
12986  richtet seinen Inhalt standardmäßig linksbündig aus.
12987  Das wurde mit dem Befehl
12988 \end_layout
12989
12990 \begin_layout Standard
12991
12992 \series bold
12993
12994 \backslash
12995 renewcommand{
12996 \backslash
12997 multirowsetup}{
12998 \backslash
12999 centering}
13000 \end_layout
13001
13002 \begin_layout Standard
13003 als TeX-Code  vor der (Gleitobjekt-)Tabelle überschrieben und durch
13004 \end_layout
13005
13006 \begin_layout Standard
13007
13008 \series bold
13009
13010 \backslash
13011 renewcommand{
13012 \backslash
13013 multirowsetup}{
13014 \backslash
13015 raggedright}
13016 \end_layout
13017
13018 \begin_layout Standard
13019 zurückgesetzt.
13020  Für rechtsbündigen Text benutzt man 
13021 \series bold
13022
13023 \backslash
13024 raggedleft
13025 \series default
13026 .
13027 \end_layout
13028
13029 \begin_layout Section
13030 Formale Tabellen
13031 \begin_inset CommandInset label
13032 LatexCommand label
13033 name "abs:Formale-Tabellen"
13034
13035 \end_inset
13036
13037
13038 \begin_inset Index
13039 status collapsed
13040
13041 \begin_layout Plain Layout
13042 Tabellen ! Formale
13043 \end_layout
13044
13045 \end_inset
13046
13047
13048 \end_layout
13049
13050 \begin_layout Standard
13051 Tabellen werden in Büchern oft wie Tabelle
13052 \begin_inset Space ~
13053 \end_inset
13054
13055
13056 \begin_inset CommandInset ref
13057 LatexCommand ref
13058 reference "tab:Formale-Tabelle"
13059
13060 \end_inset
13061
13062  gesetzt.
13063  Diese Tabellen werden
13064 \emph on
13065  formal
13066 \emph default
13067  genannt.
13068  Formale Tabellen bekommen Sie, wenn Sie im 
13069 \family sans
13070 Tabellen-Einstellungen
13071 \family default
13072 -Dialog auf der Karteikarte 
13073 \family sans
13074 Rahmen
13075 \family default
13076  den 
13077 \family sans
13078 Stil
13079 \family default
13080  
13081 \family sans
13082 Formal
13083 \family default
13084  ankreuzen.
13085 \end_layout
13086
13087 \begin_layout Standard
13088 \begin_inset Float table
13089 placement h
13090 wide false
13091 sideways false
13092 status open
13093
13094 \begin_layout Plain Layout
13095 \begin_inset Caption
13096
13097 \begin_layout Plain Layout
13098 \begin_inset CommandInset label
13099 LatexCommand label
13100 name "tab:Formale-Tabelle"
13101
13102 \end_inset
13103
13104 Formale Tabelle
13105 \end_layout
13106
13107 \end_inset
13108
13109
13110 \end_layout
13111
13112 \begin_layout Plain Layout
13113 \align center
13114 \begin_inset Tabular
13115 <lyxtabular version="3" rows="8" columns="4">
13116 <features booktabs="true">
13117 <column alignment="center" valignment="top" width="0">
13118 <column alignment="right" valignment="top" width="0">
13119 <column alignment="right" valignment="top" width="0">
13120 <column alignment="right" valignment="top" width="0">
13121 <row>
13122 <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
13123 \begin_inset Text
13124
13125 \begin_layout Plain Layout
13126 System
13127 \end_layout
13128
13129 \end_inset
13130 </cell>
13131 <cell alignment="center" valignment="top" topline="true" usebox="none">
13132 \begin_inset Text
13133
13134 \begin_layout Plain Layout
13135 Medipix
13136 \begin_inset Formula $\,$
13137 \end_inset
13138
13139 1
13140 \end_layout
13141
13142 \end_inset
13143 </cell>
13144 <cell multicolumn="1" alignment="center" valignment="top" usebox="none">
13145 \begin_inset Text
13146
13147 \begin_layout Plain Layout
13148 Medipix
13149 \begin_inset Formula $\,$
13150 \end_inset
13151
13152 2
13153 \end_layout
13154
13155 \end_inset
13156 </cell>
13157 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13158 \begin_inset Text
13159
13160 \begin_layout Plain Layout
13161
13162 \end_layout
13163
13164 \end_inset
13165 </cell>
13166 </row>
13167 <row>
13168 <cell alignment="center" valignment="top" rightline="true" usebox="none">
13169 \begin_inset Text
13170
13171 \begin_layout Plain Layout
13172 \begin_inset ERT
13173 status collapsed
13174
13175 \begin_layout Plain Layout
13176
13177
13178 \backslash
13179 cmidrule(r){2-2}
13180 \end_layout
13181
13182 \end_inset
13183
13184
13185 \begin_inset ERT
13186 status collapsed
13187
13188 \begin_layout Plain Layout
13189
13190
13191 \backslash
13192 cmidrule(l){3-4}
13193 \end_layout
13194
13195 \end_inset
13196
13197 Detektordicke [µm]
13198 \end_layout
13199
13200 \end_inset
13201 </cell>
13202 <cell alignment="center" valignment="top" usebox="none">
13203 \begin_inset Text
13204
13205 \begin_layout Plain Layout
13206 300
13207 \end_layout
13208
13209 \end_inset
13210 </cell>
13211 <cell alignment="center" valignment="top" usebox="none">
13212 \begin_inset Text
13213
13214 \begin_layout Plain Layout
13215 300
13216 \end_layout
13217
13218 \end_inset
13219 </cell>
13220 <cell alignment="center" valignment="top" usebox="none">
13221 \begin_inset Text
13222
13223 \begin_layout Plain Layout
13224 700
13225 \end_layout
13226
13227 \end_inset
13228 </cell>
13229 </row>
13230 <row>
13231 <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
13232 \begin_inset Text
13233
13234 \begin_layout Plain Layout
13235 Kantenwinkel [°]
13236 \end_layout
13237
13238 \end_inset
13239 </cell>
13240 <cell alignment="center" valignment="top" topline="true" usebox="none">
13241 \begin_inset Text
13242
13243 \begin_layout Plain Layout
13244 3.55
13245 \end_layout
13246
13247 \end_inset
13248 </cell>
13249 <cell alignment="center" valignment="top" topline="true" usebox="none">
13250 \begin_inset Text
13251
13252 \begin_layout Plain Layout
13253 2.71
13254 \end_layout
13255
13256 \end_inset
13257 </cell>
13258 <cell alignment="center" valignment="top" topline="true" usebox="none">
13259 \begin_inset Text
13260
13261 \begin_layout Plain Layout
13262 7.99
13263 \end_layout
13264
13265 \end_inset
13266 </cell>
13267 </row>
13268 <row topspace="default">
13269 <cell alignment="center" valignment="top" rightline="true" usebox="none">
13270 \begin_inset Text
13271
13272 \begin_layout Plain Layout
13273 räumliche Auflösung [µm]
13274 \end_layout
13275
13276 \end_inset
13277 </cell>
13278 <cell alignment="center" valignment="top" usebox="none">
13279 \begin_inset Text
13280
13281 \begin_layout Plain Layout
13282 4.26
13283 \end_layout
13284
13285 \end_inset
13286 </cell>
13287 <cell alignment="center" valignment="top" usebox="none">
13288 \begin_inset Text
13289
13290 \begin_layout Plain Layout
13291 10.17
13292 \end_layout
13293
13294 \end_inset
13295 </cell>
13296 <cell alignment="center" valignment="top" usebox="none">
13297 \begin_inset Text
13298
13299 \begin_layout Plain Layout
13300 10.56
13301 \end_layout
13302
13303 \end_inset
13304 </cell>
13305 </row>
13306 <row topspace="default">
13307 <cell alignment="center" valignment="top" rightline="true" usebox="none">
13308 \begin_inset Text
13309
13310 \begin_layout Plain Layout
13311 MTF bei 
13312 \begin_inset Formula $f_{\mathrm{max}}$
13313 \end_inset
13314
13315
13316 \end_layout
13317
13318 \end_inset
13319 </cell>
13320 <cell alignment="center" valignment="top" usebox="none">
13321 \begin_inset Text
13322
13323 \begin_layout Plain Layout
13324 0.53
13325 \end_layout
13326
13327 \end_inset
13328 </cell>
13329 <cell alignment="center" valignment="top" usebox="none">
13330 \begin_inset Text
13331
13332 \begin_layout Plain Layout
13333 0.37
13334 \end_layout
13335
13336 \end_inset
13337 </cell>
13338 <cell alignment="center" valignment="top" usebox="none">
13339 \begin_inset Text
13340
13341 \begin_layout Plain Layout
13342 0.39
13343 \end_layout
13344
13345 \end_inset
13346 </cell>
13347 </row>
13348 <row topspace="default">
13349 <cell alignment="center" valignment="top" rightline="true" usebox="none">
13350 \begin_inset Text
13351
13352 \begin_layout Plain Layout
13353 \begin_inset ERT
13354 status collapsed
13355
13356 \begin_layout Plain Layout
13357
13358
13359 \backslash
13360 cmidrule(l{10pt}){1-1}
13361 \end_layout
13362
13363 \end_inset
13364
13365 LSF räumliche Auflösung
13366 \end_layout
13367
13368 \end_inset
13369 </cell>
13370 <cell alignment="center" valignment="top" usebox="none">
13371 \begin_inset Text
13372
13373 \begin_layout Plain Layout
13374
13375 \end_layout
13376
13377 \end_inset
13378 </cell>
13379 <cell alignment="center" valignment="top" usebox="none">
13380 \begin_inset Text
13381
13382 \begin_layout Plain Layout
13383
13384 \end_layout
13385
13386 \end_inset
13387 </cell>
13388 <cell alignment="center" valignment="top" usebox="none">
13389 \begin_inset Text
13390
13391 \begin_layout Plain Layout
13392
13393 \end_layout
13394
13395 \end_inset
13396 </cell>
13397 </row>
13398 <row>
13399 <cell alignment="center" valignment="top" rightline="true" usebox="none">
13400 \begin_inset Text
13401
13402 \begin_layout Plain Layout
13403 in µm
13404 \end_layout
13405
13406 \end_inset
13407 </cell>
13408 <cell alignment="center" valignment="top" usebox="none">
13409 \begin_inset Text
13410
13411 \begin_layout Plain Layout
13412 129.7
13413 \end_layout
13414
13415 \end_inset
13416 </cell>
13417 <cell alignment="center" valignment="top" usebox="none">
13418 \begin_inset Text
13419
13420 \begin_layout Plain Layout
13421 52.75
13422 \end_layout
13423
13424 \end_inset
13425 </cell>
13426 <cell alignment="center" valignment="top" usebox="none">
13427 \begin_inset Text
13428
13429 \begin_layout Plain Layout
13430 50.78
13431 \end_layout
13432
13433 \end_inset
13434 </cell>
13435 </row>
13436 <row>
13437 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
13438 \begin_inset Text
13439
13440 \begin_layout Plain Layout
13441 in % der Pixelgröße
13442 \end_layout
13443
13444 \end_inset
13445 </cell>
13446 <cell alignment="center" valignment="top" bottomline="true" usebox="none">
13447 \begin_inset Text
13448
13449 \begin_layout Plain Layout
13450 76.3
13451 \end_layout
13452
13453 \end_inset
13454 </cell>
13455 <cell alignment="center" valignment="top" bottomline="true" usebox="none">
13456 \begin_inset Text
13457
13458 \begin_layout Plain Layout
13459 95.9
13460 \end_layout
13461
13462 \end_inset
13463 </cell>
13464 <cell alignment="center" valignment="top" bottomline="true" usebox="none">
13465 \begin_inset Text
13466
13467 \begin_layout Plain Layout
13468 92.3
13469 \end_layout
13470
13471 \end_inset
13472 </cell>
13473 </row>
13474 </lyxtabular>
13475
13476 \end_inset
13477
13478
13479 \end_layout
13480
13481 \end_inset
13482
13483
13484 \end_layout
13485
13486 \begin_layout Standard
13487 Abstände zu Tabellenzeilen können auf der Karteikarte 
13488 \family sans
13489 Rahmen
13490 \family default
13491  des 
13492 \family sans
13493 Tabellen-Ein\SpecialChar \-
13494 stel\SpecialChar \-
13495 lun\SpecialChar \-
13496 gen
13497 \family default
13498 -Dialogs hinzugefügt werden, wie in Abschnitt
13499 \begin_inset Space ~
13500 \end_inset
13501
13502
13503 \begin_inset CommandInset ref
13504 LatexCommand ref
13505 reference "uab:Zeilenabstand"
13506
13507 \end_inset
13508
13509  beschrieben.
13510 \end_layout
13511
13512 \begin_layout Standard
13513 Im Gegensatz zu normalen Tabellen haben formale keine vertikalen Linien.
13514  Die horizontalen können wie für normale Tabellen gesetzt werden, sehen
13515  gedruckt aber anders aus.
13516  Die erste und letzte Linie ist 0.08
13517 \begin_inset Space \thinspace{}
13518 \end_inset
13519
13520 em dick, während die anderen 0.05
13521 \begin_inset Space \thinspace{}
13522 \end_inset
13523
13524 em dick sind.
13525 \end_layout
13526
13527 \begin_layout Standard
13528 Die Standarddicken können im LaTeX-Vorspann geändert werden:
13529 \end_layout
13530
13531 \begin_layout Standard
13532
13533 \series bold
13534
13535 \backslash
13536 let
13537 \backslash
13538 mytoprule
13539 \backslash
13540 toprule
13541 \begin_inset Newline newline
13542 \end_inset
13543
13544
13545 \backslash
13546 renewcommand{
13547 \backslash
13548 toprule}{
13549 \backslash
13550 mytoprule[Breite]}
13551 \end_layout
13552
13553 \begin_layout Standard
13554 Dies Beispiel gilt für die oberste Linie, genannt 
13555 \series bold
13556 toprule
13557 \series default
13558 .
13559  Für die letzte müssen Sie 
13560 \series bold
13561 toprule
13562 \series default
13563  durch 
13564 \series bold
13565 bottomrule
13566 \series default
13567  ersetzen.
13568  Die Linien dazwischen heißen 
13569 \series bold
13570 midrule
13571 \series default
13572 .
13573  Für 
13574 \family sans
13575 Breite
13576 \family default
13577  können Sie alle Einheiten benutzen, die in Anhang
13578 \begin_inset Space ~
13579 \end_inset
13580
13581
13582 \begin_inset CommandInset ref
13583 LatexCommand ref
13584 reference "kap:In-LyX-verfügbare"
13585
13586 \end_inset
13587
13588  aufgelistet sind.
13589 \end_layout
13590
13591 \begin_layout Standard
13592 Linien, die nicht über alle Spalten der Tabelle gehen, erhalten Sie durch
13593  eine Linie unter einer Mehrfachspalte.
13594  LyX wird intern den Befehl 
13595 \series bold
13596
13597 \backslash
13598 cmidrule
13599 \series default
13600  benutzen, um diese Linie zu drucken.
13601  Der ganze Befehl sieht so aus:
13602 \end_layout
13603
13604 \begin_layout Standard
13605
13606 \series bold
13607
13608 \backslash
13609 cmidrule[width](trim){Anfangsspalte-Endspalte}
13610 \end_layout
13611
13612 \begin_layout Standard
13613 Die 
13614 \series bold
13615
13616 \backslash
13617 cmidrule
13618 \series default
13619 -Optionen werden (noch) nicht von LyX unterstützt, also müssen Sie TeX-Code
13620  benutzen.
13621  
13622 \series bold
13623
13624 \backslash
13625 cmidrule
13626 \series default
13627  kann man benutzen, indem man den Befehl als TeX-Code als erstes in die
13628  erste Zelle einer Zeile einfügt.
13629  Die Linie wird dann über der Zeile gedruckt.
13630 \end_layout
13631
13632 \begin_layout Standard
13633 Der Standardwert ist 0.03
13634 \begin_inset Space \thinspace{}
13635 \end_inset
13636
13637 em.
13638  Die Linie reicht von 
13639 \family typewriter
13640 Anfangsspalte
13641 \family default
13642  bis 
13643 \family typewriter
13644 End\SpecialChar \-
13645 spal\SpecialChar \-
13646 te
13647 \family default
13648 .
13649  Wenn die Linie nur über eine Spalte reicht, sind beide Werte gleich.
13650   Der optionale Parameter 
13651 \family typewriter
13652 trim
13653 \family default
13654  kann die Werte 
13655 \emph on
13656 r
13657 \emph default
13658
13659 \emph on
13660 r{Breite}
13661 \emph default
13662
13663 \emph on
13664 l
13665 \family typewriter
13666 \emph default
13667  
13668 \family default
13669 oder 
13670 \emph on
13671 l{Breite}
13672 \emph default
13673  annehmen, wobei die 
13674 \family sans
13675 Breite
13676 \family default
13677  optional ist.
13678  
13679 \emph on
13680 l{2pt}
13681 \emph default
13682  zum Beispiel bedeutet, dass die Linie links um 2
13683 \begin_inset Space \thinspace{}
13684 \end_inset
13685
13686 pt gekürzt wird.
13687  Ohne Breitenangabe werden die Linien um 0.5
13688 \begin_inset Space \thinspace{}
13689 \end_inset
13690
13691 em gekürzt.
13692 \end_layout
13693
13694 \begin_layout Standard
13695 \begin_inset VSpace bigskip
13696 \end_inset
13697
13698 In Tabelle
13699 \begin_inset Space ~
13700 \end_inset
13701
13702
13703 \begin_inset CommandInset ref
13704 LatexCommand ref
13705 reference "tab:Formale-Tabelle"
13706
13707 \end_inset
13708
13709  wurden die Befehle
13710 \end_layout
13711
13712 \begin_layout Standard
13713
13714 \series bold
13715
13716 \backslash
13717 cmidrule(r){2-2}
13718 \backslash
13719 cmidrule(l){3-4}
13720 \end_layout
13721
13722 \begin_layout Standard
13723 am Anfange der zweiten Zeile und
13724 \end_layout
13725
13726 \begin_layout Standard
13727
13728 \series bold
13729
13730 \backslash
13731 cmidrule(l{10pt}){1-1}
13732 \end_layout
13733
13734 \begin_layout Standard
13735 in der sechsten benutzt.
13736 \end_layout
13737
13738 \begin_layout Standard
13739 \begin_inset VSpace bigskip
13740 \end_inset
13741
13742
13743 \end_layout
13744
13745 \begin_layout Standard
13746 Sie können mit 
13747 \series bold
13748
13749 \backslash
13750 cmidrule
13751 \series default
13752  auch überlappende Linien wie in Tabelle
13753 \begin_inset Space ~
13754 \end_inset
13755
13756
13757 \begin_inset CommandInset ref
13758 LatexCommand ref
13759 reference "tab:Special-booktabs-table"
13760
13761 \end_inset
13762
13763  definieren.
13764  Der Befehl ist:
13765 \end_layout
13766
13767 \begin_layout Standard
13768
13769 \series bold
13770
13771 \backslash
13772 morecmidrules
13773 \end_layout
13774
13775 \begin_layout Standard
13776 In Zeile zwei der Tabelle
13777 \begin_inset Space ~
13778 \end_inset
13779
13780
13781 \begin_inset CommandInset ref
13782 LatexCommand ref
13783 reference "tab:Special-booktabs-table"
13784
13785 \end_inset
13786
13787  wurde folgender Befehl benutzt:
13788 \end_layout
13789
13790 \begin_layout Standard
13791
13792 \series bold
13793
13794 \backslash
13795 cmidrule(r){2-2}
13796 \backslash
13797 cmidrule(l){3-4}
13798 \backslash
13799 morecmidrules
13800 \begin_inset Newline newline
13801 \end_inset
13802
13803
13804 \backslash
13805 cmidrule{2-4}
13806 \end_layout
13807
13808 \begin_layout Standard
13809 und in Zeile sechs:
13810 \end_layout
13811
13812 \begin_layout Standard
13813
13814 \series bold
13815
13816 \backslash
13817 midrule
13818 \backslash
13819 morecmidrules
13820 \backslash
13821 cmidrule{3-4}
13822 \end_layout
13823
13824 \begin_layout Standard
13825 \begin_inset VSpace bigskip
13826 \end_inset
13827
13828
13829 \end_layout
13830
13831 \begin_layout Standard
13832 Wenn Sie trotzdem mit den Linien nicht zufrieden sind, können Sie mit folgendem
13833  Befehl eine Linie zeichnen, die alle Spalten überspannt:
13834 \end_layout
13835
13836 \begin_layout Standard
13837
13838 \series bold
13839
13840 \backslash
13841 specialrule{Dicke}{Abstand davor}{Abstand danach}
13842 \end_layout
13843
13844 \begin_layout Standard
13845 Weitere Informationen finden Sie im Handbuch des LaTeX-Pakets 
13846 \series bold
13847 booktabs
13848 \series default
13849  
13850 \begin_inset CommandInset citation
13851 LatexCommand cite
13852 key "booktabs"
13853
13854 \end_inset
13855
13856 .
13857 \begin_inset Index
13858 status collapsed
13859
13860 \begin_layout Plain Layout
13861 LaTeX-Pakete ! booktabs
13862 \end_layout
13863
13864 \end_inset
13865
13866
13867 \end_layout
13868
13869 \begin_layout Standard
13870 \begin_inset Float table
13871 placement h
13872 wide false
13873 sideways false
13874 status open
13875
13876 \begin_layout Plain Layout
13877 \begin_inset Caption
13878
13879 \begin_layout Plain Layout
13880 \begin_inset CommandInset label
13881 LatexCommand label
13882 name "tab:Special-booktabs-table"
13883
13884 \end_inset
13885
13886 Eine spezielle formale Tabelle
13887 \end_layout
13888
13889 \end_inset
13890
13891
13892 \end_layout
13893
13894 \begin_layout Plain Layout
13895 \align center
13896 \begin_inset Tabular
13897 <lyxtabular version="3" rows="8" columns="4">
13898 <features booktabs="true">
13899 <column alignment="center" valignment="top" width="0">
13900 <column alignment="center" valignment="top" width="0">
13901 <column alignment="right" valignment="top" width="0">
13902 <column alignment="right" valignment="top" width="0">
13903 <row>
13904 <cell alignment="center" valignment="top" topline="true" usebox="none">
13905 \begin_inset Text
13906
13907 \begin_layout Plain Layout
13908 System
13909 \end_layout
13910
13911 \end_inset
13912 </cell>
13913 <cell alignment="center" valignment="top" topline="true" usebox="none">
13914 \begin_inset Text
13915
13916 \begin_layout Plain Layout
13917 Medipix
13918 \begin_inset Space \thinspace{}
13919 \end_inset
13920
13921 1
13922 \end_layout
13923
13924 \end_inset
13925 </cell>
13926 <cell multicolumn="1" alignment="center" valignment="top" usebox="none">
13927 \begin_inset Text
13928
13929 \begin_layout Plain Layout
13930 Medipix
13931 \begin_inset Space \thinspace{}
13932 \end_inset
13933
13934 2
13935 \end_layout
13936
13937 \end_inset
13938 </cell>
13939 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13940 \begin_inset Text
13941
13942 \begin_layout Plain Layout
13943
13944 \end_layout
13945
13946 \end_inset
13947 </cell>
13948 </row>
13949 <row>
13950 <cell alignment="center" valignment="top" usebox="none">
13951 \begin_inset Text
13952
13953 \begin_layout Plain Layout
13954 \begin_inset ERT
13955 status collapsed
13956
13957 \begin_layout Plain Layout
13958
13959
13960 \backslash
13961 cmidrule(r){2-2}
13962 \end_layout
13963
13964 \end_inset
13965
13966
13967 \begin_inset ERT
13968 status collapsed
13969
13970 \begin_layout Plain Layout
13971
13972
13973 \backslash
13974 cmidrule(l){3-4}
13975 \end_layout
13976
13977 \end_inset
13978
13979
13980 \begin_inset ERT
13981 status collapsed
13982
13983 \begin_layout Plain Layout
13984
13985
13986 \backslash
13987 morecmidrules 
13988 \end_layout
13989
13990 \end_inset
13991
13992
13993 \begin_inset ERT
13994 status collapsed
13995
13996 \begin_layout Plain Layout
13997
13998
13999 \backslash
14000 cmidrule{2-4}
14001 \end_layout
14002
14003 \end_inset
14004
14005 Detektordicke  [µm]
14006 \end_layout
14007
14008 \end_inset
14009 </cell>
14010 <cell alignment="center" valignment="top" usebox="none">
14011 \begin_inset Text
14012
14013 \begin_layout Plain Layout
14014 300
14015 \end_layout
14016
14017 \end_inset
14018 </cell>
14019 <cell alignment="center" valignment="top" usebox="none">
14020 \begin_inset Text
14021
14022 \begin_layout Plain Layout
14023 300
14024 \end_layout
14025
14026 \end_inset
14027 </cell>
14028 <cell alignment="center" valignment="top" usebox="none">
14029 \begin_inset Text
14030
14031 \begin_layout Plain Layout
14032 700
14033 \end_layout
14034
14035 \end_inset
14036 </cell>
14037 </row>
14038 <row>
14039 <cell alignment="center" valignment="top" topline="true" usebox="none">
14040 \begin_inset Text
14041
14042 \begin_layout Plain Layout
14043 Kantenwinkel [°]
14044 \end_layout
14045
14046 \end_inset
14047 </cell>
14048 <cell alignment="center" valignment="top" topline="true" usebox="none">
14049 \begin_inset Text
14050
14051 \begin_layout Plain Layout
14052 3,55
14053 \end_layout
14054
14055 \end_inset
14056 </cell>
14057 <cell alignment="center" valignment="top" topline="true" usebox="none">
14058 \begin_inset Text
14059
14060 \begin_layout Plain Layout
14061 2,71
14062 \end_layout
14063
14064 \end_inset
14065 </cell>
14066 <cell alignment="center" valignment="top" topline="true" usebox="none">
14067 \begin_inset Text
14068
14069 \begin_layout Plain Layout
14070 7,99
14071 \end_layout
14072
14073 \end_inset
14074 </cell>
14075 </row>
14076 <row topspace="default">
14077 <cell alignment="center" valignment="top" usebox="none">
14078 \begin_inset Text
14079
14080 \begin_layout Plain Layout
14081 räumliche Auflösung [µm]
14082 \end_layout
14083
14084 \end_inset
14085 </cell>
14086 <cell alignment="center" valignment="top" usebox="none">
14087 \begin_inset Text
14088
14089 \begin_layout Plain Layout
14090 4,26
14091 \end_layout
14092
14093 \end_inset
14094 </cell>
14095 <cell alignment="center" valignment="top" usebox="none">
14096 \begin_inset Text
14097
14098 \begin_layout Plain Layout
14099 10,17
14100 \end_layout
14101
14102 \end_inset
14103 </cell>
14104 <cell alignment="center" valignment="top" usebox="none">
14105 \begin_inset Text
14106
14107 \begin_layout Plain Layout
14108 10,56
14109 \end_layout
14110
14111 \end_inset
14112 </cell>
14113 </row>
14114 <row topspace="default">
14115 <cell alignment="center" valignment="top" usebox="none">
14116 \begin_inset Text
14117
14118 \begin_layout Plain Layout
14119 MTF bei 
14120 \begin_inset Formula $f_{\mathrm{max}}$
14121 \end_inset
14122
14123
14124 \end_layout
14125
14126 \end_inset
14127 </cell>
14128 <cell alignment="center" valignment="top" usebox="none">
14129 \begin_inset Text
14130
14131 \begin_layout Plain Layout
14132 0,53
14133 \end_layout
14134
14135 \end_inset
14136 </cell>
14137 <cell alignment="center" valignment="top" usebox="none">
14138 \begin_inset Text
14139
14140 \begin_layout Plain Layout
14141 0,37
14142 \end_layout
14143
14144 \end_inset
14145 </cell>
14146 <cell alignment="center" valignment="top" usebox="none">
14147 \begin_inset Text
14148
14149 \begin_layout Plain Layout
14150 0,39
14151 \end_layout
14152
14153 \end_inset
14154 </cell>
14155 </row>
14156 <row>
14157 <cell alignment="center" valignment="top" topline="true" usebox="none">
14158 \begin_inset Text
14159
14160 \begin_layout Plain Layout
14161 \begin_inset ERT
14162 status collapsed
14163
14164 \begin_layout Plain Layout
14165
14166
14167 \backslash
14168 morecmidrules 
14169 \end_layout
14170
14171 \end_inset
14172
14173
14174 \begin_inset ERT
14175 status collapsed
14176
14177 \begin_layout Plain Layout
14178
14179
14180 \backslash
14181 cmidrule{3-4}
14182 \end_layout
14183
14184 \end_inset
14185
14186 LSF-räumliche Auflösung
14187 \end_layout
14188
14189 \end_inset
14190 </cell>
14191 <cell alignment="center" valignment="top" topline="true" usebox="none">
14192 \begin_inset Text
14193
14194 \begin_layout Plain Layout
14195
14196 \end_layout
14197
14198 \end_inset
14199 </cell>
14200 <cell alignment="center" valignment="top" topline="true" usebox="none">
14201 \begin_inset Text
14202
14203 \begin_layout Plain Layout
14204
14205 \end_layout
14206
14207 \end_inset
14208 </cell>
14209 <cell alignment="center" valignment="top" topline="true" usebox="none">
14210 \begin_inset Text
14211
14212 \begin_layout Plain Layout
14213
14214 \end_layout
14215
14216 \end_inset
14217 </cell>
14218 </row>
14219 <row>
14220 <cell alignment="center" valignment="top" usebox="none">
14221 \begin_inset Text
14222
14223 \begin_layout Plain Layout
14224 in µm
14225 \end_layout
14226
14227 \end_inset
14228 </cell>
14229 <cell alignment="center" valignment="top" usebox="none">
14230 \begin_inset Text
14231
14232 \begin_layout Plain Layout
14233 129,7
14234 \end_layout
14235
14236 \end_inset
14237 </cell>
14238 <cell alignment="center" valignment="top" usebox="none">
14239 \begin_inset Text
14240
14241 \begin_layout Plain Layout
14242 52,75
14243 \end_layout
14244
14245 \end_inset
14246 </cell>
14247 <cell alignment="center" valignment="top" usebox="none">
14248 \begin_inset Text
14249
14250 \begin_layout Plain Layout
14251 50,78
14252 \end_layout
14253
14254 \end_inset
14255 </cell>
14256 </row>
14257 <row>
14258 <cell alignment="center" valignment="top" bottomline="true" usebox="none">
14259 \begin_inset Text
14260
14261 \begin_layout Plain Layout
14262 in % der Pixelgröße
14263 \end_layout
14264
14265 \end_inset
14266 </cell>
14267 <cell alignment="center" valignment="top" bottomline="true" usebox="none">
14268 \begin_inset Text
14269
14270 \begin_layout Plain Layout
14271 76,3
14272 \end_layout
14273
14274 \end_inset
14275 </cell>
14276 <cell alignment="center" valignment="top" bottomline="true" usebox="none">
14277 \begin_inset Text
14278
14279 \begin_layout Plain Layout
14280 95,9
14281 \end_layout
14282
14283 \end_inset
14284 </cell>
14285 <cell alignment="center" valignment="top" bottomline="true" usebox="none">
14286 \begin_inset Text
14287
14288 \begin_layout Plain Layout
14289 92,3
14290 \end_layout
14291
14292 \end_inset
14293 </cell>
14294 </row>
14295 </lyxtabular>
14296
14297 \end_inset
14298
14299
14300 \end_layout
14301
14302 \end_inset
14303
14304
14305 \end_layout
14306
14307 \begin_layout Section
14308 Vertikale Tabellen-Ausrichtung
14309 \begin_inset Index
14310 status collapsed
14311
14312 \begin_layout Plain Layout
14313 Tabellen ! Ausrichtung
14314 \end_layout
14315
14316 \end_inset
14317
14318
14319 \end_layout
14320
14321 \begin_layout Standard
14322 Damit Tabellen vertikal im Text ausgerichtet werden können, müssen sie in
14323  einer Box sein.
14324  Die Box kann dann vertikal ausgerichtet werden, wie in Abschnitt
14325 \begin_inset Space ~
14326 \end_inset
14327
14328
14329 \begin_inset CommandInset ref
14330 LatexCommand ref
14331 reference "abs:Box-Dialog"
14332
14333 \end_inset
14334
14335  beschrieben.
14336 \end_layout
14337
14338 \begin_layout Standard
14339 Im folgenden sind die Tabellen jeweils in einer Minipage-Box
14340 \begin_inset Foot
14341 status collapsed
14342
14343 \begin_layout Plain Layout
14344 Minipages werden in Abschnitt
14345 \begin_inset Space ~
14346 \end_inset
14347
14348
14349 \begin_inset CommandInset ref
14350 LatexCommand ref
14351 reference "abs:Minipage"
14352
14353 \end_inset
14354
14355  beschrieben.
14356 \end_layout
14357
14358 \end_inset
14359
14360  mit 15
14361 \begin_inset Space \thinspace{}
14362 \end_inset
14363
14364 col%-Breite:
14365 \end_layout
14366
14367 \begin_layout Itemize
14368 Test 
14369 \begin_inset Box Frameless
14370 position "t"
14371 hor_pos "c"
14372 has_inner_box 1
14373 inner_pos "c"
14374 use_parbox 0
14375 width "15col%"
14376 special "none"
14377 height "1in"
14378 height_special "totalheight"
14379 status collapsed
14380
14381 \begin_layout Plain Layout
14382 \begin_inset Tabular
14383 <lyxtabular version="3" rows="3" columns="3">
14384 <features>
14385 <column alignment="center" valignment="top" width="0">
14386 <column alignment="center" valignment="top" width="0">
14387 <column alignment="center" valignment="top" width="0">
14388 <row>
14389 <cell multicolumn="1" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14390 \begin_inset Text
14391
14392 \begin_layout Plain Layout
14393 Tabelle 1
14394 \end_layout
14395
14396 \end_inset
14397 </cell>
14398 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14399 \begin_inset Text
14400
14401 \begin_layout Plain Layout
14402
14403 \end_layout
14404
14405 \end_inset
14406 </cell>
14407 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14408 \begin_inset Text
14409
14410 \begin_layout Plain Layout
14411
14412 \end_layout
14413
14414 \end_inset
14415 </cell>
14416 </row>
14417 <row>
14418 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14419 \begin_inset Text
14420
14421 \begin_layout Plain Layout
14422 b
14423 \end_layout
14424
14425 \end_inset
14426 </cell>
14427 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14428 \begin_inset Text
14429
14430 \begin_layout Plain Layout
14431 e
14432 \end_layout
14433
14434 \end_inset
14435 </cell>
14436 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14437 \begin_inset Text
14438
14439 \begin_layout Plain Layout
14440 h
14441 \end_layout
14442
14443 \end_inset
14444 </cell>
14445 </row>
14446 <row>
14447 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
14448 \begin_inset Text
14449
14450 \begin_layout Plain Layout
14451 c
14452 \end_layout
14453
14454 \end_inset
14455 </cell>
14456 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
14457 \begin_inset Text
14458
14459 \begin_layout Plain Layout
14460 f
14461 \end_layout
14462
14463 \end_inset
14464 </cell>
14465 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
14466 \begin_inset Text
14467
14468 \begin_layout Plain Layout
14469 i
14470 \end_layout
14471
14472 \end_inset
14473 </cell>
14474 </row>
14475 </lyxtabular>
14476
14477 \end_inset
14478
14479
14480 \end_layout
14481
14482 \end_inset
14483
14484  Test 
14485 \begin_inset ERT
14486 status collapsed
14487
14488 \begin_layout Plain Layout
14489
14490
14491 \backslash
14492 raisebox{0.85
14493 \backslash
14494 baselineskip}{
14495 \end_layout
14496
14497 \end_inset
14498
14499
14500 \begin_inset Box Frameless
14501 position "t"
14502 hor_pos "c"
14503 has_inner_box 1
14504 inner_pos "c"
14505 use_parbox 0
14506 width "15col%"
14507 special "none"
14508 height "1in"
14509 height_special "totalheight"
14510 status collapsed
14511
14512 \begin_layout Plain Layout
14513 \begin_inset Tabular
14514 <lyxtabular version="3" rows="3" columns="3">
14515 <features>
14516 <column alignment="center" valignment="top" width="0">
14517 <column alignment="center" valignment="top" width="0">
14518 <column alignment="center" valignment="top" width="0">
14519 <row>
14520 <cell multicolumn="1" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14521 \begin_inset Text
14522
14523 \begin_layout Plain Layout
14524 Tabelle 2
14525 \end_layout
14526
14527 \end_inset
14528 </cell>
14529 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14530 \begin_inset Text
14531
14532 \begin_layout Plain Layout
14533
14534 \end_layout
14535
14536 \end_inset
14537 </cell>
14538 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14539 \begin_inset Text
14540
14541 \begin_layout Plain Layout
14542
14543 \end_layout
14544
14545 \end_inset
14546 </cell>
14547 </row>
14548 <row>
14549 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14550 \begin_inset Text
14551
14552 \begin_layout Plain Layout
14553 b
14554 \end_layout
14555
14556 \end_inset
14557 </cell>
14558 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14559 \begin_inset Text
14560
14561 \begin_layout Plain Layout
14562 e
14563 \end_layout
14564
14565 \end_inset
14566 </cell>
14567 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14568 \begin_inset Text
14569
14570 \begin_layout Plain Layout
14571 h
14572 \end_layout
14573
14574 \end_inset
14575 </cell>
14576 </row>
14577 <row>
14578 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
14579 \begin_inset Text
14580
14581 \begin_layout Plain Layout
14582 c
14583 \end_layout
14584
14585 \end_inset
14586 </cell>
14587 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
14588 \begin_inset Text
14589
14590 \begin_layout Plain Layout
14591 f
14592 \end_layout
14593
14594 \end_inset
14595 </cell>
14596 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
14597 \begin_inset Text
14598
14599 \begin_layout Plain Layout
14600 i
14601 \end_layout
14602
14603 \end_inset
14604 </cell>
14605 </row>
14606 </lyxtabular>
14607
14608 \end_inset
14609
14610
14611 \end_layout
14612
14613 \end_inset
14614
14615
14616 \begin_inset ERT
14617 status collapsed
14618
14619 \begin_layout Plain Layout
14620
14621 }
14622 \end_layout
14623
14624 \end_inset
14625
14626
14627 \end_layout
14628
14629 \begin_layout Itemize
14630 Test 
14631 \begin_inset Box Frameless
14632 position "c"
14633 hor_pos "c"
14634 has_inner_box 1
14635 inner_pos "c"
14636 use_parbox 0
14637 width "15col%"
14638 special "none"
14639 height "1in"
14640 height_special "totalheight"
14641 status collapsed
14642
14643 \begin_layout Plain Layout
14644 \begin_inset Tabular
14645 <lyxtabular version="3" rows="3" columns="3">
14646 <features>
14647 <column alignment="center" valignment="top" width="0">
14648 <column alignment="center" valignment="top" width="0">
14649 <column alignment="center" valignment="top" width="0">
14650 <row>
14651 <cell multicolumn="1" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14652 \begin_inset Text
14653
14654 \begin_layout Plain Layout
14655 Tabelle 3
14656 \end_layout
14657
14658 \end_inset
14659 </cell>
14660 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14661 \begin_inset Text
14662
14663 \begin_layout Plain Layout
14664
14665 \end_layout
14666
14667 \end_inset
14668 </cell>
14669 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14670 \begin_inset Text
14671
14672 \begin_layout Plain Layout
14673
14674 \end_layout
14675
14676 \end_inset
14677 </cell>
14678 </row>
14679 <row>
14680 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14681 \begin_inset Text
14682
14683 \begin_layout Plain Layout
14684 b
14685 \end_layout
14686
14687 \end_inset
14688 </cell>
14689 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14690 \begin_inset Text
14691
14692 \begin_layout Plain Layout
14693 e
14694 \end_layout
14695
14696 \end_inset
14697 </cell>
14698 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14699 \begin_inset Text
14700
14701 \begin_layout Plain Layout
14702 h
14703 \end_layout
14704
14705 \end_inset
14706 </cell>
14707 </row>
14708 <row>
14709 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
14710 \begin_inset Text
14711
14712 \begin_layout Plain Layout
14713 c
14714 \end_layout
14715
14716 \end_inset
14717 </cell>
14718 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
14719 \begin_inset Text
14720
14721 \begin_layout Plain Layout
14722 f
14723 \end_layout
14724
14725 \end_inset
14726 </cell>
14727 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
14728 \begin_inset Text
14729
14730 \begin_layout Plain Layout
14731 i
14732 \end_layout
14733
14734 \end_inset
14735 </cell>
14736 </row>
14737 </lyxtabular>
14738
14739 \end_inset
14740
14741
14742 \end_layout
14743
14744 \end_inset
14745
14746
14747 \end_layout
14748
14749 \begin_layout Itemize
14750 Test 
14751 \begin_inset Box Frameless
14752 position "b"
14753 hor_pos "c"
14754 has_inner_box 1
14755 inner_pos "c"
14756 use_parbox 0
14757 width "15col%"
14758 special "none"
14759 height "1in"
14760 height_special "totalheight"
14761 status collapsed
14762
14763 \begin_layout Plain Layout
14764 \begin_inset Tabular
14765 <lyxtabular version="3" rows="3" columns="3">
14766 <features>
14767 <column alignment="center" valignment="top" width="0">
14768 <column alignment="center" valignment="top" width="0">
14769 <column alignment="center" valignment="top" width="0">
14770 <row>
14771 <cell multicolumn="1" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14772 \begin_inset Text
14773
14774 \begin_layout Plain Layout
14775 Tabelle 4
14776 \end_layout
14777
14778 \end_inset
14779 </cell>
14780 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14781 \begin_inset Text
14782
14783 \begin_layout Plain Layout
14784
14785 \end_layout
14786
14787 \end_inset
14788 </cell>
14789 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14790 \begin_inset Text
14791
14792 \begin_layout Plain Layout
14793
14794 \end_layout
14795
14796 \end_inset
14797 </cell>
14798 </row>
14799 <row>
14800 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14801 \begin_inset Text
14802
14803 \begin_layout Plain Layout
14804 b
14805 \end_layout
14806
14807 \end_inset
14808 </cell>
14809 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14810 \begin_inset Text
14811
14812 \begin_layout Plain Layout
14813 e
14814 \end_layout
14815
14816 \end_inset
14817 </cell>
14818 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14819 \begin_inset Text
14820
14821 \begin_layout Plain Layout
14822 h
14823 \end_layout
14824
14825 \end_inset
14826 </cell>
14827 </row>
14828 <row>
14829 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
14830 \begin_inset Text
14831
14832 \begin_layout Plain Layout
14833 c
14834 \end_layout
14835
14836 \end_inset
14837 </cell>
14838 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
14839 \begin_inset Text
14840
14841 \begin_layout Plain Layout
14842 f
14843 \end_layout
14844
14845 \end_inset
14846 </cell>
14847 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
14848 \begin_inset Text
14849
14850 \begin_layout Plain Layout
14851 i
14852 \end_layout
14853
14854 \end_inset
14855 </cell>
14856 </row>
14857 </lyxtabular>
14858
14859 \end_inset
14860
14861
14862 \end_layout
14863
14864 \end_inset
14865
14866 Test 
14867 \begin_inset ERT
14868 status collapsed
14869
14870 \begin_layout Plain Layout
14871
14872
14873 \backslash
14874 raisebox{-0.32
14875 \backslash
14876 baselineskip}{
14877 \end_layout
14878
14879 \end_inset
14880
14881
14882 \begin_inset Box Frameless
14883 position "b"
14884 hor_pos "c"
14885 has_inner_box 1
14886 inner_pos "c"
14887 use_parbox 0
14888 width "15col%"
14889 special "none"
14890 height "1in"
14891 height_special "totalheight"
14892 status collapsed
14893
14894 \begin_layout Plain Layout
14895 \begin_inset Tabular
14896 <lyxtabular version="3" rows="3" columns="3">
14897 <features>
14898 <column alignment="center" valignment="top" width="0">
14899 <column alignment="center" valignment="top" width="0">
14900 <column alignment="center" valignment="top" width="0">
14901 <row>
14902 <cell multicolumn="1" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14903 \begin_inset Text
14904
14905 \begin_layout Plain Layout
14906 Tabelle 5
14907 \end_layout
14908
14909 \end_inset
14910 </cell>
14911 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14912 \begin_inset Text
14913
14914 \begin_layout Plain Layout
14915
14916 \end_layout
14917
14918 \end_inset
14919 </cell>
14920 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14921 \begin_inset Text
14922
14923 \begin_layout Plain Layout
14924
14925 \end_layout
14926
14927 \end_inset
14928 </cell>
14929 </row>
14930 <row>
14931 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14932 \begin_inset Text
14933
14934 \begin_layout Plain Layout
14935 b
14936 \end_layout
14937
14938 \end_inset
14939 </cell>
14940 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14941 \begin_inset Text
14942
14943 \begin_layout Plain Layout
14944 e
14945 \end_layout
14946
14947 \end_inset
14948 </cell>
14949 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14950 \begin_inset Text
14951
14952 \begin_layout Plain Layout
14953 h
14954 \end_layout
14955
14956 \end_inset
14957 </cell>
14958 </row>
14959 <row>
14960 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
14961 \begin_inset Text
14962
14963 \begin_layout Plain Layout
14964 c
14965 \end_layout
14966
14967 \end_inset
14968 </cell>
14969 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
14970 \begin_inset Text
14971
14972 \begin_layout Plain Layout
14973 f
14974 \end_layout
14975
14976 \end_inset
14977 </cell>
14978 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
14979 \begin_inset Text
14980
14981 \begin_layout Plain Layout
14982 i
14983 \end_layout
14984
14985 \end_inset
14986 </cell>
14987 </row>
14988 </lyxtabular>
14989
14990 \end_inset
14991
14992
14993 \end_layout
14994
14995 \end_inset
14996
14997
14998 \begin_inset ERT
14999 status collapsed
15000
15001 \begin_layout Plain Layout
15002
15003 }
15004 \end_layout
15005
15006 \end_inset
15007
15008
15009 \end_layout
15010
15011 \begin_layout Standard
15012 Wie Sie sehen können, ist der Inhalt der ersten und letzten Zeile bezüglich
15013  der Textzeile nicht richtig ausgerichtet.
15014  Um das zu erreichen, müssen Sie die Minipage-Box in eine 
15015 \begin_inset Quotes gld
15016 \end_inset
15017
15018 Raisebox
15019 \begin_inset Quotes grd
15020 \end_inset
15021
15022
15023 \begin_inset Foot
15024 status collapsed
15025
15026 \begin_layout Plain Layout
15027 Raiseboxen werden in Abschnitt
15028 \begin_inset Space ~
15029 \end_inset
15030
15031
15032 \begin_inset CommandInset ref
15033 LatexCommand ref
15034 reference "uab:Vertikale-Ausrichtung"
15035
15036 \end_inset
15037
15038  beschrieben.
15039 \end_layout
15040
15041 \end_inset
15042
15043  setzen.
15044  Im obigen Beispiel wurde in der zweiten Tabelle des ersten Zeile mit dem
15045  Befehl
15046 \end_layout
15047
15048 \begin_layout Standard
15049
15050 \series bold
15051
15052 \backslash
15053 raisebox{0.85
15054 \backslash
15055 baselineskip}{
15056 \end_layout
15057
15058 \begin_layout Standard
15059 vor der Box ausgerichtet.
15060  Hinter der Box wurde auch noch 
15061 \series bold
15062 }
15063 \series default
15064  als TeX-Code eingefügt, weil der obige Befehl mit 
15065 \series bold
15066 {
15067 \series default
15068  aufhörte.
15069  Für die zweite Tabelle in der letzten Zeile wurde der Befehl
15070 \end_layout
15071
15072 \begin_layout Standard
15073
15074 \series bold
15075
15076 \backslash
15077 raisebox{-0.32
15078 \backslash
15079 baselineskip}{
15080 \end_layout
15081
15082 \begin_layout Standard
15083 benutzt.
15084 \end_layout
15085
15086 \begin_layout Standard
15087 \begin_inset Note Greyedout
15088 status open
15089
15090 \begin_layout Plain Layout
15091
15092 \series bold
15093 Bemerkung:
15094 \series default
15095  Die Ausrichtung ist nicht ganz genau, weil sie von der Dokumentschrift,
15096  der Schriftgröße und der Dicke der Tabellenlinien abhängt.
15097  Der Faktor im 
15098 \series bold
15099
15100 \backslash
15101 raisebox
15102 \series default
15103 -Befehl muss deshalb an Ihre Verhältnisse angepasst werden.
15104 \end_layout
15105
15106 \end_inset
15107
15108
15109 \end_layout
15110
15111 \begin_layout Section
15112 Farbige Tabellen
15113 \begin_inset CommandInset label
15114 LatexCommand label
15115 name "abs:Farbige-Tabellen"
15116
15117 \end_inset
15118
15119
15120 \begin_inset Index
15121 status collapsed
15122
15123 \begin_layout Plain Layout
15124 Tabellen ! farbige
15125 \end_layout
15126
15127 \end_inset
15128
15129
15130 \end_layout
15131
15132 \begin_layout Subsection
15133 Farbige Zellen
15134 \begin_inset Index
15135 status collapsed
15136
15137 \begin_layout Plain Layout
15138 farbige !  Tabellenzellen
15139 \end_layout
15140
15141 \end_inset
15142
15143
15144 \end_layout
15145
15146 \begin_layout Standard
15147 \begin_inset Float table
15148 placement h
15149 wide false
15150 sideways false
15151 status open
15152
15153 \begin_layout Plain Layout
15154 \begin_inset Caption
15155
15156 \begin_layout Plain Layout
15157 \begin_inset CommandInset label
15158 LatexCommand label
15159 name "tab:Farbige-Tabelle-ohne"
15160
15161 \end_inset
15162
15163 Farbige Tabelle, ohne Paket 
15164 \series bold
15165 colortbl
15166 \series default
15167
15168 \begin_inset OptArg
15169 status collapsed
15170
15171 \begin_layout Plain Layout
15172 Tabelle ohne 
15173 \family typewriter
15174 colortbl
15175 \end_layout
15176
15177 \end_inset
15178
15179
15180 \end_layout
15181
15182 \end_inset
15183
15184
15185 \end_layout
15186
15187 \begin_layout Plain Layout
15188 \align center
15189 \begin_inset Tabular
15190 <lyxtabular version="3" rows="3" columns="3">
15191 <features>
15192 <column alignment="center" valignment="top" width="0">
15193 <column alignment="center" valignment="top" width="0">
15194 <column alignment="center" valignment="top" width="0">
15195 <row>
15196 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15197 \begin_inset Text
15198
15199 \begin_layout Plain Layout
15200
15201 \color green
15202 a
15203 \end_layout
15204
15205 \end_inset
15206 </cell>
15207 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15208 \begin_inset Text
15209
15210 \begin_layout Plain Layout
15211
15212 \color red
15213 b
15214 \end_layout
15215
15216 \end_inset
15217 </cell>
15218 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15219 \begin_inset Text
15220
15221 \begin_layout Plain Layout
15222
15223 \color red
15224 c
15225 \end_layout
15226
15227 \end_inset
15228 </cell>
15229 </row>
15230 <row>
15231 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15232 \begin_inset Text
15233
15234 \begin_layout Plain Layout
15235
15236 \color green
15237 d
15238 \end_layout
15239
15240 \end_inset
15241 </cell>
15242 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15243 \begin_inset Text
15244
15245 \begin_layout Plain Layout
15246
15247 \color blue
15248 e
15249 \end_layout
15250
15251 \end_inset
15252 </cell>
15253 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15254 \begin_inset Text
15255
15256 \begin_layout Plain Layout
15257
15258 \color blue
15259 f
15260 \end_layout
15261
15262 \end_inset
15263 </cell>
15264 </row>
15265 <row>
15266 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15267 \begin_inset Text
15268
15269 \begin_layout Plain Layout
15270
15271 \color green
15272 g
15273 \end_layout
15274
15275 \end_inset
15276 </cell>
15277 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15278 \begin_inset Text
15279
15280 \begin_layout Plain Layout
15281
15282 \color blue
15283 h
15284 \end_layout
15285
15286 \end_inset
15287 </cell>
15288 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15289 \begin_inset Text
15290
15291 \begin_layout Plain Layout
15292
15293 \color blue
15294 i
15295 \end_layout
15296
15297 \end_inset
15298 </cell>
15299 </row>
15300 </lyxtabular>
15301
15302 \end_inset
15303
15304
15305 \end_layout
15306
15307 \end_inset
15308
15309
15310 \end_layout
15311
15312 \begin_layout Standard
15313 \begin_inset CommandInset label
15314 LatexCommand label
15315 name "Wenn-Sie-nur"
15316
15317 \end_inset
15318
15319 Wenn Sie nur farbigen Text
15320 \begin_inset Index
15321 status collapsed
15322
15323 \begin_layout Plain Layout
15324 Farbe ! für Text
15325 \end_layout
15326
15327 \end_inset
15328
15329  benötigen, markieren Sie diesen und ändern die Farbe durch einen Klick
15330  auf den Werkzeugleistenknopf 
15331 \begin_inset Graphics
15332         filename ../../images/dialog-show_character.png
15333         scale 70
15334         scaleBeforeRotation
15335         BoundingBox 0bp 6bp 22bp 22bp
15336
15337 \end_inset
15338
15339  oder über das Menü 
15340 \family sans
15341 Bearbeiten\SpecialChar \menuseparator
15342 Textstil\SpecialChar \menuseparator
15343 Benutzerdefiniert
15344 \family default
15345  mit dem 
15346 \family sans
15347 Textstil
15348 \family default
15349 -Dialog wie es in Tabelle
15350 \begin_inset Space ~
15351 \end_inset
15352
15353
15354 \begin_inset CommandInset ref
15355 LatexCommand ref
15356 reference "tab:Farbige-Tabelle-ohne"
15357
15358 \end_inset
15359
15360  gemacht wurde.
15361  In anderen Fällen müssen Sie das LaTeX-Paket 
15362 \series bold
15363 colortbl
15364 \series default
15365  benutzen.
15366 \begin_inset Index
15367 status collapsed
15368
15369 \begin_layout Plain Layout
15370 LaTeX-Pakete ! colortbl
15371 \end_layout
15372
15373 \end_inset
15374
15375
15376 \end_layout
15377
15378 \begin_layout Standard
15379 \begin_inset ERT
15380 status collapsed
15381
15382 \begin_layout Plain Layout
15383
15384
15385 \backslash
15386 ifcolortbl
15387 \end_layout
15388
15389 \end_inset
15390
15391
15392 \begin_inset Note Note
15393 status open
15394
15395 \begin_layout Plain Layout
15396 Die folgende Teil wird nur gedruckt, wenn das LaTeX-Paket 
15397 \series bold
15398 colortbl
15399 \series default
15400  installiert ist.
15401 \end_layout
15402
15403 \end_inset
15404
15405
15406 \end_layout
15407
15408 \begin_layout Standard
15409 Um farbige Tabellen zu erzeugen, muss 
15410 \series bold
15411 colortbl
15412 \series default
15413  im LaTeX-Vorspann geladen werden:
15414 \end_layout
15415
15416 \begin_layout Standard
15417
15418 \series bold
15419
15420 \backslash
15421 usepackage{colortbl}
15422 \end_layout
15423
15424 \begin_layout Standard
15425 Die Farbe einer Spalte ändert man dann mit dem Befehl
15426 \end_layout
15427
15428 \begin_layout Standard
15429
15430 \series bold
15431
15432 \backslash
15433 columncolor{Farbname}
15434 \end_layout
15435
15436 \begin_layout Standard
15437 innerhalb des Befehls 
15438 \series bold
15439 >{}
15440 \series default
15441 .
15442  Mehr über den Befehl 
15443 \series bold
15444 >{}
15445 \series default
15446  finden Sie im Abschnitt
15447 \begin_inset Space ~
15448 \end_inset
15449
15450
15451 \begin_inset CommandInset ref
15452 LatexCommand ref
15453 reference "uab:Mehrfachspalten-Berechnungen"
15454
15455 \end_inset
15456
15457 .
15458 \end_layout
15459
15460 \begin_layout Standard
15461 Folgende Farbnamen sind vordefiniert:
15462 \end_layout
15463
15464 \begin_layout Standard
15465
15466 \family sans
15467 red
15468 \family default
15469
15470 \family sans
15471 green
15472 \family default
15473
15474 \family sans
15475 yellow
15476 \family default
15477
15478 \family sans
15479 blue
15480 \family default
15481
15482 \family sans
15483 cyan
15484 \family default
15485
15486 \family sans
15487 magenta
15488 \family default
15489
15490 \family sans
15491 black
15492 \family default
15493  und 
15494 \family sans
15495 white
15496 \begin_inset Newline newline
15497 \end_inset
15498
15499 (rot, grün, gelb, blau, türkis, purpurrot, schwarz 
15500 \family default
15501 und
15502 \family sans
15503  weiß)
15504 \end_layout
15505
15506 \begin_layout Standard
15507 \begin_inset VSpace medskip
15508 \end_inset
15509
15510
15511 \end_layout
15512
15513 \begin_layout Standard
15514 Sie können auch eigene Farben definieren:
15515 \end_layout
15516
15517 \begin_layout Standard
15518
15519 \series bold
15520
15521 \backslash
15522 definecolor{Farbname}{Farbmodell}{Farbwerte}
15523 \end_layout
15524
15525 \begin_layout Standard
15526 Das Farbmodell kann eins der folgenden sein:
15527 \end_layout
15528
15529 \begin_layout Labeling
15530 \labelwidthstring 00.00.0000
15531 cmyk: cyan, magenta, yellow, black
15532 \end_layout
15533
15534 \begin_layout Labeling
15535 \labelwidthstring 00.00.0000
15536 rgb: red, green blue
15537 \end_layout
15538
15539 \begin_layout Labeling
15540 \labelwidthstring 00.00.0000
15541 gray: gray
15542 \end_layout
15543
15544 \begin_layout Standard
15545 und die Farbwerte sind durch Kommata getrennte Zahlen zwischen 0 und 1,
15546  die die entsprechende Farbe für das Farbmodell beschreiben.
15547 \end_layout
15548
15549 \begin_layout Standard
15550 Im LaTeX-Vorspann können Sie zum Beispiel die Farbe 
15551 \emph on
15552
15553 \begin_inset Quotes gld
15554 \end_inset
15555
15556 dunkelgruen
15557 \emph default
15558
15559 \begin_inset Quotes grd
15560 \end_inset
15561
15562  und 
15563 \begin_inset Quotes gld
15564 \end_inset
15565
15566
15567 \emph on
15568 hellgrau
15569 \emph default
15570
15571 \begin_inset Quotes grd
15572 \end_inset
15573
15574  folgendermaßen definieren:
15575 \end_layout
15576
15577 \begin_layout Standard
15578
15579 \series bold
15580
15581 \backslash
15582 definecolor{dunkelgruen}{cmyk}{0.5, 0, 1, 0.5}
15583 \end_layout
15584
15585 \begin_layout Standard
15586
15587 \series bold
15588
15589 \backslash
15590 definecolor{hellgrau}{gray}{0.8}
15591 \end_layout
15592
15593 \begin_layout Standard
15594 \begin_inset VSpace medskip
15595 \end_inset
15596
15597
15598 \end_layout
15599
15600 \begin_layout Standard
15601 Linien werden mit dem Befehl
15602 \end_layout
15603
15604 \begin_layout Standard
15605
15606 \series bold
15607
15608 \backslash
15609 rowcolor{Farbname}
15610 \end_layout
15611
15612 \begin_layout Standard
15613 gefärbt, Zellen mit dem Befehl
15614 \end_layout
15615
15616 \begin_layout Standard
15617
15618 \series bold
15619
15620 \backslash
15621 cellcolor{Farbname}
15622 \end_layout
15623
15624 \begin_layout Standard
15625 Beide Befehle werden am Anfang einer Zelle als TeX-Code eingegeben..
15626 \end_layout
15627
15628 \begin_layout Standard
15629 Um nur Text zu färben, machen Sie es wie 
15630 \begin_inset CommandInset ref
15631 LatexCommand vpageref
15632 reference "Wenn-Sie-nur"
15633
15634 \end_inset
15635
15636  beschrieben.
15637  Wenn die Zelle aber TeX-Code zum Färben enthält, 
15638 \emph on
15639 markieren Sie nur den Text
15640 \emph default
15641 , sonst werden die ERTs LaTeX-Fehler erzeugen.
15642 \end_layout
15643
15644 \begin_layout Standard
15645 \begin_inset Note Greyedout
15646 status open
15647
15648 \begin_layout Plain Layout
15649
15650 \series bold
15651 Achtung:
15652 \series default
15653  Nicht alle DVI-Betrachter können alle selbst definierte Farben anzeigen.
15654 \end_layout
15655
15656 \end_inset
15657
15658
15659 \end_layout
15660
15661 \begin_layout Standard
15662 \begin_inset VSpace medskip
15663 \end_inset
15664
15665
15666 \end_layout
15667
15668 \begin_layout Standard
15669 Die Tabelle
15670 \begin_inset Space ~
15671 \end_inset
15672
15673
15674 \begin_inset CommandInset ref
15675 LatexCommand ref
15676 reference "tab:Table-colored-using"
15677
15678 \end_inset
15679
15680  wurde folgendermaßen erstellt: die erste Spalte soll 
15681 \emph on
15682
15683 \begin_inset Quotes gld
15684 \end_inset
15685
15686 dunkelgruen
15687 \emph default
15688
15689 \begin_inset Quotes grd
15690 \end_inset
15691
15692  werden, also müssen Sie ins 
15693 \family sans
15694 LaTe
15695 \begin_inset ERT
15696 status collapsed
15697
15698 \begin_layout Plain Layout
15699
15700 {}
15701 \end_layout
15702
15703 \end_inset
15704
15705 X-Argument
15706 \family default
15707  der Zellen der ersten Spalte den Befehl
15708 \end_layout
15709
15710 \begin_layout Standard
15711
15712 \series bold
15713 >{
15714 \backslash
15715 columncolor{dunkelgruen}
15716 \backslash
15717 centering}c
15718 \end_layout
15719
15720 \begin_layout Standard
15721 schreiben.
15722  Die erste Zeile soll türkis hinterlegt sein, deshalb wurde der TeX-Code-Befehl
15723 \end_layout
15724
15725 \begin_layout Standard
15726
15727 \series bold
15728
15729 \backslash
15730 rowcolow{cyan}
15731 \end_layout
15732
15733 \begin_layout Standard
15734 in die erste Zelle der ersten Zeile eingefügt.
15735  Diese Farbe ersetzt die Spaltenfarbe.
15736  Die letzte Zelle der letzten Zeile soll purpurrot hinterlegt werden, Das
15737  wird mit folgendem Befehl erreicht:
15738 \end_layout
15739
15740 \begin_layout Standard
15741
15742 \series bold
15743
15744 \backslash
15745 cellcolor{magenta}
15746 \end_layout
15747
15748 \begin_layout Standard
15749 Die Buchstaben färben Sie wie oben beschrieben mit dem 
15750 \family sans
15751 Textstil
15752 \family default
15753 -Dialog.
15754 \end_layout
15755
15756 \begin_layout Standard
15757 \begin_inset Float table
15758 placement h
15759 wide false
15760 sideways false
15761 status open
15762
15763 \begin_layout Plain Layout
15764 \begin_inset Caption
15765
15766 \begin_layout Plain Layout
15767 \begin_inset CommandInset label
15768 LatexCommand label
15769 name "tab:Table-colored-using"
15770
15771 \end_inset
15772
15773 Eine mit dem Paket 
15774 \series bold
15775 colortbl
15776 \series default
15777  gefärbte Tabelle
15778 \begin_inset OptArg
15779 status collapsed
15780
15781 \begin_layout Plain Layout
15782 Tabelle mit 
15783 \family typewriter
15784 colortbl
15785 \end_layout
15786
15787 \end_inset
15788
15789
15790 \end_layout
15791
15792 \end_inset
15793
15794
15795 \end_layout
15796
15797 \begin_layout Plain Layout
15798 \align center
15799 \begin_inset Tabular
15800 <lyxtabular version="3" rows="3" columns="3">
15801 <features>
15802 <column alignment="center" valignment="top" width="0" special=">{\columncolor{dunkelgruen}\centering}c">
15803 <column alignment="center" valignment="top" width="0">
15804 <column alignment="center" valignment="top" width="0">
15805 <row>
15806 <cell alignment="center" valignment="top" usebox="none">
15807 \begin_inset Text
15808
15809 \begin_layout Plain Layout
15810 \begin_inset ERT
15811 status collapsed
15812
15813 \begin_layout Plain Layout
15814
15815
15816 \backslash
15817 rowcolor{cyan}
15818 \end_layout
15819
15820 \end_inset
15821
15822
15823 \color magenta
15824 a
15825 \end_layout
15826
15827 \end_inset
15828 </cell>
15829 <cell alignment="center" valignment="top" usebox="none">
15830 \begin_inset Text
15831
15832 \begin_layout Plain Layout
15833
15834 \color red
15835 b
15836 \end_layout
15837
15838 \end_inset
15839 </cell>
15840 <cell alignment="center" valignment="top" usebox="none">
15841 \begin_inset Text
15842
15843 \begin_layout Plain Layout
15844
15845 \color red
15846 c
15847 \end_layout
15848
15849 \end_inset
15850 </cell>
15851 </row>
15852 <row>
15853 <cell alignment="center" valignment="top" usebox="none">
15854 \begin_inset Text
15855
15856 \begin_layout Plain Layout
15857
15858 \color yellow
15859 d
15860 \end_layout
15861
15862 \end_inset
15863 </cell>
15864 <cell alignment="center" valignment="top" usebox="none">
15865 \begin_inset Text
15866
15867 \begin_layout Plain Layout
15868
15869 \color blue
15870 e
15871 \end_layout
15872
15873 \end_inset
15874 </cell>
15875 <cell alignment="center" valignment="top" usebox="none">
15876 \begin_inset Text
15877
15878 \begin_layout Plain Layout
15879
15880 \color blue
15881 f
15882 \end_layout
15883
15884 \end_inset
15885 </cell>
15886 </row>
15887 <row>
15888 <cell alignment="center" valignment="top" usebox="none">
15889 \begin_inset Text
15890
15891 \begin_layout Plain Layout
15892
15893 \color yellow
15894 g
15895 \end_layout
15896
15897 \end_inset
15898 </cell>
15899 <cell alignment="center" valignment="top" usebox="none">
15900 \begin_inset Text
15901
15902 \begin_layout Plain Layout
15903
15904 \color blue
15905 h
15906 \end_layout
15907
15908 \end_inset
15909 </cell>
15910 <cell alignment="center" valignment="top" usebox="none">
15911 \begin_inset Text
15912
15913 \begin_layout Plain Layout
15914 \begin_inset ERT
15915 status collapsed
15916
15917 \begin_layout Plain Layout
15918
15919
15920 \backslash
15921 cellcolor{magenta}
15922 \end_layout
15923
15924 \end_inset
15925
15926
15927 \color green
15928 i
15929 \end_layout
15930
15931 \end_inset
15932 </cell>
15933 </row>
15934 </lyxtabular>
15935
15936 \end_inset
15937
15938
15939 \end_layout
15940
15941 \end_inset
15942
15943
15944 \end_layout
15945
15946 \begin_layout Standard
15947 \begin_inset ERT
15948 status collapsed
15949
15950 \begin_layout Plain Layout
15951
15952
15953 \backslash
15954 else
15955 \end_layout
15956
15957 \end_inset
15958
15959
15960 \begin_inset Note Note
15961 status open
15962
15963 \begin_layout Plain Layout
15964 Die folgende Teil wird gedruckt, wenn das LaTeX-Paket 
15965 \series bold
15966 colortbl
15967 \series default
15968  nicht installiert ist:
15969 \end_layout
15970
15971 \end_inset
15972
15973
15974 \end_layout
15975
15976 \begin_layout Standard
15977 Sie müssen das LaTeX-Paket 
15978 \series bold
15979 colortbl
15980 \series default
15981  installiert haben um den Inhalt dieses Abschnitts zu sehen.
15982 \end_layout
15983
15984 \begin_layout Standard
15985 \begin_inset ERT
15986 status collapsed
15987
15988 \begin_layout Plain Layout
15989
15990
15991 \backslash
15992 fi
15993 \end_layout
15994
15995 \end_inset
15996
15997
15998 \end_layout
15999
16000 \begin_layout Subsection
16001 Farbige Linien
16002 \begin_inset Index
16003 status collapsed
16004
16005 \begin_layout Plain Layout
16006 farbige !  Tabellenlinien
16007 \end_layout
16008
16009 \end_inset
16010
16011
16012 \end_layout
16013
16014 \begin_layout Standard
16015 Wie in Abschnitt
16016 \begin_inset Space ~
16017 \end_inset
16018
16019
16020 \begin_inset CommandInset ref
16021 LatexCommand ref
16022 reference "uab:Liniendicke"
16023
16024 \end_inset
16025
16026  beschrieben, kann Die Dicke aller Tabellenlinien mit der Länge 
16027 \series bold
16028
16029 \backslash
16030 arrayrulewidth
16031 \series default
16032  definiert werden.
16033  Für alle Tabellenlinien in diesem Kapitel wird sie auf 1.5
16034 \begin_inset Space \thinspace{}
16035 \end_inset
16036
16037 pt gesetzt.
16038 \begin_inset ERT
16039 status collapsed
16040
16041 \begin_layout Plain Layout
16042
16043
16044 \backslash
16045 setlength{
16046 \backslash
16047 arrayrulewidth}{1.5pt}
16048 \end_layout
16049
16050 \end_inset
16051
16052
16053 \end_layout
16054
16055 \begin_layout Standard
16056 Um die vertikalen Linien für dieses Beispiel grün zu färben, wurde im LaTeX-Vors
16057 pann folgendes Spaltenformat entsprechend der Beschreibung in Abschnitt
16058 \begin_inset Space ~
16059 \end_inset
16060
16061
16062 \begin_inset CommandInset ref
16063 LatexCommand ref
16064 reference "uab:Angepasste-Zellen/Spaltenformat"
16065
16066 \end_inset
16067
16068  definiert:
16069 \end_layout
16070
16071 \begin_layout Standard
16072
16073 \series bold
16074
16075 \backslash
16076 newcolumntype{W}{!{
16077 \backslash
16078 color{green}
16079 \backslash
16080 vline}}
16081 \end_layout
16082
16083 \begin_layout Standard
16084 In Tabelle
16085 \begin_inset Space ~
16086 \end_inset
16087
16088
16089 \begin_inset CommandInset ref
16090 LatexCommand ref
16091 reference "tab:Tabelle-mit-farbigen-vert"
16092
16093 \end_inset
16094
16095  wurde das LaTeX-Argument 
16096 \series bold
16097 WcW
16098 \series default
16099  für die letzte und 
16100 \series bold
16101 Wc
16102 \series default
16103  für die anderen Spalten benutzt.
16104 \end_layout
16105
16106 \begin_layout Standard
16107 Wenn Sie mehrere Farben wollen, müssen Sie weitere Farbformate definieren.
16108 \end_layout
16109
16110 \begin_layout Standard
16111 \begin_inset Float table
16112 placement h
16113 wide false
16114 sideways false
16115 status open
16116
16117 \begin_layout Plain Layout
16118 \begin_inset Caption
16119
16120 \begin_layout Plain Layout
16121 \begin_inset CommandInset label
16122 LatexCommand label
16123 name "tab:Tabelle-mit-farbigen-vert"
16124
16125 \end_inset
16126
16127 Tabelle mit farbigen vertikalen Linien
16128 \end_layout
16129
16130 \end_inset
16131
16132
16133 \end_layout
16134
16135 \begin_layout Plain Layout
16136 \align center
16137 \begin_inset Tabular
16138 <lyxtabular version="3" rows="3" columns="3">
16139 <features>
16140 <column alignment="center" valignment="top" width="0" special="Wc">
16141 <column alignment="center" valignment="top" width="0" special="Wc">
16142 <column alignment="center" valignment="top" width="0" special="WcW">
16143 <row>
16144 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16145 \begin_inset Text
16146
16147 \begin_layout Plain Layout
16148 sd
16149 \end_layout
16150
16151 \end_inset
16152 </cell>
16153 <cell alignment="center" valignment="top" topline="true" usebox="none">
16154 \begin_inset Text
16155
16156 \begin_layout Plain Layout
16157
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 Plain Layout
16166
16167 \end_layout
16168
16169 \end_inset
16170 </cell>
16171 </row>
16172 <row>
16173 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16174 \begin_inset Text
16175
16176 \begin_layout Plain Layout
16177
16178 \end_layout
16179
16180 \end_inset
16181 </cell>
16182 <cell alignment="center" valignment="top" topline="true" usebox="none">
16183 \begin_inset Text
16184
16185 \begin_layout Plain Layout
16186 sd
16187 \end_layout
16188
16189 \end_inset
16190 </cell>
16191 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16192 \begin_inset Text
16193
16194 \begin_layout Plain Layout
16195
16196 \end_layout
16197
16198 \end_inset
16199 </cell>
16200 </row>
16201 <row>
16202 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16203 \begin_inset Text
16204
16205 \begin_layout Plain Layout
16206
16207 \end_layout
16208
16209 \end_inset
16210 </cell>
16211 <cell alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
16212 \begin_inset Text
16213
16214 \begin_layout Plain Layout
16215
16216 \end_layout
16217
16218 \end_inset
16219 </cell>
16220 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16221 \begin_inset Text
16222
16223 \begin_layout Plain Layout
16224 sd
16225 \end_layout
16226
16227 \end_inset
16228 </cell>
16229 </row>
16230 </lyxtabular>
16231
16232 \end_inset
16233
16234
16235 \end_layout
16236
16237 \end_inset
16238
16239
16240 \end_layout
16241
16242 \begin_layout Standard
16243 \begin_inset VSpace bigskip
16244 \end_inset
16245
16246 Um zum Beispiel horizontale Linien rot zu färben wie in Tabelle
16247 \begin_inset Space ~
16248 \end_inset
16249
16250
16251 \begin_inset CommandInset ref
16252 LatexCommand ref
16253 reference "tab:Tabelle-mit-farbigen-horiz"
16254
16255 \end_inset
16256
16257 , müssen Sie folgenden Befehl als TeX-Code vor der (Gleitobjekt-)Tabelle
16258  einfügen:
16259 \end_layout
16260
16261 \begin_layout Standard
16262
16263 \series bold
16264
16265 \backslash
16266 let
16267 \backslash
16268 myHlineC
16269 \backslash
16270 hline
16271 \begin_inset Newline newline
16272 \end_inset
16273
16274
16275 \backslash
16276 renewcommand{
16277 \backslash
16278 hline}
16279 \begin_inset Newline newline
16280 \end_inset
16281
16282
16283 \begin_inset ERT
16284 status collapsed
16285
16286 \begin_layout Plain Layout
16287
16288
16289 \backslash
16290 hphantom{ }
16291 \end_layout
16292
16293 \end_inset
16294
16295 {
16296 \backslash
16297 arrayrulecolor{red}
16298 \backslash
16299 myHlineC
16300 \backslash
16301 arrayrulecolor{black}}
16302 \end_layout
16303
16304 \begin_layout Standard
16305 \begin_inset ERT
16306 status collapsed
16307
16308 \begin_layout Plain Layout
16309
16310
16311 \backslash
16312 let
16313 \backslash
16314 myHlineC
16315 \backslash
16316 hline
16317 \end_layout
16318
16319 \begin_layout Plain Layout
16320
16321
16322 \backslash
16323 renewcommand{
16324 \backslash
16325 hline}
16326 \end_layout
16327
16328 \begin_layout Plain Layout
16329
16330  {
16331 \backslash
16332 arrayrulecolor{red}
16333 \backslash
16334 myHlineC
16335 \backslash
16336 arrayrulecolor{black}}
16337 \end_layout
16338
16339 \end_inset
16340
16341
16342 \begin_inset Float table
16343 wide false
16344 sideways false
16345 status open
16346
16347 \begin_layout Plain Layout
16348 \begin_inset Caption
16349
16350 \begin_layout Plain Layout
16351 \begin_inset CommandInset label
16352 LatexCommand label
16353 name "tab:Tabelle-mit-farbigen-horiz"
16354
16355 \end_inset
16356
16357 Tabelle mit farbigen horizontalen Linien
16358 \end_layout
16359
16360 \end_inset
16361
16362
16363 \end_layout
16364
16365 \begin_layout Plain Layout
16366 \align center
16367 \begin_inset Tabular
16368 <lyxtabular version="3" rows="3" columns="3">
16369 <features>
16370 <column alignment="center" valignment="top" width="0">
16371 <column alignment="center" valignment="top" width="0">
16372 <column alignment="center" valignment="top" width="0">
16373 <row>
16374 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16375 \begin_inset Text
16376
16377 \begin_layout Plain Layout
16378 sd
16379 \end_layout
16380
16381 \end_inset
16382 </cell>
16383 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16384 \begin_inset Text
16385
16386 \begin_layout Plain Layout
16387
16388 \end_layout
16389
16390 \end_inset
16391 </cell>
16392 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16393 \begin_inset Text
16394
16395 \begin_layout Plain Layout
16396
16397 \end_layout
16398
16399 \end_inset
16400 </cell>
16401 </row>
16402 <row>
16403 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16404 \begin_inset Text
16405
16406 \begin_layout Plain Layout
16407
16408 \end_layout
16409
16410 \end_inset
16411 </cell>
16412 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16413 \begin_inset Text
16414
16415 \begin_layout Plain Layout
16416 sd
16417 \end_layout
16418
16419 \end_inset
16420 </cell>
16421 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16422 \begin_inset Text
16423
16424 \begin_layout Plain Layout
16425
16426 \end_layout
16427
16428 \end_inset
16429 </cell>
16430 </row>
16431 <row>
16432 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16433 \begin_inset Text
16434
16435 \begin_layout Plain Layout
16436
16437 \end_layout
16438
16439 \end_inset
16440 </cell>
16441 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16442 \begin_inset Text
16443
16444 \begin_layout Plain Layout
16445
16446 \end_layout
16447
16448 \end_inset
16449 </cell>
16450 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16451 \begin_inset Text
16452
16453 \begin_layout Plain Layout
16454 sd
16455 \end_layout
16456
16457 \end_inset
16458 </cell>
16459 </row>
16460 </lyxtabular>
16461
16462 \end_inset
16463
16464
16465 \end_layout
16466
16467 \end_inset
16468
16469
16470 \end_layout
16471
16472 \begin_layout Standard
16473 Um die schwarze Linienfarbe zurückzubekommen, müssen Sie folgenden Befehl
16474  als TeX-Code hinter der Tabelle einfügen:
16475 \end_layout
16476
16477 \begin_layout Standard
16478
16479 \series bold
16480
16481 \backslash
16482 renewcommand{
16483 \backslash
16484 hline}{
16485 \backslash
16486 myHlineC}
16487 \end_layout
16488
16489 \begin_layout Standard
16490 Tabelle
16491 \begin_inset Space ~
16492 \end_inset
16493
16494
16495 \begin_inset CommandInset ref
16496 LatexCommand ref
16497 reference "tab:Table-with-colored"
16498
16499 \end_inset
16500
16501  ist ein Beispiel mit farbigen vertikalen und horizontalen Linien.
16502 \end_layout
16503
16504 \begin_layout Standard
16505 \begin_inset Float table
16506 placement h
16507 wide false
16508 sideways false
16509 status open
16510
16511 \begin_layout Plain Layout
16512 \begin_inset Caption
16513
16514 \begin_layout Plain Layout
16515 \begin_inset CommandInset label
16516 LatexCommand label
16517 name "tab:Table-with-colored"
16518
16519 \end_inset
16520
16521 Tabelle mit farbigen Linien
16522 \end_layout
16523
16524 \end_inset
16525
16526
16527 \end_layout
16528
16529 \begin_layout Plain Layout
16530 \align center
16531 \begin_inset Tabular
16532 <lyxtabular version="3" rows="3" columns="3">
16533 <features>
16534 <column alignment="center" valignment="top" width="0" special="Wc">
16535 <column alignment="center" valignment="top" width="0" special="Wc">
16536 <column alignment="center" valignment="top" width="0" special="WcW">
16537 <row>
16538 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16539 \begin_inset Text
16540
16541 \begin_layout Plain Layout
16542 sd
16543 \end_layout
16544
16545 \end_inset
16546 </cell>
16547 <cell alignment="center" valignment="top" topline="true" usebox="none">
16548 \begin_inset Text
16549
16550 \begin_layout Plain Layout
16551
16552 \end_layout
16553
16554 \end_inset
16555 </cell>
16556 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16557 \begin_inset Text
16558
16559 \begin_layout Plain Layout
16560
16561 \end_layout
16562
16563 \end_inset
16564 </cell>
16565 </row>
16566 <row>
16567 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16568 \begin_inset Text
16569
16570 \begin_layout Plain Layout
16571
16572 \end_layout
16573
16574 \end_inset
16575 </cell>
16576 <cell alignment="center" valignment="top" topline="true" usebox="none">
16577 \begin_inset Text
16578
16579 \begin_layout Plain Layout
16580 sd
16581 \end_layout
16582
16583 \end_inset
16584 </cell>
16585 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16586 \begin_inset Text
16587
16588 \begin_layout Plain Layout
16589
16590 \end_layout
16591
16592 \end_inset
16593 </cell>
16594 </row>
16595 <row topspace="default">
16596 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16597 \begin_inset Text
16598
16599 \begin_layout Plain Layout
16600
16601 \end_layout
16602
16603 \end_inset
16604 </cell>
16605 <cell alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
16606 \begin_inset Text
16607
16608 \begin_layout Plain Layout
16609
16610 \end_layout
16611
16612 \end_inset
16613 </cell>
16614 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16615 \begin_inset Text
16616
16617 \begin_layout Plain Layout
16618 sd
16619 \end_layout
16620
16621 \end_inset
16622 </cell>
16623 </row>
16624 </lyxtabular>
16625
16626 \end_inset
16627
16628
16629 \end_layout
16630
16631 \end_inset
16632
16633
16634 \end_layout
16635
16636 \begin_layout Standard
16637 \begin_inset ERT
16638 status collapsed
16639
16640 \begin_layout Plain Layout
16641
16642
16643 \backslash
16644 renewcommand{
16645 \backslash
16646 hline}{
16647 \backslash
16648 myHlineC}
16649 \end_layout
16650
16651 \end_inset
16652
16653
16654 \end_layout
16655
16656 \begin_layout Standard
16657 \begin_inset ERT
16658 status collapsed
16659
16660 \begin_layout Plain Layout
16661
16662
16663 \backslash
16664 setlength{
16665 \backslash
16666 arrayrulewidth}{0.4pt}
16667 \end_layout
16668
16669 \end_inset
16670
16671
16672 \begin_inset Note Note
16673 status collapsed
16674
16675 \begin_layout Plain Layout
16676 setzt die Liniendicke wieder auf ihren Standardwert zurück
16677 \end_layout
16678
16679 \end_inset
16680
16681
16682 \end_layout
16683
16684 \begin_layout Section
16685 Tabellen-Anpassung
16686 \begin_inset Index
16687 status collapsed
16688
16689 \begin_layout Plain Layout
16690 Tabellen ! Anpassung
16691 \end_layout
16692
16693 \end_inset
16694
16695
16696 \end_layout
16697
16698 \begin_layout Subsection
16699 Zeilenabstand
16700 \begin_inset CommandInset label
16701 LatexCommand label
16702 name "uab:Zeilenabstand"
16703
16704 \end_inset
16705
16706
16707 \begin_inset Index
16708 status collapsed
16709
16710 \begin_layout Plain Layout
16711 Tabellen ! Zeilenabstand
16712 \end_layout
16713
16714 \end_inset
16715
16716
16717 \end_layout
16718
16719 \begin_layout Standard
16720 Auf der Karteikarte 
16721 \family sans
16722 Rahmen
16723 \family default
16724  des 
16725 \family sans
16726 Tabellen-Einstellungen
16727 \family default
16728 -Dialogs können Sie 
16729 \family sans
16730 zusätzliche
16731 \begin_inset Space ~
16732 \end_inset
16733
16734 Abstände
16735 \family default
16736  einfügen.
16737  Dabei haben Sie drei Möglichkeiten:
16738 \end_layout
16739
16740 \begin_layout Description
16741 Oberhalb
16742 \begin_inset Space ~
16743 \end_inset
16744
16745 der
16746 \begin_inset Space ~
16747 \end_inset
16748
16749 Zeile fügt oberhalb des Zeileninhalts zusätzlichen Leerraum ein.
16750  Bei einer formalen Tabelle
16751 \begin_inset Foot
16752 status collapsed
16753
16754 \begin_layout Plain Layout
16755 Formale Tabellen wurden in Abschnitt
16756 \begin_inset Space ~
16757 \end_inset
16758
16759
16760 \begin_inset CommandInset ref
16761 LatexCommand ref
16762 reference "abs:Formale-Tabellen"
16763
16764 \end_inset
16765
16766  beschrieben.
16767 \end_layout
16768
16769 \end_inset
16770
16771  fügt LyX standardmäßig 0.5
16772 \begin_inset Space \thinspace{}
16773 \end_inset
16774
16775 em Leerraum ein.
16776  Bei normalen Tabellen werden die vertikalen Linien leider nicht mit verlängert:
16777 \begin_inset VSpace medskip
16778 \end_inset
16779
16780
16781 \begin_inset Newline newline
16782 \end_inset
16783
16784
16785 \begin_inset ERT
16786 status collapsed
16787
16788 \begin_layout Plain Layout
16789
16790
16791 \backslash
16792 hspace*{0pt}
16793 \end_layout
16794
16795 \end_inset
16796
16797
16798 \begin_inset Space \hfill{}
16799 \end_inset
16800
16801
16802 \begin_inset Tabular
16803 <lyxtabular version="3" rows="3" columns="1">
16804 <features>
16805 <column alignment="center" valignment="top" width="0">
16806 <row>
16807 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16808 \begin_inset Text
16809
16810 \begin_layout Plain Layout
16811 A
16812 \end_layout
16813
16814 \end_inset
16815 </cell>
16816 </row>
16817 <row topspace="3mm">
16818 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16819 \begin_inset Text
16820
16821 \begin_layout Plain Layout
16822 3
16823 \begin_inset Space \thinspace{}
16824 \end_inset
16825
16826 mm Leerraum oberhalb der Zeile
16827 \end_layout
16828
16829 \end_inset
16830 </cell>
16831 </row>
16832 <row>
16833 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16834 \begin_inset Text
16835
16836 \begin_layout Plain Layout
16837 C
16838 \end_layout
16839
16840 \end_inset
16841 </cell>
16842 </row>
16843 </lyxtabular>
16844
16845 \end_inset
16846
16847
16848 \begin_inset Space \hfill{}
16849 \end_inset
16850
16851
16852 \begin_inset ERT
16853 status collapsed
16854
16855 \begin_layout Plain Layout
16856
16857
16858 \backslash
16859 hspace*{0pt}
16860 \end_layout
16861
16862 \end_inset
16863
16864
16865 \begin_inset VSpace medskip
16866 \end_inset
16867
16868
16869 \begin_inset Newline newline
16870 \end_inset
16871
16872 Deshalb macht das Einfügen oberhalb der Zeile nur Sinn, wenn Sie keine vertikale
16873 n Linien verwenden.
16874 \end_layout
16875
16876 \begin_layout Description
16877 Unterhalb
16878 \begin_inset Space ~
16879 \end_inset
16880
16881 der
16882 \begin_inset Space ~
16883 \end_inset
16884
16885 Zeile fügt unterhalb des Zeileninhalts zusätzlichen Leerraum ein.
16886  Bei einer formalen Tabelle fügt LyX standardmäßig 0.5
16887 \begin_inset Space \thinspace{}
16888 \end_inset
16889
16890 em Leerraum ein.
16891  Bei normalen Tabellen ist der Standardwert 2
16892 \begin_inset Space \thinspace{}
16893 \end_inset
16894
16895 pt.
16896 \end_layout
16897
16898 \begin_layout Description
16899 Zwischen
16900 \begin_inset Space ~
16901 \end_inset
16902
16903 den
16904 \begin_inset Space ~
16905 \end_inset
16906
16907 Zeilen fügt zwischen zwei Zeilen zusätzlichen Leerraum ein.
16908  Bei einer formalen Tabelle fügt LyX standardmäßig 0.5
16909 \begin_inset Space \thinspace{}
16910 \end_inset
16911
16912 em Leerraum ein.
16913  Bei normalen Tabellen werden die vertikalen Linien leider nicht mit verlängert:
16914 \begin_inset VSpace medskip
16915 \end_inset
16916
16917
16918 \begin_inset Newline newline
16919 \end_inset
16920
16921
16922 \begin_inset ERT
16923 status collapsed
16924
16925 \begin_layout Plain Layout
16926
16927
16928 \backslash
16929 hspace*{0pt}
16930 \end_layout
16931
16932 \end_inset
16933
16934
16935 \begin_inset Space \hfill{}
16936 \end_inset
16937
16938
16939 \begin_inset Tabular
16940 <lyxtabular version="3" rows="3" columns="1">
16941 <features>
16942 <column alignment="center" valignment="top" width="0">
16943 <row>
16944 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16945 \begin_inset Text
16946
16947 \begin_layout Plain Layout
16948 A
16949 \end_layout
16950
16951 \end_inset
16952 </cell>
16953 </row>
16954 <row interlinespace="3mm">
16955 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16956 \begin_inset Text
16957
16958 \begin_layout Plain Layout
16959 \begin_inset Formula $\downarrow$
16960 \end_inset
16961
16962  3
16963 \begin_inset Space \thinspace{}
16964 \end_inset
16965
16966 mm Leerraum zwischen den Zeilen 
16967 \begin_inset Formula $\downarrow$
16968 \end_inset
16969
16970
16971 \end_layout
16972
16973 \end_inset
16974 </cell>
16975 </row>
16976 <row>
16977 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16978 \begin_inset Text
16979
16980 \begin_layout Plain Layout
16981 \begin_inset Formula $\uparrow$
16982 \end_inset
16983
16984  3
16985 \begin_inset Space \thinspace{}
16986 \end_inset
16987
16988 mm Leerraum zwischen den Zeilen 
16989 \begin_inset Formula $\uparrow$
16990 \end_inset
16991
16992
16993 \end_layout
16994
16995 \end_inset
16996 </cell>
16997 </row>
16998 </lyxtabular>
16999
17000 \end_inset
17001
17002
17003 \begin_inset Space \hfill{}
17004 \end_inset
17005
17006
17007 \begin_inset ERT
17008 status collapsed
17009
17010 \begin_layout Plain Layout
17011
17012
17013 \backslash
17014 hspace*{0pt}
17015 \end_layout
17016
17017 \end_inset
17018
17019
17020 \begin_inset VSpace medskip
17021 \end_inset
17022
17023
17024 \begin_inset Newline newline
17025 \end_inset
17026
17027 Deshalb macht das Einfügen oberhalb der Zeile nur Sinn, wenn Sie keine vertikale
17028 n Linien verwenden.
17029 \end_layout
17030
17031 \begin_layout Standard
17032 \begin_inset VSpace bigskip
17033 \end_inset
17034
17035 Wenn Sie die Höhe aller Zellen vergrößern wollen, können Sie das mit folgenden
17036  Befehlen im LaTeX-Vorspann machen:
17037 \end_layout
17038
17039 \begin_layout Standard
17040
17041 \series bold
17042
17043 \backslash
17044 @ifundef\SpecialChar \textcompwordmark{}
17045 ined{extrarowheight}
17046 \begin_inset Newline newline
17047 \end_inset
17048
17049
17050 \begin_inset ERT
17051 status collapsed
17052
17053 \begin_layout Plain Layout
17054
17055
17056 \backslash
17057 hphantom{ }
17058 \end_layout
17059
17060 \end_inset
17061
17062 {
17063 \backslash
17064 usepackage{array}}{}
17065 \begin_inset Newline newline
17066 \end_inset
17067
17068
17069 \backslash
17070 setlength{
17071 \backslash
17072 extrarowheight}{Höhe}
17073 \end_layout
17074
17075 \begin_layout Standard
17076 Aber das hat den Nachteil, dass die Zelltexte nicht mehr genau vertikal
17077  ausgerichtet sind.
17078  (Das Paket 
17079 \series bold
17080 array
17081 \series default
17082  wird automatisch von LyX geladen, wenn Sie selbst-definierte Tabellenformate
17083  verwenden.
17084  Der Befehl 
17085 \series bold
17086
17087 \backslash
17088 @ifundef\SpecialChar \textcompwordmark{}
17089 ined
17090 \series default
17091  vermeidet, dass es in diesem Fall doppelt geladen wird.)
17092 \end_layout
17093
17094 \begin_layout Subsection
17095 Besondere Zellenausrichtung
17096 \begin_inset Index
17097 status collapsed
17098
17099 \begin_layout Plain Layout
17100 Tabellen ! Zellenausrichtung
17101 \end_layout
17102
17103 \end_inset
17104
17105
17106 \end_layout
17107
17108 \begin_layout Standard
17109 Manchmal sieht es besser aus, wenn Spalten nach besonderen Zeichen ausgerichtet
17110  sind wie zum Beispiel den Dezimalpunkt wie in Tabelle
17111 \begin_inset Space ~
17112 \end_inset
17113
17114
17115 \begin_inset CommandInset ref
17116 LatexCommand ref
17117 reference "tab:Tabellenzellen-sind-auf"
17118
17119 \end_inset
17120
17121 .
17122 \end_layout
17123
17124 \begin_layout Standard
17125 \begin_inset Float table
17126 placement h
17127 wide false
17128 sideways false
17129 status open
17130
17131 \begin_layout Plain Layout
17132 \begin_inset Caption
17133
17134 \begin_layout Plain Layout
17135 \begin_inset CommandInset label
17136 LatexCommand label
17137 name "tab:Tabellenzellen-sind-auf"
17138
17139 \end_inset
17140
17141 Tabellenzellen sind auf den Dezimalpunkt ausgerichtet
17142 \end_layout
17143
17144 \end_inset
17145
17146
17147 \end_layout
17148
17149 \begin_layout Plain Layout
17150 \align center
17151 \begin_inset Tabular
17152 <lyxtabular version="3" rows="4" columns="2">
17153 <features>
17154 <column alignment="right" valignment="top" width="0">
17155 <column alignment="left" valignment="top" width="0" special="@{}l">
17156 <row>
17157 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" usebox="none">
17158 \begin_inset Text
17159
17160 \begin_layout Plain Layout
17161 Überschrift
17162 \end_layout
17163
17164 \end_inset
17165 </cell>
17166 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17167 \begin_inset Text
17168
17169 \begin_layout Plain Layout
17170
17171 \end_layout
17172
17173 \end_inset
17174 </cell>
17175 </row>
17176 <row>
17177 <cell alignment="center" valignment="top" usebox="none">
17178 \begin_inset Text
17179
17180 \begin_layout Plain Layout
17181 12.
17182 \end_layout
17183
17184 \end_inset
17185 </cell>
17186 <cell alignment="center" valignment="top" usebox="none">
17187 \begin_inset Text
17188
17189 \begin_layout Plain Layout
17190 6
17191 \end_layout
17192
17193 \end_inset
17194 </cell>
17195 </row>
17196 <row>
17197 <cell alignment="center" valignment="top" usebox="none">
17198 \begin_inset Text
17199
17200 \begin_layout Plain Layout
17201 0.
17202 \end_layout
17203
17204 \end_inset
17205 </cell>
17206 <cell alignment="center" valignment="top" usebox="none">
17207 \begin_inset Text
17208
17209 \begin_layout Plain Layout
17210 68
17211 \end_layout
17212
17213 \end_inset
17214 </cell>
17215 </row>
17216 <row>
17217 <cell alignment="center" valignment="top" usebox="none">
17218 \begin_inset Text
17219
17220 \begin_layout Plain Layout
17221 -123.
17222 \end_layout
17223
17224 \end_inset
17225 </cell>
17226 <cell alignment="center" valignment="top" usebox="none">
17227 \begin_inset Text
17228
17229 \begin_layout Plain Layout
17230 0
17231 \end_layout
17232
17233 \end_inset
17234 </cell>
17235 </row>
17236 </lyxtabular>
17237
17238 \end_inset
17239
17240
17241 \end_layout
17242
17243 \end_inset
17244
17245
17246 \end_layout
17247
17248 \begin_layout Standard
17249 Diese Tabelle wurde als 4×2 Tabelle erstellt.
17250  Die Überschrift ist eine zentrierte Mehrfachspalte.
17251  Die erste Spalte ist rechtsbündig ausgerichtet und enthält den Vorkommateil
17252  der Zahlen einschließlich Dezimalpunkt.
17253  Die zweite Spalte ist linksbündig ausgerichtet und enthält den Nachkommateil
17254  der Zahlen.
17255   Um den Raum zwischen den beiden Spalten zu löschen, wurde im 
17256 \family sans
17257 LaTe
17258 \begin_inset ERT
17259 status collapsed
17260
17261 \begin_layout Plain Layout
17262
17263 {}
17264 \end_layout
17265
17266 \end_inset
17267
17268 X-Argument
17269 \family default
17270  für die zweite Spalte folgendes eingefügt:
17271 \end_layout
17272
17273 \begin_layout Standard
17274
17275 \series bold
17276 @{}l
17277 \end_layout
17278
17279 \begin_layout Standard
17280 Tabelle
17281 \begin_inset Space ~
17282 \end_inset
17283
17284
17285 \begin_inset CommandInset ref
17286 LatexCommand ref
17287 reference "tab:Verschiedene-Ausrichtungen"
17288
17289 \end_inset
17290
17291  zeigt einige Ausrichtungen.
17292  Für die Ausrichtung der Relationen müssen Sie den 
17293 \family sans
17294 Mittleren
17295 \begin_inset Space ~
17296 \end_inset
17297
17298 Abstand
17299 \family default
17300  aus der 
17301 \family sans
17302 Mathe-Werkzeugleiste
17303 \family default
17304  am Anfang der letzten Spalte einfügen, um den gleichen Abstand links und
17305  rechts vom Relationszeichen zu bekommen.
17306 \end_layout
17307
17308 \begin_layout Standard
17309
17310 \color black
17311 \begin_inset Float table
17312 placement h
17313 wide false
17314 sideways false
17315 status open
17316
17317 \begin_layout Plain Layout
17318
17319 \color black
17320 \begin_inset Caption
17321
17322 \begin_layout Plain Layout
17323
17324 \color black
17325 \begin_inset CommandInset label
17326 LatexCommand label
17327 name "tab:Verschiedene-Ausrichtungen"
17328
17329 \end_inset
17330
17331
17332 \color inherit
17333 Verschiedene Ausrichtungen
17334 \end_layout
17335
17336 \end_inset
17337
17338
17339 \end_layout
17340
17341 \begin_layout Plain Layout
17342 \align center
17343
17344 \color black
17345 \begin_inset Tabular
17346 <lyxtabular version="3" rows="4" columns="6">
17347 <features>
17348 <column alignment="right" valignment="top" width="0">
17349 <column alignment="left" valignment="top" width="0" special="@{}l">
17350 <column alignment="right" valignment="top" width="0">
17351 <column alignment="left" valignment="top" width="0" special="@{}l">
17352 <column alignment="right" valignment="top" width="0">
17353 <column alignment="left" valignment="top" width="0" special="@{}l">
17354 <row>
17355 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
17356 \begin_inset Text
17357
17358 \begin_layout Plain Layout
17359 Einheiten
17360 \end_layout
17361
17362 \end_inset
17363 </cell>
17364 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17365 \begin_inset Text
17366
17367 \begin_layout Plain Layout
17368
17369 \end_layout
17370
17371 \end_inset
17372 </cell>
17373 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
17374 \begin_inset Text
17375
17376 \begin_layout Plain Layout
17377 Exponenten
17378 \end_layout
17379
17380 \end_inset
17381 </cell>
17382 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17383 \begin_inset Text
17384
17385 \begin_layout Plain Layout
17386
17387 \end_layout
17388
17389 \end_inset
17390 </cell>
17391 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" usebox="none">
17392 \begin_inset Text
17393
17394 \begin_layout Plain Layout
17395 Relationen
17396 \end_layout
17397
17398 \end_inset
17399 </cell>
17400 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17401 \begin_inset Text
17402
17403 \begin_layout Plain Layout
17404
17405 \end_layout
17406
17407 \end_inset
17408 </cell>
17409 </row>
17410 <row>
17411 <cell alignment="center" valignment="top" usebox="none">
17412 \begin_inset Text
17413
17414 \begin_layout Plain Layout
17415
17416 \color black
17417 12×
17418 \end_layout
17419
17420 \end_inset
17421 </cell>
17422 <cell alignment="center" valignment="top" rightline="true" usebox="none">
17423 \begin_inset Text
17424
17425 \begin_layout Plain Layout
17426
17427 \color black
17428 24
17429 \begin_inset Space \thinspace{}
17430 \end_inset
17431
17432
17433 \color inherit
17434 Flaschen
17435 \end_layout
17436
17437 \end_inset
17438 </cell>
17439 <cell alignment="center" valignment="top" usebox="none">
17440 \begin_inset Text
17441
17442 \begin_layout Plain Layout
17443
17444 \color black
17445 \begin_inset Formula $10\cdot$
17446 \end_inset
17447
17448
17449 \end_layout
17450
17451 \end_inset
17452 </cell>
17453 <cell alignment="center" valignment="top" rightline="true" usebox="none">
17454 \begin_inset Text
17455
17456 \begin_layout Plain Layout
17457
17458 \color black
17459 \begin_inset Formula $10^{\mbox{-}17}$
17460 \end_inset
17461
17462
17463 \end_layout
17464
17465 \end_inset
17466 </cell>
17467 <cell alignment="center" valignment="top" usebox="none">
17468 \begin_inset Text
17469
17470 \begin_layout Plain Layout
17471
17472 \color black
17473 \begin_inset Formula $\Gamma(t)\propto$
17474 \end_inset
17475
17476
17477 \end_layout
17478
17479 \end_inset
17480 </cell>
17481 <cell alignment="center" valignment="top" usebox="none">
17482 \begin_inset Text
17483
17484 \begin_layout Plain Layout
17485
17486 \color black
17487 \begin_inset Formula $\:\Upsilon(t)$
17488 \end_inset
17489
17490
17491 \end_layout
17492
17493 \end_inset
17494 </cell>
17495 </row>
17496 <row>
17497 <cell alignment="center" valignment="top" usebox="none">
17498 \begin_inset Text
17499
17500 \begin_layout Plain Layout
17501
17502 \color black
17503 1024×
17504 \end_layout
17505
17506 \end_inset
17507 </cell>
17508 <cell alignment="center" valignment="top" rightline="true" usebox="none">
17509 \begin_inset Text
17510
17511 \begin_layout Plain Layout
17512
17513 \color black
17514 768
17515 \begin_inset Space \thinspace{}
17516 \end_inset
17517
17518 Pixel
17519 \end_layout
17520
17521 \end_inset
17522 </cell>
17523 <cell alignment="center" valignment="top" usebox="none">
17524 \begin_inset Text
17525
17526 \begin_layout Plain Layout
17527
17528 \color black
17529 \begin_inset Formula $5.78\cdot$
17530 \end_inset
17531
17532
17533 \end_layout
17534
17535 \end_inset
17536 </cell>
17537 <cell alignment="center" valignment="top" rightline="true" usebox="none">
17538 \begin_inset Text
17539
17540 \begin_layout Plain Layout
17541
17542 \color black
17543 \begin_inset Formula $10^{7}$
17544 \end_inset
17545
17546
17547 \end_layout
17548
17549 \end_inset
17550 </cell>
17551 <cell alignment="center" valignment="top" usebox="none">
17552 \begin_inset Text
17553
17554 \begin_layout Plain Layout
17555
17556 \color black
17557 \begin_inset Formula $A\ne$
17558 \end_inset
17559
17560
17561 \end_layout
17562
17563 \end_inset
17564 </cell>
17565 <cell alignment="center" valignment="top" usebox="none">
17566 \begin_inset Text
17567
17568 \begin_layout Plain Layout
17569
17570 \color black
17571 \begin_inset Formula $\: B_{\mathrm{red}}$
17572 \end_inset
17573
17574
17575 \end_layout
17576
17577 \end_inset
17578 </cell>
17579 </row>
17580 <row>
17581 <cell alignment="center" valignment="top" usebox="none">
17582 \begin_inset Text
17583
17584 \begin_layout Plain Layout
17585
17586 \color black
17587 32×
17588 \end_layout
17589
17590 \end_inset
17591 </cell>
17592 <cell alignment="center" valignment="top" rightline="true" usebox="none">
17593 \begin_inset Text
17594
17595 \begin_layout Plain Layout
17596
17597 \color black
17598 6
17599 \begin_inset Space \thinspace{}
17600 \end_inset
17601
17602 cm
17603 \end_layout
17604
17605 \end_inset
17606 </cell>
17607 <cell alignment="center" valignment="top" usebox="none">
17608 \begin_inset Text
17609
17610 \begin_layout Plain Layout
17611
17612 \color black
17613 -
17614 \begin_inset Formula $33.5\cdot$
17615 \end_inset
17616
17617
17618 \end_layout
17619
17620 \end_inset
17621 </cell>
17622 <cell alignment="center" valignment="top" rightline="true" usebox="none">
17623 \begin_inset Text
17624
17625 \begin_layout Plain Layout
17626
17627 \color black
17628 \begin_inset Formula $10^{4}$
17629 \end_inset
17630
17631
17632 \end_layout
17633
17634 \end_inset
17635 </cell>
17636 <cell alignment="center" valignment="top" usebox="none">
17637 \begin_inset Text
17638
17639 \begin_layout Plain Layout
17640
17641 \color black
17642 \begin_inset Formula $\sin(\alpha)\ge$
17643 \end_inset
17644
17645
17646 \end_layout
17647
17648 \end_inset
17649 </cell>
17650 <cell alignment="center" valignment="top" usebox="none">
17651 \begin_inset Text
17652
17653 \begin_layout Plain Layout
17654
17655 \color black
17656 \begin_inset Formula $\:\sin(\beta)$
17657 \end_inset
17658
17659
17660 \end_layout
17661
17662 \end_inset
17663 </cell>
17664 </row>
17665 </lyxtabular>
17666
17667 \end_inset
17668
17669
17670 \end_layout
17671
17672 \end_inset
17673
17674
17675 \end_layout
17676
17677 \begin_layout Standard
17678 \begin_inset VSpace bigskip
17679 \end_inset
17680
17681 Es gibt auch noch das LaTeX-Paket 
17682 \series bold
17683 dcolumn
17684 \series default
17685
17686 \begin_inset Index
17687 status collapsed
17688
17689 \begin_layout Plain Layout
17690 LaTeX-Pakete ! dcolumn
17691 \end_layout
17692
17693 \end_inset
17694
17695  mit dem man Zellen ausrichten kann.
17696  Aber es behandelt den Zelleninhalt als Mathematik und erlaubt keine Formeln
17697  in den Zellen.
17698  Die erste Spalte von Tabelle
17699 \begin_inset Space ~
17700 \end_inset
17701
17702
17703 \begin_inset CommandInset ref
17704 LatexCommand ref
17705 reference "tab:Verschiedene-Ausrichtungen"
17706
17707 \end_inset
17708
17709  wird mit 
17710 \family typewriter
17711 dcolumn
17712 \family default
17713  wie die erste Spalte von Tabelle
17714 \begin_inset Space ~
17715 \end_inset
17716
17717
17718 \begin_inset CommandInset ref
17719 LatexCommand ref
17720 reference "tab:Ausrichtung-mit-dem"
17721
17722 \end_inset
17723
17724  aussehen und nur mit ein paar Tricks wie erwartet.
17725  Die Ausrichtung der zweiten und dritten Spalte wie in Tabelle
17726 \begin_inset Space ~
17727 \end_inset
17728
17729
17730 \begin_inset CommandInset ref
17731 LatexCommand ref
17732 reference "tab:Verschiedene-Ausrichtungen"
17733
17734 \end_inset
17735
17736  ist mit 
17737 \series bold
17738 dcolumn
17739 \series default
17740  nicht möglich.
17741 \end_layout
17742
17743 \begin_layout Standard
17744 \begin_inset Float table
17745 placement h
17746 wide false
17747 sideways false
17748 status open
17749
17750 \begin_layout Plain Layout
17751 \begin_inset Caption
17752
17753 \begin_layout Plain Layout
17754 \begin_inset CommandInset label
17755 LatexCommand label
17756 name "tab:Ausrichtung-mit-dem"
17757
17758 \end_inset
17759
17760 Ausrichtung mit dem LaTeX-Paket 
17761 \series bold
17762 dcolumn
17763 \series default
17764 .
17765  Bei allen Spalten musste getrickst werden, um die gewünschte Ausgabe zu
17766  bekommen.
17767 \begin_inset OptArg
17768 status collapsed
17769
17770 \begin_layout Plain Layout
17771 Ausrichtung mit dem LaTeX-Paket 
17772 \series bold
17773 dcolumn
17774 \end_layout
17775
17776 \end_inset
17777
17778
17779 \end_layout
17780
17781 \end_inset
17782
17783
17784 \end_layout
17785
17786 \begin_layout Plain Layout
17787 \align center
17788 \begin_inset Tabular
17789 <lyxtabular version="3" rows="4" columns="3">
17790 <features>
17791 <column alignment="center" valignment="top" width="0" special="D{x}{\times}{-1}|">
17792 <column alignment="center" valignment="top" width="0" special="D{x}{\times}{4.9}|">
17793 <column alignment="center" valignment="top" width="0" special="D{~}{\,}{9.7}">
17794 <row>
17795 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
17796 \begin_inset Text
17797
17798 \begin_layout Plain Layout
17799 Einheiten
17800 \end_layout
17801
17802 \end_inset
17803 </cell>
17804 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
17805 \begin_inset Text
17806
17807 \begin_layout Plain Layout
17808 Einheiten
17809 \end_layout
17810
17811 \end_inset
17812 </cell>
17813 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" usebox="none">
17814 \begin_inset Text
17815
17816 \begin_layout Plain Layout
17817 Einheiten
17818 \end_layout
17819
17820 \end_inset
17821 </cell>
17822 </row>
17823 <row>
17824 <cell alignment="center" valignment="top" rightline="true" usebox="none">
17825 \begin_inset Text
17826
17827 \begin_layout Plain Layout
17828 12x24
17829 \begin_inset Space \thinspace{}
17830 \end_inset
17831
17832
17833 \begin_inset Formula $\mbox{Flaschen}$
17834 \end_inset
17835
17836
17837 \end_layout
17838
17839 \end_inset
17840 </cell>
17841 <cell alignment="center" valignment="top" rightline="true" usebox="none">
17842 \begin_inset Text
17843
17844 \begin_layout Plain Layout
17845 12x24
17846 \begin_inset Space \thinspace{}
17847 \end_inset
17848
17849
17850 \begin_inset Formula $\mbox{Flaschen}$
17851 \end_inset
17852
17853
17854 \end_layout
17855
17856 \end_inset
17857 </cell>
17858 <cell alignment="center" valignment="top" rightline="true" usebox="none">
17859 \begin_inset Text
17860
17861 \begin_layout Plain Layout
17862 12
17863 \begin_inset ERT
17864 status collapsed
17865
17866 \begin_layout Plain Layout
17867
17868
17869 \backslash
17870 times 
17871 \end_layout
17872
17873 \end_inset
17874
17875 24~
17876 \begin_inset Formula $\mbox{Flaschen}$
17877 \end_inset
17878
17879
17880 \end_layout
17881
17882 \end_inset
17883 </cell>
17884 </row>
17885 <row>
17886 <cell alignment="center" valignment="top" rightline="true" usebox="none">
17887 \begin_inset Text
17888
17889 \begin_layout Plain Layout
17890 1024x768
17891 \begin_inset Space \thinspace{}
17892 \end_inset
17893
17894
17895 \begin_inset Formula $\mbox{Pixel}$
17896 \end_inset
17897
17898
17899 \end_layout
17900
17901 \end_inset
17902 </cell>
17903 <cell alignment="center" valignment="top" rightline="true" usebox="none">
17904 \begin_inset Text
17905
17906 \begin_layout Plain Layout
17907 1024x768
17908 \begin_inset Space \thinspace{}
17909 \end_inset
17910
17911
17912 \begin_inset Formula $\mbox{Pixel}$
17913 \end_inset
17914
17915
17916 \end_layout
17917
17918 \end_inset
17919 </cell>
17920 <cell alignment="center" valignment="top" rightline="true" usebox="none">
17921 \begin_inset Text
17922
17923 \begin_layout Plain Layout
17924 1024
17925 \begin_inset ERT
17926 status collapsed
17927
17928 \begin_layout Plain Layout
17929
17930
17931 \backslash
17932 times 
17933 \end_layout
17934
17935 \end_inset
17936
17937 768~
17938 \begin_inset Formula $\mbox{Pixel}$
17939 \end_inset
17940
17941
17942 \end_layout
17943
17944 \end_inset
17945 </cell>
17946 </row>
17947 <row>
17948 <cell alignment="center" valignment="top" rightline="true" usebox="none">
17949 \begin_inset Text
17950
17951 \begin_layout Plain Layout
17952 32x6
17953 \begin_inset Space \thinspace{}
17954 \end_inset
17955
17956
17957 \begin_inset Formula $\mbox{cm}$
17958 \end_inset
17959
17960
17961 \end_layout
17962
17963 \end_inset
17964 </cell>
17965 <cell alignment="center" valignment="top" rightline="true" usebox="none">
17966 \begin_inset Text
17967
17968 \begin_layout Plain Layout
17969 32x6
17970 \begin_inset Space \thinspace{}
17971 \end_inset
17972
17973
17974 \begin_inset Formula $\mbox{cm}$
17975 \end_inset
17976
17977
17978 \end_layout
17979
17980 \end_inset
17981 </cell>
17982 <cell alignment="center" valignment="top" rightline="true" usebox="none">
17983 \begin_inset Text
17984
17985 \begin_layout Plain Layout
17986 32
17987 \begin_inset ERT
17988 status collapsed
17989
17990 \begin_layout Plain Layout
17991
17992
17993 \backslash
17994 times 
17995 \end_layout
17996
17997 \end_inset
17998
17999 6~
18000 \begin_inset Formula $\mbox{cm}$
18001 \end_inset
18002
18003
18004 \end_layout
18005
18006 \end_inset
18007 </cell>
18008 </row>
18009 </lyxtabular>
18010
18011 \end_inset
18012
18013
18014 \end_layout
18015
18016 \end_inset
18017
18018
18019 \end_layout
18020
18021 \begin_layout Subsection
18022 Angepasste Zellen/Spaltenformat
18023 \begin_inset CommandInset label
18024 LatexCommand label
18025 name "uab:Angepasste-Zellen/Spaltenformat"
18026
18027 \end_inset
18028
18029
18030 \begin_inset Index
18031 status collapsed
18032
18033 \begin_layout Plain Layout
18034 Tabellen ! Spaltenformat
18035 \end_layout
18036
18037 \end_inset
18038
18039
18040 \end_layout
18041
18042 \begin_layout Standard
18043 Wenn man wie in Abschnitt
18044 \begin_inset Space ~
18045 \end_inset
18046
18047
18048 \begin_inset CommandInset ref
18049 LatexCommand ref
18050 reference "uab:Mehrfachspalten-Berechnungen"
18051
18052 \end_inset
18053
18054  die gewünschte Breite einer Mehrfachspalte berechnen will, ist bei mehreren
18055  Tabellen mit Mehrfachspalten sehr lästig.
18056  Um sich das Leben zu erleichtern, können Sie im LaTeX-Vorspann ein Zellen/Spalt
18057 en definieren:
18058 \end_layout
18059
18060 \begin_layout Standard
18061
18062 \series bold
18063
18064 \backslash
18065 newcolumntype{Formatname}[Zahl der Argumente]{Befehle}
18066 \end_layout
18067
18068 \begin_layout Standard
18069 Der Formatname darf nur ein Buchstabe sein, aber nicht 
18070 \emph on
18071 b
18072 \emph default
18073
18074 \emph on
18075 c
18076 \emph default
18077
18078 \emph on
18079 l
18080 \emph default
18081
18082 \emph on
18083 m
18084 \emph default
18085
18086 \emph on
18087 p
18088 \emph default
18089  oder 
18090 \emph on
18091 r
18092 \emph default
18093 , weil diese vordefiniert sind.
18094  Aber alle Buchstaben sind als Großbuchstaben erlaubt.
18095 \end_layout
18096
18097 \begin_layout Standard
18098 \begin_inset VSpace medskip
18099 \end_inset
18100
18101
18102 \end_layout
18103
18104 \begin_layout Standard
18105 Für vertikal und horizontal zentrierte Mehrfachspalten-Zellen mit fester
18106  Breite könnte das Format so aussehen:
18107 \end_layout
18108
18109 \begin_layout Standard
18110
18111 \series bold
18112
18113 \backslash
18114 newcolumntype{M}[1]{>{
18115 \backslash
18116 centering
18117 \backslash
18118 hspace{0pt}}m{#1}}
18119 \end_layout
18120
18121 \begin_layout Standard
18122 wobei 
18123 \series bold
18124
18125 \backslash
18126 hspace{0pt}
18127 \series default
18128  das Problem mit der Silbentrennung des ersten Wortes vermeidet, wie in
18129  Abschnitt
18130 \begin_inset Space ~
18131 \end_inset
18132
18133
18134 \begin_inset CommandInset ref
18135 LatexCommand ref
18136 reference "uab:Mehrfache-Zeilen-in"
18137
18138 \end_inset
18139
18140  beschrieben.
18141  Jetzt können Sie mit
18142 \end_layout
18143
18144 \begin_layout Standard
18145
18146 \series bold
18147 M{Breite}
18148 \end_layout
18149
18150 \begin_layout Standard
18151 im 
18152 \family sans
18153 LaTeX-Argument
18154 \family default
18155  im 
18156 \family sans
18157 Tabellen-Einstellungen
18158 \family default
18159 -Dialog eine Mehrfachspalten definieren.
18160 \end_layout
18161
18162 \begin_layout Standard
18163 \begin_inset VSpace bigskip
18164 \end_inset
18165
18166
18167 \end_layout
18168
18169 \begin_layout Standard
18170 Für Zellen, die von einer Mehrfachspalte überspannt werden, können Sie folgendes
18171  Format definieren:
18172 \end_layout
18173
18174 \begin_layout Standard
18175
18176 \series bold
18177
18178 \backslash
18179 newcolumntype{S}[2]{>{
18180 \backslash
18181 centering
18182 \backslash
18183 hspace{0pt}}
18184 \begin_inset Newline newline
18185 \end_inset
18186
18187
18188 \begin_inset ERT
18189 status collapsed
18190
18191 \begin_layout Plain Layout
18192
18193
18194 \backslash
18195 phantom{
18196 \end_layout
18197
18198 \end_inset
18199
18200
18201 \backslash
18202 newcolumntype
18203 \begin_inset ERT
18204 status collapsed
18205
18206 \begin_layout Plain Layout
18207
18208 }
18209 \end_layout
18210
18211 \end_inset
18212
18213 m{(#1+(2
18214 \backslash
18215 tabcolsep+
18216 \backslash
18217 arrayrulewidth)*(1-#2))/#2}}
18218 \end_layout
18219
18220 \begin_layout Standard
18221 Diese Format benutzt Gleichung
18222 \begin_inset Space ~
18223 \end_inset
18224
18225
18226 \begin_inset CommandInset ref
18227 LatexCommand ref
18228 reference "eq:Wgn"
18229
18230 \end_inset
18231
18232 , um die nötige Breite zu berechnen, damit jede überspannte Spalte gleich
18233  breit ist.
18234 \end_layout
18235
18236 \begin_layout Standard
18237 Jetzt können Sie im 
18238 \family sans
18239 LaTeX-Argument
18240 \family default
18241  im 
18242 \family sans
18243 Tabellen-Einstellungen
18244 \family default
18245 -Dialog folgendes einfügen:
18246 \end_layout
18247
18248 \begin_layout Standard
18249
18250 \series bold
18251 S{Mehrfachspalten-Breite}{Zahl der überspannten Spalten}
18252 \end_layout
18253
18254 \begin_layout Standard
18255 \begin_inset VSpace bigskip
18256 \end_inset
18257
18258
18259 \end_layout
18260
18261 \begin_layout Standard
18262 Für farbige Spalten können Sie folgendes einfügen:
18263 \end_layout
18264
18265 \begin_layout Standard
18266
18267 \series bold
18268
18269 \backslash
18270 newcolumntype{K}[1]{>{
18271 \backslash
18272 columncolor{#1}
18273 \backslash
18274 hspace{0pt}}c}
18275 \end_layout
18276
18277 \begin_layout Standard
18278 Das 
18279 \begin_inset Quotes gld
18280 \end_inset
18281
18282 c
18283 \begin_inset Quotes grd
18284 \end_inset
18285
18286  am Ende erzeugt eine Spalte mit flexibler Breite, deren Text horizontal
18287  zentriert ist.
18288  Jetzt können Sie als 
18289 \family sans
18290 LaTeX-Argument
18291 \family default
18292  folgendes einfügen:
18293 \end_layout
18294
18295 \begin_layout Standard
18296
18297 \series bold
18298 K{Farbname}
18299 \end_layout
18300
18301 \begin_layout Standard
18302 \begin_inset VSpace bigskip
18303 \end_inset
18304
18305
18306 \end_layout
18307
18308 \begin_layout Standard
18309 Für Tabelle
18310 \begin_inset Space ~
18311 \end_inset
18312
18313
18314 \begin_inset CommandInset ref
18315 LatexCommand ref
18316 reference "tab:Tabelle-mit-benutzerdefinierte"
18317
18318 \end_inset
18319
18320  wurden folgende 
18321 \family sans
18322 LaTeX-Argumente
18323 \family default
18324  benutzt:
18325 \end_layout
18326
18327 \begin_layout Standard
18328
18329 \series bold
18330 M{2.5cm}
18331 \end_layout
18332
18333 \begin_layout Standard
18334 für die erste Spalte und die Mehrfachspalte,
18335 \end_layout
18336
18337 \begin_layout Standard
18338
18339 \series bold
18340 K{red}
18341 \end_layout
18342
18343 \begin_layout Standard
18344 für die letzte Spalte und
18345 \end_layout
18346
18347 \begin_layout Standard
18348
18349 \series bold
18350 S{2.5cm}{2}
18351 \end_layout
18352
18353 \begin_layout Standard
18354 für die Spalten in der zweiten Mehrfachspalte.
18355 \end_layout
18356
18357 \begin_layout Standard
18358 \begin_inset Float table
18359 placement h
18360 wide false
18361 sideways false
18362 status open
18363
18364 \begin_layout Plain Layout
18365 \begin_inset Caption
18366
18367 \begin_layout Plain Layout
18368 \begin_inset CommandInset label
18369 LatexCommand label
18370 name "tab:Tabelle-mit-benutzerdefinierte"
18371
18372 \end_inset
18373
18374 Tabelle mit benutzerdefinierte Formaten
18375 \end_layout
18376
18377 \end_inset
18378
18379
18380 \end_layout
18381
18382 \begin_layout Plain Layout
18383 \align center
18384 \begin_inset Tabular
18385 <lyxtabular version="3" rows="3" columns="4">
18386 <features>
18387 <column alignment="center" valignment="middle" width="2.5cm" special="M{2.5cm}">
18388 <column alignment="center" valignment="middle" width="0" special="S{2.5cm}{2}">
18389 <column alignment="center" valignment="middle" width="0">
18390 <column alignment="center" valignment="middle" width="0" special="K{red}">
18391 <row>
18392 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18393 \begin_inset Text
18394
18395 \begin_layout Plain Layout
18396 einsehrlangesWort
18397 \end_layout
18398
18399 \end_inset
18400 </cell>
18401 <cell multicolumn="1" alignment="center" valignment="top" topline="true" leftline="true" usebox="none" special="M{2.5cm}">
18402 \begin_inset Text
18403
18404 \begin_layout Plain Layout
18405 Mehrfachspalte mit mehreren Zeilen
18406 \end_layout
18407
18408 \end_inset
18409 </cell>
18410 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18411 \begin_inset Text
18412
18413 \begin_layout Plain Layout
18414
18415 \end_layout
18416
18417 \end_inset
18418 </cell>
18419 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18420 \begin_inset Text
18421
18422 \begin_layout Plain Layout
18423 c
18424 \end_layout
18425
18426 \end_inset
18427 </cell>
18428 </row>
18429 <row>
18430 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18431 \begin_inset Text
18432
18433 \begin_layout Plain Layout
18434 d
18435 \end_layout
18436
18437 \end_inset
18438 </cell>
18439 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18440 \begin_inset Text
18441
18442 \begin_layout Plain Layout
18443 e
18444 \end_layout
18445
18446 \end_inset
18447 </cell>
18448 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18449 \begin_inset Text
18450
18451 \begin_layout Plain Layout
18452 f
18453 \end_layout
18454
18455 \end_inset
18456 </cell>
18457 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18458 \begin_inset Text
18459
18460 \begin_layout Plain Layout
18461 g
18462 \end_layout
18463
18464 \end_inset
18465 </cell>
18466 </row>
18467 <row>
18468 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18469 \begin_inset Text
18470
18471 \begin_layout Plain Layout
18472 h
18473 \end_layout
18474
18475 \end_inset
18476 </cell>
18477 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18478 \begin_inset Text
18479
18480 \begin_layout Plain Layout
18481 i
18482 \end_layout
18483
18484 \end_inset
18485 </cell>
18486 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18487 \begin_inset Text
18488
18489 \begin_layout Plain Layout
18490 j
18491 \end_layout
18492
18493 \end_inset
18494 </cell>
18495 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
18496 \begin_inset Text
18497
18498 \begin_layout Plain Layout
18499 k
18500 \end_layout
18501
18502 \end_inset
18503 </cell>
18504 </row>
18505 </lyxtabular>
18506
18507 \end_inset
18508
18509
18510 \end_layout
18511
18512 \end_inset
18513
18514
18515 \end_layout
18516
18517 \begin_layout Subsection
18518 Liniendicke
18519 \begin_inset CommandInset label
18520 LatexCommand label
18521 name "uab:Liniendicke"
18522
18523 \end_inset
18524
18525
18526 \begin_inset Index
18527 status collapsed
18528
18529 \begin_layout Plain Layout
18530 Tabellen  ! Linien ! -dicke
18531 \end_layout
18532
18533 \end_inset
18534
18535
18536 \end_layout
18537
18538 \begin_layout Standard
18539 Die Liniendicke für alle Linien einer Tabelle kann mit 
18540 \series bold
18541
18542 \backslash
18543 arrayrulewidth
18544 \series default
18545  eingestellt werden.
18546  Um eine Liniendicke von 1.5
18547 \begin_inset Space \thinspace{}
18548 \end_inset
18549
18550 pt, wie in Tabelle
18551 \begin_inset Space ~
18552 \end_inset
18553
18554
18555 \begin_inset CommandInset ref
18556 LatexCommand ref
18557 reference "tab:Tabelle-mit-1.5pt-Liniendicke"
18558
18559 \end_inset
18560
18561  zu bekommen, geben Sie den Befehl
18562 \end_layout
18563
18564 \begin_layout Standard
18565
18566 \series bold
18567
18568 \backslash
18569 setlength{
18570 \backslash
18571 arrayrulewidth}{1.5pt}
18572 \end_layout
18573
18574 \begin_layout Standard
18575 als TeX-Code vor der (Gleitobjekt-)Tabelle ein.
18576  Die geänderte Liniendicke gilt für alle folgenden Tabellen.
18577  Mit
18578 \end_layout
18579
18580 \begin_layout Standard
18581
18582 \series bold
18583
18584 \backslash
18585 setlength{
18586 \backslash
18587 arrayrulewidth}{0.4pt}
18588 \end_layout
18589
18590 \begin_layout Standard
18591 bekommen Sie wieder die Standarddicke.
18592 \end_layout
18593
18594 \begin_layout Standard
18595 \begin_inset ERT
18596 status collapsed
18597
18598 \begin_layout Plain Layout
18599
18600
18601 \backslash
18602 setlength{
18603 \backslash
18604 arrayrulewidth}{1.5pt}
18605 \end_layout
18606
18607 \end_inset
18608
18609
18610 \begin_inset Float table
18611 placement H
18612 wide false
18613 sideways false
18614 status open
18615
18616 \begin_layout Plain Layout
18617 \begin_inset Caption
18618
18619 \begin_layout Plain Layout
18620 \begin_inset CommandInset label
18621 LatexCommand label
18622 name "tab:Tabelle-mit-1.5pt-Liniendicke"
18623
18624 \end_inset
18625
18626 Tabelle mit 1.5
18627 \begin_inset Space \thinspace{}
18628 \end_inset
18629
18630 pt Liniendicke
18631 \end_layout
18632
18633 \end_inset
18634
18635
18636 \end_layout
18637
18638 \begin_layout Plain Layout
18639 \align center
18640 \begin_inset Tabular
18641 <lyxtabular version="3" rows="3" columns="3">
18642 <features>
18643 <column alignment="center" valignment="top" width="0">
18644 <column alignment="center" valignment="top" width="0">
18645 <column alignment="center" valignment="top" width="0">
18646 <row>
18647 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18648 \begin_inset Text
18649
18650 \begin_layout Plain Layout
18651 sd
18652 \end_layout
18653
18654 \end_inset
18655 </cell>
18656 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18657 \begin_inset Text
18658
18659 \begin_layout Plain Layout
18660
18661 \end_layout
18662
18663 \end_inset
18664 </cell>
18665 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18666 \begin_inset Text
18667
18668 \begin_layout Plain Layout
18669
18670 \end_layout
18671
18672 \end_inset
18673 </cell>
18674 </row>
18675 <row>
18676 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18677 \begin_inset Text
18678
18679 \begin_layout Plain Layout
18680
18681 \end_layout
18682
18683 \end_inset
18684 </cell>
18685 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18686 \begin_inset Text
18687
18688 \begin_layout Plain Layout
18689 sd
18690 \end_layout
18691
18692 \end_inset
18693 </cell>
18694 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18695 \begin_inset Text
18696
18697 \begin_layout Plain Layout
18698
18699 \end_layout
18700
18701 \end_inset
18702 </cell>
18703 </row>
18704 <row>
18705 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18706 \begin_inset Text
18707
18708 \begin_layout Plain Layout
18709
18710 \end_layout
18711
18712 \end_inset
18713 </cell>
18714 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18715 \begin_inset Text
18716
18717 \begin_layout Plain Layout
18718
18719 \end_layout
18720
18721 \end_inset
18722 </cell>
18723 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
18724 \begin_inset Text
18725
18726 \begin_layout Plain Layout
18727 sd
18728 \end_layout
18729
18730 \end_inset
18731 </cell>
18732 </row>
18733 </lyxtabular>
18734
18735 \end_inset
18736
18737
18738 \end_layout
18739
18740 \end_inset
18741
18742
18743 \begin_inset ERT
18744 status collapsed
18745
18746 \begin_layout Plain Layout
18747
18748
18749 \backslash
18750 setlength{
18751 \backslash
18752 arrayrulewidth}{0.4pt}
18753 \end_layout
18754
18755 \end_inset
18756
18757
18758 \end_layout
18759
18760 \begin_layout Standard
18761 \begin_inset VSpace bigskip
18762 \end_inset
18763
18764 Um eine Liniendicke von 1.5
18765 \begin_inset Space \thinspace{}
18766 \end_inset
18767
18768 pt nur für horizontale Linien zu bekommen, wie in Tabelle
18769 \begin_inset Space ~
18770 \end_inset
18771
18772
18773 \begin_inset CommandInset ref
18774 LatexCommand ref
18775 reference "tab:Tabelle-mit-1.5pt-horiz"
18776
18777 \end_inset
18778
18779 , müssen Sie folgende Befehle als TeX-Code vor der (Gleitobjekt-)Tabelle
18780  einfügen:
18781 \end_layout
18782
18783 \begin_layout Standard
18784
18785 \series bold
18786
18787 \backslash
18788 let
18789 \backslash
18790 myHline
18791 \backslash
18792 hline
18793 \begin_inset Newline newline
18794 \end_inset
18795
18796
18797 \backslash
18798 renewcommand{
18799 \backslash
18800 hline}
18801 \begin_inset Newline newline
18802 \end_inset
18803
18804  {
18805 \backslash
18806 noalign{
18807 \backslash
18808 global
18809 \backslash
18810 arrayrulewidth 1.5pt}
18811 \begin_inset Newline newline
18812 \end_inset
18813
18814  
18815 \backslash
18816 myHline
18817 \backslash
18818 noalign{
18819 \backslash
18820 global
18821 \backslash
18822 arrayrulewidth 0.4pt}}
18823 \end_layout
18824
18825 \begin_layout Standard
18826 Die Standarddicke erhalten Sie mit folgendem Befehl als TeX-Code hinter
18827  der (Gleit\SpecialChar \-
18828 objekt-)Tabelle zurück:
18829 \end_layout
18830
18831 \begin_layout Standard
18832
18833 \series bold
18834
18835 \backslash
18836 renewcommand{
18837 \backslash
18838 hline}{
18839 \backslash
18840 myHline}
18841 \end_layout
18842
18843 \begin_layout Standard
18844 \begin_inset ERT
18845 status collapsed
18846
18847 \begin_layout Plain Layout
18848
18849
18850 \backslash
18851 let
18852 \backslash
18853 myHline
18854 \backslash
18855 hline
18856 \end_layout
18857
18858 \begin_layout Plain Layout
18859
18860
18861 \backslash
18862 renewcommand{
18863 \backslash
18864 hline}
18865 \end_layout
18866
18867 \begin_layout Plain Layout
18868
18869  {
18870 \backslash
18871 noalign{
18872 \backslash
18873 global
18874 \backslash
18875 arrayrulewidth 1.5pt}
18876 \end_layout
18877
18878 \begin_layout Plain Layout
18879
18880   
18881 \backslash
18882 myHline
18883 \backslash
18884 noalign{
18885 \backslash
18886 global
18887 \backslash
18888 arrayrulewidth 0.4pt}}
18889 \end_layout
18890
18891 \end_inset
18892
18893
18894 \begin_inset Float table
18895 placement h
18896 wide false
18897 sideways false
18898 status open
18899
18900 \begin_layout Plain Layout
18901 \begin_inset Caption
18902
18903 \begin_layout Plain Layout
18904 \begin_inset CommandInset label
18905 LatexCommand label
18906 name "tab:Tabelle-mit-1.5pt-horiz"
18907
18908 \end_inset
18909
18910 Tabelle mit 1.5
18911 \begin_inset Space \thinspace{}
18912 \end_inset
18913
18914 pt dicken horizontalen Linien
18915 \end_layout
18916
18917 \end_inset
18918
18919
18920 \end_layout
18921
18922 \begin_layout Plain Layout
18923 \align center
18924 \begin_inset Tabular
18925 <lyxtabular version="3" rows="3" columns="3">
18926 <features>
18927 <column alignment="center" valignment="top" width="0">
18928 <column alignment="center" valignment="top" width="0">
18929 <column alignment="center" valignment="top" width="0">
18930 <row>
18931 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18932 \begin_inset Text
18933
18934 \begin_layout Plain Layout
18935 sd
18936 \end_layout
18937
18938 \end_inset
18939 </cell>
18940 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18941 \begin_inset Text
18942
18943 \begin_layout Plain Layout
18944
18945 \end_layout
18946
18947 \end_inset
18948 </cell>
18949 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18950 \begin_inset Text
18951
18952 \begin_layout Plain Layout
18953
18954 \end_layout
18955
18956 \end_inset
18957 </cell>
18958 </row>
18959 <row>
18960 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18961 \begin_inset Text
18962
18963 \begin_layout Plain Layout
18964
18965 \end_layout
18966
18967 \end_inset
18968 </cell>
18969 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18970 \begin_inset Text
18971
18972 \begin_layout Plain Layout
18973 sd
18974 \end_layout
18975
18976 \end_inset
18977 </cell>
18978 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18979 \begin_inset Text
18980
18981 \begin_layout Plain Layout
18982
18983 \end_layout
18984
18985 \end_inset
18986 </cell>
18987 </row>
18988 <row>
18989 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18990 \begin_inset Text
18991
18992 \begin_layout Plain Layout
18993
18994 \end_layout
18995
18996 \end_inset
18997 </cell>
18998 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18999 \begin_inset Text
19000
19001 \begin_layout Plain Layout
19002
19003 \end_layout
19004
19005 \end_inset
19006 </cell>
19007 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19008 \begin_inset Text
19009
19010 \begin_layout Plain Layout
19011 sd
19012 \end_layout
19013
19014 \end_inset
19015 </cell>
19016 </row>
19017 </lyxtabular>
19018
19019 \end_inset
19020
19021
19022 \end_layout
19023
19024 \end_inset
19025
19026
19027 \begin_inset ERT
19028 status collapsed
19029
19030 \begin_layout Plain Layout
19031
19032
19033 \backslash
19034 renewcommand{
19035 \backslash
19036 hline}{
19037 \backslash
19038 myHline}
19039 \end_layout
19040
19041 \end_inset
19042
19043
19044 \end_layout
19045
19046 \begin_layout Standard
19047 \begin_inset VSpace bigskip
19048 \end_inset
19049
19050 Um die Liniendicke von 1.5
19051 \begin_inset Space \thinspace{}
19052 \end_inset
19053
19054 pt nur für vertikale Linien zu bekommen, müssen Sie im LaTeX-Vorspann folgendes
19055  Spaltenformat entsprechend der Beschreibung in Abschnitt
19056 \begin_inset Space ~
19057 \end_inset
19058
19059
19060 \begin_inset CommandInset ref
19061 LatexCommand ref
19062 reference "uab:Angepasste-Zellen/Spaltenformat"
19063
19064 \end_inset
19065
19066 definieren:
19067 \end_layout
19068
19069 \begin_layout Standard
19070
19071 \series bold
19072
19073 \backslash
19074 newcolumntype{V}{!{
19075 \backslash
19076 vrule width 1.5pt}}
19077 \end_layout
19078
19079 \begin_layout Standard
19080 In Tabelle
19081 \begin_inset Space ~
19082 \end_inset
19083
19084
19085 \begin_inset CommandInset ref
19086 LatexCommand ref
19087 reference "tab:Tabelle-mit-1.5pt-vert"
19088
19089 \end_inset
19090
19091  wurde das 
19092 \family sans
19093 LaTe
19094 \begin_inset ERT
19095 status collapsed
19096
19097 \begin_layout Plain Layout
19098
19099 {}
19100 \end_layout
19101
19102 \end_inset
19103
19104 X-Argument
19105 \family default
19106 \series bold
19107  VcV
19108 \series default
19109  für die letzte Spalte und
19110 \series bold
19111  Vc
19112 \series default
19113  für die anderen benutzt.
19114 \end_layout
19115
19116 \begin_layout Standard
19117 \begin_inset Float table
19118 placement H
19119 wide false
19120 sideways false
19121 status open
19122
19123 \begin_layout Plain Layout
19124 \begin_inset Caption
19125
19126 \begin_layout Plain Layout
19127 \begin_inset CommandInset label
19128 LatexCommand label
19129 name "tab:Tabelle-mit-1.5pt-vert"
19130
19131 \end_inset
19132
19133 Tabelle mit 1.5
19134 \begin_inset Space \thinspace{}
19135 \end_inset
19136
19137 pt dicken vertikalen Linien
19138 \end_layout
19139
19140 \end_inset
19141
19142
19143 \end_layout
19144
19145 \begin_layout Plain Layout
19146 \align center
19147 \begin_inset Tabular
19148 <lyxtabular version="3" rows="3" columns="3">
19149 <features>
19150 <column alignment="center" valignment="top" width="0" special="Vc">
19151 <column alignment="center" valignment="top" width="0" special="Vc">
19152 <column alignment="center" valignment="top" width="0" special="VcV">
19153 <row>
19154 <cell alignment="center" valignment="top" topline="true" usebox="none">
19155 \begin_inset Text
19156
19157 \begin_layout Plain Layout
19158 sd
19159 \end_layout
19160
19161 \end_inset
19162 </cell>
19163 <cell alignment="center" valignment="top" topline="true" usebox="none">
19164 \begin_inset Text
19165
19166 \begin_layout Plain Layout
19167
19168 \end_layout
19169
19170 \end_inset
19171 </cell>
19172 <cell alignment="center" valignment="top" topline="true" usebox="none">
19173 \begin_inset Text
19174
19175 \begin_layout Plain Layout
19176
19177 \end_layout
19178
19179 \end_inset
19180 </cell>
19181 </row>
19182 <row>
19183 <cell alignment="center" valignment="top" topline="true" usebox="none">
19184 \begin_inset Text
19185
19186 \begin_layout Plain Layout
19187
19188 \end_layout
19189
19190 \end_inset
19191 </cell>
19192 <cell alignment="center" valignment="top" topline="true" usebox="none">
19193 \begin_inset Text
19194
19195 \begin_layout Plain Layout
19196 sd
19197 \end_layout
19198
19199 \end_inset
19200 </cell>
19201 <cell alignment="center" valignment="top" topline="true" usebox="none">
19202 \begin_inset Text
19203
19204 \begin_layout Plain Layout
19205
19206 \end_layout
19207
19208 \end_inset
19209 </cell>
19210 </row>
19211 <row>
19212 <cell alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
19213 \begin_inset Text
19214
19215 \begin_layout Plain Layout
19216
19217 \end_layout
19218
19219 \end_inset
19220 </cell>
19221 <cell alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
19222 \begin_inset Text
19223
19224 \begin_layout Plain Layout
19225
19226 \end_layout
19227
19228 \end_inset
19229 </cell>
19230 <cell alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
19231 \begin_inset Text
19232
19233 \begin_layout Plain Layout
19234 sd
19235 \end_layout
19236
19237 \end_inset
19238 </cell>
19239 </row>
19240 </lyxtabular>
19241
19242 \end_inset
19243
19244
19245 \end_layout
19246
19247 \end_inset
19248
19249
19250 \end_layout
19251
19252 \begin_layout Subsection
19253 Gestrichelte Linien
19254 \begin_inset Index
19255 status collapsed
19256
19257 \begin_layout Plain Layout
19258 Tabellen  ! Linien ! gestrichelte 
19259 \end_layout
19260
19261 \end_inset
19262
19263
19264 \end_layout
19265
19266 \begin_layout Standard
19267 \begin_inset ERT
19268 status collapsed
19269
19270 \begin_layout Plain Layout
19271
19272
19273 \backslash
19274 ifarydshln
19275 \end_layout
19276
19277 \end_inset
19278
19279
19280 \begin_inset Note Note
19281 status open
19282
19283 \begin_layout Plain Layout
19284 Die folgende Teil wird nur gedruckt, wenn das LaTeX-Paket 
19285 \series bold
19286 arydshln
19287 \series default
19288  installiert ist.
19289 \end_layout
19290
19291 \end_inset
19292
19293
19294 \end_layout
19295
19296 \begin_layout Standard
19297 \begin_inset Float table
19298 placement h
19299 wide false
19300 sideways false
19301 status open
19302
19303 \begin_layout Plain Layout
19304 \begin_inset Caption
19305
19306 \begin_layout Plain Layout
19307 \begin_inset CommandInset label
19308 LatexCommand label
19309 name "tab:Tabelle-mit-gestrichelten"
19310
19311 \end_inset
19312
19313 Tabelle mit gestrichelten Linien
19314 \end_layout
19315
19316 \end_inset
19317
19318
19319 \end_layout
19320
19321 \begin_layout Plain Layout
19322 \align center
19323 \begin_inset Tabular
19324 <lyxtabular version="3" rows="5" columns="5">
19325 <features>
19326 <column alignment="center" valignment="top" width="0">
19327 <column alignment="center" valignment="top" width="0">
19328 <column alignment="center" valignment="top" width="0" special=":c">
19329 <column alignment="center" valignment="top" width="0">
19330 <column alignment="center" valignment="top" width="0">
19331 <row>
19332 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19333 \begin_inset Text
19334
19335 \begin_layout Plain Layout
19336 a
19337 \end_layout
19338
19339 \end_inset
19340 </cell>
19341 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19342 \begin_inset Text
19343
19344 \begin_layout Plain Layout
19345 b
19346 \end_layout
19347
19348 \end_inset
19349 </cell>
19350 <cell alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
19351 \begin_inset Text
19352
19353 \begin_layout Plain Layout
19354 c
19355 \end_layout
19356
19357 \end_inset
19358 </cell>
19359 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19360 \begin_inset Text
19361
19362 \begin_layout Plain Layout
19363 d
19364 \end_layout
19365
19366 \end_inset
19367 </cell>
19368 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19369 \begin_inset Text
19370
19371 \begin_layout Plain Layout
19372 e
19373 \end_layout
19374
19375 \end_inset
19376 </cell>
19377 </row>
19378 <row>
19379 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19380 \begin_inset Text
19381
19382 \begin_layout Plain Layout
19383 f
19384 \end_layout
19385
19386 \end_inset
19387 </cell>
19388 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19389 \begin_inset Text
19390
19391 \begin_layout Plain Layout
19392 g
19393 \end_layout
19394
19395 \end_inset
19396 </cell>
19397 <cell alignment="center" valignment="top" topline="true" usebox="none">
19398 \begin_inset Text
19399
19400 \begin_layout Plain Layout
19401 h
19402 \end_layout
19403
19404 \end_inset
19405 </cell>
19406 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19407 \begin_inset Text
19408
19409 \begin_layout Plain Layout
19410 i
19411 \end_layout
19412
19413 \end_inset
19414 </cell>
19415 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19416 \begin_inset Text
19417
19418 \begin_layout Plain Layout
19419 j
19420 \end_layout
19421
19422 \end_inset
19423 </cell>
19424 </row>
19425 <row>
19426 <cell alignment="center" valignment="top" leftline="true" usebox="none">
19427 \begin_inset Text
19428
19429 \begin_layout Plain Layout
19430 \begin_inset ERT
19431 status collapsed
19432
19433 \begin_layout Plain Layout
19434
19435
19436 \backslash
19437 hdashline 
19438 \end_layout
19439
19440 \end_inset
19441
19442 k
19443 \end_layout
19444
19445 \end_inset
19446 </cell>
19447 <cell alignment="center" valignment="top" leftline="true" usebox="none">
19448 \begin_inset Text
19449
19450 \begin_layout Plain Layout
19451 l
19452 \end_layout
19453
19454 \end_inset
19455 </cell>
19456 <cell alignment="center" valignment="top" usebox="none">
19457 \begin_inset Text
19458
19459 \begin_layout Plain Layout
19460 m
19461 \end_layout
19462
19463 \end_inset
19464 </cell>
19465 <cell alignment="center" valignment="top" leftline="true" usebox="none">
19466 \begin_inset Text
19467
19468 \begin_layout Plain Layout
19469 n
19470 \end_layout
19471
19472 \end_inset
19473 </cell>
19474 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
19475 \begin_inset Text
19476
19477 \begin_layout Plain Layout
19478 o
19479 \end_layout
19480
19481 \end_inset
19482 </cell>
19483 </row>
19484 <row>
19485 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19486 \begin_inset Text
19487
19488 \begin_layout Plain Layout
19489 \begin_inset ERT
19490 status collapsed
19491
19492 \begin_layout Plain Layout
19493
19494
19495 \backslash
19496 cdashline{4-5}
19497 \end_layout
19498
19499 \end_inset
19500
19501 p
19502 \end_layout
19503
19504 \end_inset
19505 </cell>
19506 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19507 \begin_inset Text
19508
19509 \begin_layout Plain Layout
19510 q
19511 \end_layout
19512
19513 \end_inset
19514 </cell>
19515 <cell alignment="center" valignment="top" topline="true" usebox="none" special="c:">
19516 \begin_inset Text
19517
19518 \begin_layout Plain Layout
19519 r
19520 \end_layout
19521
19522 \end_inset
19523 </cell>
19524 <cell multicolumn="1" alignment="center" valignment="top" leftline="true" rightline="true" usebox="none" special="c:">
19525 \begin_inset Text
19526
19527 \begin_layout Plain Layout
19528 s
19529 \end_layout
19530
19531 \end_inset
19532 </cell>
19533 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19534 \begin_inset Text
19535
19536 \begin_layout Plain Layout
19537
19538 \end_layout
19539
19540 \end_inset
19541 </cell>
19542 </row>
19543 <row>
19544 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19545 \begin_inset Text
19546
19547 \begin_layout Plain Layout
19548 t
19549 \end_layout
19550
19551 \end_inset
19552 </cell>
19553 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19554 \begin_inset Text
19555
19556 \begin_layout Plain Layout
19557 u
19558 \end_layout
19559
19560 \end_inset
19561 </cell>
19562 <cell alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
19563 \begin_inset Text
19564
19565 \begin_layout Plain Layout
19566 v
19567 \end_layout
19568
19569 \end_inset
19570 </cell>
19571 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19572 \begin_inset Text
19573
19574 \begin_layout Plain Layout
19575 w
19576 \end_layout
19577
19578 \end_inset
19579 </cell>
19580 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19581 \begin_inset Text
19582
19583 \begin_layout Plain Layout
19584 x
19585 \end_layout
19586
19587 \end_inset
19588 </cell>
19589 </row>
19590 </lyxtabular>
19591
19592 \end_inset
19593
19594
19595 \end_layout
19596
19597 \end_inset
19598
19599
19600 \end_layout
19601
19602 \begin_layout Standard
19603 LyX unterstützt von sich aus keine gestrichelten Linien, also müssen Sie
19604  TeX-Code benutzen.
19605  Zunächst müssen Sie das LaTeX-Paket 
19606 \series bold
19607 arydshln
19608 \series default
19609
19610 \begin_inset Index
19611 status collapsed
19612
19613 \begin_layout Plain Layout
19614 LaTeX-Pakete ! arydshln
19615 \end_layout
19616
19617 \end_inset
19618
19619  im LaTeX-Vorspann geladen werden:
19620 \end_layout
19621
19622 \begin_layout Standard
19623
19624 \series bold
19625
19626 \backslash
19627 usepackage{arydshln}
19628 \end_layout
19629
19630 \begin_layout Standard
19631 Um senkrechte Linien zu stricheln, müssen Sie im 
19632 \family sans
19633 LaTe
19634 \begin_inset ERT
19635 status collapsed
19636
19637 \begin_layout Plain Layout
19638
19639 {}
19640 \end_layout
19641
19642 \end_inset
19643
19644 X-Argument
19645 \family default
19646  des 
19647 \family sans
19648 Tabellen-Einstellungen
19649 \family default
19650 -Dialogs 
19651 \begin_inset Quotes gld
19652 \end_inset
19653
19654 :
19655 \begin_inset Quotes grd
19656 \end_inset
19657
19658 , zusammen mit dem Buchstaben für die horizontale Ausrichtung, eingeben.
19659 \end_layout
19660
19661 \begin_layout Standard
19662 Für eine gestrichelte horizontale Linie müssen Sie den Befehl
19663 \end_layout
19664
19665 \begin_layout Standard
19666
19667 \series bold
19668
19669 \backslash
19670 hdashline
19671 \end_layout
19672
19673 \begin_layout Standard
19674 als TeX-Code als erstes in die erste Zelle einer Zeile einfügen.
19675 \end_layout
19676
19677 \begin_layout Standard
19678 Für gestrichelte horizontale Linien für Mehrfachspalten wird der Befehl
19679 \end_layout
19680
19681 \begin_layout Standard
19682
19683 \series bold
19684
19685 \backslash
19686 cdashline{Anfangsspalte-Endspalte}
19687 \end_layout
19688
19689 \begin_layout Standard
19690 als TeX-Code als erstes in die erste Zelle einer Zeile eingefügt.
19691  Wenn Sie z.
19692 \begin_inset Space \thinspace{}
19693 \end_inset
19694
19695 B.
19696  eine Mehrfachspalte über Spalte 2 bis 4 haben und Sie möchten darüber eine
19697  gestrichelte Linie haben, fügen Sie diesen Befehl
19698 \end_layout
19699
19700 \begin_layout Standard
19701
19702 \series bold
19703
19704 \backslash
19705 cdashline{2-4}
19706 \end_layout
19707
19708 \begin_layout Standard
19709 als erstes Element der ersten Zelle in der Zeile der Mehrfachspalte ein.
19710 \end_layout
19711
19712 \begin_layout Standard
19713 \begin_inset VSpace bigskip
19714 \end_inset
19715
19716
19717 \end_layout
19718
19719 \begin_layout Standard
19720 In Tabelle
19721 \begin_inset Space ~
19722 \end_inset
19723
19724
19725 \begin_inset CommandInset ref
19726 LatexCommand ref
19727 reference "tab:Tabelle-mit-gestrichelten"
19728
19729 \end_inset
19730
19731  wurde der dritten Spalte der Befehl
19732 \series bold
19733  
19734 \series default
19735
19736 \begin_inset Quotes gld
19737 \end_inset
19738
19739
19740 \series bold
19741 :c
19742 \begin_inset Quotes grd
19743 \end_inset
19744
19745
19746 \series default
19747  benutzt.
19748  Der Befehl 
19749 \series bold
19750
19751 \backslash
19752 hdashline
19753 \series default
19754  wurde in die erste Zelle der dritten Zeile eingefügt und der Befehl
19755 \begin_inset Newline newline
19756 \end_inset
19757
19758  
19759 \series bold
19760
19761 \backslash
19762 cdashline{4-5} 
19763 \series default
19764 wurde in die erste Zelle der vierten Zeile eingefügt.
19765 \end_layout
19766
19767 \begin_layout Standard
19768 \begin_inset Note Greyedout
19769 status open
19770
19771 \begin_layout Plain Layout
19772
19773 \series bold
19774 Bemerkung:
19775 \series default
19776  Das LaTeX-Paket 
19777 \series bold
19778 arydshln
19779 \series default
19780  ist nicht kompatibel dem LaTeX-Paket 
19781 \series bold
19782 colortbl
19783 \series default
19784
19785 \begin_inset Index
19786 status collapsed
19787
19788 \begin_layout Plain Layout
19789 LaTeX-Pakete ! colortbl
19790 \end_layout
19791
19792 \end_inset
19793
19794 , das für die farbigen Tabellen in Abschnitt
19795 \begin_inset Space ~
19796 \end_inset
19797
19798
19799 \begin_inset CommandInset ref
19800 LatexCommand ref
19801 reference "abs:Farbige-Tabellen"
19802
19803 \end_inset
19804
19805  benutzt wurde.
19806  Deswegen können farbige Tabellen keine gestrichelten Linien haben.
19807 \end_layout
19808
19809 \end_inset
19810
19811
19812 \end_layout
19813
19814 \begin_layout Standard
19815 \begin_inset ERT
19816 status collapsed
19817
19818 \begin_layout Plain Layout
19819
19820
19821 \backslash
19822 else
19823 \end_layout
19824
19825 \end_inset
19826
19827
19828 \begin_inset Note Note
19829 status open
19830
19831 \begin_layout Plain Layout
19832 Die folgende Teil wird gedruckt, wenn das LaTeX-Paket 
19833 \series bold
19834 arydshln
19835 \series default
19836  nicht installiert ist:
19837 \end_layout
19838
19839 \end_inset
19840
19841
19842 \end_layout
19843
19844 \begin_layout Standard
19845 Sie müssen das LaTeX-Paket 
19846 \series bold
19847 arydshln
19848 \series default
19849  installiert haben um den Inhalt dieses Abschnitts zu sehen.
19850 \end_layout
19851
19852 \begin_layout Standard
19853 \begin_inset ERT
19854 status collapsed
19855
19856 \begin_layout Plain Layout
19857
19858
19859 \backslash
19860 fi
19861 \end_layout
19862
19863 \end_inset
19864
19865
19866 \end_layout
19867
19868 \begin_layout Chapter
19869 Gleitobjekte
19870 \begin_inset CommandInset label
19871 LatexCommand label
19872 name "kap:Gleitobjekte"
19873
19874 \end_inset
19875
19876
19877 \begin_inset Index
19878 status collapsed
19879
19880 \begin_layout Plain Layout
19881 Gleitobjekte
19882 \end_layout
19883
19884 \end_inset
19885
19886
19887 \end_layout
19888
19889 \begin_layout Section
19890 Einleitung
19891 \begin_inset CommandInset label
19892 LatexCommand label
19893 name "abs:Gleitobjekte-Einleitung"
19894
19895 \end_inset
19896
19897
19898 \begin_inset Index
19899 status collapsed
19900
19901 \begin_layout Plain Layout
19902 Gleitobjekte ! Einleitung
19903 \end_layout
19904
19905 \end_inset
19906
19907
19908 \end_layout
19909
19910 \begin_layout Standard
19911 Ein Gleitobjekt ist ein Teil eines Dokumentes, das keinen festen Platz hat.
19912  Es kann eine oder zwei Seiten vorwärts oder rückwärts gleiten, wo immer
19913  der beste Platz ist.
19914  
19915 \family sans
19916 Fußnoten
19917 \family default
19918  und 
19919 \family sans
19920 Randnotizen
19921 \family default
19922  sind auch Gleitobjekte, weil sie auf die nächste Seite verschoben werden,
19923  wenn auf ihrer Seite schon zu viele sind.
19924 \end_layout
19925
19926 \begin_layout Standard
19927 Gleitobjekte ermöglichen eine hochwertige Gestaltung.
19928  Abbildungen und Tabellen können gleichmäßig auf Seiten verteilt werden,
19929  um weiße Flächen und Seiten ohne Text zu vermeiden.
19930  Weil das Gleiten oft den Kontext zwischen  Text und Abbildung/Tabelle auflöst,
19931  kann im Text auf ein Gleitobjekt verwiesen werden.
19932  Gleitobjekte sind deshalb nummeriert.
19933  Querverweise werden in Abschnitt
19934 \begin_inset Space ~
19935 \end_inset
19936
19937
19938 \begin_inset CommandInset ref
19939 LatexCommand ref
19940 reference "abs:Auf-Gleitobjekte-verweisen"
19941
19942 \end_inset
19943
19944  beschrieben.
19945 \end_layout
19946
19947 \begin_layout Standard
19948 Ein Gleitobjekt wird mit 
19949 \family sans
19950 Einfügen\SpecialChar \menuseparator
19951 Gleitobjekt\SpecialChar \menuseparator
19952 Algorithmus/Abbildung/Ta\SpecialChar \-
19953 belle/Um\SpecialChar \-
19954 flos\SpecialChar \-
19955 se\SpecialChar \-
19956 nes
19957 \begin_inset Space ~
19958 \end_inset
19959
19960 Gleitobjekt
19961 \family default
19962  eingefügt.
19963  Für Abbildungen oder Tabellen können Sie auch auf 
19964 \begin_inset Graphics
19965         filename ../../images/float-insert_figure.png
19966         scale 70
19967         scaleBeforeRotation
19968         BoundingBox 0bp 6bp 22bp 22bp
19969
19970 \end_inset
19971
19972  oder 
19973 \begin_inset Graphics
19974         filename ../../images/float-insert_table.png
19975         scale 70
19976         scaleBeforeRotation
19977         BoundingBox 0bp 6bp 22bp 22bp
19978
19979 \end_inset
19980
19981  klicken.
19982  Sie erhalten an der Stelle der Einfügung ein rot beschriftetes graues Kästchen,
19983  das Ihnen sagt, um was für ein Gleitobjekt es sich handelt, und ein rot
19984  umrandetes Kästchen mit einer nummerierten Marke (Algorithmus/Abbildung/Tabelle
19985  #:).
19986  Statt # sehen Sie die von LyX vergebene Nummer.
19987  In das schmale Feld nach der Marke können Sie den Titel schreiben.
19988  Algorithmus, Abbildung oder Tabelle werden ober- oder unterhalb des Titels
19989  eingefügt.
19990  In Abschnitt
19991 \begin_inset Space ~
19992 \end_inset
19993
19994
19995 \begin_inset Space ~
19996 \end_inset
19997
19998
19999 \begin_inset CommandInset ref
20000 LatexCommand ref
20001 reference "abs:Titel-Platzierung"
20002
20003 \end_inset
20004
20005  finden Sie mehr über die Platzierung des Titels.
20006  Wenn Sie auf das Gleitobjekt-Kästchen klicken, wird es geschlossen und
20007  auch wieder geöffnet.
20008  Ein geschlossenes Gleitobjekt-Kästchen sieht so aus: 
20009 \begin_inset Graphics
20010         filename clipart/GleitobjektQt4.png
20011         scale 70
20012         scaleBeforeRotation
20013         BoundingBox 0bp 6bp 128bp 22bp
20014
20015 \end_inset
20016
20017  -- ein graues Kästchen mit roter Beschriftung.
20018 \end_layout
20019
20020 \begin_layout Standard
20021 Um mögliche LaTeX-Fehler durch umgebenden Text zu vermeiden, wird empfohlen,
20022  Gleitobjekte in einem eigenen Absatz einzufügen.
20023 \end_layout
20024
20025 \begin_layout Standard
20026 Vorhandene Abbildungen oder Tabellen können Sie in ein Gleitobjekt packen,
20027  indem Sie sie markieren und dann auf 
20028 \begin_inset Graphics
20029         filename ../../images/float-insert_figure.png
20030         scale 70
20031         scaleBeforeRotation
20032         BoundingBox 0bp 6bp 22bp 22bp
20033
20034 \end_inset
20035
20036  oder 
20037 \begin_inset Graphics
20038         filename ../../images/float-insert_table.png
20039         scale 70
20040         scaleBeforeRotation
20041         BoundingBox 0bp 6bp 22bp 22bp
20042
20043 \end_inset
20044
20045  klicken.
20046 \end_layout
20047
20048 \begin_layout Section
20049 Gleitobjekt-Typen
20050 \begin_inset Index
20051 status collapsed
20052
20053 \begin_layout Plain Layout
20054 Gleitobjekte ! Typen
20055 \end_layout
20056
20057 \end_inset
20058
20059
20060 \end_layout
20061
20062 \begin_layout Standard
20063 Neben Gleitobjekt-Abbildungen und -Tabellen, die bereits in Abschnitt
20064 \begin_inset Space ~
20065 \end_inset
20066
20067
20068 \begin_inset CommandInset ref
20069 LatexCommand ref
20070 reference "abs:Gleitende-Abbildungen"
20071
20072 \end_inset
20073
20074  und 
20075 \begin_inset CommandInset ref
20076 LatexCommand ref
20077 reference "abs:Gleitende-Tabellen"
20078
20079 \end_inset
20080
20081  beschrieben wurden, gibt es -Algorithmen und umflossene Gleitobjekte
20082 \end_layout
20083
20084 \begin_layout Subsection
20085 Gleitobjekt-Algorithmen
20086 \begin_inset Index
20087 status collapsed
20088
20089 \begin_layout Plain Layout
20090 Gleitobjekte ! Algorithmen
20091 \end_layout
20092
20093 \end_inset
20094
20095
20096 \begin_inset CommandInset label
20097 LatexCommand label
20098 name "uab:Gleitobjekt-Algorithmen"
20099
20100 \end_inset
20101
20102
20103 \end_layout
20104
20105 \begin_layout Standard
20106 \begin_inset Float algorithm
20107 placement h
20108 wide false
20109 sideways false
20110 status open
20111
20112 \begin_layout Plain Layout
20113 \begin_inset Caption
20114
20115 \begin_layout Plain Layout
20116 \begin_inset CommandInset label
20117 LatexCommand label
20118 name "alg:Ein-Gleitobjekt-Algorithmus"
20119
20120 \end_inset
20121
20122 Ein Gleitobjekt-Algorithmus 
20123 \end_layout
20124
20125 \end_inset
20126
20127
20128 \end_layout
20129
20130 \begin_layout LyX-Code
20131 for I in 1..N loop
20132 \begin_inset Newline newline
20133 \end_inset
20134
20135  Sum:= Sum + A(I); /*Kommentar*/
20136 \begin_inset Newline newline
20137 \end_inset
20138
20139 end loop
20140 \begin_inset VSpace -4mm
20141 \end_inset
20142
20143
20144 \end_layout
20145
20146 \end_inset
20147
20148
20149 \end_layout
20150
20151 \begin_layout Standard
20152 Dieser Typ wird mit 
20153 \family sans
20154 Einfügen\SpecialChar \menuseparator
20155 Gleitobjekt\SpecialChar \menuseparator
20156 Algorithmus
20157 \family default
20158  eingefügt.
20159  Es gibt hierfür (noch) keinen Werkzeugleisten-Knopf.
20160  Er wird für Programm-Code und Algorithmen-Beschreibungen verwendet.
20161  Eine mögliche Absatz-Umgebung hier für ist 
20162 \family sans
20163 LyX-Code
20164 \family default
20165 , beschrieben im 
20166 \emph on
20167 Benutzerhandbuch
20168 \emph default
20169 .
20170  In Algorithmus
20171 \begin_inset Space ~
20172 \end_inset
20173
20174
20175 \begin_inset CommandInset ref
20176 LatexCommand ref
20177 reference "alg:Ein-Gleitobjekt-Algorithmus"
20178
20179 \end_inset
20180
20181  wurden am Ende -0.4
20182 \begin_inset Space \thinspace{}
20183 \end_inset
20184
20185 cm vertikaler Abstand eingefügt, damit die untere Linie direkt unter der
20186  letzten Zeile gedruckt wird.
20187 \end_layout
20188
20189 \begin_layout Standard
20190 Die Marke 
20191 \emph on
20192 Algorithmus
20193 \emph default
20194  wird nicht automatisch in die druckbare Version übernommen, sondern das
20195  englische Wort 
20196 \emph on
20197 Algorithm
20198 \emph default
20199  verwendet.
20200  Soll
20201 \emph on
20202  Algorithmus
20203 \emph default
20204  dort stehen, müssen Sie folgendes in den LaTeX-Vorspann schreiben: 
20205 \end_layout
20206
20207 \begin_layout Standard
20208
20209 \series bold
20210
20211 \backslash
20212 floatname{algorithm}{Algorithmus}
20213 \end_layout
20214
20215 \begin_layout Standard
20216 Um das Algorithmenverzeichnis einzufügen, kann für englische Dokumente das
20217  Menü 
20218 \family sans
20219 Einfügen\SpecialChar \menuseparator
20220 Liste
20221 \begin_inset Space \thinspace{}
20222 \end_inset
20223
20224 /
20225 \begin_inset Space \thinspace{}
20226 \end_inset
20227
20228 Inhaltsverzeichnis\SpecialChar \menuseparator
20229 Algorithmenverzeichnis
20230 \family default
20231  verwendet werden.
20232  Für nicht englische Dokumente, muss stattdessen dieser Befehl als TeX-Code
20233  eingefügt werden:
20234 \end_layout
20235
20236 \begin_layout Standard
20237
20238 \series bold
20239
20240 \backslash
20241 listof{algorithm}{Algorithmenverzeichnis}
20242 \end_layout
20243
20244 \begin_layout Standard
20245 Gleitobjekt-Algorithmen werden nicht wie Gleitobjekt-Abbildungen oder -Tabellen
20246  nach dem Schema 
20247 \begin_inset Quotes gld
20248 \end_inset
20249
20250 Kapitelnummer.Algorithmusnummer
20251 \begin_inset Quotes grd
20252 \end_inset
20253
20254  nummeriert.
20255  Um das zu erreichen, müssen Sie folgenden Befehl in den LaTeX-Vorspann
20256  einfügen:
20257 \end_layout
20258
20259 \begin_layout Standard
20260
20261 \series bold
20262
20263 \backslash
20264 numberwithin{algorithm}{chapter}
20265 \end_layout
20266
20267 \begin_layout Standard
20268 Um 
20269 \series bold
20270
20271 \backslash
20272 numberwithin
20273 \series default
20274  benutzen zu können, muss in den 
20275 \family sans
20276 Mathe
20277 \begin_inset Space ~
20278 \end_inset
20279
20280 Optionen
20281 \family default
20282  der 
20283 \family sans
20284 Dokument-Einstellungen
20285 \family default
20286  
20287 \family sans
20288 AMS
20289 \begin_inset Space ~
20290 \end_inset
20291
20292 Mathe
20293 \begin_inset Space ~
20294 \end_inset
20295
20296 Paket
20297 \family default
20298
20299 \begin_inset Space ~
20300 \end_inset
20301
20302
20303 \family sans
20304 verwenden
20305 \family default
20306  angekreuzt sein.
20307 \end_layout
20308
20309 \begin_layout Subsection
20310 Textumflossenes [Gleit]Objekt
20311 \begin_inset CommandInset label
20312 LatexCommand label
20313 name "uab:Textumflossenes-[Gleit]Objekt"
20314
20315 \end_inset
20316
20317
20318 \begin_inset Index
20319 status collapsed
20320
20321 \begin_layout Plain Layout
20322 Gleitobjekte ! textumflossene
20323 \end_layout
20324
20325 \end_inset
20326
20327
20328 \end_layout
20329
20330 \begin_layout Standard
20331 \begin_inset Wrap figure
20332 lines 0
20333 placement l
20334 overhang 0col%
20335 width "40col%"
20336 status open
20337
20338 \begin_layout Plain Layout
20339 \begin_inset Graphics
20340         filename ../clipart/mobius.eps
20341         display color
20342         width 40col%
20343         scaleBeforeRotation
20344         rotateOrigin center
20345
20346 \end_inset
20347
20348
20349 \end_layout
20350
20351 \begin_layout Plain Layout
20352 \begin_inset Caption
20353
20354 \begin_layout Plain Layout
20355 \begin_inset CommandInset label
20356 LatexCommand label
20357 name "abb:This-is-a"
20358
20359 \end_inset
20360
20361 Dies ist eine umflossene Gleitobjekt-Abbildung
20362 \begin_inset VSpace medskip
20363 \end_inset
20364
20365
20366 \end_layout
20367
20368 \end_inset
20369
20370
20371 \end_layout
20372
20373 \end_inset
20374
20375 Textumflossene [Gleit]Objekte sind eigentlich keine, weil sie dort gedruckt
20376  werden, wo sie definiert wurden.
20377  Dieser Typ wird benutzt, um Text um eine Abbildung herum 
20378 \emph on
20379 fließen
20380 \emph default
20381  zu lassen, wobei der Text nur den Teil der Zeile benutzt, den die Abbildung
20382  übrig lässt.
20383  Er wird mit dem Befehl
20384 \family sans
20385  Einfügen\SpecialChar \menuseparator
20386 Gleitobjekt\SpecialChar \menuseparator
20387 Umflossenes
20388 \begin_inset Space \space{}
20389 \end_inset
20390
20391 Gleit\SpecialChar \-
20392 ob\SpecialChar \-
20393 jekt
20394 \family default
20395   eingefügt, wenn das LaTeX-Paket 
20396 \series bold
20397 wrapfig
20398 \series default
20399
20400 \begin_inset Index
20401 status collapsed
20402
20403 \begin_layout Plain Layout
20404 LaTeX-Pakete ! wrapfig
20405 \begin_inset ERT
20406 status collapsed
20407
20408 \begin_layout Plain Layout
20409
20410
20411 \backslash
20412
20413 \begin_inset ERT
20414 status collapsed
20415
20416 \begin_layout Plain Layout
20417
20418 {
20419 \end_layout
20420
20421 \end_inset
20422
20423
20424 \begin_inset ERT
20425 status collapsed
20426
20427 \begin_layout Plain Layout
20428
20429 }
20430 \end_layout
20431
20432 \end_inset
20433
20434
20435 \end_layout
20436
20437 \end_inset
20438
20439 vspace
20440 \begin_inset ERT
20441 status collapsed
20442
20443 \begin_layout Plain Layout
20444
20445 {
20446 \end_layout
20447
20448 \end_inset
20449
20450 4mm
20451 \begin_inset ERT
20452 status collapsed
20453
20454 \begin_layout Plain Layout
20455
20456 }
20457 \end_layout
20458
20459 \end_inset
20460
20461
20462 \end_layout
20463
20464 \end_inset
20465
20466  installiert ist.
20467 \begin_inset Foot
20468 status collapsed
20469
20470 \begin_layout Plain Layout
20471 Wie man ein LaTeX-Paket installiert, wird im Handbuch 
20472 \emph on
20473 LaTeX
20474 \begin_inset Space ~
20475 \end_inset
20476
20477 Konfiguration
20478 \emph default
20479  beschrieben.
20480 \end_layout
20481
20482 \end_inset
20483
20484  Breite und Platzierung des Objekts können Sie mit einem Rechts\SpecialChar \-
20485 klick auf
20486  das 
20487 \family sans
20488 Umflossenes
20489 \begin_inset Space ~
20490 \end_inset
20491
20492 Gleitobjekt
20493 \family default
20494 -Kästchen ändern.
20495  Abbildung
20496 \begin_inset Space ~
20497 \end_inset
20498
20499
20500 \begin_inset CommandInset ref
20501 LatexCommand ref
20502 reference "abb:This-is-a"
20503
20504 \end_inset
20505
20506  ist zum Beispiel ein textumflossenes Objekt, das 40
20507 \begin_inset Space \thinspace{}
20508 \end_inset
20509
20510 % der Spaltenbreite einnimmt.
20511 \begin_inset Foot
20512 status collapsed
20513
20514 \begin_layout Plain Layout
20515 Die benutzbaren Einheiten werden in Anhang
20516 \begin_inset Space ~
20517 \end_inset
20518
20519
20520 \begin_inset CommandInset ref
20521 LatexCommand ref
20522 reference "kap:In-LyX-verfügbare"
20523
20524 \end_inset
20525
20526  beschrieben.
20527 \end_layout
20528
20529 \end_inset
20530
20531  Unter dem Titel wurde ein vertikaler Abstand eingefügt, um es besser vom
20532  umgebenden Test zu trennen.
20533 \end_layout
20534
20535 \begin_layout Standard
20536 \begin_inset Note Greyedout
20537 status open
20538
20539 \begin_layout Plain Layout
20540
20541 \series bold
20542 Bemerkung:
20543 \series default
20544  Textumflossene Objekte sind fragil.
20545  Wenn die Abbildung zu nahe am unteren Seitenrand ist, kann es passieren,
20546  dass sie gar nicht oder über anderen Text gedruckt wird.
20547 \end_layout
20548
20549 \end_inset
20550
20551
20552 \end_layout
20553
20554 \begin_layout Standard
20555
20556 \series bold
20557 Weitere
20558 \series default
20559  
20560 \series bold
20561 Bemerkungen
20562 \series default
20563 :
20564 \end_layout
20565
20566 \begin_layout Itemize
20567 Textumflossene Objekte
20568 \end_layout
20569
20570 \begin_deeper
20571 \begin_layout Itemize
20572 sollten nicht in Absätze gepackt werden, die auf der nächsten Seite fortgesetzt
20573  werden.
20574  Das bedeutet, dass man umflossene Gleitobjekte erst dann einfügen sollte,
20575  wenn das Dokument fast fertig ist und man sehen kann, wo ein Seitenumbruch
20576  erfolgen wird.
20577 \end_layout
20578
20579 \begin_layout Itemize
20580 sollten entweder vor dem Absatz, dessen Text um sie fließen soll, eingefügt
20581  werden oder darin.
20582 \end_layout
20583
20584 \begin_layout Itemize
20585 in aufeinanderfolgenden Absätzen können Probleme bereiten, also achten Sie
20586  darauf, dass mindestens ein Textabsatz zwischen ihnen ist.
20587 \end_layout
20588
20589 \begin_layout Itemize
20590 sind weder in Abschnitts-Überschriften noch in Tabellen erlaubt.
20591 \end_layout
20592
20593 \end_deeper
20594 \begin_layout Itemize
20595 Wenn Sie als Absatztrennung Einrückung benutzen, wird auch der Text, der
20596  unmittelbar auf die Abbildung folgt, eingerückt.
20597  Das können Sie mit dem TeX-Code-Befehl 
20598 \series bold
20599
20600 \backslash
20601 hspace*{-1em}
20602 \series default
20603  direkt vor dem Text korrigieren.
20604  
20605 \family typewriter
20606 1
20607 \begin_inset Space \thinspace{}
20608 \end_inset
20609
20610 em
20611 \family default
20612  entspricht der Standardeinrückung.
20613 \end_layout
20614
20615 \begin_layout Itemize
20616 Der Text vor und hinter dem textumflossenen Objekt wird als eigener Absatz
20617  behandelt.
20618 \end_layout
20619
20620 \begin_layout Itemize
20621 Der Text, der um die Abbildung herumfließt, sollte zwischen 
20622 \series bold
20623
20624 \backslash
20625 begin{slop\SpecialChar \-
20626 py\SpecialChar \-
20627 par}
20628 \series default
20629  und 
20630 \series bold
20631
20632 \backslash
20633 end{sloppypar}
20634 \series default
20635  gepackt werden, um unnötige manuelle Zeilenumbrüche zu vermeiden.
20636 \end_layout
20637
20638 \begin_layout Section
20639 Gleitobjekt-Nummerierung
20640 \begin_inset CommandInset label
20641 LatexCommand label
20642 name "abs:Gleitobjekt-Nummerierung"
20643
20644 \end_inset
20645
20646
20647 \begin_inset Index
20648 status collapsed
20649
20650 \begin_layout Plain Layout
20651 Gleitobjekte ! Nummerierung
20652 \end_layout
20653
20654 \end_inset
20655
20656
20657 \end_layout
20658
20659 \begin_layout Standard
20660 Gleitobjekte werden entweder unabhängig vom abschnitt, in dem sie sind,
20661  nummeriert oder nach dem Schema 
20662 \begin_inset Quotes gld
20663 \end_inset
20664
20665 Kapitelnummer.Gleitobjektnummer
20666 \begin_inset Quotes grd
20667 \end_inset
20668
20669  oder 
20670 \begin_inset Quotes gld
20671 \end_inset
20672
20673 Abschnittsnummer.Gleitobjektnummer
20674 \begin_inset Quotes grd
20675 \end_inset
20676
20677 .
20678  Das hängt von der Dokumentklasse ab.
20679 \end_layout
20680
20681 \begin_layout Standard
20682 Um das Aussehen der unabhängigen Nummer zu ändern, müssen Sie folgendes
20683  in den LaTeX-Vorspann einfügen:
20684 \end_layout
20685
20686 \begin_layout Standard
20687
20688 \series bold
20689
20690 \backslash
20691 renewcommand{
20692 \backslash
20693 thetable}{
20694 \backslash
20695 roman{table}}
20696 \end_layout
20697
20698 \begin_layout Standard
20699
20700 \series bold
20701
20702 \backslash
20703 thetable
20704 \series default
20705  ist der Befehl, der die Tabellennummer druckt.
20706  Für Abbildungen ist das 
20707 \series bold
20708
20709 \backslash
20710 thefigure
20711 \series default
20712 .
20713  Der Befehl 
20714 \series bold
20715
20716 \backslash
20717 roman
20718 \series default
20719  druckt die Tabellennummer als kleingeschriebene römische Zahlen.
20720 \end_layout
20721
20722 \begin_layout Standard
20723 Um das Numerierungsschema zum Beispiel auf 
20724 \begin_inset Quotes gld
20725 \end_inset
20726
20727 Unterabschnittsnummer.Num\SpecialChar \-
20728 mer
20729 \begin_inset Quotes grd
20730 \end_inset
20731
20732  zu ändern, setzen Sie folgendes in den LaTeX-Vorspann:
20733 \end_layout
20734
20735 \begin_layout Standard
20736
20737 \series bold
20738
20739 \backslash
20740 numberwithin{table}{subsection}
20741 \end_layout
20742
20743 \begin_layout Standard
20744 Um den Befehl 
20745 \series bold
20746
20747 \backslash
20748 numberwithin
20749 \series default
20750  zu können, müssen Sie in den 
20751 \family sans
20752 Mathe
20753 \begin_inset Space ~
20754 \end_inset
20755
20756 Optionen
20757 \family default
20758  der 
20759 \family sans
20760 Dokument-Einstellungen
20761 \family default
20762  
20763 \family sans
20764 AMS
20765 \begin_inset Space ~
20766 \end_inset
20767
20768 Mathe
20769 \begin_inset Space ~
20770 \end_inset
20771
20772 Paket
20773 \family default
20774
20775 \begin_inset Space ~
20776 \end_inset
20777
20778
20779 \family sans
20780 verwenden
20781 \family default
20782  ankreuzen.
20783 \end_layout
20784
20785 \begin_layout Standard
20786 Sehen Sie sich bitte auch Abschnitt
20787 \begin_inset Space ~
20788 \end_inset
20789
20790
20791 \begin_inset CommandInset ref
20792 LatexCommand ref
20793 reference "uab:Fußnoten-Nummerierung"
20794
20795 \end_inset
20796
20797  für Einzelheiten und wichtigen Bemerkungen zu Nummerierung-Befehlen an.
20798 \end_layout
20799
20800 \begin_layout Section
20801 Auf Gleitobjekte verweisen
20802 \begin_inset CommandInset label
20803 LatexCommand label
20804 name "abs:Auf-Gleitobjekte-verweisen"
20805
20806 \end_inset
20807
20808
20809 \begin_inset Index
20810 status collapsed
20811
20812 \begin_layout Plain Layout
20813 Gleitobjekte ! Querverweise
20814 \end_layout
20815
20816 \end_inset
20817
20818
20819 \begin_inset Index
20820 status collapsed
20821
20822 \begin_layout Plain Layout
20823 Querverweise
20824 \end_layout
20825
20826 \end_inset
20827
20828
20829 \end_layout
20830
20831 \begin_layout Standard
20832 Zunächst müssen Sie mit 
20833 \family sans
20834 Einfügen\SpecialChar \menuseparator
20835 Marke
20836 \family default
20837  oder einen Klick auf 
20838 \begin_inset Graphics
20839         filename ../../images/label-insert.png
20840         scale 85
20841         scaleBeforeRotation
20842
20843 \end_inset
20844
20845  eine Marke im Titel einfügen.
20846  Im 
20847 \family sans
20848 Marke
20849 \family default
20850 -Dialog schreiben Sie einen Text in das Feld 
20851 \family sans
20852 Marke
20853 \family default
20854  oder übernehmen den vorgeschlagenen.
20855  Die Marke sieht in LyX dann so aus:
20856 \begin_inset Newline newline
20857 \end_inset
20858
20859
20860 \begin_inset Graphics
20861         filename clipart/Marke.png
20862         lyxscale 80
20863         scale 50
20864         scaleBeforeRotation
20865         BoundingBox 0bp 6bp 76bp 23bp
20866
20867 \end_inset
20868
20869
20870 \end_layout
20871
20872 \begin_layout Standard
20873 Die Marke wird als Anker und Name für den Querverweis benutzt.
20874  Mit 
20875 \family sans
20876 Einfügen\SpecialChar \menuseparator
20877 Querverweis
20878 \family default
20879  oder einen Klick auf 
20880 \begin_inset Graphics
20881         filename ../../images/dialog-show-new-inset_ref.png
20882         scale 85
20883         scaleBeforeRotation
20884
20885 \end_inset
20886
20887  können Sie dann auf die Marke verweisen.
20888  Als Querverweis wird in LyX ein graues Kästchen wie zum Beispiel dieses
20889  angezeigt:
20890 \begin_inset Newline newline
20891 \end_inset
20892
20893
20894 \begin_inset Graphics
20895         filename clipart/Querverweis.png
20896         lyxscale 80
20897         scale 50
20898         scaleBeforeRotation
20899         BoundingBox 0bp 6bp 76bp 23bp
20900
20901 \end_inset
20902
20903
20904 \begin_inset Newline newline
20905 \end_inset
20906
20907  Mehr zu Querverweisen finden Sie im 
20908 \emph on
20909 Benutzerhandbuch
20910 \emph default
20911 .
20912 \end_layout
20913
20914 \begin_layout Standard
20915 Es empfiehlt sich zwischen dem Querverweis-Namen (zum Beispiele Abschnitt)
20916  und dem Querverweis ein geschütztes Leerzeichen einfügen, damit beide nicht
20917  durch einen Zeilenumbruch getrennt werden können.
20918 \end_layout
20919
20920 \begin_layout Standard
20921 Marken können Sie jederzeit durch einen Klick auf ihr Kästchen ändern.
20922  LyX passt die Querverweise automatisch an.
20923 \end_layout
20924
20925 \begin_layout Standard
20926 Ein Klick auf den Schalter 
20927 \family sans
20928 Gehe
20929 \begin_inset Space ~
20930 \end_inset
20931
20932 zur
20933 \begin_inset Space ~
20934 \end_inset
20935
20936 Marke
20937 \family default
20938  im Querverweis-Fenster stellt den Cursor vor die entsprechende Marke.
20939  Der Text der Schaltfläche heißt jetzt 
20940 \family sans
20941 Gehe
20942 \begin_inset Space ~
20943 \end_inset
20944
20945 zurück
20946 \family default
20947  und ein Klick darauf macht genau dies.
20948   Ein Rechts-Klick auf das Querverweis-Kästchen stellt den Cursor vor die
20949  entsprechende Marke, ohne dass das Querverweis-Fenster zusehen ist.
20950  Dann ist auch kein 
20951 \family sans
20952 Gehe
20953 \begin_inset Space ~
20954 \end_inset
20955
20956 zurück
20957 \family default
20958  möglich.
20959 \end_layout
20960
20961 \begin_layout Subsection
20962 Querverweis-Formate
20963 \begin_inset CommandInset label
20964 LatexCommand label
20965 name "uab:Querverweis-Formate"
20966
20967 \end_inset
20968
20969
20970 \begin_inset Index
20971 status collapsed
20972
20973 \begin_layout Plain Layout
20974 Querverweise ! Formate
20975 \end_layout
20976
20977 \end_inset
20978
20979
20980 \end_layout
20981
20982 \begin_layout Standard
20983 Es gibt sechs verschiedene Querverweisstile:
20984 \end_layout
20985
20986 \begin_layout Description
20987 <Querverweis>: druckt die Nummer der Gleitumgebung, dies ist die Voreinstellung:
20988  
20989 \begin_inset CommandInset ref
20990 LatexCommand ref
20991 reference "abb:Zwei-Teilabbildungen"
20992
20993 \end_inset
20994
20995
20996 \end_layout
20997
20998 \begin_layout Description
20999 (<Querverweis>): druckt die Nummer der Gleitumgebung umgeben von zwei runden
21000  Klammern, dies ist der Stil, wie er normalerweise für Verweise auf Formeln
21001  verwendet wird, speziell wenn der Name 
21002 \begin_inset Quotes gld
21003 \end_inset
21004
21005 Gleichung
21006 \begin_inset Quotes grd
21007 \end_inset
21008
21009  weggelassen wird: 
21010 \begin_inset CommandInset ref
21011 LatexCommand eqref
21012 reference "eq:Wgn"
21013
21014 \end_inset
21015
21016
21017 \end_layout
21018
21019 \begin_layout Description
21020 <Seite>: druckt die Seitennummer: Seite
21021 \begin_inset Space ~
21022 \end_inset
21023
21024
21025 \begin_inset CommandInset ref
21026 LatexCommand pageref
21027 reference "abb:Zwei-Teilabbildungen"
21028
21029 \end_inset
21030
21031
21032 \end_layout
21033
21034 \begin_layout Description
21035 auf
21036 \begin_inset Space ~
21037 \end_inset
21038
21039 Seite
21040 \begin_inset Space ~
21041 \end_inset
21042
21043 <Seite>: druckt den Text "auf Seite" und die Seitennummer: 
21044 \begin_inset CommandInset ref
21045 LatexCommand vpageref
21046 reference "abb:Zwei-Teilabbildungen"
21047
21048 \end_inset
21049
21050
21051 \end_layout
21052
21053 \begin_layout Description
21054 <Querverweis>
21055 \begin_inset Space ~
21056 \end_inset
21057
21058 auf
21059 \begin_inset Space ~
21060 \end_inset
21061
21062 Seite
21063 \begin_inset Space ~
21064 \end_inset
21065
21066 <Seite>: druckt die Nummer der Gleitumgebung, den Text "auf Seite", und
21067  die Seitennummer: 
21068 \begin_inset CommandInset ref
21069 LatexCommand vref
21070 reference "abb:Zwei-Teilabbildungen"
21071
21072 \end_inset
21073
21074
21075 \end_layout
21076
21077 \begin_layout Description
21078 Formatierter
21079 \begin_inset Space ~
21080 \end_inset
21081
21082 Querverweis: druckt ein selbst definiertes Querverweisformat
21083 \begin_inset Newline newline
21084 \end_inset
21085
21086
21087 \begin_inset Note Greyedout
21088 status open
21089
21090 \begin_layout Plain Layout
21091
21092 \series bold
21093 Bemerkung:
21094 \series default
21095  Dies ist nur möglich, wenn das LaTeX-Paket 
21096 \series bold
21097 prettyref
21098 \series default
21099  installiert ist.
21100 \end_layout
21101
21102 \end_inset
21103
21104
21105 \end_layout
21106
21107 \begin_layout Standard
21108 Beachten Sie, dass der Stil <Seite> nicht die Seitennummer druckt, wenn
21109  sich die referenzierte Marke auf der vorherigen, der selben oder der nächsten
21110  Seite befindet.
21111  Stattdessen wird der Text 
21112 \begin_inset Quotes gld
21113 \end_inset
21114
21115 auf dieser Seite
21116 \begin_inset Quotes grd
21117 \end_inset
21118
21119  gedruckt.
21120 \end_layout
21121
21122 \begin_layout Standard
21123 Die Nummer und die aktuelle Seite des referenzierten Dokumentteils wird
21124  automatisch von LaTeX berechnet.
21125  Die Stile können im Feld 
21126 \family sans
21127 Format
21128 \family default
21129  des Querverweis Fensters eingestellt werden, das erscheint, wenn Sie auf
21130  einen Querverweis klicken.
21131 \end_layout
21132
21133 \begin_layout Subsection
21134 Auf Teilabbildungen verweisen
21135 \begin_inset CommandInset label
21136 LatexCommand label
21137 name "uab:Auf-Teilabbildungen-verweisen"
21138
21139 \end_inset
21140
21141
21142 \begin_inset Index
21143 status collapsed
21144
21145 \begin_layout Plain Layout
21146 Querverweise ! auf Teilabbildungen
21147 \end_layout
21148
21149 \end_inset
21150
21151
21152 \end_layout
21153
21154 \begin_layout Standard
21155 Zur Zeit unterstützt LyX das nicht, also müssen Sie LaTeX-Befehle benutzen.
21156  Die Marke erzeugen Sie mit dem Befehl
21157 \end_layout
21158
21159 \begin_layout Standard
21160
21161 \series bold
21162
21163 \backslash
21164 label{abb:IhrMarkenName}
21165 \end_layout
21166
21167 \begin_layout Standard
21168 der direkt in das Titelfeld der Teilabbildung eingefügt wird.
21169  Als Querverweis benutzen Sie dann den Befehl
21170 \end_layout
21171
21172 \begin_layout Standard
21173
21174 \series bold
21175
21176 \backslash
21177 ref{abb:IhrMarkenName}
21178 \end_layout
21179
21180 \begin_layout Standard
21181 Hier ist ein Querverweis auf Teilabbildung
21182 \begin_inset Space ~
21183 \end_inset
21184
21185
21186 \begin_inset ERT
21187 status collapsed
21188
21189 \begin_layout Plain Layout
21190
21191
21192 \backslash
21193 ref{abb:Platypus}
21194 \end_layout
21195
21196 \end_inset
21197
21198 .
21199 \end_layout
21200
21201 \begin_layout Subsection
21202 Automatische Querverweis-Namen
21203 \begin_inset Index
21204 status collapsed
21205
21206 \begin_layout Plain Layout
21207 Querverweise ! Automatische Namen 
21208 \end_layout
21209
21210 \end_inset
21211
21212
21213 \end_layout
21214
21215 \begin_layout Standard
21216 Das LaTeX-Paket 
21217 \series bold
21218 hyperref
21219 \series default
21220
21221 \begin_inset Index
21222 status collapsed
21223
21224 \begin_layout Plain Layout
21225 LaTeX-Pakete ! hyperref
21226 \end_layout
21227
21228 \end_inset
21229
21230  besitzt eine sehr nützliche Funktion, damit Querverweise den Namen des
21231  Gleitobjekts automatisch enthalten (oder Textteile wie 
21232 \emph on
21233 Abschnitt
21234 \emph default
21235 ).
21236  Sie müssen nicht mehr Abbildung vor das Querverweis-Kästchen schreiben.
21237  Um diese Funktion benutzen zu können, müssen Sie 
21238 \series bold
21239 hyperref
21240 \series default
21241  in den LaTeX-Vorspann wie folgt einfügen:
21242 \end_layout
21243
21244 \begin_layout Standard
21245
21246 \series bold
21247
21248 \backslash
21249 usepackage[pdfborder={0 0 0}]{hyperref}
21250 \begin_inset Newline newline
21251 \end_inset
21252
21253
21254 \backslash
21255 AtBeginDocument{
21256 \backslash
21257 renewcommand{
21258 \backslash
21259 ref}[1]{
21260 \backslash
21261 mbox{
21262 \backslash
21263 autoref{#1}}}}
21264 \end_layout
21265
21266 \begin_layout Standard
21267
21268 \series bold
21269 hyperref
21270 \series default
21271  wird benutzt, um Marken und Querverweise in der DVI- und PDF-Do\SpecialChar \-
21272 ku\SpecialChar \-
21273 men\SpecialChar \-
21274 ten
21275  zu verlinken, das heißt der Leser der entsprechenden Datei kann auf solch
21276  einen Link klicken, und die angeklickte Stelle wird gezeigt.
21277  In DVI-Dateien ist ein Link blau unterstrichen, in der PDF-Datei ändert
21278  sich der Cursor.
21279 \end_layout
21280
21281 \begin_layout Standard
21282 Dies Funktion wird auch in diesem Dokument und nach und nach in allen Handbücher
21283 n.
21284  Wenn Sie sich den LaTeX-Vorspann ansehen, werden Sie verschiedene Optionen
21285  für die Benutzung von 
21286 \series bold
21287 hyperref
21288 \series default
21289  sehen.
21290  In der 
21291 \series bold
21292 hyperref
21293 \series default
21294 -Dokumentation 
21295 \begin_inset CommandInset citation
21296 LatexCommand cite
21297 key "hyperref"
21298
21299 \end_inset
21300
21301  finden Sie mehr darüber.
21302 \end_layout
21303
21304 \begin_layout Standard
21305 \begin_inset Note Greyedout
21306 status open
21307
21308 \begin_layout Plain Layout
21309
21310 \series bold
21311 Bemerkung:
21312 \series default
21313  Automatische Querverweis-Namen können nicht verwendet werden, wenn Sie
21314  als Querverweisstil 
21315 \family sans
21316 Formatierter
21317 \begin_inset Space ~
21318 \end_inset
21319
21320 Querverweis
21321 \family default
21322  benutzen.
21323 \end_layout
21324
21325 \end_inset
21326
21327
21328 \end_layout
21329
21330 \begin_layout Subsection
21331 Querverweis-Position
21332 \begin_inset CommandInset label
21333 LatexCommand label
21334 name "uab:Querverweis-Position"
21335
21336 \end_inset
21337
21338
21339 \begin_inset Index
21340 status collapsed
21341
21342 \begin_layout Plain Layout
21343 Querverweise !  Position
21344 \end_layout
21345
21346 \end_inset
21347
21348
21349 \end_layout
21350
21351 \begin_layout Standard
21352 Wenn Sie 
21353 \series bold
21354 hyperref
21355 \series default
21356  benutzen, um in der Ausgabe Querverweise zu verlinken, springt ein Klick
21357  auf den Querverweis für eine Gleitobjekt-Abbildung zur Abbildungsmarke,
21358  und Sie werden das Bild ohne Rollen nicht sehen.
21359  Das liegt daran, dass der Querverweis-Link an der Marken-Position verankert
21360  ist.
21361  Wenn Sie das  LaTeX-Paket 
21362 \series bold
21363 hypcap
21364 \series default
21365
21366 \begin_inset Index
21367 status collapsed
21368
21369 \begin_layout Plain Layout
21370 LaTeX-Pakete ! hypcap
21371 \end_layout
21372
21373 \end_inset
21374
21375 , das Teil des LaTeX-Pakets 
21376 \series bold
21377 oberdiek
21378 \series default
21379
21380 \begin_inset Index
21381 status collapsed
21382
21383 \begin_layout Plain Layout
21384 LaTeX-Pakete ! oberdiek
21385 \end_layout
21386
21387 \end_inset
21388
21389  ist, benutzen, wird der Anker am Anfang des Gleitobjekts gesetzt.
21390  Aber natürlich müssen Sie auch hier das LaTeX-Paket 
21391 \series bold
21392 hypcap
21393 \series default
21394  zunächst in den LaTeX-Vorspann laden:
21395 \end_layout
21396
21397 \begin_layout Standard
21398
21399 \series bold
21400
21401 \backslash
21402 usepackage[figure]{hypcap}
21403 \end_layout
21404
21405 \begin_layout Standard
21406 Sie können 
21407 \series bold
21408 hypcap
21409 \series default
21410  auch für alle Gleitobjekte benutzen, aber das wird aus Stabilitätsgründen
21411  nicht empfohlen.
21412  Weitere Informationen finden Sie im
21413 \series bold
21414  hypcap
21415 \series default
21416 -Handbuch 
21417 \begin_inset CommandInset citation
21418 LatexCommand cite
21419 key "hypcap"
21420
21421 \end_inset
21422
21423 .
21424 \end_layout
21425
21426 \begin_layout Standard
21427 \begin_inset Note Greyedout
21428 status open
21429
21430 \begin_layout Plain Layout
21431
21432 \series bold
21433 Bemerkung 1:
21434 \series default
21435  
21436 \series bold
21437 hypcap
21438 \series default
21439  muss nach 
21440 \series bold
21441 hyperref
21442 \series default
21443  geladen werden.
21444 \end_layout
21445
21446 \end_inset
21447
21448
21449 \end_layout
21450
21451 \begin_layout Standard
21452 \begin_inset Note Greyedout
21453 status open
21454
21455 \begin_layout Plain Layout
21456
21457 \series bold
21458 Bemerkung 2:
21459 \series default
21460  
21461 \series medium
21462 Das Setzen der Querverweis-Position hat keinen Einfluss auf Querverweise
21463  zu Teilabbildungen.
21464 \end_layout
21465
21466 \end_inset
21467
21468
21469 \end_layout
21470
21471 \begin_layout Section
21472 Gleitobjekt-Platzierung
21473 \begin_inset CommandInset label
21474 LatexCommand label
21475 name "abs:Gleitobjekt-Platzierung"
21476
21477 \end_inset
21478
21479
21480 \begin_inset Index
21481 status collapsed
21482
21483 \begin_layout Plain Layout
21484 Gleitobjekte ! Plazierung
21485 \end_layout
21486
21487 \end_inset
21488
21489
21490 \end_layout
21491
21492 \begin_layout Standard
21493 Ein Rechtsklick auf ein Gleitobjekt-Kästchen öffnet den 
21494 \family sans
21495 Gleitobjekt-Einstellungen
21496 \family default
21497 -Dialog, in dem Sie die LaTeX-Optionen für die Gleitobjekt-Platzierung ändern
21498  können.
21499 \begin_inset Newline newline
21500 \end_inset
21501
21502 Die Option 
21503 \family sans
21504 Spalten
21505 \begin_inset Space ~
21506 \end_inset
21507
21508 überspannen
21509 \family default
21510  ist nur bei zweispaltigen Dokumenten sinnvoll.
21511  Wenn Sie sie wählen, wird das Gleitobjekt über beide Spalten gesetzt.
21512 \begin_inset Newline newline
21513 \end_inset
21514
21515 Die Option 
21516 \family sans
21517 Seitwärts
21518 \begin_inset Space ~
21519 \end_inset
21520
21521 drehen
21522 \family default
21523  ist in Abschnitt 
21524 \begin_inset CommandInset ref
21525 LatexCommand ref
21526 reference "abs:Gedrehte-Gleitobjekte"
21527
21528 \end_inset
21529
21530  beschrieben.
21531 \end_layout
21532
21533 \begin_layout Standard
21534 Sie können eine oder mehrere der folgenden Optionen im Gleitobjekt-Dialog
21535  verwenden um die Platzierung einzelner Gleitobjekte zu beeinflussen, wenn
21536  Sie die Option 
21537 \family sans
21538 Standard-Platzierung
21539 \begin_inset Space ~
21540 \end_inset
21541
21542 verwenden
21543 \family default
21544  nicht verwenden:
21545 \end_layout
21546
21547 \begin_layout Description
21548 Hier
21549 \begin_inset Space ~
21550 \end_inset
21551
21552 wenn
21553 \begin_inset Space ~
21554 \end_inset
21555
21556 möglich versuche das Gleitobjekt dort zu platzieren wo es eingefügt wurde.
21557 \end_layout
21558
21559 \begin_layout Description
21560 Anfang
21561 \begin_inset Space ~
21562 \end_inset
21563
21564 der
21565 \begin_inset Space ~
21566 \end_inset
21567
21568 Seite
21569 \family sans
21570  
21571 \family default
21572 versuche das Gleitobjekt am Anfang der aktuellen Seite zu platzieren.
21573  Gleitobjekte, die maximal 70
21574 \begin_inset Space \thinspace{}
21575 \end_inset
21576
21577 % einer Seite benötigen, dürfen oben platziert werden.
21578  Dies kann durch die Variable 
21579 \series bold
21580
21581 \backslash
21582 topfraction
21583 \series default
21584  im LaTeX-Vorspann überschrieben werden, zum Beispiel: 
21585 \end_layout
21586
21587 \begin_deeper
21588 \begin_layout Standard
21589
21590 \series bold
21591
21592 \backslash
21593 renewcommand{
21594 \backslash
21595 topfraction}{0.9}
21596 \family typewriter
21597 \series default
21598  
21599 \end_layout
21600
21601 \end_deeper
21602 \begin_layout Description
21603 Ende
21604 \begin_inset Space ~
21605 \end_inset
21606
21607 der
21608 \begin_inset Space ~
21609 \end_inset
21610
21611 Seite versuche das Gleitobjekt am Ende der aktuellen Seite zu platzieren.
21612  Gleitobjekte, die maximal 30
21613 \begin_inset Space \thinspace{}
21614 \end_inset
21615
21616 % einer Seite benötigen, dürfen unten platziert werden.
21617  Dies kann durch die Variable 
21618 \series bold
21619
21620 \backslash
21621 bottomfraction
21622 \series default
21623  im LaTeX-Vorspann überschrieben werden, zum Beispiel setzt 
21624 \end_layout
21625
21626 \begin_deeper
21627 \begin_layout Standard
21628
21629 \series bold
21630
21631 \backslash
21632 renewcommand{
21633 \backslash
21634 bottomfraction}{0.5}
21635 \end_layout
21636
21637 \begin_layout Standard
21638 die oftmals zu kleine untere Grenze auf 50
21639 \begin_inset Space \thinspace{}
21640 \end_inset
21641
21642 %.
21643 \end_layout
21644
21645 \end_deeper
21646 \begin_layout Description
21647 Seite
21648 \begin_inset Space ~
21649 \end_inset
21650
21651 mit
21652 \begin_inset Space ~
21653 \end_inset
21654
21655 Gleitobjekten versuche das Gleitobjekt auf einer eigenen Seite zu platzieren.
21656  Nur wenn mehr als 50
21657 \begin_inset Space \thinspace{}
21658 \end_inset
21659
21660 % einer Seite von Gleitobjekten belegt wird, wird eine neue Seite für weitere
21661  Gleitobjekte bereitgestellt.
21662  Dies kann durch die Variable 
21663 \series bold
21664
21665 \backslash
21666 floatpagefraction 
21667 \series default
21668 im LaTeX-Vorspann überschrieben werden.
21669 \end_layout
21670
21671 \begin_layout Standard
21672 Die Reihenfolge der obigen Optionen wird 
21673 \emph on
21674 immer
21675 \emph default
21676  von LaTeX verwendet.
21677  Das heißt wenn Sie die Standard-Platzierung verwenden, wird LaTeX zuerst
21678  versuchen 
21679 \family sans
21680 Hier
21681 \begin_inset Space \space{}
21682 \end_inset
21683
21684 wenn
21685 \begin_inset Space \space{}
21686 \end_inset
21687
21688 möglich
21689 \family default
21690 , dann 
21691 \family sans
21692 Anfang
21693 \begin_inset Space ~
21694 \end_inset
21695
21696 der
21697 \begin_inset Space ~
21698 \end_inset
21699
21700 Seite
21701 \family default
21702  und dann die anderen Optionen zu anzuwenden.
21703  Wenn Sie nicht die Standard-Platzierung verwenden, wird LaTeX nur die von
21704  Ihnen gewählten Optionen versuchen anzuwenden, aber immer in der selben
21705  Reihenfolge.
21706  Wenn keine der 4 Platzierungen möglich sind, wird die Prozedur intern wiederhol
21707 t, aber diesmal mit dem Ziel das Gleitobjekt auf die nächste Seite zu setzen.
21708 \end_layout
21709
21710 \begin_layout Standard
21711 Die Option 
21712 \family sans
21713 Hier,
21714 \begin_inset Space ~
21715 \end_inset
21716
21717 auf
21718 \begin_inset Space ~
21719 \end_inset
21720
21721 jeden
21722 \begin_inset Space ~
21723 \end_inset
21724
21725 Fall
21726 \family default
21727  sollte nur sehr selten benutzt werden und auch nur dann, wenn das Dokument
21728  fast druckreif ist.
21729  Denn mit der Option kann das Objekt nicht mehr 
21730 \emph on
21731 gleiten
21732 \emph default
21733 , wenn Sie das Dokument ändern, und die Gestaltung der Seite wird dadurch
21734  oftmals zerstört.
21735 \end_layout
21736
21737 \begin_layout Standard
21738 Es gibt keine Platzierungsoption für textumflossene [Gleit]Objekte, da diese
21739  immer von Text eines bestimmten Paragraphen umgeben sind.
21740 \begin_inset VSpace bigskip
21741 \end_inset
21742
21743
21744 \end_layout
21745
21746 \begin_layout Standard
21747 Manchmal wird ein Gleitobjekt am Seitenanfang platziert, während sein zugehörige
21748 r Abschnitt erst auf der Seitenmitte beginnt, was den Eindruck erweckt,
21749  das Gleitobjekt sei Teil des vorherigen Abschnitts.
21750  Das kann mit dem LaTeX-Befehl
21751 \series bold
21752  
21753 \backslash
21754 suppressfloats
21755 \series default
21756  verhindert werden.
21757  Er unterdrückt eine Gleitobjekt-Platzierung für die Seite, auf der er steht,
21758  und sorgt so dafür, dass ein Gleitobjekt erst nach seiner Abschnitt-Überschrift
21759  gesetzt wird.
21760  Dazu müssen Sie im LaTeX-Vorspann folgende Befehle einfügen:
21761 \end_layout
21762
21763 \begin_layout Standard
21764
21765 \series bold
21766
21767 \backslash
21768 let
21769 \backslash
21770 meinAbschnitt
21771 \backslash
21772 section
21773 \begin_inset Newline newline
21774 \end_inset
21775
21776
21777 \backslash
21778 renewcommand{
21779 \backslash
21780 section}{
21781 \backslash
21782 suppressfloats[t]
21783 \backslash
21784 meinAbschnitt}
21785 \end_layout
21786
21787 \begin_layout Standard
21788 Dasselbe können Sie für alle Überschriften von Kapiteln, Abschnitten und
21789  Unterabschnitten festlegen.
21790  Für kleinere Teile wie Unterunterabschnitten wird es nicht empfohlen, weil
21791  LaTeX Probleme mit einem geeigneten Ort für das Gleitobjekt haben könnte.
21792 \end_layout
21793
21794 \begin_layout Standard
21795 Es gibt auch noch das LaTeX-Paket 
21796 \series bold
21797 flafter
21798 \series default
21799
21800 \begin_inset Index
21801 status collapsed
21802
21803 \begin_layout Plain Layout
21804 LaTeX-Pakete ! flafter
21805 \end_layout
21806
21807 \end_inset
21808
21809  das dafür sorgt, dass prinzipiell kein Gleitobjekt vor seiner Definition
21810  gedruckt wird.
21811 \end_layout
21812
21813 \begin_layout Standard
21814 \begin_inset VSpace bigskip
21815 \end_inset
21816
21817 Manchmal möchte man alle Abbildungen und Tabellen am Dokumentende haben.
21818  Dafür gibt es das LaTeX-Paket 
21819 \series bold
21820 endfloat
21821 \series default
21822
21823 \begin_inset Index
21824 status collapsed
21825
21826 \begin_layout Plain Layout
21827 LaTeX-Pakete ! endf
21828 \begin_inset ERT
21829 status collapsed
21830
21831 \begin_layout Plain Layout
21832
21833
21834 \backslash
21835
21836 \begin_inset ERT
21837 status collapsed
21838
21839 \begin_layout Plain Layout
21840
21841 {
21842 \end_layout
21843
21844 \end_inset
21845
21846
21847 \begin_inset ERT
21848 status collapsed
21849
21850 \begin_layout Plain Layout
21851
21852 }
21853 \end_layout
21854
21855 \end_inset
21856
21857
21858 \end_layout
21859
21860 \end_inset
21861
21862 /loat
21863 \end_layout
21864
21865 \end_inset
21866
21867 .
21868  Es druckt alle Gleitobjekt-Abbildungen und -Tabellen in eigenen Abschnitten.
21869  An der ursprünglichen Gleitobjekt-Position werden Sie einen Hinweis wie
21870  
21871 \family sans
21872
21873 \begin_inset Quotes gld
21874 \end_inset
21875
21876 [Abbildung
21877 \begin_inset Space ~
21878 \end_inset
21879
21880 3.2 ist ungefähr hier.]
21881 \family default
21882
21883 \begin_inset Quotes grd
21884 \end_inset
21885
21886  finden.
21887  Das 
21888 \series bold
21889 endfloat
21890 \series default
21891 -Paket wird mit folgendem Befehl in den LaTeX-Vorspann eingefügt:
21892 \end_layout
21893
21894 \begin_layout Standard
21895
21896 \series bold
21897
21898 \backslash
21899 usepackage[Optionen]{endfloat}
21900 \end_layout
21901
21902 \begin_layout Standard
21903 Es gibt verschiedene Optionen für die Formatierung der Abbildungen- und
21904  Tabellen-Abschnitt, die Sie in der 
21905 \series bold
21906 endfloat
21907 \series default
21908 -Dokumentation 
21909 \begin_inset CommandInset citation
21910 LatexCommand cite
21911 key "endfloat"
21912
21913 \end_inset
21914
21915  nachlesen können.
21916 \begin_inset Newline newline
21917 \end_inset
21918
21919
21920 \begin_inset Note Greyedout
21921 status open
21922
21923 \begin_layout Plain Layout
21924
21925 \series bold
21926 Bemerkung
21927 \begin_inset Space ~
21928 \end_inset
21929
21930 1: endfloat
21931 \series default
21932  übersetzt den Hinweistext nicht automatisch.
21933  Abschnitt
21934 \begin_inset Space ~
21935 \end_inset
21936
21937 4 in 
21938 \begin_inset CommandInset citation
21939 LatexCommand cite
21940 key "endfloat"
21941
21942 \end_inset
21943
21944  beschreibt, wie es geht.
21945 \end_layout
21946
21947 \end_inset
21948
21949
21950 \end_layout
21951
21952 \begin_layout Standard
21953 \begin_inset Note Greyedout
21954 status open
21955
21956 \begin_layout Plain Layout
21957
21958 \series bold
21959 Bemerkung
21960 \begin_inset Space ~
21961 \end_inset
21962
21963 2: 
21964 \series default
21965 Die aktuelle Version von 
21966 \series bold
21967 endfloat
21968 \series default
21969  hat einen Fehler, wenn die Überschrift ein 
21970 \begin_inset Quotes gld
21971 \end_inset
21972
21973 ß
21974 \begin_inset Quotes grd
21975 \end_inset
21976
21977  enthält.
21978  Sie müssen stattdessen den Befehl 
21979 \series bold
21980
21981 \backslash
21982 ss
21983 \series default
21984  als TeX-Code benutzen.
21985 \end_layout
21986
21987 \end_inset
21988
21989
21990 \end_layout
21991
21992 \begin_layout Standard
21993 \begin_inset VSpace bigskip
21994 \end_inset
21995
21996 Weitere Einzelheiten finden über Gleitobjekt-Platzierung finden Sie in LaTeX-Büc
21997 hern wie 
21998 \begin_inset CommandInset citation
21999 LatexCommand cite
22000 key "latexcompanion,latexguide,lamport,latex-praxisbuch"
22001
22002 \end_inset
22003
22004 .
22005 \end_layout
22006
22007 \begin_layout Section
22008 Gedrehte Gleitobjekte
22009 \begin_inset CommandInset label
22010 LatexCommand label
22011 name "abs:Gedrehte-Gleitobjekte"
22012
22013 \end_inset
22014
22015
22016 \begin_inset Index
22017 status collapsed
22018
22019 \begin_layout Plain Layout
22020 Gleitobjekte ! drehen
22021 \end_layout
22022
22023 \end_inset
22024
22025
22026 \end_layout
22027
22028 \begin_layout Standard
22029 Wenn Bilder oder Tabellen breiter als die Seite sind, wollen Sie diese vielleich
22030 t drehen.
22031  Dafür müssen Sie das Gleitobjekt-Kästchen mit der rechten Maustaste anklicken
22032  und die Option 
22033 \family sans
22034 Seitwärts
22035 \begin_inset Space ~
22036 \end_inset
22037
22038 drehen
22039 \family default
22040  wählen.
22041 \end_layout
22042
22043 \begin_layout Standard
22044 Gedrehte Gleitobjekte werden immer auf einer neuen Seite (oder Spalte bei
22045  zweispaltigen Dokumenten) gedruckt.
22046  Gleitobjekte werden immer so gedreht, dass sie vom äußeren Rand her gelesen
22047  werden können.
22048  Um eine Drehrichtung für alle Seiten zu erzwingen, fügen Sie entweder die
22049  Option 
22050 \series bold
22051 figuresleft
22052 \series default
22053  oder 
22054 \series bold
22055 figuresright
22056 \series default
22057  zu den Dokumentklassen-Optionen hinzu.
22058 \end_layout
22059
22060 \begin_layout Standard
22061 Alle anderen Dinge sind wie bei normalen Gleitobjekten.
22062  Tabelle
22063 \begin_inset Space ~
22064 \end_inset
22065
22066
22067 \begin_inset CommandInset ref
22068 LatexCommand ref
22069 reference "tab:Gedrehte-Tabelle"
22070
22071 \end_inset
22072
22073  ist ein Beispiel für eine gedrehte Gleitobjekt-Tabelle.
22074 \end_layout
22075
22076 \begin_layout Standard
22077 \begin_inset Note Greyedout
22078 status open
22079
22080 \begin_layout Plain Layout
22081
22082 \series bold
22083 Bemerkung:
22084 \series default
22085  Nicht alle DVI-Betrachter können gedrehte Gleitobjekte anzeigen.
22086 \end_layout
22087
22088 \end_inset
22089
22090
22091 \end_layout
22092
22093 \begin_layout Standard
22094 \begin_inset Float table
22095 wide false
22096 sideways true
22097 status open
22098
22099 \begin_layout Plain Layout
22100 \begin_inset Caption
22101
22102 \begin_layout Plain Layout
22103 \begin_inset CommandInset label
22104 LatexCommand label
22105 name "tab:Gedrehte-Tabelle"
22106
22107 \end_inset
22108
22109 Gedrehte Tabelle
22110 \end_layout
22111
22112 \end_inset
22113
22114
22115 \end_layout
22116
22117 \begin_layout Plain Layout
22118 \align center
22119 \begin_inset Tabular
22120 <lyxtabular version="3" rows="1" columns="5">
22121 <features>
22122 <column alignment="center" valignment="top" width="0">
22123 <column alignment="center" valignment="top" width="0">
22124 <column alignment="center" valignment="top" width="0">
22125 <column alignment="center" valignment="top" width="0">
22126 <column alignment="center" valignment="top" width="0">
22127 <row>
22128 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22129 \begin_inset Text
22130
22131 \begin_layout Plain Layout
22132 Test
22133 \end_layout
22134
22135 \end_inset
22136 </cell>
22137 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22138 \begin_inset Text
22139
22140 \begin_layout Plain Layout
22141 b
22142 \end_layout
22143
22144 \end_inset
22145 </cell>
22146 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22147 \begin_inset Text
22148
22149 \begin_layout Plain Layout
22150 c
22151 \end_layout
22152
22153 \end_inset
22154 </cell>
22155 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22156 \begin_inset Text
22157
22158 \begin_layout Plain Layout
22159 d
22160 \end_layout
22161
22162 \end_inset
22163 </cell>
22164 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22165 \begin_inset Text
22166
22167 \begin_layout Plain Layout
22168 e
22169 \end_layout
22170
22171 \end_inset
22172 </cell>
22173 </row>
22174 </lyxtabular>
22175
22176 \end_inset
22177
22178
22179 \end_layout
22180
22181 \end_inset
22182
22183
22184 \end_layout
22185
22186 \begin_layout Section
22187 Gleitobjekte nebeneinander
22188 \begin_inset Index
22189 status collapsed
22190
22191 \begin_layout Plain Layout
22192 Gleitobjekte ! nebeneinander
22193 \end_layout
22194
22195 \end_inset
22196
22197
22198 \end_layout
22199
22200 \begin_layout Standard
22201 Um Gleitobjekte nebeneinander zu setzen, wie bei Abbildung
22202 \begin_inset Space ~
22203 \end_inset
22204
22205
22206 \begin_inset CommandInset ref
22207 LatexCommand ref
22208 reference "fig:Gleitobjekt-links"
22209
22210 \end_inset
22211
22212  und 
22213 \begin_inset CommandInset ref
22214 LatexCommand ref
22215 reference "fig:Gleitobjekt-rechts"
22216
22217 \end_inset
22218
22219 , wird nur 
22220 \emph on
22221 ein
22222 \emph default
22223  Gleitobjekt verwendet.
22224  In dieses werden zwei Minipage Boxen eingefügt.
22225 \begin_inset Foot
22226 status collapsed
22227
22228 \begin_layout Plain Layout
22229 Minipages sind in Abschnitt
22230 \begin_inset Space ~
22231 \end_inset
22232
22233
22234 \begin_inset CommandInset ref
22235 LatexCommand ref
22236 reference "abs:Minipage"
22237
22238 \end_inset
22239
22240  erklärt.
22241 \end_layout
22242
22243 \end_inset
22244
22245  Die Breite wird für jede Minipage auf 45
22246 \begin_inset Space \thinspace{}
22247 \end_inset
22248
22249 -50
22250 \begin_inset Space \thinspace{}
22251 \end_inset
22252
22253 Spalten% und die Box Ausrichtung auf 
22254 \family sans
22255 Unten
22256 \family default
22257  gesetzt.
22258  Die Minipage Boxen enthalten das Bild und die Beschriftung, so wie in einem
22259  Gleitobjekt.
22260  Der einzige Unterschied ist, dass die Bildeinheit 
22261 \family sans
22262 Spaltenbreite
22263 \begin_inset Space ~
22264 \end_inset
22265
22266 %
22267 \family default
22268  nun bezüglich der Breite der Minipage Boxen berechnet wird.
22269 \end_layout
22270
22271 \begin_layout Standard
22272 \begin_inset Float figure
22273 wide false
22274 sideways false
22275 status open
22276
22277 \begin_layout Plain Layout
22278 \begin_inset Box Frameless
22279 position "b"
22280 hor_pos "c"
22281 has_inner_box 1
22282 inner_pos "t"
22283 use_parbox 0
22284 width "45col%"
22285 special "none"
22286 height "1in"
22287 height_special "totalheight"
22288 status open
22289
22290 \begin_layout Plain Layout
22291 \align center
22292 \begin_inset Graphics
22293         filename ../clipart/mobius.eps
22294         lyxscale 50
22295         width 100col%
22296         scaleBeforeRotation
22297
22298 \end_inset
22299
22300
22301 \end_layout
22302
22303 \begin_layout Plain Layout
22304 \begin_inset Caption
22305
22306 \begin_layout Plain Layout
22307 \begin_inset CommandInset label
22308 LatexCommand label
22309 name "fig:Gleitobjekt-links"
22310
22311 \end_inset
22312
22313 Gleitobjekt auf der linken Seite.
22314 \end_layout
22315
22316 \end_inset
22317
22318
22319 \end_layout
22320
22321 \end_inset
22322
22323
22324 \begin_inset Space \hfill{}
22325 \end_inset
22326
22327
22328 \begin_inset Box Frameless
22329 position "b"
22330 hor_pos "c"
22331 has_inner_box 1
22332 inner_pos "t"
22333 use_parbox 0
22334 width "45col%"
22335 special "none"
22336 height "1in"
22337 height_special "totalheight"
22338 status open
22339
22340 \begin_layout Plain Layout
22341 \align center
22342 \begin_inset Graphics
22343         filename ../clipart/platypus.eps
22344         lyxscale 50
22345         width 100col%
22346         scaleBeforeRotation
22347
22348 \end_inset
22349
22350
22351 \end_layout
22352
22353 \begin_layout Plain Layout
22354 \begin_inset Caption
22355
22356 \begin_layout Plain Layout
22357 \begin_inset CommandInset label
22358 LatexCommand label
22359 name "fig:Gleitobjekt-rechts"
22360
22361 \end_inset
22362
22363 Gleitobjekt auf der rechten Seite.
22364 \end_layout
22365
22366 \end_inset
22367
22368
22369 \end_layout
22370
22371 \end_inset
22372
22373
22374 \end_layout
22375
22376 \end_inset
22377
22378
22379 \end_layout
22380
22381 \begin_layout Section
22382 Beschriftungs-Formatierung
22383 \begin_inset CommandInset label
22384 LatexCommand label
22385 name "abs:Titel-Formatierung"
22386
22387 \end_inset
22388
22389
22390 \begin_inset Index
22391 status collapsed
22392
22393 \begin_layout Plain Layout
22394 Gleitobjekte ! Beschriftung ! Formatierung
22395 \end_layout
22396
22397 \end_inset
22398
22399
22400 \end_layout
22401
22402 \begin_layout Standard
22403
22404 \family sans
22405 Legende
22406 \family default
22407  ist die Standard-Paragraf-Umgebung für Gleitobjekt-Beschriftungen.
22408  In LyX sehen Titel so aus:  
22409 \family sans
22410
22411 \begin_inset Quotes gld
22412 \end_inset
22413
22414 Abbildung xyz:
22415 \family default
22416
22417 \begin_inset Quotes grd
22418 \end_inset
22419
22420 , gefolgt vom Beschriftungstext, wobei 
22421 \family sans
22422 xyz
22423 \family default
22424  die von LyX vergebene Nummer ist.
22425  Standardmäßig werden die Marke und der Beschriftungstext im selben Font
22426  gedruckt.
22427  Dies ist nicht immer brauchbar.
22428 \end_layout
22429
22430 \begin_layout Standard
22431 Um das Standardformat für die Beschriftung zu ändern, müssen Sie das LaTeX-Paket
22432  
22433 \series bold
22434 caption
22435 \series default
22436
22437 \begin_inset Index
22438 status collapsed
22439
22440 \begin_layout Plain Layout
22441 LaTeX-Pakete ! caption
22442 \end_layout
22443
22444 \end_inset
22445
22446  in den LaTeX-Vorspann laden:
22447 \end_layout
22448
22449 \begin_layout Standard
22450
22451 \series bold
22452
22453 \backslash
22454 usepackage[Format-Definition]{caption}
22455 \end_layout
22456
22457 \begin_layout Standard
22458 Wenn zum Beispiel Name und Nummer serifenfrei und fett gedruckt werden und
22459  die Beschriftung immer über der Tabelle, müssen Sie folgenden Befehl benutzen:
22460 \end_layout
22461
22462 \begin_layout Standard
22463
22464 \series bold
22465
22466 \backslash
22467 usepackage[labelfont={bf,sf}, tableposition=top]{caption}
22468 \end_layout
22469
22470 \begin_layout Standard
22471 Sie können auch verschiedene Formate für verschiedene Gleitobjekt-Typen
22472  definieren.
22473  Dazu laden Sie das 
22474 \series bold
22475 caption
22476 \series default
22477 -Paket ohne Format-Optionen und definieren die verschiedenen Formate mit
22478  dem Befehl
22479 \end_layout
22480
22481 \begin_layout Standard
22482
22483 \series bold
22484
22485 \backslash
22486 captionsetup[Gleitobjekt-Typ]{Format-Definition}
22487 \end_layout
22488
22489 \begin_layout Standard
22490 Für Abbildung
22491 \begin_inset Space ~
22492 \end_inset
22493
22494
22495 \begin_inset CommandInset ref
22496 LatexCommand ref
22497 reference "abb:Langer-Abb-Titel"
22498
22499 \end_inset
22500
22501  und Tabelle
22502 \begin_inset Space ~
22503 \end_inset
22504
22505
22506 \begin_inset CommandInset ref
22507 LatexCommand ref
22508 reference "tab:Langer-Tab-Titel"
22509
22510 \end_inset
22511
22512  können die Beschriftungen mit folgenden Befehlen im LaTeX-Vorspann definiert
22513  werden:
22514 \end_layout
22515
22516 \begin_layout Standard
22517
22518 \series bold
22519
22520 \backslash
22521 usepackage[tableposition=top]{caption}
22522 \begin_inset Newline newline
22523 \end_inset
22524
22525
22526 \backslash
22527 captionsetup[figure]{labelfont={tt}, textfont=it, indention=1cm,%
22528 \begin_inset Newline newline
22529 \end_inset
22530
22531
22532 \begin_inset ERT
22533 status collapsed
22534
22535 \begin_layout Plain Layout
22536
22537
22538 \backslash
22539 hphantom{
22540 \backslash
22541
22542 \backslash
22543 captionsetup[figure]
22544 \backslash
22545 {}
22546 \end_layout
22547
22548 \end_inset
22549
22550  labelsep=period}
22551 \begin_inset Newline newline
22552 \end_inset
22553
22554
22555 \backslash
22556 captionsetup[table]{labelfont={bf,sf}}
22557 \end_layout
22558
22559 \begin_layout Standard
22560 \begin_inset Note Greyedout
22561 status open
22562
22563 \begin_layout Plain Layout
22564
22565 \series bold
22566 Bemerkung:
22567 \series default
22568  Die Option 
22569 \series bold
22570 tableposition=top
22571 \series default
22572  hat keine Auswirkung wenn eine 
22573 \series bold
22574 koma-script
22575 \series default
22576
22577 \begin_inset Index
22578 status collapsed
22579
22580 \begin_layout Plain Layout
22581 LaTeX-Pakete ! koma-script
22582 \end_layout
22583
22584 \end_inset
22585
22586 -Dokumentklasse verwendet wird.
22587  Hier muss die Option 
22588 \series bold
22589 tablecaptionabove
22590 \series default
22591  benutzt werden.
22592 \end_layout
22593
22594 \end_inset
22595
22596
22597 \end_layout
22598
22599 \begin_layout Standard
22600 Weitere Informationen über das Paket
22601 \series bold
22602  caption
22603 \series default
22604  finden Sie in seiner Dokumentation 
22605 \begin_inset CommandInset citation
22606 LatexCommand cite
22607 key "caption"
22608
22609 \end_inset
22610
22611 .
22612 \end_layout
22613
22614 \begin_layout Standard
22615 Wenn Sie den Namen von 
22616 \begin_inset Quotes gld
22617 \end_inset
22618
22619 Abbildung
22620 \begin_inset Quotes grd
22621 \end_inset
22622
22623  auf 
22624 \begin_inset Quotes gld
22625 \end_inset
22626
22627 Bild
22628 \begin_inset Quotes grd
22629 \end_inset
22630
22631  ändern wollen, können Sie das mit folgendem Befehl im LaTeX-Vorspann  machen:
22632 \end_layout
22633
22634 \begin_layout Standard
22635
22636 \series bold
22637
22638 \backslash
22639 renewcommand{
22640 \backslash
22641 fnum@figure}{Bild~
22642 \backslash
22643 thefigure}
22644 \end_layout
22645
22646 \begin_layout Standard
22647 wobei 
22648 \series bold
22649
22650 \backslash
22651 thefigure
22652 \series default
22653  die Bildnummer einsetzt und
22654 \series bold
22655  ~
22656 \series default
22657  ein geschütztes Leerzeichen ist.
22658 \end_layout
22659
22660 \begin_layout Standard
22661 \begin_inset VSpace bigskip
22662 \end_inset
22663
22664 Wenn Sie eine 
22665 \series bold
22666 koma-script
22667 \series default
22668
22669 \begin_inset Index
22670 status collapsed
22671
22672 \begin_layout Plain Layout
22673 LaTeX-Pakete ! koma-script
22674 \end_layout
22675
22676 \end_inset
22677
22678 -Dokumentklasse (
22679 \family sans
22680 article (koma-script)
22681 \family default
22682
22683 \family sans
22684 book (koma-script)
22685 \family default
22686
22687 \family sans
22688 letter (koma-script)
22689 \family default
22690  oder 
22691 \family sans
22692 report (koma-script)
22693 \family default
22694 ) benutzen, können Sie anstatt des 
22695 \series bold
22696 caption
22697 \series default
22698 -Paketes den eingebauten Befehl 
22699 \series bold
22700
22701 \backslash
22702 setkomafont
22703 \series default
22704  von 
22705 \series bold
22706 koma-script
22707 \series default
22708  benutzen.
22709  Der Befehl
22710 \end_layout
22711
22712 \begin_layout Standard
22713
22714 \series bold
22715
22716 \backslash
22717 setkomafont{captionlabel}{
22718 \backslash
22719 bfseries}
22720 \end_layout
22721
22722 \begin_layout Standard
22723 im LaTeX-Vorspann druckt den Namen fett.
22724 \end_layout
22725
22726 \begin_layout Standard
22727 Weitere Informationen über 
22728 \series bold
22729
22730 \backslash
22731 setkomafont
22732 \series default
22733  finden Sie in der 
22734 \series bold
22735 koma-script
22736 \series default
22737 -Do\SpecialChar \-
22738 ku\SpecialChar \-
22739 men\SpecialChar \-
22740 ta\SpecialChar \-
22741 tion 
22742 \begin_inset CommandInset citation
22743 LatexCommand cite
22744 key "koma-script"
22745
22746 \end_inset
22747
22748 .
22749 \end_layout
22750
22751 \begin_layout Standard
22752 \begin_inset ERT
22753 status collapsed
22754
22755 \begin_layout Plain Layout
22756
22757
22758 \backslash
22759 captionsetup[figure]{labelfont={tt}, textfont=it, indention=1cm, labelsep=period
22760 }
22761 \end_layout
22762
22763 \end_inset
22764
22765
22766 \begin_inset Note Note
22767 status open
22768
22769 \begin_layout Plain Layout
22770 Das Beschriftungsformat wurde nur für dieses Beispiel geändert
22771 \end_layout
22772
22773 \end_inset
22774
22775
22776 \end_layout
22777
22778 \begin_layout Standard
22779 \begin_inset Float figure
22780 placement !p
22781 wide false
22782 sideways false
22783 status open
22784
22785 \begin_layout Plain Layout
22786 \align center
22787 \begin_inset Graphics
22788         filename ../clipart/mobius.eps
22789         lyxscale 50
22790         scale 50
22791         scaleBeforeRotation
22792
22793 \end_inset
22794
22795
22796 \end_layout
22797
22798 \begin_layout Plain Layout
22799 \begin_inset Caption
22800
22801 \begin_layout Plain Layout
22802 \begin_inset CommandInset label
22803 LatexCommand label
22804 name "abb:Langer-Abb-Titel"
22805
22806 \end_inset
22807
22808 Dies ist ein Beispiel einer Beschriftung, die länger als eine Zeile lang
22809  ist, um das andere Beschriftungsformat zu zeigen.
22810  Hier wurde ein selbst definiertes Beschriftungsformat benutzt.
22811 \begin_inset OptArg
22812 status collapsed
22813
22814 \begin_layout Plain Layout
22815 Dies ist ein Beispiel einer Beschriftung, der länger als eine Zeile lang
22816  ist.
22817 \end_layout
22818
22819 \end_inset
22820
22821
22822 \end_layout
22823
22824 \end_inset
22825
22826
22827 \end_layout
22828
22829 \end_inset
22830
22831
22832 \end_layout
22833
22834 \begin_layout Standard
22835 \begin_inset ERT
22836 status collapsed
22837
22838 \begin_layout Plain Layout
22839
22840
22841 \backslash
22842 captionsetup[figure]{labelfont={bf,sf}, textfont=rm, indention=0cm, labelsep=col
22843 on}
22844 \end_layout
22845
22846 \end_inset
22847
22848
22849 \end_layout
22850
22851 \begin_layout Standard
22852 \begin_inset Float table
22853 placement !p
22854 wide false
22855 sideways false
22856 status open
22857
22858 \begin_layout Plain Layout
22859 \begin_inset Caption
22860
22861 \begin_layout Plain Layout
22862 \begin_inset CommandInset label
22863 LatexCommand label
22864 name "tab:Langer-Tab-Titel"
22865
22866 \end_inset
22867
22868 Dies ist ein Beispiel einer Beschriftung, die länger als eine Zeile lang
22869  ist, um das andere Beschriftungsformat zu zeigen.
22870  Hier wurde das Standard-Beschriftungsformat dieses Dokuments für Tabellen
22871  benutzt.
22872 \begin_inset OptArg
22873 status collapsed
22874
22875 \begin_layout Plain Layout
22876 Dies ist ein Beispiel einer Beschriftung, der länger als eine Zeile lang
22877  ist.
22878 \end_layout
22879
22880 \end_inset
22881
22882
22883 \end_layout
22884
22885 \end_inset
22886
22887
22888 \end_layout
22889
22890 \begin_layout Plain Layout
22891 \align center
22892 \begin_inset Tabular
22893 <lyxtabular version="3" rows="1" columns="5">
22894 <features>
22895 <column alignment="center" valignment="top" width="0">
22896 <column alignment="center" valignment="top" width="0">
22897 <column alignment="center" valignment="top" width="0">
22898 <column alignment="center" valignment="top" width="0">
22899 <column alignment="center" valignment="top" width="0">
22900 <row>
22901 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22902 \begin_inset Text
22903
22904 \begin_layout Plain Layout
22905 a
22906 \end_layout
22907
22908 \end_inset
22909 </cell>
22910 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22911 \begin_inset Text
22912
22913 \begin_layout Plain Layout
22914 b
22915 \end_layout
22916
22917 \end_inset
22918 </cell>
22919 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22920 \begin_inset Text
22921
22922 \begin_layout Plain Layout
22923 c
22924 \end_layout
22925
22926 \end_inset
22927 </cell>
22928 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22929 \begin_inset Text
22930
22931 \begin_layout Plain Layout
22932 d
22933 \end_layout
22934
22935 \end_inset
22936 </cell>
22937 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22938 \begin_inset Text
22939
22940 \begin_layout Plain Layout
22941 e
22942 \end_layout
22943
22944 \end_inset
22945 </cell>
22946 </row>
22947 </lyxtabular>
22948
22949 \end_inset
22950
22951
22952 \end_layout
22953
22954 \end_inset
22955
22956
22957 \end_layout
22958
22959 \begin_layout Section
22960 Beschriftungs-Platzierung
22961 \begin_inset CommandInset label
22962 LatexCommand label
22963 name "abs:Titel-Platzierung"
22964
22965 \end_inset
22966
22967
22968 \begin_inset Index
22969 status collapsed
22970
22971 \begin_layout Plain Layout
22972 Gleitobjekte ! Beschriftung ! Platzierung
22973 \end_layout
22974
22975 \end_inset
22976
22977
22978 \end_layout
22979
22980 \begin_layout Standard
22981 Normalerweise werden die Beschriftungen wie folgt platziert:
22982 \end_layout
22983
22984 \begin_layout Description
22985 Abbildung: darunter
22986 \end_layout
22987
22988 \begin_layout Description
22989 Tabelle: darüber
22990 \end_layout
22991
22992 \begin_layout Standard
22993 LaTeX-Standard-Klassen unterstützen diese Vereinbarung nicht für Tabellen.
22994  Das heißt wenn Sie eine der Dokument-Klassen 
22995 \family sans
22996 article
22997 \family default
22998
22999 \family sans
23000 book
23001 \family default
23002
23003 \family sans
23004 letter
23005 \family default
23006  oder 
23007 \family sans
23008 report
23009 \family default
23010  benutzen, wird zwischen Beschriftung und Tabelle kein Zwischenraum gedruckt.
23011  Um das zu erreichen, müssen Sie beim Lade-Befehl des LaTeX-Pakets 
23012 \series bold
23013 caption
23014 \series default
23015  im LaTeX-Vorspann folgendes:
23016 \begin_inset Foot
23017 status collapsed
23018
23019 \begin_layout Plain Layout
23020 In Abschnitt
23021 \begin_inset Space ~
23022 \end_inset
23023
23024
23025 \begin_inset CommandInset ref
23026 LatexCommand ref
23027 reference "abs:Titel-Formatierung"
23028
23029 \end_inset
23030
23031  steht mehr über das Paket 
23032 \series bold
23033 caption
23034 \series default
23035 .
23036 \end_layout
23037
23038 \end_inset
23039
23040
23041 \end_layout
23042
23043 \begin_layout Standard
23044
23045 \series bold
23046 tableposition=top
23047 \end_layout
23048
23049 \begin_layout Standard
23050 Wenn Sie eine 
23051 \series bold
23052 koma-script
23053 \series default
23054
23055 \begin_inset Index
23056 status collapsed
23057
23058 \begin_layout Plain Layout
23059 LaTeX-Pakete ! koma-script
23060 \end_layout
23061
23062 \end_inset
23063
23064 -Dokumentklasse (
23065 \family sans
23066 article (koma-script)
23067 \family default
23068
23069 \family sans
23070 book (koma-script)
23071 \family default
23072
23073 \family sans
23074 letter (koma-script)
23075 \family default
23076  oder 
23077 \family sans
23078 report (koma-script)
23079 \family default
23080 ) benutzen, können Sie alternativ zum 
23081 \series bold
23082 caption
23083 \series default
23084 -Paket die Option 
23085 \series bold
23086 tablecaptionabove
23087 \series default
23088  benutzen.
23089 \end_layout
23090
23091 \begin_layout Standard
23092 \begin_inset VSpace bigskip
23093 \end_inset
23094
23095 Die Beschriftung kann auch neben  der Abbildung oder Tabelle stehen.
23096  Das bewirkt das LaTeX-Paket 
23097 \series bold
23098 sidecap
23099 \series default
23100
23101 \begin_inset Index
23102 status collapsed
23103
23104 \begin_layout Plain Layout
23105 LaTeX-Pakete ! sidecap
23106 \end_layout
23107
23108 \end_inset
23109
23110 , das so in den LaTeX-Vorspann geladen wird:
23111 \end_layout
23112
23113 \begin_layout Standard
23114
23115 \series bold
23116
23117 \backslash
23118 usepackage[Option]{sidecap}
23119 \end_layout
23120
23121 \begin_layout Standard
23122 Wenn Sie keine Option setzen, wird die Beschriftung außen gesetzt.
23123  Mit 
23124 \series bold
23125 innercaption
23126 \series default
23127  wird die Beschriftung innen gedruckt.
23128  Um die Beschriftung immer rechts oder links zu erzwingen, benutzen Sie
23129  
23130 \series bold
23131 rightcaption
23132 \series default
23133  oder 
23134 \series bold
23135 leftcaption
23136 \series default
23137 .
23138 \end_layout
23139
23140 \begin_layout Standard
23141 \begin_inset ERT
23142 status collapsed
23143
23144 \begin_layout Plain Layout
23145
23146
23147 \backslash
23148 ifsidecap
23149 \end_layout
23150
23151 \end_inset
23152
23153
23154 \begin_inset Note Note
23155 status open
23156
23157 \begin_layout Plain Layout
23158 Der folgende Abschnitt wird nur gedruckt, wenn das LaTeX-Paket 
23159 \series bold
23160 sidecap
23161 \series default
23162  installiert ist.
23163 \end_layout
23164
23165 \end_inset
23166
23167
23168 \end_layout
23169
23170 \begin_layout Standard
23171 Um die Beschriftung mit LyX seitlich zu drucken, müssen Sie folgende Befehle
23172  in den LaTeX-Vorspann schreiben:
23173 \end_layout
23174
23175 \begin_layout Standard
23176
23177 \lyxline
23178
23179 \end_layout
23180
23181 \begin_layout Standard
23182
23183 \series bold
23184
23185 \backslash
23186 newcommand{
23187 \backslash
23188 TabBesBeg}{%
23189 \begin_inset Newline newline
23190 \end_inset
23191
23192
23193 \begin_inset ERT
23194 status collapsed
23195
23196 \begin_layout Plain Layout
23197
23198
23199 \backslash
23200 hphantom{ }
23201 \end_layout
23202
23203 \end_inset
23204
23205
23206 \backslash
23207 let
23208 \backslash
23209 MyTable
23210 \backslash
23211 table
23212 \begin_inset Newline newline
23213 \end_inset
23214
23215
23216 \begin_inset ERT
23217 status collapsed
23218
23219 \begin_layout Plain Layout
23220
23221
23222 \backslash
23223 hphantom{ }
23224 \end_layout
23225
23226 \end_inset
23227
23228
23229 \backslash
23230 let
23231 \backslash
23232 MyEndtable
23233 \backslash
23234 endtable
23235 \begin_inset Newline newline
23236 \end_inset
23237
23238
23239 \begin_inset ERT
23240 status collapsed
23241
23242 \begin_layout Plain Layout
23243
23244
23245 \backslash
23246 hphantom{ }
23247 \end_layout
23248
23249 \end_inset
23250
23251
23252 \backslash
23253 renewenvironment{table}{
23254 \backslash
23255 begin{SCtable}}{
23256 \backslash
23257 end{SCtable}}}
23258 \end_layout
23259
23260 \begin_layout Standard
23261
23262 \series bold
23263
23264 \backslash
23265 newcommand{
23266 \backslash
23267 TabBesEnd}{%
23268 \begin_inset Newline newline
23269 \end_inset
23270
23271
23272 \begin_inset ERT
23273 status collapsed
23274
23275 \begin_layout Plain Layout
23276
23277
23278 \backslash
23279 hphantom{ }
23280 \end_layout
23281
23282 \end_inset
23283
23284
23285 \backslash
23286 let
23287 \backslash
23288 table
23289 \backslash
23290 MyTable
23291 \begin_inset Newline newline
23292 \end_inset
23293
23294
23295 \begin_inset ERT
23296 status collapsed
23297
23298 \begin_layout Plain Layout
23299
23300
23301 \backslash
23302 hphantom{ }
23303 \end_layout
23304
23305 \end_inset
23306
23307
23308 \backslash
23309 let
23310 \backslash
23311 endtable
23312 \backslash
23313 MyEndtable
23314 \end_layout
23315
23316 \begin_layout Standard
23317
23318 \series bold
23319
23320 \backslash
23321 newcommand{
23322 \backslash
23323 FigBesBeg}{%
23324 \begin_inset Newline newline
23325 \end_inset
23326
23327
23328 \begin_inset ERT
23329 status collapsed
23330
23331 \begin_layout Plain Layout
23332
23333
23334 \backslash
23335 hphantom{ }
23336 \end_layout
23337
23338 \end_inset
23339
23340
23341 \backslash
23342 let
23343 \backslash
23344 MyFigure
23345 \backslash
23346 figure
23347 \begin_inset Newline newline
23348 \end_inset
23349
23350
23351 \begin_inset ERT
23352 status collapsed
23353
23354 \begin_layout Plain Layout
23355
23356
23357 \backslash
23358 hphantom{ }
23359 \end_layout
23360
23361 \end_inset
23362
23363
23364 \backslash
23365 let
23366 \backslash
23367 MyEndfigure
23368 \backslash
23369 endfigure
23370 \begin_inset Newline newline
23371 \end_inset
23372
23373
23374 \begin_inset ERT
23375 status collapsed
23376
23377 \begin_layout Plain Layout
23378
23379
23380 \backslash
23381 hphantom{ }
23382 \end_layout
23383
23384 \end_inset
23385
23386
23387 \backslash
23388 renewenvironment{figure}{
23389 \backslash
23390 begin{SCfigure}}{
23391 \backslash
23392 end{SCfigure}}}
23393 \end_layout
23394
23395 \begin_layout Standard
23396
23397 \series bold
23398
23399 \backslash
23400 newcommand{
23401 \backslash
23402 FigBesEnd}{%
23403 \begin_inset Newline newline
23404 \end_inset
23405
23406
23407 \begin_inset ERT
23408 status collapsed
23409
23410 \begin_layout Plain Layout
23411
23412
23413 \backslash
23414 hphantom{ }
23415 \end_layout
23416
23417 \end_inset
23418
23419
23420 \backslash
23421 let
23422 \backslash
23423 figure
23424 \backslash
23425 MyFigure
23426 \begin_inset Newline newline
23427 \end_inset
23428
23429
23430 \begin_inset ERT
23431 status collapsed
23432
23433 \begin_layout Plain Layout
23434
23435
23436 \backslash
23437 hphantom{ }
23438 \end_layout
23439
23440 \end_inset
23441
23442
23443 \backslash
23444 let
23445 \backslash
23446 endfigure
23447 \backslash
23448 MyEndfigure}
23449 \series default
23450
23451 \lyxline
23452
23453 \end_layout
23454
23455 \begin_layout Standard
23456 Mit den Befehlen können Sie die Gleitobjekte so umdefinieren, dass die Beschrift
23457 ungen seitlich gedruckt werden.
23458  Für Gleitobjekt-Abbildungen schreiben Sie dann die Befehle
23459 \end_layout
23460
23461 \begin_layout Standard
23462
23463 \series bold
23464
23465 \backslash
23466 FigBesBeg
23467 \end_layout
23468
23469 \begin_layout Standard
23470 als TeX-Code vor und
23471 \end_layout
23472
23473 \begin_layout Standard
23474
23475 \series bold
23476
23477 \backslash
23478 FigBesEnd
23479 \end_layout
23480
23481 \begin_layout Standard
23482 hinter das Gleitobjekt.
23483  Bei Gleitobjekt-Tabellen heißen die Befehle
23484 \end_layout
23485
23486 \begin_layout Standard
23487
23488 \series bold
23489
23490 \backslash
23491 TabBesBeg
23492 \series default
23493  und 
23494 \series bold
23495
23496 \backslash
23497 TabBesEnd
23498 \series default
23499 .
23500 \end_layout
23501
23502 \begin_layout Standard
23503 Abbildung
23504 \begin_inset Space ~
23505 \end_inset
23506
23507
23508 \begin_inset CommandInset ref
23509 LatexCommand ref
23510 reference "abb:Beschriftung-neben"
23511
23512 \end_inset
23513
23514  und Tabelle
23515 \begin_inset Space ~
23516 \end_inset
23517
23518
23519 \begin_inset CommandInset ref
23520 LatexCommand ref
23521 reference "tab:cap-beside-tab"
23522
23523 \end_inset
23524
23525  sind Beispiele für seitliche Beschriftungen.
23526 \end_layout
23527
23528 \begin_layout Standard
23529 Sie sehen, dass die Beschriftung bei Gleitobjekt-Tabellen am oberen Rand
23530  der Tabelle gedruckt wird und bei Gleitobjekt-Abbildungen am unteren Rand
23531  der Abbildung.
23532  Das kann man mit dem Befehl
23533 \end_layout
23534
23535 \begin_layout Standard
23536
23537 \series bold
23538
23539 \backslash
23540 sidecaptionvpos{Gleitobjekt-Typ}{Platzierung}
23541 \end_layout
23542
23543 \begin_layout Standard
23544 im LaTeX-Vorspann oder als TeX-Code vor dem Gleitobjekt ändern.
23545  Der Gleitobjekt-Typ ist entweder 
23546 \family sans
23547 figure
23548 \family default
23549  oder 
23550 \family sans
23551 table
23552 \family default
23553 , die
23554 \family sans
23555  
23556 \family default
23557 Platzierung ist 
23558 \family typewriter
23559 t
23560 \family default
23561  für oben, 
23562 \family typewriter
23563 c
23564 \family default
23565  für zentriert oder 
23566 \family typewriter
23567 b
23568 \family default
23569  für unten.
23570  Um die Beschriftung einer Gleitobjekt-Abbildung vertikal zu zentrieren,
23571  lautet der Befehl
23572 \end_layout
23573
23574 \begin_layout Standard
23575
23576 \series bold
23577
23578 \backslash
23579 sidecaptionvpos{figure}{c}
23580 \end_layout
23581
23582 \begin_layout Standard
23583 Das wurde in Abbildung
23584 \begin_inset Space ~
23585 \end_inset
23586
23587
23588 \begin_inset CommandInset ref
23589 LatexCommand ref
23590 reference "abb:cap-beside-fig-2"
23591
23592 \end_inset
23593
23594  benutzt.
23595 \end_layout
23596
23597 \begin_layout Standard
23598 \begin_inset VSpace medskip
23599 \end_inset
23600
23601 Weitere Informationen über das Paket
23602 \series bold
23603  sidecap
23604 \series default
23605  finden Sie in seiner Dokumentation 
23606 \begin_inset CommandInset citation
23607 LatexCommand cite
23608 key "sidecap"
23609
23610 \end_inset
23611
23612 .
23613 \end_layout
23614
23615 \begin_layout Standard
23616 \begin_inset Note Greyedout
23617 status open
23618
23619 \begin_layout Plain Layout
23620
23621 \series bold
23622 Bemerkung:
23623 \series default
23624  Das LaTeX-Paket 
23625 \series bold
23626 hypcap
23627 \series default
23628
23629 \begin_inset Index
23630 status collapsed
23631
23632 \begin_layout Plain Layout
23633 LaTeX-Pakete ! hypcap
23634 \end_layout
23635
23636 \end_inset
23637
23638  das in Abschnitt
23639 \begin_inset Space ~
23640 \end_inset
23641
23642
23643 \begin_inset CommandInset ref
23644 LatexCommand ref
23645 reference "uab:Querverweis-Position"
23646
23647 \end_inset
23648
23649  beschrieben wurde, hat keine Auswirkungen auf Gleitobjekte mit seitlichen
23650  Beschriftungen.
23651 \end_layout
23652
23653 \end_inset
23654
23655
23656 \end_layout
23657
23658 \begin_layout Standard
23659 \begin_inset ERT
23660 status collapsed
23661
23662 \begin_layout Plain Layout
23663
23664
23665 \backslash
23666 FigBesBeg 
23667 \end_layout
23668
23669 \end_inset
23670
23671
23672 \end_layout
23673
23674 \begin_layout Standard
23675 \begin_inset Float figure
23676 wide false
23677 sideways false
23678 status open
23679
23680 \begin_layout Plain Layout
23681 \begin_inset Graphics
23682         filename ../clipart/escher-lsd.eps
23683         scale 75
23684         scaleBeforeRotation
23685
23686 \end_inset
23687
23688
23689 \end_layout
23690
23691 \begin_layout Plain Layout
23692 \begin_inset Caption
23693
23694 \begin_layout Plain Layout
23695 \begin_inset CommandInset label
23696 LatexCommand label
23697 name "abb:Beschriftung-neben"
23698
23699 \end_inset
23700
23701 Dies ist eine Beschriftung neben einer Abbildung.
23702 \end_layout
23703
23704 \end_inset
23705
23706
23707 \end_layout
23708
23709 \end_inset
23710
23711
23712 \end_layout
23713
23714 \begin_layout Standard
23715 \begin_inset ERT
23716 status collapsed
23717
23718 \begin_layout Plain Layout
23719
23720
23721 \backslash
23722 TabBesBeg 
23723 \end_layout
23724
23725 \end_inset
23726
23727
23728 \end_layout
23729
23730 \begin_layout Standard
23731 \begin_inset Float table
23732 wide false
23733 sideways false
23734 status open
23735
23736 \begin_layout Plain Layout
23737 \begin_inset Caption
23738
23739 \begin_layout Plain Layout
23740 \begin_inset CommandInset label
23741 LatexCommand label
23742 name "tab:cap-beside-tab"
23743
23744 \end_inset
23745
23746 Dies ist eine Beschriftung neben einer Tabelle.
23747 \end_layout
23748
23749 \end_inset
23750
23751
23752 \end_layout
23753
23754 \begin_layout Plain Layout
23755 \begin_inset Tabular
23756 <lyxtabular version="3" rows="4" columns="5">
23757 <features>
23758 <column alignment="center" valignment="top" width="0">
23759 <column alignment="center" valignment="top" width="0">
23760 <column alignment="center" valignment="top" width="0">
23761 <column alignment="center" valignment="top" width="0">
23762 <column alignment="center" valignment="top" width="0">
23763 <row>
23764 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23765 \begin_inset Text
23766
23767 \begin_layout Plain Layout
23768 a
23769 \end_layout
23770
23771 \end_inset
23772 </cell>
23773 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23774 \begin_inset Text
23775
23776 \begin_layout Plain Layout
23777
23778 \end_layout
23779
23780 \end_inset
23781 </cell>
23782 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23783 \begin_inset Text
23784
23785 \begin_layout Plain Layout
23786 b
23787 \end_layout
23788
23789 \end_inset
23790 </cell>
23791 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23792 \begin_inset Text
23793
23794 \begin_layout Plain Layout
23795
23796 \end_layout
23797
23798 \end_inset
23799 </cell>
23800 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23801 \begin_inset Text
23802
23803 \begin_layout Plain Layout
23804 c
23805 \end_layout
23806
23807 \end_inset
23808 </cell>
23809 </row>
23810 <row>
23811 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23812 \begin_inset Text
23813
23814 \begin_layout Plain Layout
23815
23816 \end_layout
23817
23818 \end_inset
23819 </cell>
23820 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23821 \begin_inset Text
23822
23823 \begin_layout Plain Layout
23824 d
23825 \end_layout
23826
23827 \end_inset
23828 </cell>
23829 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23830 \begin_inset Text
23831
23832 \begin_layout Plain Layout
23833
23834 \end_layout
23835
23836 \end_inset
23837 </cell>
23838 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23839 \begin_inset Text
23840
23841 \begin_layout Plain Layout
23842 e
23843 \end_layout
23844
23845 \end_inset
23846 </cell>
23847 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23848 \begin_inset Text
23849
23850 \begin_layout Plain Layout
23851
23852 \end_layout
23853
23854 \end_inset
23855 </cell>
23856 </row>
23857 <row>
23858 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23859 \begin_inset Text
23860
23861 \begin_layout Plain Layout
23862 f
23863 \end_layout
23864
23865 \end_inset
23866 </cell>
23867 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23868 \begin_inset Text
23869
23870 \begin_layout Plain Layout
23871
23872 \end_layout
23873
23874 \end_inset
23875 </cell>
23876 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23877 \begin_inset Text
23878
23879 \begin_layout Plain Layout
23880 g
23881 \end_layout
23882
23883 \end_inset
23884 </cell>
23885 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23886 \begin_inset Text
23887
23888 \begin_layout Plain Layout
23889
23890 \end_layout
23891
23892 \end_inset
23893 </cell>
23894 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23895 \begin_inset Text
23896
23897 \begin_layout Plain Layout
23898 h
23899 \end_layout
23900
23901 \end_inset
23902 </cell>
23903 </row>
23904 <row>
23905 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23906 \begin_inset Text
23907
23908 \begin_layout Plain Layout
23909
23910 \end_layout
23911
23912 \end_inset
23913 </cell>
23914 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23915 \begin_inset Text
23916
23917 \begin_layout Plain Layout
23918 i
23919 \end_layout
23920
23921 \end_inset
23922 </cell>
23923 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23924 \begin_inset Text
23925
23926 \begin_layout Plain Layout
23927
23928 \end_layout
23929
23930 \end_inset
23931 </cell>
23932 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23933 \begin_inset Text
23934
23935 \begin_layout Plain Layout
23936 j
23937 \end_layout
23938
23939 \end_inset
23940 </cell>
23941 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23942 \begin_inset Text
23943
23944 \begin_layout Plain Layout
23945
23946 \end_layout
23947
23948 \end_inset
23949 </cell>
23950 </row>
23951 </lyxtabular>
23952
23953 \end_inset
23954
23955
23956 \end_layout
23957
23958 \end_inset
23959
23960
23961 \end_layout
23962
23963 \begin_layout Standard
23964 \begin_inset ERT
23965 status collapsed
23966
23967 \begin_layout Plain Layout
23968
23969
23970 \backslash
23971 TabBesEnd
23972 \end_layout
23973
23974 \end_inset
23975
23976
23977 \end_layout
23978
23979 \begin_layout Standard
23980 \begin_inset ERT
23981 status collapsed
23982
23983 \begin_layout Plain Layout
23984
23985
23986 \backslash
23987 sidecaptionvpos{figure}{c}
23988 \end_layout
23989
23990 \end_inset
23991
23992
23993 \begin_inset Float figure
23994 wide false
23995 sideways false
23996 status open
23997
23998 \begin_layout Plain Layout
23999 \begin_inset Graphics
24000         filename ../clipart/escher-lsd.eps
24001         scale 75
24002         scaleBeforeRotation
24003
24004 \end_inset
24005
24006
24007 \end_layout
24008
24009 \begin_layout Plain Layout
24010 \begin_inset Caption
24011
24012 \begin_layout Plain Layout
24013 \begin_inset CommandInset label
24014 LatexCommand label
24015 name "abb:cap-beside-fig-2"
24016
24017 \end_inset
24018
24019 Dies ist eine vertikal zentrierte Beschriftung neben einer Abbildung.
24020 \end_layout
24021
24022 \end_inset
24023
24024
24025 \end_layout
24026
24027 \end_inset
24028
24029
24030 \end_layout
24031
24032 \begin_layout Standard
24033 \begin_inset ERT
24034 status collapsed
24035
24036 \begin_layout Plain Layout
24037
24038
24039 \backslash
24040 FigBesEnd
24041 \end_layout
24042
24043 \end_inset
24044
24045
24046 \end_layout
24047
24048 \begin_layout Standard
24049 \begin_inset ERT
24050 status collapsed
24051
24052 \begin_layout Plain Layout
24053
24054
24055 \backslash
24056 else
24057 \end_layout
24058
24059 \end_inset
24060
24061
24062 \begin_inset Note Note
24063 status open
24064
24065 \begin_layout Plain Layout
24066 Der folgende Hinweis wird gedruckt, wenn das LaTeX-Paket 
24067 \series bold
24068 sidecap
24069 \series default
24070  nicht installiert ist:
24071 \end_layout
24072
24073 \end_inset
24074
24075
24076 \end_layout
24077
24078 \begin_layout Standard
24079 Das LaTeX-Paket 
24080 \series bold
24081 sidecap
24082 \series default
24083  muss installiert sein, um den folgenden Abschnitt in der Ausgabe zu sehen.
24084 \end_layout
24085
24086 \begin_layout Standard
24087 \begin_inset ERT
24088 status collapsed
24089
24090 \begin_layout Plain Layout
24091
24092
24093 \backslash
24094 fi
24095 \end_layout
24096
24097 \end_inset
24098
24099
24100 \end_layout
24101
24102 \begin_layout Section
24103 Gleitobjekt-Verzeichnisse
24104 \begin_inset CommandInset label
24105 LatexCommand label
24106 name "abs:Gleitobjekt-Verzeichnisse"
24107
24108 \end_inset
24109
24110
24111 \begin_inset Index
24112 status collapsed
24113
24114 \begin_layout Plain Layout
24115 Gleitobjekte ! Verzeichnisse
24116 \end_layout
24117
24118 \end_inset
24119
24120
24121 \end_layout
24122
24123 \begin_layout Standard
24124 Ähnlich wie das Inhaltsverzeichnis gibt es Gleitobjekt-Verzeichnisse.
24125  Sie können mit den Untermenüs von 
24126 \family sans
24127 Einfügen\SpecialChar \menuseparator
24128 Liste
24129 \begin_inset Space ~
24130 \end_inset
24131
24132 /
24133 \begin_inset Space ~
24134 \end_inset
24135
24136 Inhaltsverzeichnis
24137 \family default
24138  eingefügt werden.
24139 \end_layout
24140
24141 \begin_layout Standard
24142 Die Einträge in diesen Verzeichnissen sind die Beschriftungen der Gleitobjekte
24143  oder ihre Kurztitel, die Gleitobjekt-Nummer und die Seitennummer.
24144 \end_layout
24145
24146 \begin_layout Standard
24147 In diesem Dokument finden Sie außer dem Inhaltsverzeichnis ein Abbildungs-
24148  und ein Tabellen-Verzeichnis.
24149 \end_layout
24150
24151 \begin_layout Chapter
24152 Notizen
24153 \end_layout
24154
24155 \begin_layout Section
24156 LyX-Notizen
24157 \begin_inset CommandInset label
24158 LatexCommand label
24159 name "abs:LyX-Notizen"
24160
24161 \end_inset
24162
24163
24164 \begin_inset Index
24165 status collapsed
24166
24167 \begin_layout Plain Layout
24168 Notizen ! LyX-Notizen
24169 \end_layout
24170
24171 \end_inset
24172
24173
24174 \end_layout
24175
24176 \begin_layout Standard
24177 Notizen werden mit einem Klick auf 
24178 \begin_inset Graphics
24179         filename ../../images/note-insert.png
24180         scale 85
24181         scaleBeforeRotation
24182         BoundingBox 0bp 6bp 22bp 22bp
24183
24184 \end_inset
24185
24186  oder 
24187 \family sans
24188 Einfügen\SpecialChar \menuseparator
24189 Notiz
24190 \family default
24191  eingefügt.
24192  Es gibt drei Arten:
24193 \end_layout
24194
24195 \begin_layout Description
24196 LyX-Notiz: Dieser Typ ist für interne Notizen wird nicht gedruckt.
24197  Eine 
24198 \family sans
24199 LyX-Notiz
24200 \family default
24201  sieht so aus:
24202 \begin_inset Newline newline
24203 \end_inset
24204
24205
24206 \begin_inset Newline newline
24207 \end_inset
24208
24209
24210 \begin_inset Graphics
24211         filename clipart/LyXNotizQt4.png
24212         display none
24213         scale 60
24214         scaleBeforeRotation
24215
24216 \end_inset
24217
24218  
24219 \begin_inset Note Note
24220 status open
24221
24222 \begin_layout Plain Layout
24223 Dies ist Text in einem Notiz-Kästchen, der nicht gedruckt wird.
24224 \end_layout
24225
24226 \end_inset
24227
24228
24229 \end_layout
24230
24231 \begin_layout Description
24232 Kommentar: Diese Notiz wird auch nicht gedruckt, aber sie als LaTeX-Kom\SpecialChar \-
24233 men\SpecialChar \-
24234 tar,
24235  wenn Sie das Dokument nach LaTeX exportieren (
24236 \family sans
24237 Datei\SpecialChar \menuseparator
24238 Ex\SpecialChar \-
24239 por\SpecialChar \-
24240 tie\SpecialChar \-
24241 ren\SpecialChar \menuseparator
24242 LaTe
24243 \begin_inset ERT
24244 status collapsed
24245
24246 \begin_layout Plain Layout
24247
24248 {}
24249 \end_layout
24250
24251 \end_inset
24252
24253 X (pdflatex) / (plain)
24254 \family default
24255 .
24256  Ein Kommentar sieht so aus:
24257 \begin_inset Newline newline
24258 \end_inset
24259
24260
24261 \begin_inset Newline newline
24262 \end_inset
24263
24264
24265 \begin_inset Graphics
24266         filename clipart/KommentarQt4.png
24267         display none
24268         scale 60
24269         scaleBeforeRotation
24270
24271 \end_inset
24272
24273  
24274 \begin_inset Note Comment
24275 status open
24276
24277 \begin_layout Plain Layout
24278 Dies ist ein Kommentar, der nicht gedruckt, aber exportiert wird.
24279 \end_layout
24280
24281 \end_inset
24282
24283
24284 \end_layout
24285
24286 \begin_layout Description
24287 Grauschrift: Diese Notiz wird grau gedruckt und sieht so aus:
24288 \begin_inset Newline newline
24289 \end_inset
24290
24291
24292 \begin_inset Newline newline
24293 \end_inset
24294
24295
24296 \begin_inset Graphics
24297         filename clipart/GrauschriftNotizQt4.png
24298         display none
24299         scale 60
24300         scaleBeforeRotation
24301
24302 \end_inset
24303
24304
24305 \begin_inset Newline newline
24306 \end_inset
24307
24308
24309 \begin_inset ERT
24310 status collapsed
24311
24312 \begin_layout Plain Layout
24313
24314
24315 \backslash
24316 renewenvironment{lyxgreyedout}
24317 \end_layout
24318
24319 \begin_layout Plain Layout
24320
24321 {
24322 \backslash
24323 textcolor[gray]{0.4}
24324 \backslash
24325 bgroup}{
24326 \backslash
24327 egroup}
24328 \end_layout
24329
24330 \end_inset
24331
24332
24333 \begin_inset Note Greyedout
24334 status open
24335
24336 \begin_layout Plain Layout
24337 Dies ist eine Grauschrift-Notiz mit einer Fußnote.
24338 \begin_inset Foot
24339 status open
24340
24341 \begin_layout Plain Layout
24342 Dies ist eine Fußnote in einer Grauschrift-Notiz.
24343 \end_layout
24344
24345 \end_inset
24346
24347
24348 \end_layout
24349
24350 \end_inset
24351
24352
24353 \begin_inset ERT
24354 status collapsed
24355
24356 \begin_layout Plain Layout
24357
24358
24359 \backslash
24360 renewenvironment{lyxgreyedout}
24361 \end_layout
24362
24363 \begin_layout Plain Layout
24364
24365 {
24366 \backslash
24367 textcolor{blue}
24368 \backslash
24369 bgroup}{
24370 \backslash
24371 egroup}
24372 \end_layout
24373
24374 \end_inset
24375
24376
24377 \begin_inset Note Note
24378 status collapsed
24379
24380 \begin_layout Plain Layout
24381 Die Grauschrift-Notiz wurde (fast) auf die ursprüngliche LyX-Definition
24382  zurückgesetzt, weil Grauschriften im LaTeX-Vorspann dieses Dokuments blau
24383  definiert wurden.
24384  
24385 \end_layout
24386
24387 \end_inset
24388
24389
24390 \begin_inset Newline newline
24391 \end_inset
24392
24393
24394 \begin_inset Newline newline
24395 \end_inset
24396
24397 Das Beispiel zeigt,dass die erste Zeile von Grauschrift-Notizen wird eingerückt
24398  wird und dass Grauschrift-Notizen können Fußnoten enthalten können.
24399 \end_layout
24400
24401 \begin_layout Description
24402 Eingerahmt: Diese Notiz wird gerahmt gedruckt und sieht so aus:
24403 \begin_inset Newline newline
24404 \end_inset
24405
24406
24407 \begin_inset Newline newline
24408 \end_inset
24409
24410
24411 \begin_inset Graphics
24412         filename clipart/GerahmteNotizQt4.png
24413         display none
24414         scale 60
24415         scaleBeforeRotation
24416
24417 \end_inset
24418
24419
24420 \begin_inset Box Framed
24421 position "t"
24422 hor_pos "c"
24423 has_inner_box 0
24424 inner_pos "t"
24425 use_parbox 0
24426 width "100col%"
24427 special "none"
24428 height "1in"
24429 height_special "totalheight"
24430 status open
24431
24432 \begin_layout Plain Layout
24433 Dies ist eine Notiz, die gerahmt gedruckt wird.
24434 \end_layout
24435
24436 \end_inset
24437
24438 Im Gegensatz zu gerahmten Boxen
24439 \begin_inset Foot
24440 status open
24441
24442 \begin_layout Plain Layout
24443 Gerahmte Boxen werden in Abschnitt
24444 \begin_inset Space ~
24445 \end_inset
24446
24447
24448 \begin_inset CommandInset ref
24449 LatexCommand ref
24450 reference "abs:Gerahmte-Boxen"
24451
24452 \end_inset
24453
24454  beschrieben.
24455 \end_layout
24456
24457 \end_inset
24458
24459  wird der Rahmen immer über die gesamte Zeilenbreite gezeichnet, und die
24460  Notiz ist ein Absatz für sich.
24461  
24462 \end_layout
24463
24464 \begin_layout Description
24465 Schattiert: Diese Notiz müsste eigentlich 
24466 \family sans
24467 farbig
24468 \family default
24469  heißen und wird auf dem Hintergrund dargestellt und gedruckt, der in 
24470 \family sans
24471 Werkzeuge\SpecialChar \menuseparator
24472 Einstellungen\SpecialChar \menuseparator
24473 Farben\SpecialChar \menuseparator
24474 Schat\SpecialChar \-
24475 tier\SpecialChar \-
24476 te
24477 \begin_inset Space \space{}
24478 \end_inset
24479
24480 Box
24481 \family default
24482  definiert ist, und sieht so aus:
24483 \begin_inset Newline newline
24484 \end_inset
24485
24486
24487 \begin_inset Newline newline
24488 \end_inset
24489
24490
24491 \begin_inset Graphics
24492         filename clipart/SchattierteNotizQt4.png
24493         display none
24494         scale 60
24495         scaleBeforeRotation
24496
24497 \end_inset
24498
24499
24500 \begin_inset Box Shaded
24501 position "t"
24502 hor_pos "c"
24503 has_inner_box 0
24504 inner_pos "t"
24505 use_parbox 0
24506 width "100col%"
24507 special "none"
24508 height "1in"
24509 height_special "totalheight"
24510 status open
24511
24512 \begin_layout Plain Layout
24513 Diese Notiz wird auf einem farbigen Hintergrund gedruckt.
24514 \end_layout
24515
24516 \end_inset
24517
24518 Im Gegensatz zu farbigen Boxen
24519 \begin_inset Foot
24520 status collapsed
24521
24522 \begin_layout Plain Layout
24523 Farbige Boxen werden in Abschnitt
24524 \begin_inset Space ~
24525 \end_inset
24526
24527
24528 \begin_inset CommandInset ref
24529 LatexCommand ref
24530 reference "abs:Farbige-Boxen"
24531
24532 \end_inset
24533
24534  beschrieben.
24535 \end_layout
24536
24537 \end_inset
24538
24539  wird der Hintergrund immer über die gesamte Zeilenbreite gedruckt, und
24540  die Notiz ist ein Absatz für sich.
24541 \end_layout
24542
24543 \begin_layout Standard
24544 \begin_inset VSpace bigskip
24545 \end_inset
24546
24547 Wenn Sie auf den Werzeugleistenknopf 
24548 \begin_inset Graphics
24549         filename ../../images/note-insert.png
24550         scale 85
24551         scaleBeforeRotation
24552         BoundingBox 0bp 6bp 22bp 22bp
24553
24554 \end_inset
24555
24556  klicken, wird zunächst eine 
24557 \family sans
24558 LyX-Notiz
24559 \family default
24560  eingefügt.
24561  Mit einem Rechts-Klick auf das Notiz-Kästchen können Sie eine der vier
24562  anderen Möglichkeiten auswählen.
24563  Wenn Sie einen vorhandenen Text in eine Notiz verwandeln wollen, markieren
24564  Sie ihn und klicken dann auf den Werzeugleistenknopf.
24565  Um eine Notiz in Text zu verwandeln, drücken Sie die Backspace Taste, wenn
24566  der Cursor am Beginn der Notiz ist oder die Entfernen Taste, wenn der Cursor
24567  am Ende der Notiz ist.
24568 \end_layout
24569
24570 \begin_layout Standard
24571 \begin_inset VSpace bigskip
24572 \end_inset
24573
24574 Die Textfarbe der 
24575 \family sans
24576 Grauschrift
24577 \family default
24578 -Notiz können Sie im LaTeX-Vorspann mit folgenden Befehl ändern:
24579 \end_layout
24580
24581 \begin_layout Standard
24582
24583 \series bold
24584
24585 \backslash
24586 renewenvironment{lyxgreyedout}
24587 \begin_inset Newline newline
24588 \end_inset
24589
24590
24591 \begin_inset ERT
24592 status collapsed
24593
24594 \begin_layout Plain Layout
24595
24596
24597 \backslash
24598 hphantom{ }
24599 \end_layout
24600
24601 \end_inset
24602
24603 {
24604 \backslash
24605 textcolor{color}
24606 \backslash
24607 bgroup}{
24608 \backslash
24609 egroup}
24610 \end_layout
24611
24612 \begin_layout Standard
24613 Die verfügbaren Farben und wie man eigene definiert wurde bereits in Abschnitt
24614 \begin_inset Space ~
24615 \end_inset
24616
24617
24618 \begin_inset CommandInset ref
24619 LatexCommand ref
24620 reference "abs:Farbige-Tabellen"
24621
24622 \end_inset
24623
24624  beschrieben.
24625  In diesem Dokument werden die Grauschrift-Notizen blau gedruckt.
24626 \end_layout
24627
24628 \begin_layout Standard
24629 \begin_inset VSpace bigskip
24630 \end_inset
24631
24632 Der Textstil von 
24633 \family sans
24634 Eingerahmt
24635 \family default
24636  und 
24637 \family sans
24638 Schattiert
24639 \family default
24640  kann im 
24641 \family sans
24642 Textstil
24643 \family default
24644  Dialog eingestellt werden.
24645 \end_layout
24646
24647 \begin_layout Standard
24648 Die Standard-Rahmenbreite für 
24649 \family sans
24650 Eingerahmt
24651 \family default
24652  ist 0.4
24653 \begin_inset Space \thinspace{}
24654 \end_inset
24655
24656 pt; sie kann mit 
24657 \series bold
24658
24659 \backslash
24660 FrameRule
24661 \series default
24662  geändert werden.
24663  Der Standard-Abstand zwischen Rahmen und Text ist 9
24664 \begin_inset Space \thinspace{}
24665 \end_inset
24666
24667 pt; er kann mit 
24668 \series bold
24669
24670 \backslash
24671 FrameSep
24672 \series default
24673  geändert werden.
24674  Im folgenden Beispiel wurden die die Standardwerte mit folgenden Befehlen
24675  als TeX-Code geändert:
24676 \end_layout
24677
24678 \begin_layout Standard
24679
24680 \series bold
24681
24682 \backslash
24683 FrameRule 5pt 
24684 \backslash
24685 FrameSep 0.5cm
24686 \end_layout
24687
24688 \begin_layout Standard
24689 \begin_inset ERT
24690 status collapsed
24691
24692 \begin_layout Plain Layout
24693
24694
24695 \backslash
24696 FrameRule 5pt 
24697 \backslash
24698 FrameSep 0.5cm
24699 \end_layout
24700
24701 \end_inset
24702
24703
24704 \begin_inset Box Framed
24705 position "t"
24706 hor_pos "c"
24707 has_inner_box 0
24708 inner_pos "t"
24709 use_parbox 0
24710 width "100col%"
24711 special "none"
24712 height "1in"
24713 height_special "totalheight"
24714 status open
24715
24716 \begin_layout Plain Layout
24717 Dies ist Text in einem anderen Rahmen.
24718 \end_layout
24719
24720 \end_inset
24721
24722
24723 \end_layout
24724
24725 \begin_layout Standard
24726 \begin_inset ERT
24727 status collapsed
24728
24729 \begin_layout Plain Layout
24730
24731
24732 \backslash
24733 FrameRule 0.4pt 
24734 \backslash
24735 FrameSep 9pt
24736 \end_layout
24737
24738 \end_inset
24739
24740
24741 \end_layout
24742
24743 \begin_layout Standard
24744 \begin_inset VSpace bigskip
24745 \end_inset
24746
24747 Für 
24748 \family sans
24749 Schattiert
24750 \family default
24751  beträgt der Abstand zwischen Rand und Text 3
24752 \begin_inset Space \thinspace{}
24753 \end_inset
24754
24755 pt; er kann mit 
24756 \series bold
24757
24758 \backslash
24759 fboxsep
24760 \series default
24761  geändert werden.
24762  Die Standard-Hintergrundfarbe ist rot und kann mit 
24763 \series bold
24764
24765 \backslash
24766 definecolor{shadebox}
24767 \series default
24768  oder 
24769 \family sans
24770 Werkzeuge\SpecialChar \menuseparator
24771 Einstellungen\SpecialChar \menuseparator
24772 Farben\SpecialChar \menuseparator
24773 Schattierte
24774 \begin_inset Space ~
24775 \end_inset
24776
24777 Box
24778 \family default
24779  geändert werden.
24780  Die verfügbaren Farben und wie man eigene definiert wurde bereits in Abschnitt
24781 \begin_inset Space ~
24782 \end_inset
24783
24784
24785 \begin_inset CommandInset ref
24786 LatexCommand ref
24787 reference "abs:Farbige-Tabellen"
24788
24789 \end_inset
24790
24791  beschrieben
24792 \begin_inset Foot
24793 status collapsed
24794
24795 \begin_layout Plain Layout
24796
24797 \series bold
24798
24799 \backslash
24800 definecolor
24801 \series default
24802  benötigt LaTeX-Paket 
24803 \series bold
24804 color
24805 \series default
24806
24807 \begin_inset Index
24808 status collapsed
24809
24810 \begin_layout Plain Layout
24811 LaTeX-Pakete ! color
24812 \end_layout
24813
24814 \end_inset
24815
24816  im LaTeX-Vorspann, siehe Abschnitt
24817 \begin_inset Space ~
24818 \end_inset
24819
24820
24821 \begin_inset CommandInset ref
24822 LatexCommand ref
24823 reference "abs:Farbige-Boxen"
24824
24825 \end_inset
24826
24827 .
24828 \end_layout
24829
24830 \end_inset
24831
24832 .
24833 \end_layout
24834
24835 \begin_layout Standard
24836 Für das folgende Beispiel wurden folgende TeX-Code-Befehle verwendet:
24837 \end_layout
24838
24839 \begin_layout Standard
24840
24841 \series bold
24842
24843 \backslash
24844 fboxsep 0.5cm
24845 \begin_inset Newline newline
24846 \end_inset
24847
24848
24849 \backslash
24850 definecolor{shadecolor}{cmyk}{0.5,0,1,0.5}
24851 \end_layout
24852
24853 \begin_layout Standard
24854 \begin_inset ERT
24855 status collapsed
24856
24857 \begin_layout Plain Layout
24858
24859
24860 \backslash
24861 fboxsep 0.5cm
24862 \end_layout
24863
24864 \end_inset
24865
24866
24867 \begin_inset ERT
24868 status collapsed
24869
24870 \begin_layout Plain Layout
24871
24872
24873 \backslash
24874 definecolor{shadecolor}{cmyk}{0.5,0,1,0.5}
24875 \end_layout
24876
24877 \end_inset
24878
24879
24880 \begin_inset Box Shaded
24881 position "t"
24882 hor_pos "c"
24883 has_inner_box 0
24884 inner_pos "t"
24885 use_parbox 0
24886 width "100col%"
24887 special "none"
24888 height "1in"
24889 height_special "totalheight"
24890 status open
24891
24892 \begin_layout Plain Layout
24893
24894 \color yellow
24895 Dies ist gelber Text auf dunkelgrünem Hintergrund.
24896 \end_layout
24897
24898 \end_inset
24899
24900
24901 \end_layout
24902
24903 \begin_layout Standard
24904 \begin_inset ERT
24905 status collapsed
24906
24907 \begin_layout Plain Layout
24908
24909
24910 \backslash
24911 fboxsep 3pt
24912 \end_layout
24913
24914 \end_inset
24915
24916
24917 \begin_inset ERT
24918 status collapsed
24919
24920 \begin_layout Plain Layout
24921
24922
24923 \backslash
24924 definecolor{shadecolor}{rgb}{1,0,0}
24925 \end_layout
24926
24927 \end_inset
24928
24929
24930 \end_layout
24931
24932 \begin_layout Section
24933 Fußnoten
24934 \begin_inset CommandInset label
24935 LatexCommand label
24936 name "abs:Fußnoten"
24937
24938 \end_inset
24939
24940
24941 \begin_inset Index
24942 status collapsed
24943
24944 \begin_layout Plain Layout
24945 Notizen ! Fußnoten
24946 \end_layout
24947
24948 \end_inset
24949
24950
24951 \begin_inset Index
24952 status collapsed
24953
24954 \begin_layout Plain Layout
24955 Fußnoten
24956 \end_layout
24957
24958 \end_inset
24959
24960
24961 \end_layout
24962
24963 \begin_layout Standard
24964 Zu dem, was bereits im 
24965 \emph on
24966 Benutzerhandbuch
24967 \emph default
24968  über Fußnoten geschrieben wurde, folgen hier noch ein paar Anmerkungen.
24969 \color black
24970
24971 \begin_inset Foot
24972 status open
24973
24974 \begin_layout Plain Layout
24975
24976 \color black
24977 \begin_inset CommandInset label
24978 LatexCommand label
24979 name "fuss:Fußnoten-Beispiel"
24980
24981 \end_inset
24982
24983 Dies ist eine Fußnote.
24984 \end_layout
24985
24986 \end_inset
24987
24988
24989 \end_layout
24990
24991 \begin_layout Standard
24992 \begin_inset ERT
24993 status collapsed
24994
24995 \begin_layout Plain Layout
24996
24997
24998 \backslash
24999 newcounter{MyRepeatFoot}
25000 \end_layout
25001
25002 \begin_layout Plain Layout
25003
25004
25005 \backslash
25006 setcounter{MyRepeatFoot}{
25007 \backslash
25008 thefootnote}
25009 \end_layout
25010
25011 \end_inset
25012
25013
25014 \end_layout
25015
25016 \begin_layout Standard
25017 In der druckfertigen Ausgabe erscheint an der Stelle, wo die Fußnote eingefügt
25018  wurde, eine hochgestellte Zahl.
25019  Der Fußnotentext wird am Seitenende gedruckt, wobei die Fußnotennummer
25020  hochgestellt dem Text vorangeht.
25021  Die Fußnotennummern werden von LaTeX berechnet und sind fortlaufend.
25022  Es hängt von der Dokumentklasse ab, ob sie in jedem Kapitel zurückgesetzt
25023  werden.
25024 \end_layout
25025
25026 \begin_layout Standard
25027 Auf Fußnoten kann wie auf andere Gleitobjekte verwiesen werden, wenn in
25028  der Fußnote eine Marke eingefügt wurde.
25029  Dies ist ein Querverweis auf Fußnote
25030 \begin_inset Space ~
25031 \end_inset
25032
25033
25034 \begin_inset CommandInset ref
25035 LatexCommand ref
25036 reference "fuss:Fußnoten-Beispiel"
25037
25038 \end_inset
25039
25040 .
25041 \end_layout
25042
25043 \begin_layout Standard
25044 Um Fußnoten in Tabellen zu benutzen, müssen Sie eine Minipage verwenden,
25045  siehe Abschnitt
25046 \begin_inset Space ~
25047 \end_inset
25048
25049
25050 \begin_inset CommandInset ref
25051 LatexCommand ref
25052 reference "abs:Minipage"
25053
25054 \end_inset
25055
25056 .
25057  Fußnoten in langen Tabellen wurden bereits in Abschnitt
25058 \begin_inset Space ~
25059 \end_inset
25060
25061
25062 \begin_inset CommandInset ref
25063 LatexCommand ref
25064 reference "uab:Fußnoten-in-langen"
25065
25066 \end_inset
25067
25068  beschrieben.
25069 \end_layout
25070
25071 \begin_layout Standard
25072 Wenn Sie nur eine Marke für eine Fußnote definieren wollen, können Sie den
25073  TeX-Code-Befehl 
25074 \series bold
25075
25076 \backslash
25077 footnotemark[Nummer]
25078 \series default
25079  benutzen.
25080  Dann können Sie diese Marke mehrmals verwenden, ohne dass die Fußnote jedes
25081  mal gedruckt wird.
25082 \end_layout
25083
25084 \begin_layout Standard
25085 Weil Sie die Nummer der Fußnote nicht im Voraus wissen können, müssen Sie
25086  sie speichern, nachdem Sie die Fußnote eingefügt haben.
25087  Hinter Fußnote
25088 \begin_inset Space ~
25089 \end_inset
25090
25091
25092 \begin_inset CommandInset ref
25093 LatexCommand ref
25094 reference "fuss:Fußnoten-Beispiel"
25095
25096 \end_inset
25097
25098  wurde das mit folgenden TeX-Code-Befehlen gemacht:
25099 \end_layout
25100
25101 \begin_layout Standard
25102
25103 \series bold
25104
25105 \backslash
25106 newcounter{MyRepeatFoot}
25107 \begin_inset Newline newline
25108 \end_inset
25109
25110
25111 \backslash
25112 setcounter{MyRepeatFoot}{
25113 \backslash
25114 thefootnote}
25115 \end_layout
25116
25117 \begin_layout Standard
25118 Die Fußnotenmarke wurde dann mit diesem TeX-Code-Befehl definiert;
25119 \end_layout
25120
25121 \begin_layout Standard
25122
25123 \series bold
25124
25125 \backslash
25126 footnotemark[
25127 \backslash
25128 theMyRepeatFoot]
25129 \end_layout
25130
25131 \begin_layout Standard
25132 Hier ist ein Beispiel für eine Fußnotenmarke:
25133 \family roman
25134 \series medium
25135 \bar no
25136
25137 \begin_inset ERT
25138 status collapsed
25139
25140 \begin_layout Plain Layout
25141
25142
25143 \backslash
25144 footnotemark[
25145 \backslash
25146 theMyRepeatFoot]
25147 \end_layout
25148
25149 \end_inset
25150
25151
25152 \end_layout
25153
25154 \begin_layout Subsection
25155 Fußnoten-Nummerierung
25156 \begin_inset CommandInset label
25157 LatexCommand label
25158 name "uab:Fußnoten-Nummerierung"
25159
25160 \end_inset
25161
25162
25163 \begin_inset Index
25164 status collapsed
25165
25166 \begin_layout Plain Layout
25167 Fußnoten ! Nummerierung
25168 \end_layout
25169
25170 \end_inset
25171
25172
25173 \end_layout
25174
25175 \begin_layout Standard
25176 Um Fußnoten nach jedem Abschnitt
25177 \family roman
25178  auf 1 zurückzusetzen, 
25179 \family default
25180 müssen Sie folgenden Befehl in den LaTeX-Vorspann schreiben:
25181 \end_layout
25182
25183 \begin_layout Standard
25184
25185 \series bold
25186
25187 \backslash
25188 @addtoreset{footnote}{section}
25189 \end_layout
25190
25191 \begin_layout Standard
25192 \begin_inset VSpace bigskip
25193 \end_inset
25194
25195 Der folgende Befehl ändert die Fußnoten-Nummerierung auf kleine römische
25196  Zahlen:
25197 \end_layout
25198
25199 \begin_layout Standard
25200
25201 \series bold
25202
25203 \backslash
25204 renewcommand{
25205 \backslash
25206 thefootnote}{
25207 \backslash
25208 roman{footnote}}
25209 \end_layout
25210
25211 \begin_layout Standard
25212 \begin_inset ERT
25213 status collapsed
25214
25215 \begin_layout Plain Layout
25216
25217
25218 \backslash
25219 renewcommand{
25220 \backslash
25221 thefootnote}{
25222 \backslash
25223 roman{footnote}}
25224 \end_layout
25225
25226 \end_inset
25227
25228  Hier ist ein Beispiel für solch eine Fußnote:
25229 \begin_inset Foot
25230 status open
25231
25232 \begin_layout Plain Layout
25233 Dies ist eine Fußnote mit kleinen römischen Zahlen
25234 \end_layout
25235
25236 \end_inset
25237
25238
25239 \end_layout
25240
25241 \begin_layout Standard
25242 Um den Nummerierungsstil auf große römische Zahlen zu ändern, ersetzten
25243  Sie in obigem Befehl 
25244 \series bold
25245
25246 \backslash
25247 roman
25248 \series default
25249  durch 
25250 \series bold
25251
25252 \backslash
25253 Roman
25254 \series default
25255 .
25256  Um Fußnoten mit großen oder kleinen Buchstaben zu 
25257 \begin_inset Quotes gld
25258 \end_inset
25259
25260 nummerieren
25261 \begin_inset Quotes grd
25262 \end_inset
25263
25264 , verwenden Sie die Befehle 
25265 \series bold
25266
25267 \backslash
25268 Alph
25269 \series default
25270  bzw.
25271 \begin_inset Space ~
25272 \end_inset
25273
25274
25275 \series bold
25276
25277 \backslash
25278 alph
25279 \series default
25280 .
25281  Für die 
25282 \begin_inset Quotes gld
25283 \end_inset
25284
25285 Nummerierung
25286 \begin_inset Quotes grd
25287 \end_inset
25288
25289  mit Symbolen steht der Befehl 
25290 \series bold
25291
25292 \backslash
25293 fnsymbol
25294 \series default
25295  zur Verfügung.
25296 \end_layout
25297
25298 \begin_layout Standard
25299 \begin_inset Note Greyedout
25300 status open
25301
25302 \begin_layout Plain Layout
25303
25304 \series bold
25305 Bemerkung 1:
25306 \series default
25307  Mit Buchstaben können höchstens 26 Fußnoten nummeriert werden, weil nur
25308  
25309 \emph on
25310 ein
25311 \emph default
25312  Buchstabe verwendet wird.
25313 \end_layout
25314
25315 \end_inset
25316
25317
25318 \begin_inset Newline newline
25319 \end_inset
25320
25321
25322 \begin_inset Note Greyedout
25323 status open
25324
25325 \begin_layout Plain Layout
25326
25327 \series bold
25328 Bemerkung 2:
25329 \series default
25330  Mit Symbolen können höchstens 9 Fußnoten nummeriert werden.
25331 \end_layout
25332
25333 \end_inset
25334
25335
25336 \end_layout
25337
25338 \begin_layout Standard
25339 Um zur Standard-Nummerierung zurückzukehren, verwenden Sie 
25340 \series bold
25341
25342 \backslash
25343 arabic
25344 \series default
25345  anstelle von 
25346 \series bold
25347
25348 \backslash
25349 roman
25350 \series default
25351  in obigem Befehl.
25352 \begin_inset ERT
25353 status collapsed
25354
25355 \begin_layout Plain Layout
25356
25357
25358 \backslash
25359 renewcommand{
25360 \backslash
25361 thefootnote}{
25362 \backslash
25363 arabic{footnote}}
25364 \end_layout
25365
25366 \end_inset
25367
25368
25369 \end_layout
25370
25371 \begin_layout Standard
25372 \begin_inset VSpace bigskip
25373 \end_inset
25374
25375
25376 \end_layout
25377
25378 \begin_layout Standard
25379 Wenn Sie wollen, dass Fußnoten nach dem Schema 
25380 \begin_inset Quotes gld
25381 \end_inset
25382
25383 Kapitel.Fußnote
25384 \begin_inset Quotes grd
25385 \end_inset
25386
25387  nummeriert werden, müssen Sie folgenden Befehl in den LaTeX-Vorspann schreiben:
25388 \end_layout
25389
25390 \begin_layout Standard
25391
25392 \series bold
25393
25394 \backslash
25395 numberwithin{footnote}{chapter}
25396 \end_layout
25397
25398 \begin_layout Standard
25399 Um 
25400 \series bold
25401
25402 \backslash
25403 numberwithin
25404 \series default
25405  benutzen zu können, muss in den 
25406 \family sans
25407 Mathe
25408 \begin_inset Space ~
25409 \end_inset
25410
25411 Optionen
25412 \family default
25413  der 
25414 \family sans
25415 Dokument-Einstellungen
25416 \family default
25417  
25418 \family sans
25419 AMS
25420 \begin_inset Space ~
25421 \end_inset
25422
25423 Mathe
25424 \begin_inset Space ~
25425 \end_inset
25426
25427 Paket
25428 \family default
25429
25430 \begin_inset Space ~
25431 \end_inset
25432
25433
25434 \family sans
25435 verwenden
25436 \family default
25437  angekreuzt sein.
25438 \begin_inset ERT
25439 status collapsed
25440
25441 \begin_layout Plain Layout
25442
25443
25444 \backslash
25445 numberwithin{footnote}{chapter}
25446 \end_layout
25447
25448 \end_inset
25449
25450  Hier ist ein Beispiel für solch eine Fußnote.
25451 \series bold
25452
25453 \begin_inset Foot
25454 status open
25455
25456 \begin_layout Plain Layout
25457 Dies ist eine Fußnote nach dem Schema 
25458 \begin_inset Quotes gld
25459 \end_inset
25460
25461 Kapitel.Fußnote
25462 \begin_inset Quotes grd
25463 \end_inset
25464
25465 .
25466 \end_layout
25467
25468 \end_inset
25469
25470
25471 \series default
25472
25473 \begin_inset ERT
25474 status collapsed
25475
25476 \begin_layout Plain Layout
25477
25478
25479 \backslash
25480 numberwithin{footnote}{part}
25481 \end_layout
25482
25483 \end_inset
25484
25485
25486 \end_layout
25487
25488 \begin_layout Standard
25489 \begin_inset Note Greyedout
25490 status open
25491
25492 \begin_layout Plain Layout
25493
25494 \series bold
25495 Bemerkung:
25496 \series default
25497  
25498 \series bold
25499
25500 \backslash
25501 numberwithin
25502 \series default
25503  verwendet ausschließlich arabische Ziffern für Fußnoten; vorherige Definitionen
25504  werden überschrieben.
25505 \end_layout
25506
25507 \end_inset
25508
25509
25510 \end_layout
25511
25512 \begin_layout Standard
25513 Um also z.
25514 \begin_inset Space \thinspace{}
25515 \end_inset
25516
25517 B.
25518  das Schema 
25519 \begin_inset Quotes gld
25520 \end_inset
25521
25522 Kapitel.
25523 \backslash
25524 Roman{footnote}
25525 \begin_inset Quotes grd
25526 \end_inset
25527
25528  zu erhalten, muss dieser Befehl anstelle von 
25529 \series bold
25530
25531 \backslash
25532 numberwithin
25533 \series default
25534  verwendet werden:
25535 \end_layout
25536
25537 \begin_layout Standard
25538
25539 \series bold
25540
25541 \backslash
25542 renewcommand{
25543 \backslash
25544 thefootnote}{
25545 \backslash
25546 thechapter.
25547 \backslash
25548 Roman{footnote}}
25549 \end_layout
25550
25551 \begin_layout Subsection
25552 Fußnoten-Platzierung
25553 \begin_inset Index
25554 status collapsed
25555
25556 \begin_layout Plain Layout
25557 Fußnoten ! Platzierung
25558 \end_layout
25559
25560 \end_inset
25561
25562
25563 \end_layout
25564
25565 \begin_layout Standard
25566 Wenn Sie auf einer Seite mehrere Fußnoten haben, werden sie untereinander
25567  ohne Zwischenraum am Ende der Seite gedruckt.
25568  Damit sie besser zu unterscheiden sind, kann man mit folgendem Befehl im
25569  LaTeX-Vorspann 1.5
25570 \begin_inset Space \thinspace{}
25571 \end_inset
25572
25573 mm Zwischenraum einfügen:
25574 \end_layout
25575
25576 \begin_layout Standard
25577
25578 \series bold
25579
25580 \backslash
25581 let
25582 \backslash
25583 myFoot
25584 \backslash
25585 footnote
25586 \begin_inset Newline newline
25587 \end_inset
25588
25589
25590 \backslash
25591 renewcommand{
25592 \backslash
25593 footnote}[1]{
25594 \backslash
25595 myFoot{#1
25596 \backslash
25597 vspace{1.5mm}}}
25598 \end_layout
25599
25600 \begin_layout Standard
25601 \begin_inset VSpace bigskip
25602 \end_inset
25603
25604 In einem zweispaltigen Dokument werden die Fußnoten am unteren Rand jeder
25605  Spalte gedruckt, Abbildung
25606 \begin_inset Space ~
25607 \end_inset
25608
25609
25610 \begin_inset CommandInset ref
25611 LatexCommand ref
25612 reference "abb:Standard-Fußnoten-Platzierung-in"
25613
25614 \end_inset
25615
25616 .
25617  Wenn die Fußnoten nur unter der rechten Spalte gedruckt werden sollen wie
25618  in Abbildung
25619 \begin_inset Space ~
25620 \end_inset
25621
25622
25623 \begin_inset CommandInset ref
25624 LatexCommand ref
25625 reference "abb:Fußnoten-Platzierung-in-einem"
25626
25627 \end_inset
25628
25629 , müssen Sie das LaTeX-Paket 
25630 \series bold
25631 ftnright
25632 \series default
25633
25634 \begin_inset Index
25635 status collapsed
25636
25637 \begin_layout Plain Layout
25638 LaTeX-Pakete ! ftnright
25639 \end_layout
25640
25641 \end_inset
25642
25643  mit folgendem Befehl im LaTeX-Vorspann einfügen:
25644 \end_layout
25645
25646 \begin_layout Standard
25647
25648 \series bold
25649
25650 \backslash
25651 usepackage{ftnright}
25652 \end_layout
25653
25654 \begin_layout Standard
25655 \begin_inset Float figure
25656 placement !h
25657 wide false
25658 sideways false
25659 status collapsed
25660
25661 \begin_layout Plain Layout
25662 \begin_inset ERT
25663 status collapsed
25664
25665 \begin_layout Plain Layout
25666
25667
25668 \backslash
25669 framebox{
25670 \end_layout
25671
25672 \end_inset
25673
25674
25675 \begin_inset Graphics
25676         filename ../clipart/without_fntright.pdf
25677         width 100col%
25678         scaleBeforeRotation
25679
25680 \end_inset
25681
25682
25683 \begin_inset ERT
25684 status collapsed
25685
25686 \begin_layout Plain Layout
25687
25688 }
25689 \end_layout
25690
25691 \end_inset
25692
25693
25694 \end_layout
25695
25696 \begin_layout Plain Layout
25697 \begin_inset Caption
25698
25699 \begin_layout Plain Layout
25700 \begin_inset CommandInset label
25701 LatexCommand label
25702 name "abb:Standard-Fußnoten-Platzierung-in"
25703
25704 \end_inset
25705
25706 Standard Fußnoten-Platzierung in einem zweispaltigen Dokument
25707 \begin_inset OptArg
25708 status collapsed
25709
25710 \begin_layout Plain Layout
25711 Standard Fußnoten-Platzierung in einem zweisp.
25712  Dokument
25713 \end_layout
25714
25715 \end_inset
25716
25717
25718 \end_layout
25719
25720 \end_inset
25721
25722
25723 \end_layout
25724
25725 \end_inset
25726
25727
25728 \end_layout
25729
25730 \begin_layout Standard
25731 \begin_inset Float figure
25732 placement !h
25733 wide false
25734 sideways false
25735 status collapsed
25736
25737 \begin_layout Plain Layout
25738 \begin_inset ERT
25739 status collapsed
25740
25741 \begin_layout Plain Layout
25742
25743
25744 \backslash
25745 framebox{
25746 \end_layout
25747
25748 \end_inset
25749
25750
25751 \begin_inset Graphics
25752         filename ../clipart/with_fntright.pdf
25753         width 100col%
25754         scaleBeforeRotation
25755
25756 \end_inset
25757
25758
25759 \begin_inset ERT
25760 status collapsed
25761
25762 \begin_layout Plain Layout
25763
25764 }
25765 \end_layout
25766
25767 \end_inset
25768
25769
25770 \end_layout
25771
25772 \begin_layout Plain Layout
25773 \begin_inset Caption
25774
25775 \begin_layout Plain Layout
25776 \begin_inset CommandInset label
25777 LatexCommand label
25778 name "abb:Fußnoten-Platzierung-in-einem"
25779
25780 \end_inset
25781
25782 Fußnoten-Platzierung in einem zweispaltigen Dokument mit dem LaTeX-Paket
25783  
25784 \series bold
25785 ftnright
25786 \series default
25787 .
25788 \begin_inset OptArg
25789 status collapsed
25790
25791 \begin_layout Plain Layout
25792 Fußnoten-Platzierung mit 
25793 \family typewriter
25794 ftnright
25795 \end_layout
25796
25797 \end_inset
25798
25799
25800 \end_layout
25801
25802 \end_inset
25803
25804
25805 \end_layout
25806
25807 \end_inset
25808
25809
25810 \end_layout
25811
25812 \begin_layout Standard
25813 \begin_inset VSpace bigskip
25814 \end_inset
25815
25816 In einigen wissenschaftlichen Veröffentlichungen werden alle Fußnoten am
25817  Ende eines Abschnitts in einem eigenen Absatz wie in Abbildung
25818 \begin_inset Space ~
25819 \end_inset
25820
25821
25822 \begin_inset CommandInset ref
25823 LatexCommand ref
25824 reference "abb:endnotes----Die"
25825
25826 \end_inset
25827
25828  gedruckt.
25829  Man nennt sie dann 
25830 \emph on
25831 Endnoten
25832 \emph default
25833 .
25834 \begin_inset Index
25835 status collapsed
25836
25837 \begin_layout Plain Layout
25838 Endnoten
25839 \end_layout
25840
25841 \end_inset
25842
25843  Um das zu erreichen müssen Sie das LaTeX-Paket 
25844 \series bold
25845 endnotes
25846 \series default
25847
25848 \begin_inset Index
25849 status collapsed
25850
25851 \begin_layout Plain Layout
25852 LaTeX-Pakete ! endnotes
25853 \end_layout
25854
25855 \end_inset
25856
25857  mit folgendem Befehl im LaTeX-Vorspann einfügen: 
25858 \end_layout
25859
25860 \begin_layout Standard
25861
25862 \series bold
25863
25864 \backslash
25865 usepackage{endnotes}
25866 \begin_inset Newline newline
25867 \end_inset
25868
25869
25870 \backslash
25871 let
25872 \backslash
25873 footnote
25874 \backslash
25875 endnote
25876 \end_layout
25877
25878 \begin_layout Standard
25879 Um die gesammelten Fußnoten zu drucken fügen Sie den TeX-Code-Befehl
25880 \series bold
25881  
25882 \backslash
25883 theendnotes
25884 \series default
25885  am Ende des Abschnitts oder Kapitels ein.
25886 \end_layout
25887
25888 \begin_layout Standard
25889 \begin_inset Float figure
25890 wide false
25891 sideways false
25892 status collapsed
25893
25894 \begin_layout Plain Layout
25895 \align center
25896 \begin_inset ERT
25897 status collapsed
25898
25899 \begin_layout Plain Layout
25900
25901
25902 \backslash
25903 framebox{
25904 \end_layout
25905
25906 \end_inset
25907
25908
25909 \begin_inset Graphics
25910         filename ../clipart/endnotes.pdf
25911         scaleBeforeRotation
25912
25913 \end_inset
25914
25915
25916 \begin_inset ERT
25917 status collapsed
25918
25919 \begin_layout Plain Layout
25920
25921 }
25922 \end_layout
25923
25924 \end_inset
25925
25926
25927 \end_layout
25928
25929 \begin_layout Plain Layout
25930 \begin_inset Caption
25931
25932 \begin_layout Plain Layout
25933 \begin_inset CommandInset label
25934 LatexCommand label
25935 name "abb:endnotes----Die"
25936
25937 \end_inset
25938
25939
25940 \series bold
25941 endnotes
25942 \series default
25943  -- Die Fußnoten werden am Ende eines Abschnitts in einem eigenen Paragraphen
25944  gedruckt.
25945 \begin_inset OptArg
25946 status collapsed
25947
25948 \begin_layout Plain Layout
25949 \begin_inset CommandInset label
25950 LatexCommand label
25951 name "abb:endnotes----Die"
25952
25953 \end_inset
25954
25955
25956 \series bold
25957 endnotes
25958 \series default
25959  -- Die Fußnoten werden am Ende gedruckt
25960 \end_layout
25961
25962 \end_inset
25963
25964
25965 \end_layout
25966
25967 \end_inset
25968
25969
25970 \end_layout
25971
25972 \end_inset
25973
25974
25975 \end_layout
25976
25977 \begin_layout Standard
25978 \begin_inset VSpace medskip
25979 \end_inset
25980
25981 Die Absatzüberschrift für die Endnoten wird nicht automatisch in die Dokumentspr
25982 ache übersetzt.
25983  Der folgende Befehl im LaTeX-Vorspann  übersetzt den englischen Namen 
25984 \begin_inset Quotes gld
25985 \end_inset
25986
25987 Notes 
25988 \begin_inset Quotes grd
25989 \end_inset
25990
25991 in 
25992 \begin_inset Quotes gld
25993 \end_inset
25994
25995 Anmerkungen
25996 \begin_inset Quotes grd
25997 \end_inset
25998
25999 :
26000 \end_layout
26001
26002 \begin_layout Standard
26003
26004 \series bold
26005
26006 \backslash
26007 renewcommand{
26008 \backslash
26009 notesname}{Anmerkungen}
26010 \end_layout
26011
26012 \begin_layout Standard
26013 \begin_inset VSpace medskip
26014 \end_inset
26015
26016 Wenn Sie in den Befehlen von Abschnitt
26017 \begin_inset Space ~
26018 \end_inset
26019
26020
26021 \begin_inset CommandInset ref
26022 LatexCommand ref
26023 reference "uab:Fußnoten-Nummerierung"
26024
26025 \end_inset
26026
26027  
26028 \series bold
26029
26030 \backslash
26031 thefootnote
26032 \series default
26033  durch 
26034 \series bold
26035
26036 \backslash
26037 theendnote
26038 \series default
26039  ersetzen, können Sie die Nummerierung von Endnoten ändern.
26040  Um die Endnoten-Nummern zurückzusetzen, benutzen Sie den Befehl 
26041 \series bold
26042
26043 \backslash
26044 @addtoreset
26045 \series default
26046  wie in Abschnitt
26047 \begin_inset Space \space{}
26048 \end_inset
26049
26050
26051 \begin_inset CommandInset ref
26052 LatexCommand ref
26053 reference "uab:Fußnoten-Nummerierung"
26054
26055 \end_inset
26056
26057  beschrieben und ersetzen 
26058 \series bold
26059 footnote
26060 \series default
26061  durch 
26062 \series bold
26063 endnote
26064 \series default
26065 .
26066 \end_layout
26067
26068 \begin_layout Standard
26069 Um nur eine Marke für eine Endnote zu definieren, benutzen Sie den Befehl
26070  
26071 \series bold
26072
26073 \backslash
26074 endnotemark[Nummer]
26075 \series default
26076  ähnlich wie 
26077 \series bold
26078
26079 \backslash
26080 footnotemark
26081 \series default
26082  Abschnitt
26083 \begin_inset Space ~
26084 \end_inset
26085
26086
26087 \begin_inset CommandInset ref
26088 LatexCommand ref
26089 reference "abs:Fußnoten"
26090
26091 \end_inset
26092
26093 .
26094 \end_layout
26095
26096 \begin_layout Standard
26097 \begin_inset VSpace bigskip
26098 \end_inset
26099
26100 Mit dem LaTeX-Paket 
26101 \series bold
26102 footmisc
26103 \series default
26104
26105 \begin_inset Index
26106 status collapsed
26107
26108 \begin_layout Plain Layout
26109 LaTeX-Pakete ! footmisc
26110 \end_layout
26111
26112 \end_inset
26113
26114  (
26115 \begin_inset CommandInset citation
26116 LatexCommand cite
26117 key "footmisc"
26118
26119 \end_inset
26120
26121 ) können Sie Fußnoten am Seitenrand drucken und die Textausrichtung ändern.
26122 \end_layout
26123
26124 \begin_layout Standard
26125 In LaTeX-Büchern, 
26126 \begin_inset CommandInset citation
26127 LatexCommand cite
26128 key "latexcompanion,latexguide,lamport,latex-praxisbuch"
26129
26130 \end_inset
26131
26132 , finden Sie weiteres zu Fußnoten.
26133 \end_layout
26134
26135 \begin_layout Section
26136 Randnotizen
26137 \begin_inset Index
26138 status collapsed
26139
26140 \begin_layout Plain Layout
26141 Randnotizen
26142 \end_layout
26143
26144 \end_inset
26145
26146
26147 \begin_inset Index
26148 status collapsed
26149
26150 \begin_layout Plain Layout
26151 Notizen ! Randnotizen
26152 \end_layout
26153
26154 \end_inset
26155
26156
26157 \end_layout
26158
26159 \begin_layout Standard
26160 Randnotizen sehen in LyX wie Fußnoten aus und verhalten sich auch so.
26161  Sie fügen sie mit einem Klick auf den Schalter 
26162 \begin_inset Graphics
26163         filename ../../images/marginalnote-insert.png
26164         scale 70
26165         scaleBeforeRotation
26166         BoundingBox 0bp 0bp 22bp 22bp
26167
26168 \end_inset
26169
26170  oder über 
26171 \family sans
26172 Einfügen\SpecialChar \menuseparator
26173 Randnotiz
26174 \family default
26175  ein.
26176  Ein graues Kästchen mit der Aufschrift 
26177 \begin_inset Quotes gld
26178 \end_inset
26179
26180 Rand
26181 \begin_inset Quotes grd
26182 \end_inset
26183
26184  erscheint
26185 \family roman
26186 \series medium
26187 , und dort, wo der Cursor steht, können Sie Text eingeben.
26188 \end_layout
26189
26190 \begin_layout Standard
26191 Hier am Rand sehen Sie eine Randnotiz.
26192 \begin_inset Marginal
26193 status open
26194
26195 \begin_layout Plain Layout
26196 Dies ist eine Randnotiz.
26197 \end_layout
26198
26199 \end_inset
26200
26201
26202 \end_layout
26203
26204 \begin_layout Standard
26205 In der Druckausgabe von einseitig formatierten Dokumenten werden Randnotizen
26206  am rechten Rand gesetzt, bei doppelseitigen außen -- links auf den geraden
26207  Seiten und rechts auf den ungeraden.
26208  Der Text ist rechtsbündig ausgerichtet, wenn die Randnotiz links gedruckt
26209  wird und umgekehrt.
26210  Die erste Zeile einer Randnotiz steht in der Textzeile, in der sie eingefügt
26211  wurde.
26212 \end_layout
26213
26214 \begin_layout Standard
26215 \begin_inset VSpace bigskip
26216 \end_inset
26217
26218 Um eine Randnotiz am inneren Rand zu drucken, fügen Sie den Befehl
26219 \end_layout
26220
26221 \begin_layout Standard
26222
26223 \series bold
26224
26225 \backslash
26226 reversemarginpar
26227 \end_layout
26228
26229 \begin_layout Standard
26230 als TeX-Code vor einer Randnotiz ein.
26231  Das gilt dann für alle folgenden Randnotizen.
26232 \begin_inset ERT
26233 status collapsed
26234
26235 \begin_layout Plain Layout
26236
26237
26238 \backslash
26239 reversemarginpar 
26240 \end_layout
26241
26242 \end_inset
26243
26244
26245 \begin_inset Marginal
26246 status open
26247
26248 \begin_layout Plain Layout
26249 Hier ist ein Beispiel im inneren Rand.
26250 \end_layout
26251
26252 \end_inset
26253
26254
26255 \begin_inset Newline newline
26256 \end_inset
26257
26258
26259 \begin_inset Note Greyedout
26260 status open
26261
26262 \begin_layout Plain Layout
26263  
26264 \series bold
26265 Achtung:
26266 \series default
26267  Oft ist am inneren Rand nicht genügend Platz, um den Text korrekt zu drucken.
26268 \end_layout
26269
26270 \end_inset
26271
26272
26273 \end_layout
26274
26275 \begin_layout Standard
26276 Um zur Standard-Platzierung zurückzukehren, fügen Sie den Befehl
26277 \end_layout
26278
26279 \begin_layout Standard
26280
26281 \series bold
26282
26283 \backslash
26284 normalmarginpar
26285 \end_layout
26286
26287 \begin_layout Standard
26288 als TeX-Code ein.
26289 \begin_inset ERT
26290 status collapsed
26291
26292 \begin_layout Plain Layout
26293
26294
26295 \backslash
26296 normalmarginpar 
26297 \end_layout
26298
26299 \end_inset
26300
26301
26302 \begin_inset Note Greyedout
26303 status open
26304
26305 \begin_layout Plain Layout
26306
26307 \series bold
26308 Achtung:
26309 \series default
26310  Der Befehl wird missachtet, wenn er im selben Absatz wie 
26311 \series bold
26312
26313 \backslash
26314 reversemarginpar
26315 \series default
26316  verwendet wird.
26317 \end_layout
26318
26319 \end_inset
26320
26321
26322 \end_layout
26323
26324 \begin_layout Standard
26325 \begin_inset VSpace bigskip
26326 \end_inset
26327
26328 Ähnlich wie in Abschnitt
26329 \begin_inset Space ~
26330 \end_inset
26331
26332
26333 \begin_inset CommandInset ref
26334 LatexCommand ref
26335 reference "uab:Mehrfache-Zeilen-in"
26336
26337 \end_inset
26338
26339  beschrieben, können lange Worte nicht umgebrochen werden, wenn sie das
26340  erste Wort der Randnotiz sind.
26341  Um das zu vermeiden, können Sie den Befehl
26342 \end_layout
26343
26344 \begin_layout Standard
26345
26346 \series bold
26347
26348 \backslash
26349 hspace{0pt}
26350 \end_layout
26351
26352 \begin_layout Standard
26353 als TeX-Code vor das Wort setzen, so wie hier:
26354 \begin_inset Marginal
26355 status open
26356
26357 \begin_layout Plain Layout
26358 \begin_inset ERT
26359 status collapsed
26360
26361 \begin_layout Plain Layout
26362
26363
26364 \backslash
26365 hspace{0pt}
26366 \end_layout
26367
26368 \end_inset
26369
26370
26371 \family roman
26372 \series medium
26373 EinSehrLangesWort am Anfang, das umgebrochen wird.
26374 \end_layout
26375
26376 \end_inset
26377
26378
26379 \end_layout
26380
26381 \begin_layout Standard
26382 \begin_inset VSpace bigskip
26383 \end_inset
26384
26385
26386 \end_layout
26387
26388 \begin_layout Standard
26389 \begin_inset Note Greyedout
26390 status open
26391
26392 \begin_layout Plain Layout
26393
26394 \series bold
26395 Bemerkung:
26396 \series default
26397  Randnotizen können ohne Tricks nicht in Tabellen, Gleitumgebungen und Fußnoten
26398  verwendet werden.
26399 \end_layout
26400
26401 \end_inset
26402
26403
26404 \end_layout
26405
26406 \begin_layout Standard
26407 \begin_inset VSpace bigskip
26408 \end_inset
26409
26410
26411 \end_layout
26412
26413 \begin_layout Standard
26414 \begin_inset ERT
26415 status collapsed
26416
26417 \begin_layout Plain Layout
26418
26419
26420 \backslash
26421 ifmarginnote
26422 \end_layout
26423
26424 \end_inset
26425
26426
26427 \begin_inset Note Note
26428 status open
26429
26430 \begin_layout Plain Layout
26431 Der folgende Abschnitt wird nur gedruckt, wenn das LaTeX-Paket 
26432 \series bold
26433 marginnote
26434 \series default
26435  installiert ist.
26436 \end_layout
26437
26438 \end_inset
26439
26440
26441 \end_layout
26442
26443 \begin_layout Standard
26444 Diese Einschränkung kann umgangen werden, wenn das LaTeX-Paket 
26445 \series bold
26446 marginnote
26447 \series default
26448
26449 \begin_inset Index
26450 status collapsed
26451
26452 \begin_layout Plain Layout
26453 LaTeX-Pakete ! marginnote
26454 \end_layout
26455
26456 \end_inset
26457
26458  verwendet wird.
26459  Wenn Sie diese zwei Zeilen zum LaTeX-Vorspann hinzufügen, wird der Befehl,
26460  der von LyX für Randnotizen verwendet wird umdefiniert, so dass der Befehl
26461  des Pakets 
26462 \series bold
26463 marginnote
26464 \series default
26465  für Randnotizen verwendet wird:
26466 \end_layout
26467
26468 \begin_layout Standard
26469
26470 \series bold
26471
26472 \backslash
26473 usepackage{marginnote}
26474 \begin_inset Newline newline
26475 \end_inset
26476
26477
26478 \backslash
26479 let
26480 \backslash
26481 marginpar
26482 \backslash
26483 marginnote
26484 \end_layout
26485
26486 \begin_layout Standard
26487 Dies wird auch in diesem Dokument verwendet, denn 
26488 \series bold
26489 marginnote
26490 \series default
26491  hat eine andere nützliche Eigenschaft: Man kann einen vertikalen Versatz
26492  für Randnotizen angeben.
26493  Dies wird oft für ein besseres Seitenformat verwendet, wenn zu viele Randnotize
26494 n sind zu dicht beieinander sind.
26495  Der Versatz wird in LyX als TeX-Code direkt nach der Randnotiz mit dem
26496  Schema
26497 \end_layout
26498
26499 \begin_layout Standard
26500
26501 \series bold
26502 [Versatz]
26503 \end_layout
26504
26505 \begin_layout Standard
26506 angegeben.
26507  Dabei ist der Versatz eine Länge mit einer der Einheiten, die in Tabelle
26508 \begin_inset Space ~
26509 \end_inset
26510
26511
26512 \begin_inset CommandInset ref
26513 LatexCommand ref
26514 reference "tab:Maßeinheiten"
26515
26516 \end_inset
26517
26518  aufgelistet sind.
26519  Eine negativer Wert versetzt die Randnotiz nach oben, ein positiver Wer
26520  nach unten.
26521  Zum Beispiel ist die Randnotiz neben diesem Text um 1.5
26522 \begin_inset Space \thinspace{}
26523 \end_inset
26524
26525 cm mit dem TeX-Code-Befehl  
26526 \begin_inset Quotes gld
26527 \end_inset
26528
26529
26530 \series bold
26531 [-1.5cm]
26532 \series default
26533
26534 \begin_inset Quotes grd
26535 \end_inset
26536
26537  nach oben versetzt
26538 \begin_inset Marginal
26539 status open
26540
26541 \begin_layout Plain Layout
26542 Diese Randnotiz ist 1.5
26543 \begin_inset Space \thinspace{}
26544 \end_inset
26545
26546 cm von ihrer Originalposition nach oben versetzt.
26547 \end_layout
26548
26549 \end_inset
26550
26551
26552 \begin_inset ERT
26553 status collapsed
26554
26555 \begin_layout Plain Layout
26556
26557 [-1.5cm]
26558 \end_layout
26559
26560 \end_inset
26561
26562
26563 \end_layout
26564
26565 \begin_layout Standard
26566 \begin_inset VSpace medskip
26567 \end_inset
26568
26569 Mit 
26570 \series bold
26571 marginnote
26572 \series default
26573  können Sie auch die Ausrichtung des Texts in der Randnotiz ändern.
26574  Zum Beispiel setzen die Befehle
26575 \end_layout
26576
26577 \begin_layout Standard
26578
26579 \series bold
26580
26581 \backslash
26582 renewcommand*{
26583 \backslash
26584 raggedleftmarginnote}{
26585 \backslash
26586 centering}
26587 \begin_inset Newline newline
26588 \end_inset
26589
26590
26591 \backslash
26592 renewcommand*{
26593 \backslash
26594 raggedrightmarginnote}{
26595 \backslash
26596 centering}
26597 \end_layout
26598
26599 \begin_layout Standard
26600 die Ausrichtung auf zentriert.
26601  
26602 \series bold
26603
26604 \backslash
26605 raggedleftmarginnote
26606 \series default
26607  bewirkt dabei, dass die Randnotiz auf der linken Seite erscheint.
26608  
26609 \begin_inset ERT
26610 status collapsed
26611
26612 \begin_layout Plain Layout
26613
26614
26615 \backslash
26616 renewcommand*{
26617 \backslash
26618 raggedleftmarginnote}{
26619 \backslash
26620 centering}
26621 \end_layout
26622
26623 \begin_layout Plain Layout
26624
26625
26626 \backslash
26627 renewcommand*{
26628 \backslash
26629 raggedrightmarginnote}{
26630 \backslash
26631 centering}
26632 \end_layout
26633
26634 \end_inset
26635
26636
26637 \begin_inset Marginal
26638 status open
26639
26640 \begin_layout Plain Layout
26641 Der Text dieser Randnotiz ist zentriert ausgerichtet.
26642 \end_layout
26643
26644 \end_inset
26645
26646  Die Voreinstellung ist
26647 \end_layout
26648
26649 \begin_layout Standard
26650
26651 \series bold
26652
26653 \backslash
26654 renewcommand*{
26655 \backslash
26656 raggedleftmarginnote}{
26657 \backslash
26658 raggedleft}
26659 \begin_inset Newline newline
26660 \end_inset
26661
26662
26663 \backslash
26664 renewcommand*{
26665 \backslash
26666 raggedrightmarginnote}{
26667 \backslash
26668 raggedright}
26669 \series default
26670
26671 \begin_inset ERT
26672 status collapsed
26673
26674 \begin_layout Plain Layout
26675
26676
26677 \backslash
26678 renewcommand*{
26679 \backslash
26680 raggedleftmarginnote}{
26681 \backslash
26682 raggedleft}
26683 \end_layout
26684
26685 \begin_layout Plain Layout
26686
26687
26688 \backslash
26689 renewcommand*{
26690 \backslash
26691 raggedrightmarginnote}{
26692 \backslash
26693 raggedright}
26694 \end_layout
26695
26696 \end_inset
26697
26698
26699 \end_layout
26700
26701 \begin_layout Standard
26702 \begin_inset VSpace medskip
26703 \end_inset
26704
26705 Für weitere Fähigkeiten des Pakets 
26706 \series bold
26707 marginnote
26708 \series default
26709  sei auf dessen Dokumentation verwiesen 
26710 \begin_inset CommandInset citation
26711 LatexCommand cite
26712 key "marginnote"
26713
26714 \end_inset
26715
26716 .
26717 \end_layout
26718
26719 \begin_layout Standard
26720 \begin_inset VSpace bigskip
26721 \end_inset
26722
26723 Das Format von Randnotizen kann allgemein durch Änderung ihrer Definition
26724  geändert werden.
26725  Um z.
26726 \begin_inset Space \thinspace{}
26727 \end_inset
26728
26729 B.
26730  eine Überschrift für alle Randnotizen mit dem unterstrichenen, serifenlosen
26731  und fettgedruckten Text 
26732 \begin_inset Quotes eld
26733 \end_inset
26734
26735
26736 \family sans
26737 \series bold
26738 \bar under
26739 Achtung!
26740 \family default
26741 \series default
26742 \bar default
26743
26744 \begin_inset Quotes erd
26745 \end_inset
26746
26747  zu erstellen, fügen Sie dies zum LaTeX-Vorspann hinzu:
26748 \end_layout
26749
26750 \begin_layout Standard
26751
26752 \series bold
26753
26754 \backslash
26755 let
26756 \backslash
26757 myMarginpar
26758 \backslash
26759 marginpar
26760 \begin_inset Newline newline
26761 \end_inset
26762
26763
26764 \backslash
26765 renewcommand{
26766 \backslash
26767 marginpar}[1]{
26768 \backslash
26769 myMarginpar{%
26770 \begin_inset Newline newline
26771 \end_inset
26772
26773
26774 \begin_inset ERT
26775 status collapsed
26776
26777 \begin_layout Plain Layout
26778
26779
26780 \backslash
26781 hphantom{ }
26782 \end_layout
26783
26784 \end_inset
26785
26786
26787 \backslash
26788 hspace{0pt}
26789 \backslash
26790 textsf{
26791 \backslash
26792 textbf{
26793 \backslash
26794 underbar{Achtung!}}}%
26795 \begin_inset Newline newline
26796 \end_inset
26797
26798
26799 \begin_inset ERT
26800 status collapsed
26801
26802 \begin_layout Plain Layout
26803
26804
26805 \backslash
26806 hphantom{ }
26807 \end_layout
26808
26809 \end_inset
26810
26811
26812 \backslash
26813 vspace{1.5mm}
26814 \backslash
26815
26816 \backslash
26817 #1}}
26818 \end_layout
26819
26820 \begin_layout Standard
26821 \begin_inset ERT
26822 status collapsed
26823
26824 \begin_layout Plain Layout
26825
26826
26827 \backslash
26828 let
26829 \backslash
26830 myMarginpar
26831 \backslash
26832 marginpar
26833 \end_layout
26834
26835 \begin_layout Plain Layout
26836
26837
26838 \backslash
26839 renewcommand{
26840 \backslash
26841 marginpar}[1]{
26842 \backslash
26843 myMarginpar{%
26844 \end_layout
26845
26846 \begin_layout Plain Layout
26847
26848    
26849 \backslash
26850 textsf{
26851 \backslash
26852 textbf{
26853 \backslash
26854 underbar{Achtung!}}}%
26855 \end_layout
26856
26857 \begin_layout Plain Layout
26858
26859    
26860 \backslash
26861 vspace{1.5mm}
26862 \backslash
26863
26864 \backslash
26865 #1}}
26866 \end_layout
26867
26868 \end_inset
26869
26870
26871 \begin_inset Marginal
26872 status open
26873
26874 \begin_layout Plain Layout
26875 Dies ist eine Randnotiz mit einer definierten Überschrift.
26876 \end_layout
26877
26878 \end_inset
26879
26880
26881 \begin_inset ERT
26882 status collapsed
26883
26884 \begin_layout Plain Layout
26885
26886 [-1.5cm]
26887 \end_layout
26888
26889 \end_inset
26890
26891
26892 \begin_inset ERT
26893 status collapsed
26894
26895 \begin_layout Plain Layout
26896
26897
26898 \backslash
26899 renewcommand{
26900 \backslash
26901 marginpar}[1]{
26902 \backslash
26903 myMarginpar{#1}}
26904 \end_layout
26905
26906 \end_inset
26907
26908
26909 \begin_inset Note Note
26910 status open
26911
26912 \begin_layout Plain Layout
26913 Das Format wurde nur für dieses Beispiel geändert.
26914 \end_layout
26915
26916 \end_inset
26917
26918
26919 \end_layout
26920
26921 \begin_layout Standard
26922 \begin_inset ERT
26923 status collapsed
26924
26925 \begin_layout Plain Layout
26926
26927
26928 \backslash
26929 else
26930 \end_layout
26931
26932 \end_inset
26933
26934
26935 \begin_inset Note Note
26936 status open
26937
26938 \begin_layout Plain Layout
26939 Der folgende Hinweis wird gedruckt, wenn das LaTeX-Paket 
26940 \series bold
26941 marginnote
26942 \series default
26943  nicht installiert ist:
26944 \end_layout
26945
26946 \end_inset
26947
26948
26949 \end_layout
26950
26951 \begin_layout Standard
26952 Das LaTeX-Paket 
26953 \series bold
26954 marginnote
26955 \series default
26956  muss installiert sein, um den folgenden Abschnitt in der Ausgabe zu sehen.
26957 \end_layout
26958
26959 \begin_layout Standard
26960 \begin_inset ERT
26961 status collapsed
26962
26963 \begin_layout Plain Layout
26964
26965
26966 \backslash
26967 fi
26968 \end_layout
26969
26970 \end_inset
26971
26972
26973 \end_layout
26974
26975 \begin_layout Chapter
26976 Boxen
26977 \end_layout
26978
26979 \begin_layout Section
26980 Einleitung
26981 \begin_inset Index
26982 status collapsed
26983
26984 \begin_layout Plain Layout
26985 Boxen ! Einleitung
26986 \end_layout
26987
26988 \end_inset
26989
26990
26991 \end_layout
26992
26993 \begin_layout Standard
26994 Boxen werden benutzt, um einen Textblock zu formatieren.
26995  Sie können benutzt werden, um Dokumente in mehreren Sprachen zu schreiben,
26996  siehe Abschnitt
26997 \begin_inset Space ~
26998 \end_inset
26999
27000
27001 \begin_inset CommandInset ref
27002 LatexCommand ref
27003 reference "abs:Minipage"
27004
27005 \end_inset
27006
27007 , um Text zu umranden, siehe Abschnitt
27008 \begin_inset Space ~
27009 \end_inset
27010
27011
27012 \begin_inset CommandInset ref
27013 LatexCommand ref
27014 reference "abs:Gerahmte-Boxen"
27015
27016 \end_inset
27017
27018 , um Silbentrennung zu verhindern, siehe Abschnitt
27019 \begin_inset Space ~
27020 \end_inset
27021
27022
27023 \begin_inset CommandInset ref
27024 LatexCommand ref
27025 reference "abs:Silbentrennung-unterbinden"
27026
27027 \end_inset
27028
27029 , um Text senkrecht auszurichten, siehe Abschnitt
27030 \begin_inset Space ~
27031 \end_inset
27032
27033
27034 \begin_inset CommandInset ref
27035 LatexCommand ref
27036 reference "uab:Vertikale-Ausrichtung"
27037
27038 \end_inset
27039
27040  oder um die Hintergrundfarbe von Texten zu setzen, siehe Abschnitt
27041 \begin_inset Space ~
27042 \end_inset
27043
27044
27045 \begin_inset CommandInset ref
27046 LatexCommand ref
27047 reference "abs:Farbige-Boxen"
27048
27049 \end_inset
27050
27051 .
27052 \end_layout
27053
27054 \begin_layout Standard
27055 Boxen werden mit 
27056 \family sans
27057 Einfügen\SpecialChar \menuseparator
27058 Box
27059 \family default
27060  oder dem Schalter 
27061 \begin_inset Graphics
27062         filename ../../images/box-insert.png
27063         scale 85
27064         scaleBeforeRotation
27065
27066 \end_inset
27067
27068  eingefügt.
27069  Ein graues Kästchen mit der Aufschrift 
27070 \begin_inset Quotes gld
27071 \end_inset
27072
27073 Box (Minipage)
27074 \begin_inset Quotes grd
27075 \end_inset
27076
27077  erscheint: 
27078 \begin_inset Graphics
27079         filename clipart/StandardBoxQt4.png
27080         lyxscale 80
27081         scale 60
27082         scaleBeforeRotation
27083
27084 \end_inset
27085
27086 .
27087  Mit einem Rechts\SpecialChar \-
27088 klick auf das graue Kästchen kann der Typ spezifiziert
27089  werden.
27090  Das Dialogfenster bietet bei 
27091 \family sans
27092 Innere
27093 \begin_inset Space ~
27094 \end_inset
27095
27096 Box
27097 \family default
27098  die Typen 
27099 \family sans
27100 Parbox
27101 \family default
27102  und 
27103 \family sans
27104 Minipage
27105 \family default
27106  an.
27107  
27108 \family sans
27109 Minipage
27110 \family default
27111  ist die Standard-Einstellung für neue Boxen und in Abschnitt
27112 \begin_inset Space ~
27113 \end_inset
27114
27115
27116 \begin_inset CommandInset ref
27117 LatexCommand ref
27118 reference "abs:Minipage"
27119
27120 \end_inset
27121
27122  beschrieben, 
27123 \family sans
27124 Parbox
27125 \family default
27126  in Abschnitt
27127 \begin_inset Space ~
27128 \end_inset
27129
27130
27131 \begin_inset CommandInset ref
27132 LatexCommand ref
27133 reference "abs:Parbox"
27134
27135 \end_inset
27136
27137 .
27138 \end_layout
27139
27140 \begin_layout Standard
27141 Boxen sind nicht nummeriert, und Sie können deshalb nicht auf sie verweisen
27142  wie auf Gleitobjekte und Fußnoten.
27143 \end_layout
27144
27145 \begin_layout Standard
27146 \begin_inset Note Greyedout
27147 status open
27148
27149 \begin_layout Plain Layout
27150
27151 \series bold
27152 Bemerkung
27153 \begin_inset Space ~
27154 \end_inset
27155
27156 1:
27157 \series default
27158  Boxen dürfen in 
27159 \family sans
27160 List-
27161 \family default
27162  oder 
27163 \family sans
27164 Beschreibung-
27165 \family default
27166 Umgebungen nicht verwendet werden.
27167 \end_layout
27168
27169 \end_inset
27170
27171
27172 \end_layout
27173
27174 \begin_layout Standard
27175 \begin_inset Note Greyedout
27176 status open
27177
27178 \begin_layout Plain Layout
27179
27180 \series bold
27181 Bemerkung
27182 \begin_inset Space ~
27183 \end_inset
27184
27185 2:
27186 \series default
27187  Boxen ohne 
27188 \family sans
27189 Innere
27190 \begin_inset Space ~
27191 \end_inset
27192
27193 Box
27194 \family default
27195  und ohne Rahmen werden in Abschnitt
27196 \begin_inset Space ~
27197 \end_inset
27198
27199
27200 \begin_inset CommandInset ref
27201 LatexCommand ref
27202 reference "abs:Silbentrennung-unterbinden"
27203
27204 \end_inset
27205
27206  beschrieben.
27207 \end_layout
27208
27209 \end_inset
27210
27211
27212 \end_layout
27213
27214 \begin_layout Section
27215 Das Box-Einstellungen-Fenster
27216 \begin_inset CommandInset label
27217 LatexCommand label
27218 name "abs:Box-Dialog"
27219
27220 \end_inset
27221
27222
27223 \begin_inset Index
27224 status collapsed
27225
27226 \begin_layout Plain Layout
27227 Boxen ! Box-Dialog-Fenster
27228 \end_layout
27229
27230 \end_inset
27231
27232
27233 \end_layout
27234
27235 \begin_layout Subsection
27236 Box-Größe
27237 \end_layout
27238
27239 \begin_layout Standard
27240 Im 
27241 \family sans
27242 Box-Einstellungen
27243 \family default
27244 -Fenster können Sie die Größe der Box mit 
27245 \family sans
27246 Breite
27247 \family default
27248  und 
27249 \family sans
27250 Höhe 
27251 \family default
27252 festlegen.
27253  Die verfügbaren Einheiten werden in Tabelle
27254 \begin_inset Space ~
27255 \end_inset
27256
27257
27258 \begin_inset CommandInset ref
27259 LatexCommand ref
27260 reference "tab:Maßeinheiten"
27261
27262 \end_inset
27263
27264 aufgelistet.
27265  Das Feld
27266 \family sans
27267  Höhe
27268 \family default
27269  bietet die folgenden zusätzlichen Größen:
27270 \end_layout
27271
27272 \begin_layout Description
27273 Tiefe Dies ist die reine Text-
27274 \begin_inset Quotes gld
27275 \end_inset
27276
27277 Höhe
27278 \begin_inset Quotes grd
27279 \end_inset
27280
27281 .
27282  Sie ignoriert die Gesamthöhe, wenn es mehrere Textzeilen gibt:
27283 \begin_inset Newline newline
27284 \end_inset
27285
27286
27287 \begin_inset Newline newline
27288 \end_inset
27289
27290
27291 \begin_inset Newline newline
27292 \end_inset
27293
27294
27295 \begin_inset Box Boxed
27296 position "c"
27297 hor_pos "c"
27298 has_inner_box 1
27299 inner_pos "c"
27300 use_parbox 0
27301 width "12col%"
27302 special "none"
27303 height "1in"
27304 height_special "depth"
27305 status collapsed
27306
27307 \begin_layout Plain Layout
27308 \align center
27309 Box-Höhe = 1
27310 \begin_inset Space \thinspace{}
27311 \end_inset
27312
27313 Tiefe
27314 \end_layout
27315
27316 \end_inset
27317
27318
27319 \begin_inset Newline newline
27320 \end_inset
27321
27322
27323 \begin_inset Newline newline
27324 \end_inset
27325
27326
27327 \end_layout
27328
27329 \begin_layout Description
27330 Höhe Dies ist die Texthöhe innerhalb der Box.
27331  Der Wert 2 für diese Größe wird die Boxhöhe auf den zweifachen Wert der
27332  Texthöhe setzen: 
27333 \begin_inset Box Boxed
27334 position "c"
27335 hor_pos "c"
27336 has_inner_box 1
27337 inner_pos "c"
27338 use_parbox 0
27339 width "20col%"
27340 special "none"
27341 height "2in"
27342 height_special "height"
27343 status collapsed
27344
27345 \begin_layout Plain Layout
27346 \align center
27347 Boxhöhe = 2
27348 \begin_inset Space \thinspace{}
27349 \end_inset
27350
27351 Höhe
27352 \end_layout
27353
27354 \end_inset
27355
27356
27357 \end_layout
27358
27359 \begin_layout Description
27360 Gesamthöhe Dies ist Höhe
27361 \begin_inset Space \thinspace{}
27362 \end_inset
27363
27364 +
27365 \begin_inset Space \thinspace{}
27366 \end_inset
27367
27368 Tiefe: 
27369 \begin_inset Box Boxed
27370 position "c"
27371 hor_pos "c"
27372 has_inner_box 1
27373 inner_pos "c"
27374 use_parbox 0
27375 width "20col%"
27376 special "none"
27377 height "1in"
27378 height_special "totalheight"
27379 status collapsed
27380
27381 \begin_layout Plain Layout
27382 \align center
27383 Boxhöhe = 1
27384 \begin_inset Space \thinspace{}
27385 \end_inset
27386
27387 Gesamthöhe
27388 \end_layout
27389
27390 \end_inset
27391
27392
27393 \end_layout
27394
27395 \begin_layout Description
27396 Breite Dies setzt Höhe = Breite, das heißt, die Box wird quadratisch: 
27397 \begin_inset Box Boxed
27398 position "c"
27399 hor_pos "c"
27400 has_inner_box 1
27401 inner_pos "c"
27402 use_parbox 0
27403 width "12col%"
27404 special "none"
27405 height "1in"
27406 height_special "width"
27407 status collapsed
27408
27409 \begin_layout Plain Layout
27410 \align center
27411 Boxhöhe = 1
27412 \begin_inset Space \thinspace{}
27413 \end_inset
27414
27415 Breite
27416 \end_layout
27417
27418 \end_inset
27419
27420
27421 \end_layout
27422
27423 \begin_layout Subsection
27424 Ausrichtung
27425 \begin_inset Index
27426 status collapsed
27427
27428 \begin_layout Plain Layout
27429 Boxen ! Ausrichtung
27430 \end_layout
27431
27432 \end_inset
27433
27434
27435 \end_layout
27436
27437 \begin_layout Standard
27438 Wenn Sie eine 
27439 \family sans
27440 Innere
27441 \begin_inset Space ~
27442 \end_inset
27443
27444 Box
27445 \family default
27446  gewählt haben, kann die Box mit folgenden Werten für 
27447 \family sans
27448 Box
27449 \family default
27450  senkrecht ausgerichtet werden:
27451 \end_layout
27452
27453 \begin_layout Description
27454 Oben Dies ist ein Beispieltext.
27455  
27456 \begin_inset Box Boxed
27457 position "t"
27458 hor_pos "c"
27459 has_inner_box 1
27460 inner_pos "c"
27461 use_parbox 0
27462 width "20col%"
27463 special "none"
27464 height "1in"
27465 height_special "totalheight"
27466 status collapsed
27467
27468 \begin_layout Plain Layout
27469 \align center
27470 Die Ober\SpecialChar \-
27471 kante der Box ist in der Zeile.
27472 \end_layout
27473
27474 \end_inset
27475
27476  Dies ist ein Beispieltext.
27477 \end_layout
27478
27479 \begin_layout Description
27480 Mitte Dies ist ein Beispieltext.
27481  
27482 \begin_inset Box Boxed
27483 position "c"
27484 hor_pos "c"
27485 has_inner_box 1
27486 inner_pos "c"
27487 use_parbox 0
27488 width "20col%"
27489 special "none"
27490 height "1in"
27491 height_special "totalheight"
27492 status collapsed
27493
27494 \begin_layout Plain Layout
27495 \align center
27496 Die Mitte der Box ist in der Zeile.
27497 \end_layout
27498
27499 \end_inset
27500
27501  Dies ist ein Beispieltext.
27502 \end_layout
27503
27504 \begin_layout Description
27505 Unten Dies ist ein Beispieltext.
27506  
27507 \begin_inset Box Boxed
27508 position "b"
27509 hor_pos "c"
27510 has_inner_box 1
27511 inner_pos "c"
27512 use_parbox 0
27513 width "20col%"
27514 special "none"
27515 height "1in"
27516 height_special "totalheight"
27517 status collapsed
27518
27519 \begin_layout Plain Layout
27520 \align center
27521 Die Unter\SpecialChar \-
27522 kante der Box ist in der Zeile.
27523 \end_layout
27524
27525 \end_inset
27526
27527  Dies ist ein Beispieltext.
27528 \end_layout
27529
27530 \begin_layout Standard
27531 Eine Box kann mit dem Dialog 
27532 \family sans
27533 Absatz-Einstellungen
27534 \family default
27535  waagerecht ausgerichtet werden, wenn die Box in einem eigenen Absatz steht.
27536 \end_layout
27537
27538 \begin_layout Standard
27539 \begin_inset VSpace bigskip
27540 \end_inset
27541
27542 Wenn Sie eine 
27543 \family sans
27544 Innere
27545 \begin_inset Space ~
27546 \end_inset
27547
27548 Box
27549 \family default
27550  gewählt haben, kann der Inhalt der Box mit folgenden Werten für 
27551 \family sans
27552 Inhalt
27553 \family default
27554  senkrecht ausgerichtet werden:
27555 \end_layout
27556
27557 \begin_layout Description
27558 Oben Dies ist ein Beispieltext.
27559  
27560 \begin_inset Box Boxed
27561 position "c"
27562 hor_pos "c"
27563 has_inner_box 1
27564 inner_pos "t"
27565 use_parbox 0
27566 width "20col%"
27567 special "none"
27568 height "1.5in"
27569 height_special "totalheight"
27570 status collapsed
27571
27572 \begin_layout Plain Layout
27573 \align center
27574 Der Boxinhalt ist am oberen Boxrand ausgerichtet.
27575 \end_layout
27576
27577 \end_inset
27578
27579  Dies ist ein Beispieltext.
27580 \end_layout
27581
27582 \begin_layout Description
27583 Mitte Dies ist ein Beispieltext.
27584  
27585 \begin_inset Box Boxed
27586 position "c"
27587 hor_pos "c"
27588 has_inner_box 1
27589 inner_pos "c"
27590 use_parbox 0
27591 width "20col%"
27592 special "none"
27593 height "1.5in"
27594 height_special "totalheight"
27595 status collapsed
27596
27597 \begin_layout Plain Layout
27598 \align center
27599 Der Boxinhalt ist zentriert ausgerichtet.
27600 \end_layout
27601
27602 \end_inset
27603
27604  Dies ist ein Beispieltext.
27605 \end_layout
27606
27607 \begin_layout Description
27608 Unten Dies ist ein Beispieltext.
27609  
27610 \begin_inset Box Boxed
27611 position "c"
27612 hor_pos "c"
27613 has_inner_box 1
27614 inner_pos "b"
27615 use_parbox 0
27616 width "20col%"
27617 special "none"
27618 height "1.5in"
27619 height_special "totalheight"
27620 status collapsed
27621
27622 \begin_layout Plain Layout
27623 \align center
27624 Der Boxinhalt ist am unteren Boxrand ausgerichtet.
27625 \end_layout
27626
27627 \end_inset
27628
27629  Dies ist ein Beispieltext.
27630 \end_layout
27631
27632 \begin_layout Description
27633 Dehnen Dies ist ein Beispieltext.
27634  
27635 \begin_inset Box Boxed
27636 position "c"
27637 hor_pos "c"
27638 has_inner_box 1
27639 inner_pos "s"
27640 use_parbox 0
27641 width "20col%"
27642 special "none"
27643 height "1in"
27644 height_special "totalheight"
27645 status collapsed
27646
27647 \begin_layout Plain Layout
27648 \align center
27649 Der Boxinhalt
27650 \end_layout
27651
27652 \begin_layout Plain Layout
27653 \align center
27654 ist über die
27655 \end_layout
27656
27657 \begin_layout Plain Layout
27658 \align center
27659 Boxhöhe
27660 \end_layout
27661
27662 \begin_layout Plain Layout
27663 \align center
27664 gleichmäßig verteilt.
27665 \end_layout
27666
27667 \end_inset
27668
27669  Dies ist ein Beispieltext.
27670 \end_layout
27671
27672 \begin_layout Standard
27673 Das Dehnen funktioniert aber nur, wenn der Boxinhalt aus mehreren Absätzen
27674  besteht.
27675  Im obigen Beispiel ist jede Zeile ein eigener Absatz.
27676 \end_layout
27677
27678 \begin_layout Standard
27679 Ein Boxinhalt kann mit dem Dialog 
27680 \family sans
27681 Absatz-Einstellungen
27682 \family default
27683  waagerecht ausgerichtet werden, wenn Sie eine
27684 \family sans
27685  Innere
27686 \begin_inset Space ~
27687 \end_inset
27688
27689 Box
27690 \family default
27691  gewählt haben.
27692 \end_layout
27693
27694 \begin_layout Standard
27695 \align center
27696 \begin_inset Box Boxed
27697 position "c"
27698 hor_pos "c"
27699 has_inner_box 1
27700 inner_pos "s"
27701 use_parbox 0
27702 width "30col%"
27703 special "none"
27704 height "1.25in"
27705 height_special "totalheight"
27706 status collapsed
27707
27708 \begin_layout Plain Layout
27709 \align left
27710 Hier ist jede Zeile
27711 \end_layout
27712
27713 \begin_layout Plain Layout
27714 \align center
27715 anders
27716 \end_layout
27717
27718 \begin_layout Plain Layout
27719 \align right
27720 ausgerichtet.
27721 \end_layout
27722
27723 \end_inset
27724
27725
27726 \end_layout
27727
27728 \begin_layout Standard
27729 Wenn Sie keine
27730 \family sans
27731  Innere
27732 \begin_inset Space ~
27733 \end_inset
27734
27735 Box
27736 \family default
27737  gewählt haben, können Sie den Boxinhalt waagerecht mit dem 
27738 \family sans
27739 Box-Einstellungen-
27740 \family default
27741 Dialog ausrichten
27742 \end_layout
27743
27744 \begin_layout Standard
27745 \align center
27746 \begin_inset Box Boxed
27747 position "c"
27748 hor_pos "s"
27749 has_inner_box 0
27750 inner_pos "s"
27751 use_parbox 0
27752 width "90col%"
27753 special "none"
27754 height "1.25in"
27755 height_special "totalheight"
27756 status collapsed
27757
27758 \begin_layout Plain Layout
27759 \align left
27760 Dieser Boxinhalt wurde horizontal gedehnt.
27761 \end_layout
27762
27763 \end_inset
27764
27765
27766 \end_layout
27767
27768 \begin_layout Section
27769 Gerahmte Boxen
27770 \begin_inset CommandInset label
27771 LatexCommand label
27772 name "abs:Gerahmte-Boxen"
27773
27774 \end_inset
27775
27776
27777 \begin_inset Index
27778 status collapsed
27779
27780 \begin_layout Plain Layout
27781 Boxen ! gerahmte
27782 \end_layout
27783
27784 \end_inset
27785
27786
27787 \end_layout
27788
27789 \begin_layout Standard
27790 Mit dem 
27791 \family sans
27792 Box-Einstellungen-
27793 \family default
27794 Dialog können Sie bei 
27795 \family sans
27796 Verzierung
27797 \family default
27798  die Art des Rahmens auswählen:
27799 \end_layout
27800
27801 \begin_layout Description
27802 Rechteckige
27803 \begin_inset Space ~
27804 \end_inset
27805
27806 Box Um die Box wird ein rechteckiger Rahmen gezogen.
27807  Die Rahmendicke wird durch 
27808 \series bold
27809
27810 \backslash
27811 fboxrule
27812 \series default
27813  festgelegt.
27814  
27815 \begin_inset Box Boxed
27816 position "c"
27817 hor_pos "c"
27818 has_inner_box 1
27819 inner_pos "c"
27820 use_parbox 0
27821 width "21col%"
27822 special "none"
27823 height "1in"
27824 height_special "totalheight"
27825 status collapsed
27826
27827 \begin_layout Plain Layout
27828
27829 \series medium
27830 Rechteckige
27831 \begin_inset Space ~
27832 \end_inset
27833
27834 Box
27835 \end_layout
27836
27837 \end_inset
27838
27839
27840 \end_layout
27841
27842 \begin_layout Description
27843 Ovale
27844 \begin_inset Space ~
27845 \end_inset
27846
27847 Box,
27848 \begin_inset Space ~
27849 \end_inset
27850
27851 dünn Zeichnet einen dünnen Rahmen mit abgerundeten Ecken um die Box.
27852  Die Rahmendicke ist 0.4
27853 \begin_inset Space \thinspace{}
27854 \end_inset
27855
27856 pt.
27857  
27858 \begin_inset Box ovalbox
27859 position "c"
27860 hor_pos "c"
27861 has_inner_box 1
27862 inner_pos "c"
27863 use_parbox 0
27864 width "20col%"
27865 special "none"
27866 height "1in"
27867 height_special "totalheight"
27868 status collapsed
27869
27870 \begin_layout Plain Layout
27871 Ovale
27872 \begin_inset Space ~
27873 \end_inset
27874
27875 Box,
27876 \begin_inset Space ~
27877 \end_inset
27878
27879 dünn
27880 \end_layout
27881
27882 \end_inset
27883
27884
27885 \end_layout
27886
27887 \begin_layout Description
27888 Ovale
27889 \begin_inset Space ~
27890 \end_inset
27891
27892 Box,
27893 \begin_inset Space ~
27894 \end_inset
27895
27896 dick Zeichnet einen dickeren Rahmen mit abgerundeten Ecken um die Box.
27897  Die Rahmendicke ist 0.8
27898 \begin_inset Space \thinspace{}
27899 \end_inset
27900
27901 pt.
27902  
27903 \begin_inset Box Ovalbox
27904 position "c"
27905 hor_pos "c"
27906 has_inner_box 1
27907 inner_pos "c"
27908 use_parbox 0
27909 width "20col%"
27910 special "none"
27911 height "1in"
27912 height_special "totalheight"
27913 status collapsed
27914
27915 \begin_layout Plain Layout
27916 Ovale
27917 \begin_inset Space ~
27918 \end_inset
27919
27920 Box,
27921 \begin_inset Space ~
27922 \end_inset
27923
27924 dick
27925 \end_layout
27926
27927 \end_inset
27928
27929
27930 \end_layout
27931
27932 \begin_layout Description
27933 Schattierte
27934 \begin_inset Space ~
27935 \end_inset
27936
27937 Box Zeichnet einen Rahmen mit Schatten um die Box.
27938  Die Rahmendicke wird durch 
27939 \series bold
27940
27941 \backslash
27942 fboxrule
27943 \series default
27944  festgelegt, der Schatten ist 4
27945 \begin_inset Space \thinspace{}
27946 \end_inset
27947
27948 pt breit.
27949 \begin_inset Newline newline
27950 \end_inset
27951
27952
27953 \begin_inset Box Shadowbox
27954 position "c"
27955 hor_pos "c"
27956 has_inner_box 1
27957 inner_pos "c"
27958 use_parbox 0
27959 width "20col%"
27960 special "none"
27961 height "1in"
27962 height_special "totalheight"
27963 status collapsed
27964
27965 \begin_layout Plain Layout
27966 Schattierte
27967 \begin_inset Space ~
27968 \end_inset
27969
27970 Box
27971 \end_layout
27972
27973 \end_inset
27974
27975
27976 \end_layout
27977
27978 \begin_layout Description
27979 Doppelt
27980 \begin_inset Space ~
27981 \end_inset
27982
27983 gerahmte
27984 \begin_inset Space ~
27985 \end_inset
27986
27987 Box Zeichnet einen doppelten Rahmen um die Box Der innere Rahmen ist 0.75
27988 \begin_inset Space \thinspace{}
27989 \end_inset
27990
27991
27992 \series bold
27993
27994 \backslash
27995 fboxrule
27996 \series default
27997  breit, der äußere 1.5
27998 \begin_inset Space \thinspace{}
27999 \end_inset
28000
28001
28002 \series bold
28003
28004 \backslash
28005 fboxrule
28006 \series default
28007 , der Zwischenraum 1.5
28008 \begin_inset Space \thinspace{}
28009 \end_inset
28010
28011
28012 \series bold
28013
28014 \backslash
28015 fboxrule
28016 \series default
28017
28018 \begin_inset Space \thinspace{}
28019 \end_inset
28020
28021 +
28022 \begin_inset Space \thinspace{}
28023 \end_inset
28024
28025 0.5
28026 \begin_inset Space \thinspace{}
28027 \end_inset
28028
28029 pt.
28030  
28031 \begin_inset Box Doublebox
28032 position "c"
28033 hor_pos "c"
28034 has_inner_box 1
28035 inner_pos "c"
28036 use_parbox 0
28037 width "20col%"
28038 special "none"
28039 height "1in"
28040 height_special "totalheight"
28041 status collapsed
28042
28043 \begin_layout Plain Layout
28044 Doppelt
28045 \begin_inset Space ~
28046 \end_inset
28047
28048 gerahmte
28049 \begin_inset Space ~
28050 \end_inset
28051
28052 Box
28053 \end_layout
28054
28055 \end_inset
28056
28057
28058 \end_layout
28059
28060 \begin_layout Standard
28061 \begin_inset VSpace bigskip
28062 \end_inset
28063
28064 Die Aufschrift der Box in LyX ändert sich mit dem gewählten Rahmen.
28065  Um verschiedene Rahmenstile zu verwenden, muss das LaTeX-Paket 
28066 \series bold
28067 fancybox
28068 \series default
28069
28070 \begin_inset Index
28071 status collapsed
28072
28073 \begin_layout Plain Layout
28074 LaTeX-Pakete ! fancybox
28075 \end_layout
28076
28077 \end_inset
28078
28079  installiert sein.
28080 \end_layout
28081
28082 \begin_layout Standard
28083 \begin_inset VSpace bigskip
28084 \end_inset
28085
28086 Der Standardwert für 
28087 \series bold
28088
28089 \backslash
28090 fboxrule
28091 \series default
28092  ist 0.4
28093 \begin_inset Space \thinspace{}
28094 \end_inset
28095
28096 pt.
28097  Mit dem folgenden TeX-Code-Befehl kann er auf 2
28098 \begin_inset Space \thinspace{}
28099 \end_inset
28100
28101 pt gesetzt werden:
28102 \end_layout
28103
28104 \begin_layout Standard
28105
28106 \series bold
28107
28108 \backslash
28109 setlength{
28110 \backslash
28111 fboxrule}{2pt}
28112 \end_layout
28113
28114 \begin_layout Standard
28115 \begin_inset ERT
28116 status collapsed
28117
28118 \begin_layout Plain Layout
28119
28120
28121 \backslash
28122 setlength{
28123 \backslash
28124 fboxrule}{2pt}
28125 \end_layout
28126
28127 \end_inset
28128
28129
28130 \begin_inset Box Boxed
28131 position "c"
28132 hor_pos "c"
28133 has_inner_box 1
28134 inner_pos "c"
28135 use_parbox 0
28136 width "30col%"
28137 special "none"
28138 height "1in"
28139 height_special "totalheight"
28140 status collapsed
28141
28142 \begin_layout Plain Layout
28143 \align center
28144 Rechteckige Box mit einer Rahmenbreite von 2
28145 \begin_inset Space \thinspace{}
28146 \end_inset
28147
28148 pt
28149 \end_layout
28150
28151 \end_inset
28152
28153
28154 \begin_inset ERT
28155 status collapsed
28156
28157 \begin_layout Plain Layout
28158
28159
28160 \backslash
28161 setlength{
28162 \backslash
28163 fboxrule}{0.4pt}
28164 \end_layout
28165
28166 \end_inset
28167
28168
28169 \end_layout
28170
28171 \begin_layout Standard
28172 \noindent
28173 \begin_inset VSpace bigskip
28174 \end_inset
28175
28176 Der Abstand zwischen dem Rahmen und dem Inhalt ist standardmäßig 3
28177 \begin_inset Space \thinspace{}
28178 \end_inset
28179
28180 pt.
28181  Sie können das ändern, indem Sie den Wert von 
28182 \series bold
28183
28184 \backslash
28185 fboxsep
28186 \series default
28187  mit einem TeX-Code-Befehl ändern:
28188 \end_layout
28189
28190 \begin_layout Standard
28191
28192 \series bold
28193
28194 \backslash
28195 setlength{
28196 \backslash
28197 fboxsep}{10pt}
28198 \end_layout
28199
28200 \begin_layout Standard
28201 setzt den Wert auf 10
28202 \begin_inset Space \thinspace{}
28203 \end_inset
28204
28205 pt, wie in der folgenden Box:
28206 \end_layout
28207
28208 \begin_layout Standard
28209 \begin_inset ERT
28210 status collapsed
28211
28212 \begin_layout Plain Layout
28213
28214
28215 \backslash
28216 setlength{
28217 \backslash
28218 fboxsep}{10pt}
28219 \end_layout
28220
28221 \end_inset
28222
28223
28224 \begin_inset Box Boxed
28225 position "c"
28226 hor_pos "c"
28227 has_inner_box 1
28228 inner_pos "c"
28229 use_parbox 0
28230 width "25col%"
28231 special "none"
28232 height "1in"
28233 height_special "totalheight"
28234 status collapsed
28235
28236 \begin_layout Plain Layout
28237 \align center
28238 Rechteckige Box mit 
28239 \series bold
28240
28241 \backslash
28242 fboxsep
28243 \series default
28244
28245 \begin_inset Space \thinspace{}
28246 \end_inset
28247
28248 =
28249 \begin_inset Space \thinspace{}
28250 \end_inset
28251
28252 10
28253 \begin_inset Space \thinspace{}
28254 \end_inset
28255
28256 pt
28257 \end_layout
28258
28259 \end_inset
28260
28261
28262 \begin_inset ERT
28263 status collapsed
28264
28265 \begin_layout Plain Layout
28266
28267
28268 \backslash
28269 setlength{
28270 \backslash
28271 fboxsep}{3pt}
28272 \end_layout
28273
28274 \end_inset
28275
28276
28277 \end_layout
28278
28279 \begin_layout Standard
28280 \noindent
28281 \begin_inset VSpace bigskip
28282 \end_inset
28283
28284 Der Durchmesser der abgerundeten Ecken kann mit 
28285 \series bold
28286
28287 \backslash
28288 cornersize
28289 \series default
28290  gesetzt werden.
28291  Der TeX-Code-Befehl
28292 \end_layout
28293
28294 \begin_layout Standard
28295
28296 \series bold
28297
28298 \backslash
28299 cornersize*{1cm}
28300 \end_layout
28301
28302 \begin_layout Standard
28303 setzt den Durchmesser auf 1
28304 \begin_inset Space \thinspace{}
28305 \end_inset
28306
28307 cm.
28308  Der TeX-Code-Befehl
28309 \end_layout
28310
28311 \begin_layout Standard
28312
28313 \series bold
28314
28315 \backslash
28316 cornersize{num}
28317 \end_layout
28318
28319 \begin_layout Standard
28320 setzt den Durchmesser auf 
28321 \family sans
28322 num
28323 \begin_inset Space \thinspace{}
28324 \end_inset
28325
28326 ×
28327 \begin_inset Space \thinspace{}
28328 \end_inset
28329
28330 Minimum(Breite der Box, Höhe der Box)
28331 \family default
28332 .
28333  Der Standardwert ist 
28334 \series bold
28335
28336 \backslash
28337 cornersize{0.5}
28338 \series default
28339 .
28340 \end_layout
28341
28342 \begin_layout Standard
28343 \begin_inset ERT
28344 status collapsed
28345
28346 \begin_layout Plain Layout
28347
28348
28349 \backslash
28350 cornersize*{1.5cm}
28351 \end_layout
28352
28353 \end_inset
28354
28355
28356 \begin_inset Box Ovalbox
28357 position "c"
28358 hor_pos "c"
28359 has_inner_box 1
28360 inner_pos "c"
28361 use_parbox 0
28362 width "30col%"
28363 special "none"
28364 height "1in"
28365 height_special "totalheight"
28366 status collapsed
28367
28368 \begin_layout Plain Layout
28369 \align center
28370 Ovale Box, dicker Rand, mit 
28371 \series bold
28372
28373 \backslash
28374 cornersize
28375 \series default
28376
28377 \begin_inset Space \thinspace{}
28378 \end_inset
28379
28380 =
28381 \begin_inset Space \thinspace{}
28382 \end_inset
28383
28384 1.5
28385 \begin_inset Space \thinspace{}
28386 \end_inset
28387
28388 cm
28389 \end_layout
28390
28391 \end_inset
28392
28393
28394 \begin_inset ERT
28395 status collapsed
28396
28397 \begin_layout Plain Layout
28398
28399
28400 \backslash
28401 cornersize{0.5}
28402 \end_layout
28403
28404 \end_inset
28405
28406
28407 \end_layout
28408
28409 \begin_layout Standard
28410 \noindent
28411 \begin_inset VSpace bigskip
28412 \end_inset
28413
28414 Die Breite des Schattens wird mit 
28415 \series bold
28416
28417 \backslash
28418 shadowsize
28419 \series default
28420  festgelegt.
28421  Mit dem TeX-Code-Befehl
28422 \end_layout
28423
28424 \begin_layout Standard
28425
28426 \series bold
28427
28428 \backslash
28429 setlength{
28430 \backslash
28431 shadowsize}{2pt}
28432 \end_layout
28433
28434 \begin_layout Standard
28435 wird er für die folgende Box auf 2
28436 \begin_inset Space \thinspace{}
28437 \end_inset
28438
28439 pt festgelegt.
28440 \end_layout
28441
28442 \begin_layout Standard
28443 \begin_inset ERT
28444 status collapsed
28445
28446 \begin_layout Plain Layout
28447
28448
28449 \backslash
28450 setlength{
28451 \backslash
28452 shadowsize}{2pt}
28453 \end_layout
28454
28455 \end_inset
28456
28457
28458 \begin_inset Box Shadowbox
28459 position "c"
28460 hor_pos "c"
28461 has_inner_box 1
28462 inner_pos "c"
28463 use_parbox 0
28464 width "25col%"
28465 special "none"
28466 height "1in"
28467 height_special "totalheight"
28468 status collapsed
28469
28470 \begin_layout Plain Layout
28471 \align center
28472 Schattierte Box mit 
28473 \series bold
28474
28475 \backslash
28476 shadowsize
28477 \series default
28478
28479 \begin_inset Space \thinspace{}
28480 \end_inset
28481
28482 =
28483 \begin_inset Space \thinspace{}
28484 \end_inset
28485
28486 2
28487 \begin_inset Space \thinspace{}
28488 \end_inset
28489
28490 pt
28491 \end_layout
28492
28493 \end_inset
28494
28495
28496 \begin_inset ERT
28497 status collapsed
28498
28499 \begin_layout Plain Layout
28500
28501
28502 \backslash
28503 setlength{
28504 \backslash
28505 shadowsize}{4pt}
28506 \end_layout
28507
28508 \end_inset
28509
28510
28511 \end_layout
28512
28513 \begin_layout Standard
28514 \noindent
28515 \begin_inset VSpace bigskip
28516 \end_inset
28517
28518 Die geänderten Werte gelten für alle Boxen, die auf den entsprechenden Befehl
28519  folgen.
28520 \end_layout
28521
28522 \begin_layout Section
28523 Minipage
28524 \begin_inset CommandInset label
28525 LatexCommand label
28526 name "abs:Minipage"
28527
28528 \end_inset
28529
28530
28531 \begin_inset Index
28532 status collapsed
28533
28534 \begin_layout Plain Layout
28535 Boxen ! Minipage
28536 \end_layout
28537
28538 \end_inset
28539
28540
28541 \end_layout
28542
28543 \begin_layout Standard
28544 Minipages werden von LaTeX wie Seiten auf einer Seite behandelt und können
28545  deshalb unter anderem eigene Fußnoten haben.
28546 \end_layout
28547
28548 \begin_layout Standard
28549 Minipages sind nützlich, wenn Sie Dokumente in mehreren Sprachen schreiben.
28550 \end_layout
28551
28552 \begin_layout Standard
28553 Es folgt ein Beispiel mit zwei nebeneinander gedruckten Minipages.
28554  Ihre Breite ist 45 Spaltenbreite
28555 \begin_inset Space ~
28556 \end_inset
28557
28558 %, und sie sind durch einen 
28559 \family sans
28560 HFill
28561 \family default
28562  getrennt (
28563 \family sans
28564 Einfügen\SpecialChar \menuseparator
28565 Formatierung\SpecialChar \menuseparator
28566 Variabler
28567 \begin_inset Space ~
28568 \end_inset
28569
28570 horiz.
28571 \begin_inset Space ~
28572 \end_inset
28573
28574 Abstand
28575 \family default
28576 ).
28577 \end_layout
28578
28579 \begin_layout Standard
28580 \noindent
28581 \begin_inset Box Frameless
28582 position "t"
28583 hor_pos "c"
28584 has_inner_box 1
28585 inner_pos "c"
28586 use_parbox 0
28587 width "45col%"
28588 special "none"
28589 height "1in"
28590 height_special "totalheight"
28591 status open
28592
28593 \begin_layout Plain Layout
28594 Dies ist ein deutscher Text.
28595  Dies ist ein deutscher Text.
28596  Dies ist ein deutscher Text.
28597  Dies ist ein deutscher Text.
28598  Dies ist ein deutscher Text.
28599  Dies ist ein deutscher Text.
28600  Dies ist ein deutscher Text.
28601  Dies ist ein deutscher Text.
28602  Dies ist ein deutscher Text.
28603  Dies ist ein deutscher Text.
28604  Dies ist ein deutscher Text.
28605  Dies ist ein deutscher Text.
28606  Dies ist ein deutscher Text
28607 \begin_inset Foot
28608 status open
28609
28610 \begin_layout Plain Layout
28611 Dies ist eine deutsche Fußnote.
28612 \end_layout
28613
28614 \end_inset
28615
28616 .
28617  Dies ist ein deutscher Text.
28618  Dies ist ein deutscher Text.
28619 \end_layout
28620
28621 \end_inset
28622
28623
28624 \begin_inset Space \hfill{}
28625 \end_inset
28626
28627
28628 \begin_inset Box Frameless
28629 position "t"
28630 hor_pos "c"
28631 has_inner_box 1
28632 inner_pos "c"
28633 use_parbox 0
28634 width "45col%"
28635 special "none"
28636 height "1in"
28637 height_special "totalheight"
28638 status open
28639
28640 \begin_layout Plain Layout
28641
28642 \lang english
28643 This is an English Text.
28644  This is an English Text.
28645  This is an English Text.
28646  This is an English Text.
28647  This is an English Text.
28648  This is an English Text.
28649  This is an English Text.
28650  This is an English Text.
28651  This is an English Text.
28652  This is an English Text.
28653  This is an English Text.
28654  This is an English Text.
28655  This is an English Text.
28656  This is an English Text.
28657  This is an English Text.
28658  This is an English Text.
28659 \begin_inset Foot
28660 status collapsed
28661
28662 \begin_layout Plain Layout
28663
28664 \lang english
28665 This is an English footnote.
28666 \end_layout
28667
28668 \end_inset
28669
28670  This is an English Text.
28671  
28672 \end_layout
28673
28674 \end_inset
28675
28676
28677 \end_layout
28678
28679 \begin_layout Standard
28680 \noindent
28681 \begin_inset VSpace bigskip
28682 \end_inset
28683
28684 Eine andere Anwendung für Minipages sind Fußnoten in Tabellen.
28685  Wegen einer LaTeX-Einschränkung erscheinen Fußnoten nicht am Ende der Seite,
28686  auf der die Tabelle gedruckt wird: 
28687 \begin_inset Tabular
28688 <lyxtabular version="3" rows="3" columns="4">
28689 <features>
28690 <column alignment="center" valignment="top" width="0pt">
28691 <column alignment="center" valignment="top" width="0pt">
28692 <column alignment="center" valignment="top" width="0pt">
28693 <column alignment="center" valignment="top" width="0pt">
28694 <row>
28695 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28696 \begin_inset Text
28697
28698 \begin_layout Plain Layout
28699 1
28700 \end_layout
28701
28702 \end_inset
28703 </cell>
28704 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28705 \begin_inset Text
28706
28707 \begin_layout Plain Layout
28708 2
28709 \end_layout
28710
28711 \end_inset
28712 </cell>
28713 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28714 \begin_inset Text
28715
28716 \begin_layout Plain Layout
28717 3
28718 \begin_inset Foot
28719 status collapsed
28720
28721 \begin_layout Plain Layout
28722 Dies ist eine Fußnote in einer Tabelle.
28723 \end_layout
28724
28725 \end_inset
28726
28727
28728 \end_layout
28729
28730 \end_inset
28731 </cell>
28732 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28733 \begin_inset Text
28734
28735 \begin_layout Plain Layout
28736 4
28737 \end_layout
28738
28739 \end_inset
28740 </cell>
28741 </row>
28742 <row>
28743 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28744 \begin_inset Text
28745
28746 \begin_layout Plain Layout
28747 a
28748 \end_layout
28749
28750 \end_inset
28751 </cell>
28752 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28753 \begin_inset Text
28754
28755 \begin_layout Plain Layout
28756 b
28757 \end_layout
28758
28759 \end_inset
28760 </cell>
28761 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28762 \begin_inset Text
28763
28764 \begin_layout Plain Layout
28765 c
28766 \end_layout
28767
28768 \end_inset
28769 </cell>
28770 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28771 \begin_inset Text
28772
28773 \begin_layout Plain Layout
28774 d
28775 \end_layout
28776
28777 \end_inset
28778 </cell>
28779 </row>
28780 <row>
28781 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
28782 \begin_inset Text
28783
28784 \begin_layout Plain Layout
28785 e
28786 \end_layout
28787
28788 \end_inset
28789 </cell>
28790 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
28791 \begin_inset Text
28792
28793 \begin_layout Plain Layout
28794 f
28795 \end_layout
28796
28797 \end_inset
28798 </cell>
28799 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
28800 \begin_inset Text
28801
28802 \begin_layout Plain Layout
28803 g
28804 \end_layout
28805
28806 \end_inset
28807 </cell>
28808 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
28809 \begin_inset Text
28810
28811 \begin_layout Plain Layout
28812 h
28813 \end_layout
28814
28815 \end_inset
28816 </cell>
28817 </row>
28818 </lyxtabular>
28819
28820 \end_inset
28821
28822
28823 \end_layout
28824
28825 \begin_layout Standard
28826 \noindent
28827 Aber wenn Sie die Tabelle in eine Minipage packen, wird die Fußnote am Ende
28828  der Minipage gedruckt, nummeriert mit kleinen lateinischen Buchstaben.
28829  In jeder Minipage wird die Fußnotennummer auf 1 zurückgesetzt, aber nicht
28830  außerhalb.
28831 \end_layout
28832
28833 \begin_layout Standard
28834 \align center
28835 \begin_inset Box Frameless
28836 position "t"
28837 hor_pos "c"
28838 has_inner_box 1
28839 inner_pos "c"
28840 use_parbox 0
28841 width "30col%"
28842 special "none"
28843 height "1in"
28844 height_special "totalheight"
28845 status open
28846
28847 \begin_layout Plain Layout
28848 \align center
28849 \begin_inset Tabular
28850 <lyxtabular version="3" rows="3" columns="4">
28851 <features>
28852 <column alignment="center" valignment="top" width="0pt">
28853 <column alignment="center" valignment="top" width="0pt">
28854 <column alignment="center" valignment="top" width="0pt">
28855 <column alignment="center" valignment="top" width="0pt">
28856 <row>
28857 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28858 \begin_inset Text
28859
28860 \begin_layout Plain Layout
28861 1
28862 \end_layout
28863
28864 \end_inset
28865 </cell>
28866 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28867 \begin_inset Text
28868
28869 \begin_layout Plain Layout
28870 2
28871 \end_layout
28872
28873 \end_inset
28874 </cell>
28875 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28876 \begin_inset Text
28877
28878 \begin_layout Plain Layout
28879 3
28880 \begin_inset Foot
28881 status collapsed
28882
28883 \begin_layout Plain Layout
28884 Dies ist eine Fußnote in einer Tabelle.
28885 \end_layout
28886
28887 \end_inset
28888
28889
28890 \end_layout
28891
28892 \end_inset
28893 </cell>
28894 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28895 \begin_inset Text
28896
28897 \begin_layout Plain Layout
28898 4
28899 \end_layout
28900
28901 \end_inset
28902 </cell>
28903 </row>
28904 <row>
28905 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28906 \begin_inset Text
28907
28908 \begin_layout Plain Layout
28909 a
28910 \end_layout
28911
28912 \end_inset
28913 </cell>
28914 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28915 \begin_inset Text
28916
28917 \begin_layout Plain Layout
28918 b
28919 \end_layout
28920
28921 \end_inset
28922 </cell>
28923 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
28924 \begin_inset Text
28925
28926 \begin_layout Plain Layout
28927 c
28928 \end_layout
28929
28930 \end_inset
28931 </cell>
28932 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
28933 \begin_inset Text
28934
28935 \begin_layout Plain Layout
28936 d
28937 \end_layout
28938
28939 \end_inset
28940 </cell>
28941 </row>
28942 <row>
28943 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
28944 \begin_inset Text
28945
28946 \begin_layout Plain Layout
28947 e
28948 \end_layout
28949
28950 \end_inset
28951 </cell>
28952 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
28953 \begin_inset Text
28954
28955 \begin_layout Plain Layout
28956 f
28957 \end_layout
28958
28959 \end_inset
28960 </cell>
28961 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
28962 \begin_inset Text
28963
28964 \begin_layout Plain Layout
28965 g
28966 \end_layout
28967
28968 \end_inset
28969 </cell>
28970 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
28971 \begin_inset Text
28972
28973 \begin_layout Plain Layout
28974 h
28975 \end_layout
28976
28977 \end_inset
28978 </cell>
28979 </row>
28980 </lyxtabular>
28981
28982 \end_inset
28983
28984
28985 \end_layout
28986
28987 \end_inset
28988
28989
28990 \end_layout
28991
28992 \begin_layout Standard
28993 \begin_inset VSpace bigskip
28994 \end_inset
28995
28996 Innerhalb von Minipages werden die Absatz-Einstellungen des Dokuments ignoriert.
28997  Das bedeutet, dass zwischen Absätzen kein Leerraum eingefügt wird oder
28998  Absätze nicht eingerückt werden, obwohl Sie das in 
28999 \family sans
29000 Dokument
29001 \family default
29002 \SpecialChar \menuseparator
29003
29004 \family sans
29005 Einstellun\SpecialChar \-
29006 gen\SpecialChar \menuseparator
29007 Textformat
29008 \family default
29009  festgelegt haben.
29010  Wenn Sie es trotzdem wollen, müssen Sie es manuell machen.
29011  Eine Standardeinrückung zum Beispiel erreichen Sie mit dem TeX-Code-Befehl
29012  
29013 \series bold
29014
29015 \backslash
29016 hspace*{1em}
29017 \series default
29018 .
29019 \end_layout
29020
29021 \begin_layout Standard
29022 Minipages können auch benutzt werden, um Textteilen eine andere Hintergrundfarbe
29023  zu verpassen, siehe Abschnitt
29024 \begin_inset Space ~
29025 \end_inset
29026
29027
29028 \begin_inset CommandInset ref
29029 LatexCommand ref
29030 reference "uab:Farbe-für-Absätze"
29031
29032 \end_inset
29033
29034 .
29035 \end_layout
29036
29037 \begin_layout Standard
29038 \begin_inset Note Greyedout
29039 status open
29040
29041 \begin_layout Plain Layout
29042
29043 \series bold
29044 Bemerkung:
29045 \series default
29046  In Minipages sind keine Gleitobjekte oder Randnotizen erlaubt, aber Minipages
29047  können in Tabellen, Gleitobjekten und anderen Boxen benutzt werden.
29048 \end_layout
29049
29050 \end_inset
29051
29052
29053 \end_layout
29054
29055 \begin_layout Section
29056 Parbox
29057 \begin_inset CommandInset label
29058 LatexCommand label
29059 name "abs:Parbox"
29060
29061 \end_inset
29062
29063
29064 \begin_inset Index
29065 status collapsed
29066
29067 \begin_layout Plain Layout
29068 Boxen ! Parbox
29069 \end_layout
29070
29071 \end_inset
29072
29073
29074 \end_layout
29075
29076 \begin_layout Standard
29077 Parbox ist eine Abkürzung für 
29078 \begin_inset Quotes gld
29079 \end_inset
29080
29081 paragraph box
29082 \begin_inset Quotes grd
29083 \end_inset
29084
29085 , was Absatzbox bedeutet.
29086  Weil Parbox ein LaTeX-Befehl ist, Minipage aber eine LaTeX-Umgebung, besitzen
29087  Parboxen einige Einschränkungen.
29088  Zum Beispiel werden keine Fußnoten, die in einer Parbox definiert werden,
29089  gedruckt.:
29090 \end_layout
29091
29092 \begin_layout Standard
29093 \align center
29094 \begin_inset Box Frameless
29095 position "t"
29096 hor_pos "c"
29097 has_inner_box 1
29098 inner_pos "t"
29099 use_parbox 1
29100 width "33col%"
29101 special "none"
29102 height "1in"
29103 height_special "totalheight"
29104 status collapsed
29105
29106 \begin_layout Plain Layout
29107 Dies ist Text in einer Parbox.
29108  Dies ist Text in einer Parbox.
29109 \end_layout
29110
29111 \begin_layout Plain Layout
29112 Diese Fußnote wird nicht gedruckt:
29113 \begin_inset Foot
29114 status collapsed
29115
29116 \begin_layout Plain Layout
29117 Diese Fußnote ist in einer Parbox und wird deshalb nicht gedruckt.
29118 \end_layout
29119
29120 \end_inset
29121
29122
29123 \end_layout
29124
29125 \end_inset
29126
29127
29128 \end_layout
29129
29130 \begin_layout Standard
29131 Und außerdem dürfen Parboxen keine Textausrichtungen, Listen, Aufzählungen
29132  und Theoreme enthalten.
29133 \end_layout
29134
29135 \begin_layout Section
29136 Boxen für Worte und Buchstaben
29137 \begin_inset Index
29138 status collapsed
29139
29140 \begin_layout Plain Layout
29141 Boxen ! für Buchstaben
29142 \end_layout
29143
29144 \end_inset
29145
29146
29147 \end_layout
29148
29149 \begin_layout Subsection
29150 Silbentrennung unterbinden 
29151 \begin_inset CommandInset label
29152 LatexCommand label
29153 name "abs:Silbentrennung-unterbinden"
29154
29155 \end_inset
29156
29157
29158 \begin_inset Index
29159 status collapsed
29160
29161 \begin_layout Plain Layout
29162 Boxen ! zur Vermeidung von Silbentrennung
29163 \end_layout
29164
29165 \end_inset
29166
29167
29168 \end_layout
29169
29170 \begin_layout Standard
29171 Sie können eine spezielle Box benutzen, um Silbentrennungen zu unterbinden.
29172 \begin_inset Newline newline
29173 \end_inset
29174
29175 Hier ist ein Beispiel: 
29176 \end_layout
29177
29178 \begin_layout Standard
29179 In dieser Zeile wird ein sehr langes Wort getrennt, nämlich 
29180 \begin_inset Quotes gld
29181 \end_inset
29182
29183 einsehrsehrsehrlangeswort
29184 \begin_inset Quotes grd
29185 \end_inset
29186
29187 .
29188 \end_layout
29189
29190 \begin_layout Standard
29191 Um das zu verhindern, fügen Sie vor dem Wort, das nicht getrennt werden
29192  soll, den TeX-Code-Befehl
29193 \end_layout
29194
29195 \begin_layout Standard
29196
29197 \series bold
29198
29199 \backslash
29200 mbox{
29201 \end_layout
29202
29203 \begin_layout Standard
29204 ein TeX-Code, Hinter dem Wort fügen Sie 
29205 \series bold
29206
29207 \begin_inset Quotes gld
29208 \end_inset
29209
29210 }
29211 \series default
29212
29213 \begin_inset Quotes grd
29214 \end_inset
29215
29216  als TeX-Code ein.
29217  Hier ist das Ergebnis:
29218 \end_layout
29219
29220 \begin_layout Standard
29221 In dieser Zeile wird ein sehr langes Wort NICHT getrennt, nämlich 
29222 \begin_inset ERT
29223 status collapsed
29224
29225 \begin_layout Plain Layout
29226
29227
29228 \backslash
29229 mbox{
29230 \end_layout
29231
29232 \end_inset
29233
29234
29235 \begin_inset Quotes gld
29236 \end_inset
29237
29238 einsehrsehrsehrlangeswort
29239 \begin_inset Quotes grd
29240 \end_inset
29241
29242
29243 \begin_inset ERT
29244 status collapsed
29245
29246 \begin_layout Plain Layout
29247
29248 }
29249 \end_layout
29250
29251 \end_inset
29252
29253 .
29254 \end_layout
29255
29256 \begin_layout Standard
29257 Alternativ dazu kann man auch den Befehl 
29258 \begin_inset Quotes gld
29259 \end_inset
29260
29261
29262 \series bold
29263
29264 \backslash
29265 -
29266 \series default
29267
29268 \begin_inset Quotes grd
29269 \end_inset
29270
29271  als TeX-Code direkt vor das Wort setzen:
29272 \end_layout
29273
29274 \begin_layout Standard
29275 In dieser Zeile wird ein sehr langes Wort NICHT getrennt, nämlich 
29276 \begin_inset Quotes gld
29277 \end_inset
29278
29279
29280 \begin_inset ERT
29281 status collapsed
29282
29283 \begin_layout Plain Layout
29284
29285
29286 \backslash
29287 -
29288 \end_layout
29289
29290 \end_inset
29291
29292 einsehrsehrsehrlangeswort
29293 \begin_inset Quotes grd
29294 \end_inset
29295
29296 .
29297 \end_layout
29298
29299 \begin_layout Standard
29300 Natürlich ragt das Wort jetzt in den Seitenrand hinein.
29301  Wenn Sie das nicht wollen, müssen Sie einen manuellen Zeilenumbruch (
29302 \series bold
29303 Strg-Eingabe
29304 \series default
29305 ) einfügen: 
29306 \end_layout
29307
29308 \begin_layout Standard
29309 In dieser Zeile wird ein sehr langes Wort NICHT getrennt, nämlich
29310 \begin_inset Newline newline
29311 \end_inset
29312
29313
29314 \begin_inset ERT
29315 status collapsed
29316
29317 \begin_layout Plain Layout
29318
29319
29320 \backslash
29321 mbox{
29322 \end_layout
29323
29324 \end_inset
29325
29326
29327 \begin_inset Quotes gld
29328 \end_inset
29329
29330 einsehrsehrsehrlangeswort
29331 \begin_inset Quotes grd
29332 \end_inset
29333
29334
29335 \begin_inset ERT
29336 status collapsed
29337
29338 \begin_layout Plain Layout
29339
29340 }
29341 \end_layout
29342
29343 \end_inset
29344
29345 .
29346 \end_layout
29347
29348 \begin_layout Subsection
29349 Vertikale Ausrichtung
29350 \begin_inset CommandInset label
29351 LatexCommand label
29352 name "uab:Vertikale-Ausrichtung"
29353
29354 \end_inset
29355
29356
29357 \begin_inset Index
29358 status collapsed
29359
29360 \begin_layout Plain Layout
29361 Boxen ! für Vertikale Ausrichtung
29362 \end_layout
29363
29364 \end_inset
29365
29366
29367 \begin_inset Index
29368 status collapsed
29369
29370 \begin_layout Plain Layout
29371 Boxen ! raisebox
29372 \end_layout
29373
29374 \end_inset
29375
29376
29377 \end_layout
29378
29379 \begin_layout Standard
29380 Mit dem LaTeX-Befehl 
29381 \series bold
29382
29383 \backslash
29384 raisebox
29385 \series default
29386  können Sie Worte, Buchstaben oder andere Boxen vertikal bezüglich des umgebende
29387 n Textes ausrichten.
29388  
29389 \series bold
29390
29391 \backslash
29392 raisebox
29393 \series default
29394  wird folgendermaßen benutzt:
29395 \end_layout
29396
29397 \begin_layout Standard
29398
29399 \series bold
29400
29401 \backslash
29402 raisebox{Verschiebung}[oben][unten]{Text}
29403 \end_layout
29404
29405 \begin_layout Standard
29406 Positive Werte für Verschiebung
29407 \series bold
29408  
29409 \series default
29410 verschieben die Box nach oben, negative nach unten.
29411  Die beiden optionalen Parameter 
29412 \family typewriter
29413 oben
29414 \family default
29415  und 
29416 \family typewriter
29417 unten
29418 \family default
29419  legen fest, wie weit die Box mit dem Text über oder unter die Grundlinie
29420  hinausgeht, wenn sie nicht verschoben ist.
29421 \end_layout
29422
29423 \begin_layout Standard
29424 Um zum Beispiel das Wort 
29425 \begin_inset Quotes gld
29426 \end_inset
29427
29428 provokant
29429 \begin_inset Quotes grd
29430 \end_inset
29431
29432  mit seinem 
29433 \begin_inset Quotes gld
29434 \end_inset
29435
29436 niedrigsten
29437 \begin_inset Quotes grd
29438 \end_inset
29439
29440  Buchstaben 
29441 \begin_inset Quotes gld
29442 \end_inset
29443
29444 p
29445 \begin_inset Quotes grd
29446 \end_inset
29447
29448  an der Grundlinie auszurichten, müssen Sie den TeX-Code-Befehl
29449 \end_layout
29450
29451 \begin_layout Standard
29452
29453 \series bold
29454
29455 \backslash
29456 raisebox{
29457 \backslash
29458 depth}{
29459 \end_layout
29460
29461 \begin_layout Standard
29462 vor dem Wort einfügen und 
29463 \begin_inset Quotes gld
29464 \end_inset
29465
29466
29467 \series bold
29468 }
29469 \series default
29470
29471 \begin_inset Quotes grd
29472 \end_inset
29473
29474  als TeX-Code dahinter:
29475 \end_layout
29476
29477 \begin_layout Standard
29478 Dies ist eine Zeile, in der das Wort 
29479 \begin_inset ERT
29480 status collapsed
29481
29482 \begin_layout Plain Layout
29483
29484
29485 \backslash
29486 raisebox{
29487 \backslash
29488 depth}{
29489 \end_layout
29490
29491 \end_inset
29492
29493
29494 \begin_inset Quotes gld
29495 \end_inset
29496
29497 provokant
29498 \begin_inset Quotes grd
29499 \end_inset
29500
29501
29502 \begin_inset ERT
29503 status collapsed
29504
29505 \begin_layout Plain Layout
29506
29507 }
29508 \end_layout
29509
29510 \end_inset
29511
29512  nach oben verschoben wurde.
29513 \end_layout
29514
29515 \begin_layout Standard
29516 \begin_inset VSpace bigskip
29517 \end_inset
29518
29519 Wenn Sie Buchstaben nach oben oder unten verschieben, wird der Zeilenabstand
29520  gedehnt:
29521 \end_layout
29522
29523 \begin_layout Standard
29524 Dies ist eine Zeile, in der das Wort 
29525 \begin_inset ERT
29526 status collapsed
29527
29528 \begin_layout Plain Layout
29529
29530
29531 \backslash
29532 raisebox{-
29533 \backslash
29534 depth}{
29535 \end_layout
29536
29537 \end_inset
29538
29539
29540 \begin_inset Quotes gld
29541 \end_inset
29542
29543 provokant
29544 \begin_inset Quotes grd
29545 \end_inset
29546
29547
29548 \begin_inset ERT
29549 status collapsed
29550
29551 \begin_layout Plain Layout
29552
29553 }
29554 \end_layout
29555
29556 \end_inset
29557
29558  nach unten verschoben wurde.
29559 \end_layout
29560
29561 \begin_layout Standard
29562 Dies ist eine Zeile, in der das Wort 
29563 \begin_inset ERT
29564 status collapsed
29565
29566 \begin_layout Plain Layout
29567
29568
29569 \backslash
29570 raisebox{0.5cm}{
29571 \end_layout
29572
29573 \end_inset
29574
29575
29576 \begin_inset Quotes gld
29577 \end_inset
29578
29579 testen
29580 \begin_inset Quotes grd
29581 \end_inset
29582
29583
29584 \begin_inset ERT
29585 status collapsed
29586
29587 \begin_layout Plain Layout
29588
29589 }
29590 \end_layout
29591
29592 \end_inset
29593
29594  um 0.5
29595 \begin_inset Space \thinspace{}
29596 \end_inset
29597
29598 cm nach oben verschoben wurde.
29599 \end_layout
29600
29601 \begin_layout Standard
29602 Wenn Sie das nicht wollen, können Sie die Boxhöhe auf 0 setzen:
29603 \end_layout
29604
29605 \begin_layout Standard
29606
29607 \series bold
29608
29609 \backslash
29610 raisebox{-
29611 \backslash
29612 depth}[0pt]{
29613 \end_layout
29614
29615 \begin_layout Standard
29616 Dies ist eine Zeile, in der das Wort 
29617 \begin_inset ERT
29618 status collapsed
29619
29620 \begin_layout Plain Layout
29621
29622
29623 \backslash
29624 raisebox{-
29625 \backslash
29626 depth}[0pt]{
29627 \end_layout
29628
29629 \end_inset
29630
29631
29632 \begin_inset Quotes gld
29633 \end_inset
29634
29635 provokant
29636 \begin_inset Quotes grd
29637 \end_inset
29638
29639
29640 \begin_inset ERT
29641 status collapsed
29642
29643 \begin_layout Plain Layout
29644
29645 }
29646 \end_layout
29647
29648 \end_inset
29649
29650  nach unten verschoben wurde.
29651 \end_layout
29652
29653 \begin_layout Standard
29654 Dies ist eine Zeile, in der das Wort 
29655 \begin_inset ERT
29656 status collapsed
29657
29658 \begin_layout Plain Layout
29659
29660
29661 \backslash
29662 raisebox{0.5cm}[0pt]{
29663 \end_layout
29664
29665 \end_inset
29666
29667
29668 \begin_inset Quotes gld
29669 \end_inset
29670
29671 testen
29672 \begin_inset Quotes grd
29673 \end_inset
29674
29675
29676 \begin_inset ERT
29677 status collapsed
29678
29679 \begin_layout Plain Layout
29680
29681 }
29682 \end_layout
29683
29684 \end_inset
29685
29686  um 0.5
29687 \begin_inset Space \thinspace{}
29688 \end_inset
29689
29690 cm nach oben verschoben wurde.
29691  Jetzt überschneiden sich die verschobenen Worte.
29692 \end_layout
29693
29694 \begin_layout Section
29695 Farbige Boxen
29696 \begin_inset CommandInset label
29697 LatexCommand label
29698 name "abs:Farbige-Boxen"
29699
29700 \end_inset
29701
29702
29703 \begin_inset Index
29704 status collapsed
29705
29706 \begin_layout Plain Layout
29707 Boxen ! farbige
29708 \end_layout
29709
29710 \end_inset
29711
29712
29713 \end_layout
29714
29715 \begin_layout Subsection
29716 Text-Hintergrundfarbe
29717 \begin_inset Index
29718 status collapsed
29719
29720 \begin_layout Plain Layout
29721 Farbe ! für Text-Hintergrund
29722 \end_layout
29723
29724 \end_inset
29725
29726
29727 \end_layout
29728
29729 \begin_layout Standard
29730 Um einen Text mit einer Hintergrundfarbe zu versehen, muss der Text in einer
29731  sogenannten 
29732 \begin_inset Quotes gld
29733 \end_inset
29734
29735 colorbox
29736 \begin_inset Quotes grd
29737 \end_inset
29738
29739  stehen.
29740  Dafür muss das LaTeX-Paket 
29741 \series bold
29742 color
29743 \series default
29744
29745 \begin_inset Index
29746 status collapsed
29747
29748 \begin_layout Plain Layout
29749 LaTeX-Pakete ! color
29750 \end_layout
29751
29752 \end_inset
29753
29754  im LaTeX-Vorspann mit folgendem Befehl geladen werden:
29755 \end_layout
29756
29757 \begin_layout Standard
29758
29759 \series bold
29760
29761 \backslash
29762 @ifundef\SpecialChar \textcompwordmark{}
29763 ined{textcolor}
29764 \begin_inset Newline newline
29765 \end_inset
29766
29767
29768 \begin_inset ERT
29769 status collapsed
29770
29771 \begin_layout Plain Layout
29772
29773
29774 \backslash
29775 hphantom{ }
29776 \end_layout
29777
29778 \end_inset
29779
29780 {
29781 \backslash
29782 usepackage{color}}{}
29783 \end_layout
29784
29785 \begin_layout Standard
29786 Wenn Sie Text einfärben, lädt LyX das Paket 
29787 \series bold
29788 color
29789 \series default
29790  automatisch.
29791 \begin_inset Foot
29792 status collapsed
29793
29794 \begin_layout Plain Layout
29795 Der Befehl 
29796 \series bold
29797
29798 \backslash
29799 @ifundef\SpecialChar \textcompwordmark{}
29800 ined
29801 \series default
29802  vermeidet, dass es in diesem Fall doppelt geladen wird.
29803 \end_layout
29804
29805 \end_inset
29806
29807
29808 \end_layout
29809
29810 \begin_layout Standard
29811 \begin_inset VSpace medskip
29812 \end_inset
29813
29814 Colorboxen werden mit dem Befehl 
29815 \series bold
29816
29817 \backslash
29818 colorbox
29819 \series default
29820  erzeugt:
29821 \end_layout
29822
29823 \begin_layout Standard
29824
29825 \series bold
29826
29827 \backslash
29828 colorbox{Farbe}{Boxinhalt}
29829 \end_layout
29830
29831 \begin_layout Standard
29832 Der Boxinhalt kann auch eine Box sein, und Colorboxen können in anderen
29833  Boxen sein.
29834 \end_layout
29835
29836 \begin_layout Standard
29837 Die folgenden Farben sind vordefiniert (
29838 \begin_inset Graphics
29839         filename ../../images/dialog-show_character.png
29840         scale 70
29841         scaleBeforeRotation
29842         BoundingBox 0bp 0bp 22bp 22bp
29843
29844 \end_inset
29845
29846 \SpecialChar \menuseparator
29847
29848 \family sans
29849 Farbe
29850 \family default
29851 ):
29852 \family sans
29853  schwarz
29854 \family default
29855
29856 \family sans
29857 wei
29858 \family default
29859 ß, 
29860 \family sans
29861 rot
29862 \family default
29863 \series bold
29864 ,
29865 \series default
29866  
29867 \family sans
29868 grün
29869 \family default
29870
29871 \family sans
29872 blau
29873 \family default
29874
29875 \family sans
29876 türkis
29877 \family default
29878
29879 \family sans
29880 purpurrot
29881 \family default
29882  und 
29883 \family sans
29884 gelb
29885 \family default
29886 .
29887 \end_layout
29888
29889 \begin_layout Standard
29890 Sie können auch Ihre eigenen Farben definieren, wie in Abschnitt
29891 \begin_inset Space ~
29892 \end_inset
29893
29894
29895 \begin_inset CommandInset ref
29896 LatexCommand ref
29897 reference "abs:Farbige-Tabellen"
29898
29899 \end_inset
29900
29901  beschrieben.
29902 \end_layout
29903
29904 \begin_layout Standard
29905 Um zum Beispiel ein Wort auf einem roten Hintergrund zu drucken, fügen sie
29906  den TeX-Code-Befehl
29907 \end_layout
29908
29909 \begin_layout Standard
29910
29911 \series bold
29912
29913 \backslash
29914 colorbox{red}{
29915 \end_layout
29916
29917 \begin_layout Standard
29918 vor dem Wort ein.
29919  Hinter dem Wort fügen Sie 
29920 \series bold
29921
29922 \begin_inset Quotes gld
29923 \end_inset
29924
29925 }
29926 \series default
29927
29928 \begin_inset Quotes grd
29929 \end_inset
29930
29931  als TeX-Code ein.
29932  Hier ist das Ergebnis:
29933 \end_layout
29934
29935 \begin_layout Standard
29936 In dieser Zeile hat 
29937 \begin_inset ERT
29938 status collapsed
29939
29940 \begin_layout Plain Layout
29941
29942
29943 \backslash
29944 colorbox{red}{
29945 \end_layout
29946
29947 \end_inset
29948
29949 Achtung!
29950 \begin_inset ERT
29951 status collapsed
29952
29953 \begin_layout Plain Layout
29954
29955 }
29956 \end_layout
29957
29958 \end_inset
29959
29960  einen roten Hintergrund.
29961 \end_layout
29962
29963 \begin_layout Standard
29964 \begin_inset VSpace bigskip
29965 \end_inset
29966
29967 Wenn der Rahmen der Box eine andere Farbe haben soll, können Sie den Befehl
29968  
29969 \series bold
29970
29971 \backslash
29972 fcolorbox
29973 \series default
29974  verwenden:
29975 \end_layout
29976
29977 \begin_layout Standard
29978
29979 \series bold
29980
29981 \backslash
29982 fcolorbox{Rahmenfarbe}{Boxfarbe}{Boxinhalt}
29983 \end_layout
29984
29985 \begin_layout Standard
29986
29987 \series bold
29988
29989 \backslash
29990 fcolorbox
29991 \series default
29992  ist eine Erweiterung von 
29993 \series bold
29994
29995 \backslash
29996 colorbox
29997 \series default
29998 .
29999  Die Rahmendicke und der Abstand zwischen Rahmen und Boxinhalt können mit
30000  
30001 \series bold
30002
30003 \backslash
30004 fboxrule
30005 \series default
30006  und 
30007 \series bold
30008
30009 \backslash
30010 fboxsep
30011 \series default
30012  gesteuert werden, wie in Abschnitt
30013 \begin_inset Space ~
30014 \end_inset
30015
30016
30017 \begin_inset CommandInset ref
30018 LatexCommand ref
30019 reference "abs:Gerahmte-Boxen"
30020
30021 \end_inset
30022
30023  beschrieben.
30024 \end_layout
30025
30026 \begin_layout Standard
30027 Für das folgende Beispiel wurde der Befehl
30028 \end_layout
30029
30030 \begin_layout Standard
30031
30032 \series bold
30033
30034 \backslash
30035 fcolorbox{cyan}{magenta}{
30036 \end_layout
30037
30038 \begin_layout Standard
30039 benutzt.
30040  Hier wurden die Rahmendicke und der Abstand auf 1
30041 \begin_inset Space \thinspace{}
30042 \end_inset
30043
30044 mm gesetzt:
30045 \begin_inset Newline newline
30046 \end_inset
30047
30048
30049 \begin_inset ERT
30050 status collapsed
30051
30052 \begin_layout Plain Layout
30053
30054
30055 \backslash
30056 fboxrule 1mm 
30057 \backslash
30058 fboxsep 1mm
30059 \end_layout
30060
30061 \end_inset
30062
30063
30064 \begin_inset ERT
30065 status collapsed
30066
30067 \begin_layout Plain Layout
30068
30069
30070 \backslash
30071 fcolorbox{cyan}{green}{
30072 \end_layout
30073
30074 \end_inset
30075
30076 Dies ist Text in einer farbigen, gerahmten Box.
30077 \begin_inset ERT
30078 status collapsed
30079
30080 \begin_layout Plain Layout
30081
30082 }
30083 \end_layout
30084
30085 \end_inset
30086
30087
30088 \end_layout
30089
30090 \begin_layout Standard
30091 \begin_inset VSpace bigskip
30092 \end_inset
30093
30094 Natürlich gibt es auch farbigen Text in einer Colorbox:
30095 \begin_inset Newline newline
30096 \end_inset
30097
30098
30099 \begin_inset ERT
30100 status collapsed
30101
30102 \begin_layout Plain Layout
30103
30104
30105 \backslash
30106 fcolorbox{cyan}{green}{
30107 \end_layout
30108
30109 \end_inset
30110
30111
30112 \color yellow
30113 Dies ist farbiger Text in einer farbigen, gerahmten Box.
30114 \color none
30115
30116 \begin_inset ERT
30117 status collapsed
30118
30119 \begin_layout Plain Layout
30120
30121 }
30122 \end_layout
30123
30124 \end_inset
30125
30126
30127 \begin_inset ERT
30128 status collapsed
30129
30130 \begin_layout Plain Layout
30131
30132
30133 \backslash
30134 fboxrule 0.4pt 
30135 \backslash
30136 fboxsep 3pt
30137 \end_layout
30138
30139 \end_inset
30140
30141
30142 \end_layout
30143
30144 \begin_layout Standard
30145 \begin_inset VSpace bigskip
30146 \end_inset
30147
30148
30149 \end_layout
30150
30151 \begin_layout Standard
30152 \begin_inset Note Greyedout
30153 status open
30154
30155 \begin_layout Plain Layout
30156 \noindent
30157
30158 \series bold
30159 Bemerkung:
30160 \series default
30161  Text in Colorboxen kann nicht umgebrochen werden.
30162  Für Text mit mehreren Zeilen müssen Sie eine Box in einer Colorbox benutzen,
30163  wie im folgenden beschrieben.
30164 \end_layout
30165
30166 \end_inset
30167
30168
30169 \end_layout
30170
30171 \begin_layout Subsection
30172 Farbe für Absätze
30173 \begin_inset CommandInset label
30174 LatexCommand label
30175 name "uab:Farbe-für-Absätze"
30176
30177 \end_inset
30178
30179
30180 \begin_inset Index
30181 status collapsed
30182
30183 \begin_layout Plain Layout
30184 Farbe ! für Absätze
30185 \end_layout
30186
30187 \end_inset
30188
30189
30190 \end_layout
30191
30192 \begin_layout Standard
30193 Um die Hintergrundfarbe für mehr als eine Textzeile zu setzen, müssen Sie
30194  den Text in eine Minipage stellen.
30195  Vor der Minipage fügen Sie den TeX-Code-Befehl
30196 \end_layout
30197
30198 \begin_layout Standard
30199
30200 \series bold
30201
30202 \backslash
30203 colorbox{color}{
30204 \end_layout
30205
30206 \begin_layout Standard
30207 ein.
30208  Hinter der Minipage fügen Sie 
30209 \series bold
30210
30211 \begin_inset Quotes gld
30212 \end_inset
30213
30214 }
30215 \series default
30216
30217 \begin_inset Quotes grd
30218 \end_inset
30219
30220  als TeX-Code ein.
30221 \end_layout
30222
30223 \begin_layout Standard
30224 \begin_inset ERT
30225 status collapsed
30226
30227 \begin_layout Plain Layout
30228
30229
30230 \backslash
30231 colorbox{hellgrau}{
30232 \end_layout
30233
30234 \end_inset
30235
30236
30237 \begin_inset Box Frameless
30238 position "t"
30239 hor_pos "c"
30240 has_inner_box 1
30241 inner_pos "t"
30242 use_parbox 0
30243 width "100col%"
30244 special "none"
30245 height "1in"
30246 height_special "totalheight"
30247 status collapsed
30248
30249 \begin_layout Plain Layout
30250 Dies ist Text mit einer Hintergrundfarbe.
30251  Dies ist Text mit einer Hintergrundfarbe.
30252 \end_layout
30253
30254 \begin_layout Plain Layout
30255 Der Text kann Fußnoten
30256 \begin_inset Foot
30257 status open
30258
30259 \begin_layout Plain Layout
30260 Eine weitere Fußnote
30261 \end_layout
30262
30263 \end_inset
30264
30265  und Tabellen und Abbildungen enthalten.
30266 \end_layout
30267
30268 \begin_layout Plain Layout
30269 \align center
30270 \begin_inset Tabular
30271 <lyxtabular version="3" rows="3" columns="3">
30272 <features>
30273 <column alignment="center" valignment="top" width="0">
30274 <column alignment="center" valignment="top" width="0">
30275 <column alignment="center" valignment="top" width="0">
30276 <row>
30277 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
30278 \begin_inset Text
30279
30280 \begin_layout Plain Layout
30281 a
30282 \end_layout
30283
30284 \end_inset
30285 </cell>
30286 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
30287 \begin_inset Text
30288
30289 \begin_layout Plain Layout
30290 !
30291 \end_layout
30292
30293 \end_inset
30294 </cell>
30295 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
30296 \begin_inset Text
30297
30298 \begin_layout Plain Layout
30299 3
30300 \end_layout
30301
30302 \end_inset
30303 </cell>
30304 </row>
30305 <row>
30306 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
30307 \begin_inset Text
30308
30309 \begin_layout Plain Layout
30310 <
30311 \end_layout
30312
30313 \end_inset
30314 </cell>
30315 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
30316 \begin_inset Text
30317
30318 \begin_layout Plain Layout
30319 b2
30320 \begin_inset Quotes erd
30321 \end_inset
30322
30323 |
30324 \end_layout
30325
30326 \end_inset
30327 </cell>
30328 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
30329 \begin_inset Text
30330
30331 \begin_layout Plain Layout
30332 >
30333 \end_layout
30334
30335 \end_inset
30336 </cell>
30337 </row>
30338 <row>
30339 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
30340 \begin_inset Text
30341
30342 \begin_layout Plain Layout
30343 1
30344 \end_layout
30345
30346 \end_inset
30347 </cell>
30348 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
30349 \begin_inset Text
30350
30351 \begin_layout Plain Layout
30352 §
30353 \end_layout
30354
30355 \end_inset
30356 </cell>
30357 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
30358 \begin_inset Text
30359
30360 \begin_layout Plain Layout
30361 c
30362 \end_layout
30363
30364 \end_inset
30365 </cell>
30366 </row>
30367 </lyxtabular>
30368
30369 \end_inset
30370
30371
30372 \end_layout
30373
30374 \end_inset
30375
30376
30377 \begin_inset ERT
30378 status collapsed
30379
30380 \begin_layout Plain Layout
30381
30382 }
30383 \end_layout
30384
30385 \end_inset
30386
30387
30388 \end_layout
30389
30390 \begin_layout Section
30391 Rotierte und skalierte Boxen
30392 \end_layout
30393
30394 \begin_layout Standard
30395 Um die Befehle dieses Abschnitts nutzen zu können, muss das Paket 
30396 \series bold
30397 graphicx
30398 \series default
30399
30400 \begin_inset Index
30401 status collapsed
30402
30403 \begin_layout Plain Layout
30404 LaTeX-Pakete ! graphicx
30405 \end_layout
30406
30407 \end_inset
30408
30409  im LaTeX-Vorspann mit folgendem Befehl geladen werden:
30410 \end_layout
30411
30412 \begin_layout Standard
30413
30414 \series bold
30415
30416 \backslash
30417 @ifundefined{rotatebox}
30418 \begin_inset Newline newline
30419 \end_inset
30420
30421
30422 \begin_inset ERT
30423 status collapsed
30424
30425 \begin_layout Plain Layout
30426
30427
30428 \backslash
30429 hphantom{ }
30430 \end_layout
30431
30432 \end_inset
30433
30434 {
30435 \backslash
30436 usepackage{graphicx}}{}
30437 \end_layout
30438
30439 \begin_layout Standard
30440 \begin_inset Note Greyedout
30441 status open
30442
30443 \begin_layout Plain Layout
30444
30445 \series bold
30446 Bemerkung:
30447 \series default
30448  Die meisten DVI-Programme können keine rotierten oder skalierten Texte
30449  darstellen.
30450  In der PDF- oder PostScript-Ausgabe wird aber alles korrekt angezeigt.
30451 \end_layout
30452
30453 \end_inset
30454
30455
30456 \end_layout
30457
30458 \begin_layout Standard
30459 \begin_inset Note Greyedout
30460 status open
30461
30462 \begin_layout Plain Layout
30463
30464 \series bold
30465 Bemerkung:
30466 \series default
30467  Gleitobjekte dürfen nicht in eine rotiere oder skaliere Box gesetzt werden.
30468 \end_layout
30469
30470 \end_inset
30471
30472
30473 \end_layout
30474
30475 \begin_layout Subsection
30476 Rotierte Boxen
30477 \begin_inset Index
30478 status collapsed
30479
30480 \begin_layout Plain Layout
30481 Boxen ! rotierte
30482 \end_layout
30483
30484 \end_inset
30485
30486
30487 \begin_inset Index
30488 status collapsed
30489
30490 \begin_layout Plain Layout
30491 Rotiertes Material
30492 \end_layout
30493
30494 \end_inset
30495
30496
30497 \begin_inset Index
30498 status collapsed
30499
30500 \begin_layout Plain Layout
30501 Abbildungen ! rotierte
30502 \end_layout
30503
30504 \end_inset
30505
30506
30507 \begin_inset Index
30508 status collapsed
30509
30510 \begin_layout Plain Layout
30511 Tabellen ! rotierte
30512 \end_layout
30513
30514 \end_inset
30515
30516
30517 \end_layout
30518
30519 \begin_layout Standard
30520 Um Text zu drehen, verwendet man den Befehl 
30521 \series bold
30522
30523 \backslash
30524 rotatebox
30525 \series default
30526  im TeX-Code nach folgendem Schema:
30527 \end_layout
30528
30529 \begin_layout Standard
30530
30531 \series bold
30532
30533 \backslash
30534 rotatebox[Drehpunkt]{Winkel}{Boxinhalt}
30535 \end_layout
30536
30537 \begin_layout Standard
30538 Der Drehpunkt wird mit 
30539 \series bold
30540 origin=Position
30541 \series default
30542  angegeben.
30543  Folgende Positionen sind möglich: 
30544 \emph on
30545 c
30546 \emph default
30547  (mittig), 
30548 \emph on
30549 l
30550 \emph default
30551  (links), 
30552 \emph on
30553 r
30554 \emph default
30555  (rechts), 
30556 \emph on
30557 b
30558 \emph default
30559  (unten), 
30560 \emph on
30561 t
30562 \emph default
30563  (oben), sowie sinnvolle Kombinationen aus den vier Grundpositionen.
30564  Z.
30565 \begin_inset Space \thinspace{}
30566 \end_inset
30567
30568 B.
30569  bedeutet 
30570 \emph on
30571 lt
30572 \emph default
30573 , dass sich der Drehpunkt links oben befindet.
30574  Wird kein Drehpunkt angegeben, wird die Position 
30575 \emph on
30576 l
30577 \emph default
30578  verwendet.
30579  Winkel gibt den Drehwinkel in Grad an und darf auch negativ sein.
30580  Gedreht wird gegen den Uhrzeigersinn.
30581 \end_layout
30582
30583 \begin_layout Standard
30584 Im folgenden Beispiel wurde vor dem Text der Befehl 
30585 \series bold
30586
30587 \backslash
30588 rotatebox[origin=c]{60}{
30589 \series default
30590  im TeX-Modus eingegeben.
30591  Nach dem Text wurde die schließende Klammer 
30592 \series bold
30593 }
30594 \series default
30595  wiederum im TeX-Modus eingegeben.
30596 \end_layout
30597
30598 \begin_layout Standard
30599 Dies ist eine Zeile 
30600 \begin_inset ERT
30601 status collapsed
30602
30603 \begin_layout Plain Layout
30604
30605
30606 \backslash
30607 rotatebox[origin=c]{60}{
30608 \end_layout
30609
30610 \end_inset
30611
30612 mit rotiertem
30613 \begin_inset ERT
30614 status collapsed
30615
30616 \begin_layout Plain Layout
30617
30618 }
30619 \end_layout
30620
30621 \end_inset
30622
30623  Text.
30624 \end_layout
30625
30626 \begin_layout Standard
30627 Der Boxinhalt kann auch eine andere Box oder eine eingebettete Formel sein:
30628 \end_layout
30629
30630 \begin_layout Standard
30631 Dies ist eine Zeile 
30632 \begin_inset ERT
30633 status collapsed
30634
30635 \begin_layout Plain Layout
30636
30637
30638 \backslash
30639 rotatebox[origin=r]{-60}{
30640 \end_layout
30641
30642 \end_inset
30643
30644
30645 \begin_inset Box Doublebox
30646 position "c"
30647 hor_pos "c"
30648 has_inner_box 0
30649 inner_pos "c"
30650 use_parbox 0
30651 width "1in"
30652 special "width"
30653 height "1in"
30654 height_special "totalheight"
30655 status collapsed
30656
30657 \begin_layout Plain Layout
30658 mit rotiertem
30659 \end_layout
30660
30661 \end_inset
30662
30663
30664 \begin_inset ERT
30665 status collapsed
30666
30667 \begin_layout Plain Layout
30668
30669 }
30670 \end_layout
30671
30672 \end_inset
30673
30674  umrandeten Text 
30675 \begin_inset ERT
30676 status collapsed
30677
30678 \begin_layout Plain Layout
30679
30680
30681 \backslash
30682 rotatebox[origin=lb]{60}{
30683 \end_layout
30684
30685 \end_inset
30686
30687
30688 \begin_inset Formula $\int A\,\mathrm{d}x=B$
30689 \end_inset
30690
30691
30692 \begin_inset ERT
30693 status collapsed
30694
30695 \begin_layout Plain Layout
30696
30697 }
30698 \end_layout
30699
30700 \end_inset
30701
30702  und einer Formel.
30703 \end_layout
30704
30705 \begin_layout Standard
30706 oder ein Bild oder Tabelle:
30707 \end_layout
30708
30709 \begin_layout Standard
30710 Dies ist eine Zeile 
30711 \begin_inset ERT
30712 status collapsed
30713
30714 \begin_layout Plain Layout
30715
30716
30717 \backslash
30718 rotatebox[origin=lb]{90}{
30719 \end_layout
30720
30721 \end_inset
30722
30723
30724 \begin_inset Graphics
30725         filename ../clipart/platypus.eps
30726         lyxscale 50
30727         width 25col%
30728
30729 \end_inset
30730
30731
30732 \begin_inset ERT
30733 status collapsed
30734
30735 \begin_layout Plain Layout
30736
30737 }
30738 \end_layout
30739
30740 \end_inset
30741
30742  mit einem rotierten Bild 
30743 \begin_inset ERT
30744 status collapsed
30745
30746 \begin_layout Plain Layout
30747
30748
30749 \backslash
30750 rotatebox[origin=l]{-90}{
30751 \end_layout
30752
30753 \end_inset
30754
30755
30756 \begin_inset Tabular
30757 <lyxtabular version="3" rows="2" columns="2">
30758 <features>
30759 <column alignment="center" valignment="top" width="0">
30760 <column alignment="center" valignment="top" width="0">
30761 <row>
30762 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
30763 \begin_inset Text
30764
30765 \begin_layout Plain Layout
30766 q
30767 \end_layout
30768
30769 \end_inset
30770 </cell>
30771 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
30772 \begin_inset Text
30773
30774 \begin_layout Plain Layout
30775 w
30776 \end_layout
30777
30778 \end_inset
30779 </cell>
30780 </row>
30781 <row>
30782 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
30783 \begin_inset Text
30784
30785 \begin_layout Plain Layout
30786 e
30787 \end_layout
30788
30789 \end_inset
30790 </cell>
30791 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
30792 \begin_inset Text
30793
30794 \begin_layout Plain Layout
30795 r
30796 \end_layout
30797
30798 \end_inset
30799 </cell>
30800 </row>
30801 </lyxtabular>
30802
30803 \end_inset
30804
30805
30806 \begin_inset ERT
30807 status collapsed
30808
30809 \begin_layout Plain Layout
30810
30811 }
30812 \end_layout
30813
30814 \end_inset
30815
30816  und Tabelle.
30817 \end_layout
30818
30819 \begin_layout Subsection
30820 Skalierte Boxen
30821 \begin_inset Index
30822 status collapsed
30823
30824 \begin_layout Plain Layout
30825 Boxen ! skalierte
30826 \end_layout
30827
30828 \end_inset
30829
30830
30831 \begin_inset Index
30832 status collapsed
30833
30834 \begin_layout Plain Layout
30835 Skaliertes Material
30836 \end_layout
30837
30838 \end_inset
30839
30840
30841 \begin_inset Index
30842 status collapsed
30843
30844 \begin_layout Plain Layout
30845 Abbildungen ! skalierte
30846 \end_layout
30847
30848 \end_inset
30849
30850
30851 \begin_inset Index
30852 status collapsed
30853
30854 \begin_layout Plain Layout
30855 Tabellen ! skalierte
30856 \end_layout
30857
30858 \end_inset
30859
30860
30861 \end_layout
30862
30863 \begin_layout Standard
30864 Um Text zu skalieren, kann man die Befehle 
30865 \series bold
30866
30867 \backslash
30868 scalebox
30869 \series default
30870  und 
30871 \series bold
30872
30873 \backslash
30874 resizebox
30875 \series default
30876  im TeX-Modus verwenden.
30877 \end_layout
30878
30879 \begin_layout Standard
30880
30881 \series bold
30882
30883 \backslash
30884 scalebox
30885 \series default
30886  wird nach folgendem Schema verwendet:
30887 \end_layout
30888
30889 \begin_layout Standard
30890
30891 \series bold
30892
30893 \backslash
30894 scalebox{horizontal}[vertikal]{Boxinhalt}
30895 \end_layout
30896
30897 \begin_layout Standard
30898 Horizontal und vertikal geben die jeweiligen Skalierungsfaktoren an.
30899  Wird kein vertikaler Skalierungsfaktor angegeben, wird dafür der horizontale
30900  verwendet.
30901 \end_layout
30902
30903 \begin_layout Standard
30904 Z.
30905 \begin_inset Space \thinspace{}
30906 \end_inset
30907
30908 B.
30909  ergibt der Befehl 
30910 \series bold
30911
30912 \backslash
30913 scalebox{2}{Hallo}
30914 \series default
30915  ein im Vergleich zur Dokumentschriftgröße doppelt so großes 
30916 \begin_inset ERT
30917 status collapsed
30918
30919 \begin_layout Plain Layout
30920
30921
30922 \backslash
30923 scalebox{2}{
30924 \end_layout
30925
30926 \end_inset
30927
30928 Hallo
30929 \begin_inset ERT
30930 status collapsed
30931
30932 \begin_layout Plain Layout
30933
30934 }
30935 \end_layout
30936
30937 \end_inset
30938
30939 .
30940 \end_layout
30941
30942 \begin_layout Standard
30943
30944 \series bold
30945
30946 \backslash
30947 scalebox{2}[1]{Hallo}
30948 \series default
30949  verzerrt hingegen das 
30950 \begin_inset ERT
30951 status collapsed
30952
30953 \begin_layout Plain Layout
30954
30955
30956 \backslash
30957 scalebox{2}[1]{
30958 \end_layout
30959
30960 \end_inset
30961
30962 Hallo
30963 \begin_inset ERT
30964 status collapsed
30965
30966 \begin_layout Plain Layout
30967
30968 }
30969 \end_layout
30970
30971 \end_inset
30972
30973 .
30974 \end_layout
30975
30976 \begin_layout Standard
30977 Die Skalierungsfaktoren dürfen auch negativ sein.
30978  In diesem Fall wird der Boxinhalt gespiegelt.
30979 \end_layout
30980
30981 \begin_layout Standard
30982 Daher lässt sich mit dem Befehl 
30983 \series bold
30984
30985 \backslash
30986 scalebox{-1}[1]{Hallo}
30987 \series default
30988  Spiegelschrift erstellen: 
30989 \begin_inset ERT
30990 status collapsed
30991
30992 \begin_layout Plain Layout
30993
30994
30995 \backslash
30996 scalebox{-1}[1]{
30997 \end_layout
30998
30999 \end_inset
31000
31001 Hallo
31002 \begin_inset ERT
31003 status collapsed
31004
31005 \begin_layout Plain Layout
31006
31007 }
31008 \end_layout
31009
31010 \end_inset
31011
31012
31013 \end_layout
31014
31015 \begin_layout Standard
31016
31017 \series bold
31018
31019 \backslash
31020 scalebox{1}[-1]{Hallo}
31021 \series default
31022  spiegelt das 
31023 \begin_inset ERT
31024 status collapsed
31025
31026 \begin_layout Plain Layout
31027
31028
31029 \backslash
31030 scalebox{1}[-1]{
31031 \end_layout
31032
31033 \end_inset
31034
31035 Hallo
31036 \begin_inset ERT
31037 status collapsed
31038
31039 \begin_layout Plain Layout
31040
31041 }
31042 \end_layout
31043
31044 \end_inset
31045
31046  an der Grundlinie.
31047 \end_layout
31048
31049 \begin_layout Standard
31050 Zu 
31051 \series bold
31052
31053 \backslash
31054 scalebox{-1}[1]{Boxinhalt}
31055 \series default
31056  gibt es den äquivalenten Befehl
31057 \begin_inset Newline newline
31058 \end_inset
31059
31060
31061 \series bold
31062
31063 \backslash
31064 ref\SpecialChar \textcompwordmark{}
31065 lectbox{Boxinhalt}
31066 \series default
31067 .
31068 \end_layout
31069
31070 \begin_layout Standard
31071 \begin_inset VSpace bigskip
31072 \end_inset
31073
31074
31075 \series bold
31076
31077 \backslash
31078 resizebox
31079 \series default
31080  verwendet man um den Boxinhalt auf eine bestimmte Höhe bzw.
31081  Breite zu skalieren.
31082  Das Befehlsschema ist folgendes:
31083 \end_layout
31084
31085 \begin_layout Standard
31086
31087 \series bold
31088
31089 \backslash
31090 resizebox{Breite}{Höhe}{Boxinhalt}
31091 \end_layout
31092
31093 \begin_layout Standard
31094 Gibt man für eines der beiden Argumente ein Ausrufezeichen 
31095 \series bold
31096 !
31097 \series default
31098  ein, wird die Größe so gewählt, dass das Aspektverhältnis der Box beibehalten
31099  wird.
31100 \end_layout
31101
31102 \begin_layout Standard
31103 Der Befehl 
31104 \series bold
31105
31106 \backslash
31107 resizebox{2cm}{1cm}{Hallo}
31108 \series default
31109  ergibt: 
31110 \begin_inset ERT
31111 status collapsed
31112
31113 \begin_layout Plain Layout
31114
31115
31116 \backslash
31117 resizebox{2cm}{1cm}{
31118 \end_layout
31119
31120 \end_inset
31121
31122 Hallo
31123 \begin_inset ERT
31124 status collapsed
31125
31126 \begin_layout Plain Layout
31127
31128 }
31129 \end_layout
31130
31131 \end_inset
31132
31133
31134 \begin_inset Newline newline
31135 \end_inset
31136
31137 Der Befehl 
31138 \series bold
31139
31140 \backslash
31141 resizebox{2cm}{!}{Hallo}
31142 \series default
31143  ergibt: 
31144 \begin_inset ERT
31145 status collapsed
31146
31147 \begin_layout Plain Layout
31148
31149
31150 \backslash
31151 resizebox{2cm}{!}{
31152 \end_layout
31153
31154 \end_inset
31155
31156 Hallo
31157 \begin_inset ERT
31158 status collapsed
31159
31160 \begin_layout Plain Layout
31161
31162 }
31163 \end_layout
31164
31165 \end_inset
31166
31167
31168 \end_layout
31169
31170 \begin_layout Standard
31171 \begin_inset VSpace bigskip
31172 \end_inset
31173
31174
31175 \begin_inset Note Greyedout
31176 status open
31177
31178 \begin_layout Plain Layout
31179
31180 \series bold
31181 Bemerkung:
31182 \series default
31183  Wurde in Argumenten von 
31184 \series bold
31185
31186 \backslash
31187 scalebox
31188 \series default
31189  oder 
31190 \series bold
31191
31192 \backslash
31193 resizebox
31194 \series default
31195  eine Null angegeben, entstehen beim Exportieren zwar keine LaTeX-Fehler,
31196  die erzeugten Dateien können jedoch nicht oder nur teilweise angezeigt
31197  werden.
31198 \end_layout
31199
31200 \end_inset
31201
31202
31203 \end_layout
31204
31205 \begin_layout Standard
31206 \begin_inset VSpace bigskip
31207 \end_inset
31208
31209
31210 \end_layout
31211
31212 \begin_layout Standard
31213 Alle Boxen können beliebig miteinander kombiniert werden.
31214  So ergibt z.
31215 \begin_inset Space \thinspace{}
31216 \end_inset
31217
31218 B.
31219  der Befehl
31220 \begin_inset Newline newline
31221 \end_inset
31222
31223
31224 \series bold
31225
31226 \backslash
31227 rotatebox[origin=c]{-45}{
31228 \backslash
31229 resizebox{2cm}{!}{
31230 \backslash
31231 reflectbox{Hallo}}}
31232 \series default
31233 :
31234 \end_layout
31235
31236 \begin_layout Standard
31237 \align center
31238 \begin_inset ERT
31239 status collapsed
31240
31241 \begin_layout Plain Layout
31242
31243
31244 \backslash
31245 rotatebox[origin=c]{-45}{
31246 \backslash
31247 resizebox{2cm}{!}{
31248 \backslash
31249 reflectbox{
31250 \end_layout
31251
31252 \end_inset
31253
31254 Hallo
31255 \begin_inset ERT
31256 status collapsed
31257
31258 \begin_layout Plain Layout
31259
31260 }}}
31261 \end_layout
31262
31263 \end_inset
31264
31265
31266 \end_layout
31267
31268 \begin_layout Standard
31269 \noindent
31270 Bilder, Tabellen und eingebettete Formeln sind als Boxinhalt erlaubt:
31271 \end_layout
31272
31273 \begin_layout Standard
31274 \align center
31275 \begin_inset ERT
31276 status collapsed
31277
31278 \begin_layout Plain Layout
31279
31280
31281 \backslash
31282 rotatebox[origin=c]{-30}{
31283 \backslash
31284 resizebox{2cm}{!}{
31285 \backslash
31286 reflectbox{
31287 \end_layout
31288
31289 \end_inset
31290
31291
31292 \begin_inset Graphics
31293         filename ../clipart/platypus.eps
31294         lyxscale 50
31295         width 25col%
31296
31297 \end_inset
31298
31299
31300 \begin_inset ERT
31301 status collapsed
31302
31303 \begin_layout Plain Layout
31304
31305 }}}
31306 \end_layout
31307
31308 \end_inset
31309
31310
31311 \begin_inset ERT
31312 status collapsed
31313
31314 \begin_layout Plain Layout
31315
31316
31317 \backslash
31318 rotatebox[origin=c]{-45}{
31319 \backslash
31320 resizebox{2cm}{!}{
31321 \backslash
31322 reflectbox{
31323 \end_layout
31324
31325 \end_inset
31326
31327
31328 \begin_inset Tabular
31329 <lyxtabular version="3" rows="2" columns="2">
31330 <features>
31331 <column alignment="center" valignment="top" width="0">
31332 <column alignment="center" valignment="top" width="0">
31333 <row>
31334 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
31335 \begin_inset Text
31336
31337 \begin_layout Plain Layout
31338 q
31339 \end_layout
31340
31341 \end_inset
31342 </cell>
31343 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
31344 \begin_inset Text
31345
31346 \begin_layout Plain Layout
31347 w
31348 \end_layout
31349
31350 \end_inset
31351 </cell>
31352 </row>
31353 <row>
31354 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
31355 \begin_inset Text
31356
31357 \begin_layout Plain Layout
31358 e
31359 \end_layout
31360
31361 \end_inset
31362 </cell>
31363 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
31364 \begin_inset Text
31365
31366 \begin_layout Plain Layout
31367 r
31368 \end_layout
31369
31370 \end_inset
31371 </cell>
31372 </row>
31373 </lyxtabular>
31374
31375 \end_inset
31376
31377
31378 \begin_inset ERT
31379 status collapsed
31380
31381 \begin_layout Plain Layout
31382
31383 }}}
31384 \end_layout
31385
31386 \end_inset
31387
31388
31389 \begin_inset ERT
31390 status collapsed
31391
31392 \begin_layout Plain Layout
31393
31394
31395 \backslash
31396 rotatebox[origin=c]{-45}{
31397 \backslash
31398 resizebox{2cm}{!}{
31399 \backslash
31400 reflectbox{
31401 \end_layout
31402
31403 \end_inset
31404
31405
31406 \begin_inset Formula $\int A\,\mathrm{d}x=B$
31407 \end_inset
31408
31409
31410 \begin_inset ERT
31411 status collapsed
31412
31413 \begin_layout Plain Layout
31414
31415 }}}
31416 \end_layout
31417
31418 \end_inset
31419
31420
31421 \end_layout
31422
31423 \begin_layout Standard
31424 Hat man den globalen Formelstil 
31425 \series bold
31426 fleqn
31427 \series default
31428
31429 \begin_inset Foot
31430 status collapsed
31431
31432 \begin_layout Plain Layout
31433 Wenn 
31434 \begin_inset Quotes gld
31435 \end_inset
31436
31437 fleqn
31438 \begin_inset Quotes grd
31439 \end_inset
31440
31441  zu den Dokumentklassen-Optionen hinzugefügt wurde.
31442 \end_layout
31443
31444 \end_inset
31445
31446  gewählt, kann man auch abgesetzte Formeln skalieren.
31447 \end_layout
31448
31449 \begin_layout Chapter
31450 Externe Dateien
31451 \begin_inset Index
31452 status collapsed
31453
31454 \begin_layout Plain Layout
31455 Dateien ! externe
31456 \end_layout
31457
31458 \end_inset
31459
31460
31461 \end_layout
31462
31463 \begin_layout Standard
31464 Mit 
31465 \family sans
31466 Einfügen\SpecialChar \menuseparator
31467 Datei
31468 \family default
31469  können Sie fremdes Material in Ihr Dokument einsetzen.
31470  Das kann folgendes sein:
31471 \end_layout
31472
31473 \begin_layout Description
31474 LyX-Dokument Der Inhalt eines anderen LyX-Dokuments wird direkt in Ihr Dokument
31475  eingefügt.
31476 \end_layout
31477
31478 \begin_layout Description
31479 Einfacher
31480 \begin_inset Space ~
31481 \end_inset
31482
31483 Text Ein Text-Dokument; jede Textzeile wird als eigener Absatz in Ihr Dokument
31484  eingefügt.
31485 \end_layout
31486
31487 \begin_layout Description
31488 Einfacher
31489 \begin_inset Space ~
31490 \end_inset
31491
31492 Text,
31493 \begin_inset Space ~
31494 \end_inset
31495
31496 Zeilen
31497 \begin_inset Space ~
31498 \end_inset
31499
31500 verbinden Ein Text-Dokument; Zeilen werden so eingefügt, wie sie sind.
31501  Leerzeilen trennen die Absätze.
31502 \end_layout
31503
31504 \begin_layout Description
31505 Externes
31506 \begin_inset Space ~
31507 \end_inset
31508
31509 Material Dateien in verschiedenen Formaten.
31510 \end_layout
31511
31512 \begin_layout Description
31513 Unterdokument LyX- oder LaTeX-Dokumente.
31514 \end_layout
31515
31516 \begin_layout Section
31517 Externes Material
31518 \begin_inset Index
31519 status collapsed
31520
31521 \begin_layout Plain Layout
31522 Externes Material
31523 \end_layout
31524
31525 \end_inset
31526
31527
31528 \end_layout
31529
31530 \begin_layout Standard
31531 Mit 
31532 \family sans
31533 Einfügen\SpecialChar \menuseparator
31534 Datei\SpecialChar \menuseparator
31535  Externes Material
31536 \family default
31537  können Sie Dateien in Ihr Dokument einfügen, ohne sie vorher in ein Format
31538  konvertieren zu müssen, das vom Ausgabeprogramm verstanden werden kann,
31539  weil LyX sich darum kümmert.
31540  Das ist ähnlich wie bei Bildern, die in verschiedenen Formaten in LyX-Dokumente
31541  eingefügt werden können.
31542 \end_layout
31543
31544 \begin_layout Standard
31545 Zur Zeit können Sie folgende Dateitypen (
31546 \family sans
31547 Vorlagen
31548 \family default
31549 ) benutzen:
31550 \end_layout
31551
31552 \begin_layout Description
31553 Schachdiagramm unterstützt Schachdiagramme, die mit dem Programm 
31554 \begin_inset ERT
31555 status collapsed
31556
31557 \begin_layout Plain Layout
31558
31559
31560 \backslash
31561 href{http://en.wikipedia.org/wiki/XBoard}{
31562 \end_layout
31563
31564 \end_inset
31565
31566
31567 \series bold
31568 XBoard
31569 \series default
31570
31571 \begin_inset ERT
31572 status collapsed
31573
31574 \begin_layout Plain Layout
31575
31576 }
31577 \end_layout
31578
31579 \end_inset
31580
31581  erzeugt wurden.
31582 \end_layout
31583
31584 \begin_layout Description
31585 Datum fügt ein Datum mit dem Format 
31586 \emph on
31587 Tag-Monat-Jahr
31588 \emph default
31589  ein.
31590  Hier ist ein Beispiel: 
31591 \begin_inset External
31592         template Date
31593         filename .
31594
31595 \end_inset
31596
31597
31598 \lang english
31599
31600 \begin_inset Space ~
31601 \end_inset
31602
31603
31604 \begin_inset Note Note
31605 status open
31606
31607 \begin_layout Plain Layout
31608
31609 \lang english
31610 Remove the protected space when bug 4398 is fixed!
31611 \end_layout
31612
31613 \end_inset
31614
31615
31616 \lang ngerman
31617
31618 \begin_inset Newline newline
31619 \end_inset
31620
31621 Das Datum ist in LyX nicht zu sehen, nur in der Druckausgabe.
31622  Es gibt noch zwei andere Möglichkeiten, ein Datum einzufügen: Über das
31623  Menü 
31624 \family sans
31625 Einfügen\SpecialChar \menuseparator
31626 Datum
31627 \family default
31628  und mit dem LaTeX-Befehl 
31629 \series bold
31630
31631 \backslash
31632 today
31633 \series default
31634 .
31635  Die verschiedenen Methoden werden in Tabelle
31636 \begin_inset Space ~
31637 \end_inset
31638
31639
31640 \begin_inset CommandInset ref
31641 LatexCommand ref
31642 reference "tab:Vergleich-der-Datums-Eingaben"
31643
31644 \end_inset
31645
31646  verglichen.
31647 \end_layout
31648
31649 \begin_layout Description
31650 LilyPond Mit dieser Vorlage können Sie Noten mit dem Programm 
31651 \begin_inset ERT
31652 status collapsed
31653
31654 \begin_layout Plain Layout
31655
31656
31657 \backslash
31658 href{http://en.wikipedia.org/wiki/LilyPond}{
31659 \end_layout
31660
31661 \end_inset
31662
31663
31664 \series bold
31665 LilyPond
31666 \series default
31667
31668 \begin_inset ERT
31669 status collapsed
31670
31671 \begin_layout Plain Layout
31672
31673 }
31674 \end_layout
31675
31676 \end_inset
31677
31678  schreiben.
31679 \end_layout
31680
31681 \begin_layout Description
31682 Rastergrafik Diese Vorlage kann für Bitmap-Bilder benutzt werden.
31683  Fast alle bekannten Bildformate werden unterstützt.
31684  Die Bilddateien können im Dialogfenster 
31685 \family sans
31686 Externes
31687 \begin_inset Space ~
31688 \end_inset
31689
31690 Material
31691 \family default
31692  genauso behandelt werden wie die mit dem normalen 
31693 \family sans
31694 Grafik
31695 \family default
31696 -Dialog eingefügten, siehe Abschnitt
31697 \begin_inset Space ~
31698 \end_inset
31699
31700
31701 \begin_inset CommandInset ref
31702 LatexCommand ref
31703 reference "abs:Grafik-Dialog"
31704
31705 \end_inset
31706
31707 .
31708  Der Unterschied ist, dass nur Rasterbilder erlaubt sind, das heißt PDF-
31709  und EPS-Bilder werden nicht unterstützt.
31710 \end_layout
31711
31712 \begin_layout Description
31713 XFig Diese Vorlage unterstützt Bilder, die mit dem Programm 
31714 \begin_inset ERT
31715 status collapsed
31716
31717 \begin_layout Plain Layout
31718
31719
31720 \backslash
31721 href{http://en.wikipedia.org/wiki/Xfig}{
31722 \end_layout
31723
31724 \end_inset
31725
31726
31727 \series bold
31728 Xfig
31729 \series default
31730
31731 \begin_inset ERT
31732 status collapsed
31733
31734 \begin_layout Plain Layout
31735
31736 }
31737 \end_layout
31738
31739 \end_inset
31740
31741  erzeugt wurden.
31742 \end_layout
31743
31744 \begin_layout Standard
31745 \begin_inset Float table
31746 placement h
31747 wide false
31748 sideways false
31749 status open
31750
31751 \begin_layout Plain Layout
31752 \begin_inset Caption
31753
31754 \begin_layout Plain Layout
31755 \begin_inset CommandInset label
31756 LatexCommand label
31757 name "tab:Vergleich-der-Datums-Eingaben"
31758
31759 \end_inset
31760
31761 Vergleich der Datums-Eingaben
31762 \end_layout
31763
31764 \end_inset
31765
31766
31767 \end_layout
31768
31769 \begin_layout Plain Layout
31770 \align center
31771 \begin_inset Tabular
31772 <lyxtabular version="3" rows="4" columns="4">
31773 <features>
31774 <column alignment="center" valignment="top" width="0">
31775 <column alignment="center" valignment="top" width="0">
31776 <column alignment="center" valignment="top" width="0">
31777 <column alignment="center" valignment="top" width="0">
31778 <row>
31779 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
31780 \begin_inset Text
31781
31782 \begin_layout Plain Layout
31783 Dokumentformat
31784 \end_layout
31785
31786 \end_inset
31787 </cell>
31788 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
31789 \begin_inset Text
31790
31791 \begin_layout Plain Layout
31792
31793 \family sans
31794 Externes Material\SpecialChar \menuseparator
31795 Datum
31796 \end_layout
31797
31798 \end_inset
31799 </cell>
31800 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
31801 \begin_inset Text
31802
31803 \begin_layout Plain Layout
31804
31805 \family sans
31806 Einfügen\SpecialChar \menuseparator
31807 Datum
31808 \end_layout
31809
31810 \end_inset
31811 </cell>
31812 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
31813 \begin_inset Text
31814
31815 \begin_layout Plain Layout
31816 Befehl 
31817 \series bold
31818
31819 \backslash
31820 today
31821 \end_layout
31822
31823 \end_inset
31824 </cell>
31825 </row>
31826 <row>
31827 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
31828 \begin_inset Text
31829
31830 \begin_layout Plain Layout
31831 LyX
31832 \end_layout
31833
31834 \end_inset
31835 </cell>
31836 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
31837 \begin_inset Text
31838
31839 \begin_layout Plain Layout
31840 als Box
31841 \end_layout
31842
31843 \end_inset
31844 </cell>
31845 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
31846 \begin_inset Text
31847
31848 \begin_layout Plain Layout
31849 als Datum
31850 \end_layout
31851
31852 \end_inset
31853 </cell>
31854 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
31855 \begin_inset Text
31856
31857 \begin_layout Plain Layout
31858 als TeX-Code-Befehl
31859 \end_layout
31860
31861 \end_inset
31862 </cell>
31863 </row>
31864 <row>
31865 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
31866 \begin_inset Text
31867
31868 \begin_layout Plain Layout
31869 LaTeX
31870 \end_layout
31871
31872 \end_inset
31873 </cell>
31874 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
31875 \begin_inset Text
31876
31877 \begin_layout Plain Layout
31878 als Datum
31879 \end_layout
31880
31881 \end_inset
31882 </cell>
31883 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
31884 \begin_inset Text
31885
31886 \begin_layout Plain Layout
31887 als Datum
31888 \end_layout
31889
31890 \end_inset
31891 </cell>
31892 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
31893 \begin_inset Text
31894
31895 \begin_layout Plain Layout
31896 als Befehl
31897 \end_layout
31898
31899 \end_inset
31900 </cell>
31901 </row>
31902 <row>
31903 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
31904 \begin_inset Text
31905
31906 \begin_layout Plain Layout
31907 DVI, PDF, PS
31908 \end_layout
31909
31910 \end_inset
31911 </cell>
31912 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
31913 \begin_inset Text
31914
31915 \begin_layout Plain Layout
31916 als Datum
31917 \end_layout
31918
31919 \end_inset
31920 </cell>
31921 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
31922 \begin_inset Text
31923
31924 \begin_layout Plain Layout
31925 als Datum
31926 \end_layout
31927
31928 \end_inset
31929 </cell>
31930 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
31931 \begin_inset Text
31932
31933 \begin_layout Plain Layout
31934 als Datum
31935 \end_layout
31936
31937 \end_inset
31938 </cell>
31939 </row>
31940 </lyxtabular>
31941
31942 \end_inset
31943
31944
31945 \end_layout
31946
31947 \end_inset
31948
31949
31950 \end_layout
31951
31952 \begin_layout Standard
31953 Wenn Sie im Dialogfenster
31954 \family sans
31955  Externes
31956 \begin_inset Space ~
31957 \end_inset
31958
31959 Material 
31960 \family default
31961 in der Karteikarte
31962 \family sans
31963  Datei
31964 \family default
31965  die Option 
31966 \family sans
31967 Entwurf
31968 \family default
31969  benutzen, wird nur der Pfad der ausgewählten Datei in der Ausgabe erscheinen.
31970 \end_layout
31971
31972 \begin_layout Standard
31973 LyX kann externes Material entweder als Box wie hier: 
31974 \begin_inset Graphics
31975         filename clipart/ExternesMaterialQt4.png
31976         lyxscale 80
31977         scale 60
31978         scaleBeforeRotation
31979
31980 \end_inset
31981
31982  oder als Bild darstellen.
31983  Das hängt davon ab, ob Sie im Dialogfenster
31984 \family sans
31985  Externes
31986 \begin_inset Space ~
31987 \end_inset
31988
31989 Material 
31990 \family default
31991 in der Karteikarte 
31992 \family sans
31993 LyX-Ansicht
31994 \family default
31995  die Option 
31996 \family sans
31997 in
31998 \begin_inset Space ~
31999 \end_inset
32000
32001 LyX
32002 \begin_inset Space ~
32003 \end_inset
32004
32005 anzeigen
32006 \family default
32007  gewählt haben oder nicht.
32008 \end_layout
32009
32010 \begin_layout Standard
32011 Im LyX-Handbuch 
32012 \family sans
32013 \emph on
32014 Anpassung
32015 \family default
32016 \emph default
32017  wird erklärt, wie Sie Ihre eigenen Vorlagen erzeugen können.
32018 \end_layout
32019
32020 \begin_layout Section
32021 Unterdokumente
32022 \begin_inset CommandInset label
32023 LatexCommand label
32024 name "abs:Unterdokumente"
32025
32026 \end_inset
32027
32028
32029 \begin_inset Index
32030 status collapsed
32031
32032 \begin_layout Plain Layout
32033 Unterdokument
32034 \end_layout
32035
32036 \end_inset
32037
32038
32039 \end_layout
32040
32041 \begin_layout Standard
32042 Unterdokumente benutzt man bei größeren Dokumenten, die aus mehreren Kapiteln
32043  oder Abschnitten bestehen.
32044  Für die Pflege ist das oft hilfreich und manchmal auch gefordert.
32045  Ein Hauptdokument fügt dann die einzelnen Unterdokumente zusammen.
32046 \end_layout
32047
32048 \begin_layout Standard
32049 Unterdokumente werden in LyX als Box angezeigt: 
32050 \begin_inset Graphics
32051         filename clipart/UnterdokumentQt4.png
32052         lyxscale 80
32053         scale 60
32054         scaleBeforeRotation
32055
32056 \end_inset
32057
32058 .
32059  Sie werden über
32060 \family sans
32061  Einfügen\SpecialChar \menuseparator
32062 Datei\SpecialChar \menuseparator
32063 Unterdokument
32064 \family default
32065  eingebunden, was das Dialogfenster
32066 \family sans
32067  Unterdokument
32068 \family default
32069  öffnet.
32070  Für 
32071 \family sans
32072 die Art
32073 \begin_inset Space ~
32074 \end_inset
32075
32076 der
32077 \begin_inset Space ~
32078 \end_inset
32079
32080 Einbindung
32081 \family default
32082  gibt es dort vier Möglichkeiten:
32083 \end_layout
32084
32085 \begin_layout Description
32086 Include Sie können LyX- und LaTeX-Dokumente einbinden.
32087  Wenn Sie im Dialogfenster
32088 \family sans
32089  Unterdokument
32090 \family default
32091  auf 
32092 \family sans
32093 Öffnen
32094 \family default
32095  klicken, wird das eingebundene Dokument in einem eigenen Unterfenster geöffnet,
32096  und sie können es editieren.
32097 \begin_inset Newline newline
32098 \end_inset
32099
32100
32101 \end_layout
32102
32103 \begin_layout Standard
32104 Hier wird ein Unterdokument
32105 \family sans
32106  
32107 \family default
32108 per 
32109 \family sans
32110 Include
32111 \family default
32112  eingebunden: 
32113 \begin_inset CommandInset include
32114 LatexCommand include
32115 filename "DummyDocument1.lyx"
32116
32117 \end_inset
32118
32119 Die Abschnittsnummerierung enthält alle Abschnitte der eingebundenen Dateien
32120  in der Reihenfolgen, in der sie ins Hauptdokument eingebunden werden.
32121  Das obige Beispiel besitzt einen Unterabschnitt mit der Nummer dieses Abschnitt
32122 s.
32123  Auf Marken eingebundener Dokumente kann verwiesen werden: siehe Unterabschnitt
32124 \begin_inset Space ~
32125 \end_inset
32126
32127
32128 \begin_inset CommandInset ref
32129 LatexCommand ref
32130 reference "uab:Externer-Unterabschnitt-1"
32131
32132 \end_inset
32133
32134 .
32135 \end_layout
32136
32137 \begin_layout Standard
32138 Der LaTeX-Vorspann des Unterdokuments wird ignoriert, nur der des Hauptdokuments
32139  wird benutzt.
32140  Unterdokumente, die per 
32141 \family sans
32142 Include
32143 \family default
32144  eingebunden werden, beginnen in der Druckausgabe auf einer neuen Seite
32145  und enden mit einem Seitenumbruch.
32146 \end_layout
32147
32148 \begin_layout Standard
32149 Mit dem LaTeX-Befehl 
32150 \series bold
32151
32152 \backslash
32153 includeonly 
32154 \series default
32155 können Sie festlegen, für welche eingebundenen Unterdokumente eine Druckausgabe
32156  erstellt werden soll.
32157  Das ist nützlich, wenn Sie nur ein Kapitel bearbeiten und deren Auswirkungen
32158  sehen wollen, und es geht schneller.
32159  
32160 \series bold
32161
32162 \backslash
32163 includeonly
32164 \series default
32165  wird in den LaTeX-Vorspann des Hauptdokuments eingefügt.
32166  Im folgenden Beispiel:
32167 \end_layout
32168
32169 \begin_layout Standard
32170
32171 \series bold
32172
32173 \backslash
32174 includeonly{Kapitel1,Kapitel5}
32175 \end_layout
32176
32177 \begin_layout Standard
32178 werden nur die Dateien 
32179 \begin_inset Quotes gld
32180 \end_inset
32181
32182 Kapitel1.lyx
32183 \begin_inset Quotes grd
32184 \end_inset
32185
32186  (oder 
32187 \begin_inset Quotes gld
32188 \end_inset
32189
32190 Kapitel1.tex
32191 \begin_inset Quotes grd
32192 \end_inset
32193
32194 ) und 
32195 \begin_inset Quotes gld
32196 \end_inset
32197
32198 Kapitel5.lyx
32199 \begin_inset Quotes grd
32200 \end_inset
32201
32202
32203 \series bold
32204  
32205 \series default
32206 eingebunden.
32207 \end_layout
32208
32209 \begin_layout Standard
32210 \begin_inset Note Greyedout
32211 status open
32212
32213 \begin_layout Plain Layout
32214
32215 \series bold
32216 Bemerkung:
32217 \series default
32218  Wenn Sie eine LyX- oder LaTeX-Datei eingebunden haben, werden Sie beim
32219  Export oder der Druckvorschau gewarnt, wenn das Unterdokument eine andere
32220  Dokumentklasse als das Hauptdokument benutzt, weil das zu unvorhersehbaren
32221  Ergebnissen führen wird.
32222 \end_layout
32223
32224 \end_inset
32225
32226
32227 \end_layout
32228
32229 \begin_layout Description
32230 Input Diese Methode ist 
32231 \family sans
32232 Include
32233 \family default
32234  sehr ähnlich mit folgenden Unterschieden:
32235 \end_layout
32236
32237 \begin_deeper
32238 \begin_layout Itemize
32239 Unterdokumente, die per 
32240 \family sans
32241 Input
32242 \family default
32243  eingebunden werden, beginnen in der Druckausgabe NICHT auf einer neuen
32244  Seite und enden NICHT mit einem Seitenumbruch.
32245 \end_layout
32246
32247 \begin_layout Itemize
32248 Unterdokumente, die per 
32249 \family sans
32250 Input
32251 \family default
32252  eingebunden werden, können in LyX angesehen werden, wenn im Dialogfenster
32253 \family sans
32254  Unterdokument Vorschau
32255 \begin_inset Space ~
32256 \end_inset
32257
32258 anzeigen
32259 \family default
32260  angekreuzt wurde und in den LyX-
32261 \family sans
32262 Einstellungen\SpecialChar \menuseparator
32263 Aussehen
32264 \begin_inset Space ~
32265 \end_inset
32266
32267 &
32268 \begin_inset Space ~
32269 \end_inset
32270
32271 Handhabung\SpecialChar \menuseparator
32272 Grafik Sofortige
32273 \begin_inset Space ~
32274 \end_inset
32275
32276 Vorschau
32277 \family default
32278  auf 
32279 \family sans
32280 An
32281 \family default
32282  gesetzt wurde.
32283  Allerdings wirken sich Änderung erst bei einem erneuten Laden des Dokuments
32284  aus.
32285 \end_layout
32286
32287 \begin_layout Itemize
32288 Der LaTeX-Befehl 
32289 \series bold
32290
32291 \backslash
32292 includeonly
32293 \series default
32294  kann nicht benutzt werden.
32295 \end_layout
32296
32297 \end_deeper
32298 \begin_layout Standard
32299 Hier ist ein Unterdokument, das mit
32300 \family sans
32301  Input
32302 \family default
32303  eingebunden wurde: 
32304 \begin_inset CommandInset include
32305 LatexCommand input
32306 filename "DummyDocument2.lyx"
32307
32308 \end_inset
32309
32310 .
32311 \end_layout
32312
32313 \begin_layout Description
32314 Unformatiert Mit dieser Methode kann jede Textdatei eingebunden werden.
32315   In der Druckvorschau wird für den Text der Stil 
32316 \family typewriter
32317 Schreibmaschine
32318 \family default
32319  verwendet.
32320  Zeilenumbrüche erfolgen nur dort, wo das Unterdokument welche besitzt.
32321  Wenn Sie im Dialogfenster
32322 \family sans
32323  Unterdokument Leerzeichen
32324 \begin_inset Space ~
32325 \end_inset
32326
32327 bei
32328 \begin_inset Space ~
32329 \end_inset
32330
32331 der
32332 \begin_inset Space ~
32333 \end_inset
32334
32335 Ausgabe
32336 \begin_inset Space ~
32337 \end_inset
32338
32339 kennzeichnen 
32340 \family default
32341 ankreuzen, wird in der Druckvorschau das Zeichen 
32342 \begin_inset Quotes gld
32343 \end_inset
32344
32345
32346 \begin_inset ERT
32347 status collapsed
32348
32349 \begin_layout Plain Layout
32350
32351
32352 \backslash
32353 textvisiblespace 
32354 \end_layout
32355
32356 \end_inset
32357
32358
32359 \begin_inset Quotes grd
32360 \end_inset
32361
32362  für jedes Leerzeichen eingefügt.
32363 \begin_inset Newline newline
32364 \end_inset
32365
32366 Im Gegensatz zu 
32367 \family sans
32368 Einfügen\SpecialChar \menuseparator
32369 Datei\SpecialChar \menuseparator
32370 Einfacher
32371 \begin_inset Space ~
32372 \end_inset
32373
32374 Text
32375 \family default
32376  wird bei 
32377 \family sans
32378 Unformatiert
32379 \family default
32380  der Dateiinhalt in LyX nicht dargestellt.
32381 \end_layout
32382
32383 \begin_layout Standard
32384 Hier ist ein Unterdokument, das mit
32385 \family sans
32386  Unformatiert
32387 \family default
32388  eingebunden wurde: 
32389 \begin_inset CommandInset include
32390 LatexCommand verbatiminput
32391 filename "DummyTextDocument.txt"
32392
32393 \end_inset
32394
32395
32396 \begin_inset VSpace bigskip
32397 \end_inset
32398
32399 Hier ist ein Unterdokument, das mit
32400 \family sans
32401  Unformatiert
32402 \family default
32403  eingebunden wurde und
32404 \family sans
32405  Leerzeichen
32406 \begin_inset Space ~
32407 \end_inset
32408
32409 bei
32410 \begin_inset Space ~
32411 \end_inset
32412
32413 der
32414 \begin_inset Space ~
32415 \end_inset
32416
32417 Ausgabe
32418 \begin_inset Space ~
32419 \end_inset
32420
32421 kennzeichnen
32422 \family default
32423  angekreuzt hat: 
32424 \begin_inset CommandInset include
32425 LatexCommand verbatiminput*
32426 filename "DummyTextDocument.txt"
32427
32428 \end_inset
32429
32430
32431 \end_layout
32432
32433 \begin_layout Standard
32434 \begin_inset VSpace bigskip
32435 \end_inset
32436
32437
32438 \end_layout
32439
32440 \begin_layout Standard
32441 \begin_inset Note Greyedout
32442 status open
32443
32444 \begin_layout Plain Layout
32445
32446 \series bold
32447 Bemerkung:
32448 \series default
32449  Wie man an den obigen Beispielen sieht, wird der Text von Dokumenten, die
32450  
32451 \family sans
32452 Unformatiert
32453 \family default
32454  eingebunden werden, am Zeilenende nicht umgebrochen.
32455 \end_layout
32456
32457 \end_inset
32458
32459
32460 \end_layout
32461
32462 \begin_layout Description
32463 Listing Dieser Typ wird in Kapitel
32464 \begin_inset Space ~
32465 \end_inset
32466
32467
32468 \begin_inset CommandInset ref
32469 LatexCommand ref
32470 reference "kap:Programm-Code-Listen"
32471
32472 \end_inset
32473
32474  beschrieben.
32475 \end_layout
32476
32477 \begin_layout Standard
32478 \begin_inset Note Greyedout
32479 status open
32480
32481 \begin_layout Plain Layout
32482
32483 \series bold
32484 Bemerkung:
32485 \series default
32486  Wenn Sie ein Unterdokument auf zwei verschiedene Arten einbinden, kann
32487  das zu LaTeX-Problemen führen.
32488 \end_layout
32489
32490 \end_inset
32491
32492
32493 \end_layout
32494
32495 \begin_layout Chapter
32496 Programm-Code-Listen
32497 \begin_inset CommandInset label
32498 LatexCommand label
32499 name "kap:Programm-Code-Listen"
32500
32501 \end_inset
32502
32503
32504 \begin_inset Index
32505 status collapsed
32506
32507 \begin_layout Plain Layout
32508 Listen
32509 \end_layout
32510
32511 \end_inset
32512
32513
32514 \begin_inset Index
32515 status collapsed
32516
32517 \begin_layout Plain Layout
32518 Programm-Code
32519 \end_layout
32520
32521 \end_inset
32522
32523
32524 \end_layout
32525
32526 \begin_layout Standard
32527 Um Programm-Code-Listen einzufügen und zu drucken, können Sie 
32528 \family sans
32529 Einfügen\SpecialChar \menuseparator
32530 Pro\SpecialChar \-
32531 gramm\SpecialChar \-
32532 listing
32533 \family default
32534  verwenden.
32535  Das LaTeX-Paket 
32536 \series bold
32537 listings
32538 \series default
32539
32540 \begin_inset Index
32541 status collapsed
32542
32543 \begin_layout Plain Layout
32544 LaTeX-Pakete ! listings
32545 \end_layout
32546
32547 \end_inset
32548
32549  kann Programm-Code auf vielfältige und flexible Weise in Ihr Dokument einfügen.
32550 \end_layout
32551
32552 \begin_layout Standard
32553 Ein Rechtsklick auf das 
32554 \family sans
32555 Listing
32556 \family default
32557 -Kästchen öffnet das Dialogfenster 
32558 \family sans
32559 Programm\SpecialChar \-
32560 listing-Einstellungen
32561 \family default
32562 , in dem Sie das Ausgabeformat der Programm-Code-Liste festlegen.
32563 \end_layout
32564
32565 \begin_layout Standard
32566 Standardmäßig fängt ein Listing mit einem neuen Absatz an.
32567  Die 
32568 \family sans
32569 Platzierung
32570 \family default
32571 -Option 
32572 \family sans
32573 Eingebettetes
32574 \begin_inset Space ~
32575 \end_inset
32576
32577 Listing
32578 \family default
32579  druckt das Listing in der Zeile wie hier: 
32580 \begin_inset listings
32581 lstparams "language={C++}"
32582 inline true
32583 status open
32584
32585 \begin_layout Plain Layout
32586
32587 \lang english
32588 int a=5;
32589 \end_layout
32590
32591 \end_inset
32592
32593
32594 \begin_inset Newline newline
32595 \end_inset
32596
32597 Die Option 
32598 \family sans
32599 Gleitobjekt
32600 \family default
32601  erzeugt ein Listing-Gleitobjekt, dessen 
32602 \family sans
32603 Platzierung 
32604 \family default
32605 Sie mit 
32606 \family sans
32607 h
32608 \family default
32609
32610 \family sans
32611 t
32612 \family default
32613
32614 \family sans
32615 b
32616 \family default
32617  und 
32618 \family sans
32619 p
32620 \family default
32621 , analog zu den in Abschnitt
32622 \begin_inset Space ~
32623 \end_inset
32624
32625
32626 \begin_inset CommandInset ref
32627 LatexCommand ref
32628 reference "abs:Gleitobjekt-Platzierung"
32629
32630 \end_inset
32631
32632  beschriebenen Platzierungsoptionen festlegen können.
32633  Die Platzierungsoptionen können gemischt werden und werden dabei direkt
32634  hintereinander angegeben, z.
32635 \begin_inset Space \thinspace{}
32636 \end_inset
32637
32638 B.
32639  
32640 \begin_inset Quotes gld
32641 \end_inset
32642
32643
32644 \family sans
32645 htbp
32646 \family default
32647
32648 \begin_inset Quotes grd
32649 \end_inset
32650
32651 .
32652  Die Option 
32653 \begin_inset Quotes eld
32654 \end_inset
32655
32656 h
32657 \begin_inset Quotes erd
32658 \end_inset
32659
32660  hat manchmal keinen Effekt, aber sie muss nicht verwendet werden, da auch
32661  nicht gleitende Listen Beschriftungen haben und referenziert werden können.
32662 \end_layout
32663
32664 \begin_layout Standard
32665 Sie können Listings mit Marken versehen, um auf Sie wie auf andere Gleitobjekte
32666  zu verweisen: Listing
32667 \begin_inset Space ~
32668 \end_inset
32669
32670
32671 \begin_inset CommandInset ref
32672 LatexCommand ref
32673 reference "lst:Gleitendes-Programm-Listing"
32674
32675 \end_inset
32676
32677 .
32678 \end_layout
32679
32680 \begin_layout Standard
32681 \begin_inset listings
32682 lstparams "language=Python"
32683 inline false
32684 status open
32685
32686 \begin_layout Plain Layout
32687
32688 \lang english
32689 \begin_inset Caption
32690
32691 \begin_layout Plain Layout
32692 \begin_inset CommandInset label
32693 LatexCommand label
32694 name "lst:Gleitendes-Programm-Listing"
32695
32696 \end_inset
32697
32698 Gleitendes Programm-Listing
32699 \end_layout
32700
32701 \end_inset
32702
32703 # Gleitendes Programm-Listing
32704 \end_layout
32705
32706 \begin_layout Plain Layout
32707
32708 \lang english
32709 def func(param):
32710 \end_layout
32711
32712 \begin_layout Plain Layout
32713
32714 \lang english
32715     'Dies ist eine Python-Funktion'
32716 \end_layout
32717
32718 \begin_layout Plain Layout
32719
32720 \lang english
32721     pass
32722 \end_layout
32723
32724 \end_inset
32725
32726
32727 \end_layout
32728
32729 \begin_layout Standard
32730 Wenn Sie eine Programmier-
32731 \family sans
32732 Sprache
32733 \family default
32734  gewählt haben, werden die Schlüsselworte der Sprache erkannt und besonders
32735  gedruckt, wie 
32736 \emph on
32737 #
32738 \emph default
32739
32740 \emph on
32741 def
32742 \emph default
32743  und 
32744 \emph on
32745 pass
32746 \emph default
32747  in Listing
32748 \begin_inset Space ~
32749 \end_inset
32750
32751
32752 \begin_inset CommandInset ref
32753 LatexCommand ref
32754 reference "lst:Gleitendes-Programm-Listing"
32755
32756 \end_inset
32757
32758 .
32759 \end_layout
32760
32761 \begin_layout Standard
32762 \begin_inset Note Greyedout
32763 status open
32764
32765 \begin_layout Plain Layout
32766
32767 \series bold
32768 Bemerkung:
32769 \series default
32770  Wenn sie keine fettgedruckten Schlüsselwörter im Schriftstil 
32771 \family typewriter
32772 Schreib\SpecialChar \-
32773 maschine
32774 \family default
32775  erhalten, enthält die von Ihnen verwendete Schrift in diesem Stil wahrscheinlic
32776 h keine fett gedruckten Buchstaben.
32777  Wählen Sie in diesem Fall eine andere Schrift für 
32778 \family typewriter
32779 Schreibmaschine
32780 \family default
32781  im Menü 
32782 \family sans
32783 Dokument\SpecialChar \menuseparator
32784 Einstellungen\SpecialChar \menuseparator
32785 Schriften
32786 \family default
32787 .
32788  (Die Schriften 
32789 \emph on
32790 LuxiMono, BeraMono
32791 \emph default
32792  and 
32793 \emph on
32794 Courier
32795 \emph default
32796  enthalten fett gedruckte Buchstaben.)
32797 \end_layout
32798
32799 \end_inset
32800
32801
32802 \end_layout
32803
32804 \begin_layout Standard
32805 Im Abschnitt 
32806 \family sans
32807 Zeilennummerierung
32808 \family default
32809  des Dialog 
32810 \family sans
32811 Programm\SpecialChar \-
32812 listing-Einstellungen
32813 \family default
32814 -Dialogs können Sie den Stil der Zeilennummerierung festlegen, zum Beispiel,
32815  ob die Nummerierung links oder rechts gedruckt, jede wievielte Zeile nummeriert
32816  werden soll und die 
32817 \family sans
32818 Schriftgröße
32819 \family default
32820  der Nummerierung.
32821 \end_layout
32822
32823 \begin_layout Standard
32824 Im Abschnitt 
32825 \family sans
32826 Bereich
32827 \family default
32828  legen Sie fest, welche Zeilen ausgedruckt werden sollen.
32829  Im Abschnitt 
32830 \family sans
32831 Stil
32832 \family default
32833  legen Sie fest, wie die Liste ausgedruckt werden soll.
32834  Die Option 
32835 \family sans
32836 Erweiterte
32837 \begin_inset Space ~
32838 \end_inset
32839
32840 Zeichentabelle
32841 \family default
32842  sollte verwendet werden, wenn nationale Zeichen wie Umlaute benutzt werden.
32843 \end_layout
32844
32845 \begin_layout Standard
32846 Hier ist ein Beispiel mit der Nummerierung links, der Schrittweite 3, der
32847  Sprache 
32848 \begin_inset Quotes gld
32849 \end_inset
32850
32851 Python
32852 \begin_inset Quotes grd
32853 \end_inset
32854
32855 , den Optionen 
32856 \family sans
32857 Erweiterte
32858 \begin_inset Space ~
32859 \end_inset
32860
32861 Zeichentabelle
32862 \family default
32863  und 
32864 \family sans
32865 Leerzeichen
32866 \begin_inset Space ~
32867 \end_inset
32868
32869 als
32870 \begin_inset Space ~
32871 \end_inset
32872
32873 Symbol
32874 \family default
32875  und Bereich 3
32876 \begin_inset Space \thinspace{}
32877 \end_inset
32878
32879 -
32880 \begin_inset Space \thinspace{}
32881 \end_inset
32882
32883 8:
32884 \end_layout
32885
32886 \begin_layout Standard
32887 \begin_inset listings
32888 lstparams "extendedchars=true,firstline=3,float,language=Python,lastline=8,numbers=left,numberstyle={\footnotesize},showspaces=true,stepnumber=3"
32889 inline false
32890 status open
32891
32892 \begin_layout Plain Layout
32893
32894 \lang english
32895 def func(param):
32896 \end_layout
32897
32898 \begin_layout Plain Layout
32899
32900 \lang english
32901     'Dies ist eine Python-Funktion'
32902 \end_layout
32903
32904 \begin_layout Plain Layout
32905
32906 \lang english
32907     pass
32908 \end_layout
32909
32910 \begin_layout Plain Layout
32911
32912 \lang english
32913 def func(param):
32914 \end_layout
32915
32916 \begin_layout Plain Layout
32917
32918 \lang english
32919 'Sonderzeichen: Tschüß'
32920 \end_layout
32921
32922 \begin_layout Plain Layout
32923
32924 \lang english
32925 pass
32926 \end_layout
32927
32928 \begin_layout Plain Layout
32929
32930 \lang english
32931 def func(param):
32932 \end_layout
32933
32934 \begin_layout Plain Layout
32935
32936 \lang english
32937 'Dies ist eine Python-Funktion'
32938 \end_layout
32939
32940 \begin_layout Plain Layout
32941
32942 \lang english
32943 pass
32944 \end_layout
32945
32946 \end_inset
32947
32948
32949 \end_layout
32950
32951 \begin_layout Standard
32952 \noindent
32953 \begin_inset Note Greyedout
32954 status open
32955
32956 \begin_layout Plain Layout
32957
32958 \series bold
32959 Bemerkung:
32960 \series default
32961  Wegen eines Fehlers im 
32962 \series bold
32963 listings
32964 \series default
32965  Paket wird die Zeilennummerierung um eine Zeile durch vorhergehende Listen
32966  verschoben.
32967  Das ist der Grund warum die Zeilen 2 und 5 und nicht 3 und 6 in obiger
32968  Liste nummeriert werden.
32969 \end_layout
32970
32971 \end_inset
32972
32973
32974 \end_layout
32975
32976 \begin_layout Standard
32977 \begin_inset VSpace bigskip
32978 \end_inset
32979
32980
32981 \end_layout
32982
32983 \begin_layout Standard
32984 \noindent
32985 Es ist auch möglich, Zeilen einer Datei als Listing zu drucken.
32986  Das machen Sie mit
32987 \family sans
32988  Einfügen\SpecialChar \menuseparator
32989 Datei\SpecialChar \menuseparator
32990 Unterdokument
32991 \family default
32992  und der 
32993 \family sans
32994 Art
32995 \begin_inset Space ~
32996 \end_inset
32997
32998 der
32999 \begin_inset Space ~
33000 \end_inset
33001
33002 Einbindung
33003 \family default
33004  
33005 \family sans
33006 Listing
33007 \family default
33008 .
33009 \begin_inset Foot
33010 status collapsed
33011
33012 \begin_layout Plain Layout
33013 Die anderen Arten der Einbindung von Unterdokumenten werden in Abschnitt
33014 \begin_inset Space ~
33015 \end_inset
33016
33017
33018 \begin_inset CommandInset ref
33019 LatexCommand ref
33020 reference "abs:Unterdokumente"
33021
33022 \end_inset
33023
33024  beschrieben.
33025 \end_layout
33026
33027 \end_inset
33028
33029  Im Dialogfenster
33030 \family sans
33031  Unterdokument
33032 \family default
33033  können Sie die Listing-Parameters unter 
33034 \family sans
33035 Weitere
33036 \begin_inset Space ~
33037 \end_inset
33038
33039 Parameter
33040 \family default
33041  eingeben.
33042  Wenn Sie dort ein Fragezeichen 
33043 \begin_inset Quotes gld
33044 \end_inset
33045
33046 ?
33047 \begin_inset Quotes grd
33048 \end_inset
33049
33050  eingeben, wird Ihnen links davon eine Liste aller möglichen Parameter eingeblen
33051 det.
33052 \end_layout
33053
33054 \begin_layout Standard
33055 Um auf ein Unterdokument-Listing verweisen zu können, schreiben Sie einen
33056  Text ins Feld 
33057 \family sans
33058 Marke
33059 \family default
33060 , auf die dann wie üblich verwiesen werden kann.
33061 \end_layout
33062
33063 \begin_layout Standard
33064 Listing
33065 \begin_inset Space ~
33066 \end_inset
33067
33068
33069 \begin_inset CommandInset ref
33070 LatexCommand ref
33071 reference "lst:Datei-Listing"
33072
33073 \end_inset
33074
33075  ist ein Beispiel für ein Unterdokument-Listing, bei dem die Zeilen 10
33076 \begin_inset Space \thinspace{}
33077 \end_inset
33078
33079 -
33080 \begin_inset Space \thinspace{}
33081 \end_inset
33082
33083 15 gedruckt werden.
33084 \end_layout
33085
33086 \begin_layout Standard
33087 \begin_inset CommandInset include
33088 LatexCommand lstinputlisting
33089 filename "EmbeddedObjects.lyx"
33090 lstparams "breaklines=true,caption={Zeilen 10 - 15 dieser LyX-Datei},firstline=10,label={lst:Datei-Listing},language={[LaTeX]TeX},lastline=15"
33091
33092 \end_inset
33093
33094
33095 \end_layout
33096
33097 \begin_layout Standard
33098 \begin_inset VSpace bigskip
33099 \end_inset
33100
33101
33102 \end_layout
33103
33104 \begin_layout Standard
33105 \noindent
33106 Dokumentweite Listing-Eigenschaften können in
33107 \family sans
33108  Dokument\SpecialChar \menuseparator
33109 Einstellungen\SpecialChar \menuseparator
33110 Text\SpecialChar \-
33111 for\SpecialChar \-
33112 mat\SpecialChar \menuseparator
33113 Listing-Einstellungen
33114 \family default
33115  festgelegt werden.
33116  Auch dort bekommt man durch Eingabe eines Fragezeichens 
33117 \begin_inset Quotes gld
33118 \end_inset
33119
33120 ?
33121 \begin_inset Quotes grd
33122 \end_inset
33123
33124  links davon eine Liste aller möglichen Parameter.
33125 \end_layout
33126
33127 \begin_layout Standard
33128 Weitere Informationen über das 
33129 \series bold
33130 listings
33131 \series default
33132 -Paket finden Sie in 
33133 \begin_inset CommandInset citation
33134 LatexCommand cite
33135 key "listings"
33136
33137 \end_inset
33138
33139 .
33140 \begin_inset Newpage newpage
33141 \end_inset
33142
33143
33144 \end_layout
33145
33146 \begin_layout Chapter
33147 \start_of_appendix
33148 In LyX verfügbare Maßeinheiten
33149 \begin_inset CommandInset label
33150 LatexCommand label
33151 name "kap:In-LyX-verfügbare"
33152
33153 \end_inset
33154
33155
33156 \begin_inset Index
33157 status collapsed
33158
33159 \begin_layout Plain Layout
33160 Einheiten
33161 \end_layout
33162
33163 \end_inset
33164
33165
33166 \end_layout
33167
33168 \begin_layout Standard
33169 Um die in diesem Handbuch verwendeten Maßeinheiten zu verstehen, erläutert
33170  Tabelle
33171 \begin_inset Space ~
33172 \end_inset
33173
33174
33175 \begin_inset CommandInset ref
33176 LatexCommand ref
33177 reference "tab:Maßeinheiten"
33178
33179 \end_inset
33180
33181  alle in LyX verfügbaren Maßeinheiten.
33182 \end_layout
33183
33184 \begin_layout Standard
33185 \begin_inset Float table
33186 placement h
33187 wide false
33188 sideways false
33189 status open
33190
33191 \begin_layout Plain Layout
33192 \begin_inset Caption
33193
33194 \begin_layout Plain Layout
33195 \begin_inset CommandInset label
33196 LatexCommand label
33197 name "tab:Maßeinheiten"
33198
33199 \end_inset
33200
33201 Maßeinheiten
33202 \end_layout
33203
33204 \end_inset
33205
33206
33207 \end_layout
33208
33209 \begin_layout Plain Layout
33210 \begin_inset VSpace medskip
33211 \end_inset
33212
33213
33214 \end_layout
33215
33216 \begin_layout Plain Layout
33217 \align center
33218 \begin_inset Tabular
33219 <lyxtabular version="3" rows="20" columns="2">
33220 <features>
33221 <column alignment="center" valignment="top" width="0">
33222 <column alignment="center" valignment="top" width="0">
33223 <row>
33224 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
33225 \begin_inset Text
33226
33227 \begin_layout Plain Layout
33228
33229 \series bold
33230 Maßeinheit
33231 \end_layout
33232
33233 \end_inset
33234 </cell>
33235 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
33236 \begin_inset Text
33237
33238 \begin_layout Plain Layout
33239
33240 \series bold
33241 Name/Beschreibung
33242 \end_layout
33243
33244 \end_inset
33245 </cell>
33246 </row>
33247 <row>
33248 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33249 \begin_inset Text
33250
33251 \begin_layout Plain Layout
33252 mm
33253 \end_layout
33254
33255 \end_inset
33256 </cell>
33257 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33258 \begin_inset Text
33259
33260 \begin_layout Plain Layout
33261 Millimeter
33262 \end_layout
33263
33264 \end_inset
33265 </cell>
33266 </row>
33267 <row>
33268 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33269 \begin_inset Text
33270
33271 \begin_layout Plain Layout
33272 cm
33273 \end_layout
33274
33275 \end_inset
33276 </cell>
33277 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33278 \begin_inset Text
33279
33280 \begin_layout Plain Layout
33281 Zentimeter
33282 \end_layout
33283
33284 \end_inset
33285 </cell>
33286 </row>
33287 <row>
33288 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33289 \begin_inset Text
33290
33291 \begin_layout Plain Layout
33292 in
33293 \end_layout
33294
33295 \end_inset
33296 </cell>
33297 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33298 \begin_inset Text
33299
33300 \begin_layout Plain Layout
33301 Zoll (1
33302 \begin_inset Space \thinspace{}
33303 \end_inset
33304
33305 in = 2.54
33306 \begin_inset Space \thinspace{}
33307 \end_inset
33308
33309 cm
33310 \end_layout
33311
33312 \end_inset
33313 </cell>
33314 </row>
33315 <row>
33316 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33317 \begin_inset Text
33318
33319 \begin_layout Plain Layout
33320 pt
33321 \end_layout
33322
33323 \end_inset
33324 </cell>
33325 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33326 \begin_inset Text
33327
33328 \begin_layout Plain Layout
33329 Punkt (72.27
33330 \begin_inset Space \thinspace{}
33331 \end_inset
33332
33333 pt = 1
33334 \begin_inset Space \thinspace{}
33335 \end_inset
33336
33337 in)
33338 \end_layout
33339
33340 \end_inset
33341 </cell>
33342 </row>
33343 <row>
33344 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33345 \begin_inset Text
33346
33347 \begin_layout Plain Layout
33348 pc
33349 \end_layout
33350
33351 \end_inset
33352 </cell>
33353 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33354 \begin_inset Text
33355
33356 \begin_layout Plain Layout
33357 Pica (1
33358 \begin_inset Space \thinspace{}
33359 \end_inset
33360
33361 pc = 12
33362 \begin_inset Space \thinspace{}
33363 \end_inset
33364
33365 pt)
33366 \end_layout
33367
33368 \end_inset
33369 </cell>
33370 </row>
33371 <row>
33372 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33373 \begin_inset Text
33374
33375 \begin_layout Plain Layout
33376 sp
33377 \end_layout
33378
33379 \end_inset
33380 </cell>
33381 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33382 \begin_inset Text
33383
33384 \begin_layout Plain Layout
33385 skalierter Punkt (65536
33386 \begin_inset Space \thinspace{}
33387 \end_inset
33388
33389 sp = 1
33390 \begin_inset Space \thinspace{}
33391 \end_inset
33392
33393 pt)
33394 \end_layout
33395
33396 \end_inset
33397 </cell>
33398 </row>
33399 <row>
33400 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33401 \begin_inset Text
33402
33403 \begin_layout Plain Layout
33404 bp
33405 \end_layout
33406
33407 \end_inset
33408 </cell>
33409 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33410 \begin_inset Text
33411
33412 \begin_layout Plain Layout
33413 großer Punkt (72
33414 \begin_inset Space \thinspace{}
33415 \end_inset
33416
33417 bp = 1
33418 \begin_inset Space \thinspace{}
33419 \end_inset
33420
33421 in)
33422 \end_layout
33423
33424 \end_inset
33425 </cell>
33426 </row>
33427 <row>
33428 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33429 \begin_inset Text
33430
33431 \begin_layout Plain Layout
33432 dd
33433 \end_layout
33434
33435 \end_inset
33436 </cell>
33437 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33438 \begin_inset Text
33439
33440 \begin_layout Plain Layout
33441 Didot (1
33442 \begin_inset Space \thinspace{}
33443 \end_inset
33444
33445 dd 
33446 \begin_inset Formula $\approx$
33447 \end_inset
33448
33449  0,376
33450 \begin_inset Space \thinspace{}
33451 \end_inset
33452
33453 mm)
33454 \end_layout
33455
33456 \end_inset
33457 </cell>
33458 </row>
33459 <row>
33460 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33461 \begin_inset Text
33462
33463 \begin_layout Plain Layout
33464 cc
33465 \end_layout
33466
33467 \end_inset
33468 </cell>
33469 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33470 \begin_inset Text
33471
33472 \begin_layout Plain Layout
33473 Cicero (1
33474 \begin_inset Space \thinspace{}
33475 \end_inset
33476
33477 cc = 12
33478 \begin_inset Space \thinspace{}
33479 \end_inset
33480
33481 dd)
33482 \end_layout
33483
33484 \end_inset
33485 </cell>
33486 </row>
33487 <row>
33488 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33489 \begin_inset Text
33490
33491 \begin_layout Plain Layout
33492 Skalierung%
33493 \end_layout
33494
33495 \end_inset
33496 </cell>
33497 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33498 \begin_inset Text
33499
33500 \begin_layout Plain Layout
33501 % der originalen Bildbreite
33502 \end_layout
33503
33504 \end_inset
33505 </cell>
33506 </row>
33507 <row>
33508 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33509 \begin_inset Text
33510
33511 \begin_layout Plain Layout
33512 Textbreite %
33513 \end_layout
33514
33515 \end_inset
33516 </cell>
33517 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33518 \begin_inset Text
33519
33520 \begin_layout Plain Layout
33521 % der Textbreite
33522 \end_layout
33523
33524 \end_inset
33525 </cell>
33526 </row>
33527 <row>
33528 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33529 \begin_inset Text
33530
33531 \begin_layout Plain Layout
33532 Spaltenbreite %
33533 \end_layout
33534
33535 \end_inset
33536 </cell>
33537 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33538 \begin_inset Text
33539
33540 \begin_layout Plain Layout
33541 % der Spaltenbreite
33542 \end_layout
33543
33544 \end_inset
33545 </cell>
33546 </row>
33547 <row>
33548 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33549 \begin_inset Text
33550
33551 \begin_layout Plain Layout
33552 Seitenbreite %
33553 \end_layout
33554
33555 \end_inset
33556 </cell>
33557 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33558 \begin_inset Text
33559
33560 \begin_layout Plain Layout
33561 % der Seitenbreite
33562 \end_layout
33563
33564 \end_inset
33565 </cell>
33566 </row>
33567 <row>
33568 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33569 \begin_inset Text
33570
33571 \begin_layout Plain Layout
33572 Zeilenbreite %
33573 \end_layout
33574
33575 \end_inset
33576 </cell>
33577 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33578 \begin_inset Text
33579
33580 \begin_layout Plain Layout
33581 % der Zeilenbreite
33582 \end_layout
33583
33584 \end_inset
33585 </cell>
33586 </row>
33587 <row>
33588 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33589 \begin_inset Text
33590
33591 \begin_layout Plain Layout
33592 Texthöhe %
33593 \end_layout
33594
33595 \end_inset
33596 </cell>
33597 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33598 \begin_inset Text
33599
33600 \begin_layout Plain Layout
33601 % der Texthöhe
33602 \end_layout
33603
33604 \end_inset
33605 </cell>
33606 </row>
33607 <row>
33608 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33609 \begin_inset Text
33610
33611 \begin_layout Plain Layout
33612 Seitenhöhe %
33613 \end_layout
33614
33615 \end_inset
33616 </cell>
33617 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33618 \begin_inset Text
33619
33620 \begin_layout Plain Layout
33621 % der Seitenhöhe
33622 \end_layout
33623
33624 \end_inset
33625 </cell>
33626 </row>
33627 <row>
33628 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33629 \begin_inset Text
33630
33631 \begin_layout Plain Layout
33632 ex
33633 \end_layout
33634
33635 \end_inset
33636 </cell>
33637 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33638 \begin_inset Text
33639
33640 \begin_layout Plain Layout
33641 Die Höhe des Buchstabens 
33642 \emph on
33643 x
33644 \emph default
33645  im aktiven Zeichensatz
33646 \end_layout
33647
33648 \end_inset
33649 </cell>
33650 </row>
33651 <row>
33652 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33653 \begin_inset Text
33654
33655 \begin_layout Plain Layout
33656 em
33657 \end_layout
33658
33659 \end_inset
33660 </cell>
33661 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33662 \begin_inset Text
33663
33664 \begin_layout Plain Layout
33665 Die Breite des Buchstabens 
33666 \emph on
33667 M
33668 \emph default
33669  im aktiven Zeichensatz
33670 \end_layout
33671
33672 \end_inset
33673 </cell>
33674 </row>
33675 <row>
33676 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
33677 \begin_inset Text
33678
33679 \begin_layout Plain Layout
33680 mu
33681 \end_layout
33682
33683 \end_inset
33684 </cell>
33685 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
33686 \begin_inset Text
33687
33688 \begin_layout Plain Layout
33689 mathematische  Maßeinheit
33690 \series bold
33691  
33692 \series default
33693 (1
33694 \begin_inset Space \thinspace{}
33695 \end_inset
33696
33697 mu = 1/18
33698 \begin_inset Space \thinspace{}
33699 \end_inset
33700
33701 em)
33702 \end_layout
33703
33704 \end_inset
33705 </cell>
33706 </row>
33707 </lyxtabular>
33708
33709 \end_inset
33710
33711
33712 \end_layout
33713
33714 \end_inset
33715
33716
33717 \end_layout
33718
33719 \begin_layout Chapter
33720 Ausgabedatei-Formate mit Grafiken
33721 \begin_inset CommandInset label
33722 LatexCommand label
33723 name "kap:Ausgabedatei-Formate"
33724
33725 \end_inset
33726
33727
33728 \end_layout
33729
33730 \begin_layout Section
33731 DVI
33732 \begin_inset Index
33733 status collapsed
33734
33735 \begin_layout Plain Layout
33736 Dateiformat! DVI
33737 \end_layout
33738
33739 \end_inset
33740
33741
33742 \begin_inset Index
33743 status collapsed
33744
33745 \begin_layout Plain Layout
33746 DVI
33747 \end_layout
33748
33749 \end_inset
33750
33751
33752 \end_layout
33753
33754 \begin_layout Standard
33755 Dieser Dateityp hat die Erweiterung 
33756 \begin_inset Quotes gld
33757 \end_inset
33758
33759
33760 \family typewriter
33761 .dvi
33762 \family default
33763
33764 \begin_inset Quotes grd
33765 \end_inset
33766
33767  und wird 
33768 \begin_inset Quotes gld
33769 \end_inset
33770
33771 device-independent
33772 \begin_inset Quotes grd
33773 \end_inset
33774
33775  genannt, weil er vollkommen portierbar ist.
33776  Ohne Konvertierung kann er auf jedem Rechner benutzt werden, der einen
33777  dvi-Betrachter installiert hat.
33778  
33779 \family typewriter
33780 .dvi
33781 \family default
33782 -Dateien werden für schnelle Vorschauen und Vorstufen für andere Ausgabeformate
33783  wie PostScript benutzt.
33784 \end_layout
33785
33786 \begin_layout Standard
33787 \begin_inset Note Greyedout
33788 status open
33789
33790 \begin_layout Plain Layout
33791
33792 \series bold
33793 Bemerkung:
33794 \series default
33795  
33796 \family typewriter
33797 .dvi
33798 \family default
33799 -Dateien enthalten keine Bilder, denn diese sind nur verlinkt.
33800 \end_layout
33801
33802 \end_inset
33803
33804
33805 \end_layout
33806
33807 \begin_layout Standard
33808 Also vergessen Sie nicht, die Bilder mitzunehmen, wenn Sie Ihre 
33809 \family typewriter
33810 .dvi
33811 \family default
33812 -Datei auf einen anderen Computer kopieren.
33813  Dies Eigenschaft kann Ihren Computer verlangsamen.
33814  wenn Sie die 
33815 \family typewriter
33816 .dvi
33817 \family default
33818 -Datei betrachten, weil der dvi-Betrachter die Bilder in den Hintergrund
33819  konvertieren muss, um sie sichtbar zu machen, wenn Sie in der 
33820 \family typewriter
33821 .dvi
33822 \family default
33823 -Datei
33824 \family typewriter
33825  
33826 \family default
33827 blättern.
33828
33829 \family typewriter
33830  
33831 \family default
33832 Außerdem zeigen manche dvi-Betrachter nicht alles (richtig) an.
33833  Bei Dokumenten mit vielen Bildern empfehlen wir daher das PDF-Format.
33834  
33835 \end_layout
33836
33837 \begin_layout Standard
33838 Sie können Ihr Dokument als DVI über das Menü 
33839 \family sans
33840 Datei\SpecialChar \menuseparator
33841 Exportieren\SpecialChar \menuseparator
33842 DVI
33843 \family default
33844  exportieren.
33845  Sie können eine Vorschau Ihres Dokument als DVI über das Menü 
33846 \family sans
33847 Ansicht
33848 \family default
33849  oder den Werkzeugleistenknopf 
33850 \begin_inset Graphics
33851         filename ../../images/buffer-view_dvi.png
33852         scale 85
33853         scaleBeforeRotation
33854
33855 \end_inset
33856
33857  anschauen.
33858 \end_layout
33859
33860 \begin_layout Section
33861 PostScript
33862 \begin_inset CommandInset label
33863 LatexCommand label
33864 name "abs:PostScript"
33865
33866 \end_inset
33867
33868
33869 \begin_inset Index
33870 status collapsed
33871
33872 \begin_layout Plain Layout
33873 Dateiformat  ! PostScript
33874 \end_layout
33875
33876 \end_inset
33877
33878
33879 \begin_inset Index
33880 status collapsed
33881
33882 \begin_layout Plain Layout
33883 PostScript
33884 \end_layout
33885
33886 \end_inset
33887
33888
33889 \end_layout
33890
33891 \begin_layout Standard
33892 Dieser Dateityp hat die Erweiterung 
33893 \begin_inset Quotes gld
33894 \end_inset
33895
33896
33897 \family typewriter
33898 .ps
33899 \family default
33900
33901 \begin_inset Quotes grd
33902 \end_inset
33903
33904 .
33905  PostScript wurde von der Firma
33906 \family typewriter
33907  Adobe
33908 \family default
33909  als Druckersprache entwickelt.
33910  Die Datei enthält deshalb Druckbefehle.
33911  PostScript kann als 
33912 \begin_inset Quotes gld
33913 \end_inset
33914
33915 Programmiersprache
33916 \begin_inset Quotes grd
33917 \end_inset
33918
33919  angesehen werden.
33920  Man kann mit ihr rechnen und Diagramme und Bilder zeichnen
33921 \begin_inset Foot
33922 status collapsed
33923
33924 \begin_layout Plain Layout
33925 Wenn Sie mehr darüber wissen wollen, sollten Sie sich die Dokumentation
33926  von
33927 \series bold
33928  PSTricks
33929 \series default
33930  
33931 \begin_inset CommandInset citation
33932 LatexCommand cite
33933 key "pstricks"
33934
33935 \end_inset
33936
33937  oder 
33938 \begin_inset CommandInset citation
33939 LatexCommand cite
33940 key "latex-praxisbuch"
33941
33942 \end_inset
33943
33944  ansehen.
33945 \end_layout
33946
33947 \end_inset
33948
33949 .
33950  Wegen dieser Möglichkeiten sind 
33951 \family typewriter
33952 .ps
33953 \family default
33954 -Dateien oft größer als 
33955 \family typewriter
33956 .pdf
33957 \family default
33958 -Dateien.
33959 \end_layout
33960
33961 \begin_layout Standard
33962 PostScript kann nur Bilder im Format EPS
33963 \begin_inset Index
33964 status collapsed
33965
33966 \begin_layout Plain Layout
33967 EPS
33968 \end_layout
33969
33970 \end_inset
33971
33972  (Encapsulated PostScript, Datei-Er\SpecialChar \-
33973 wei\SpecialChar \-
33974 te\SpecialChar \-
33975 rung 
33976 \begin_inset Quotes gld
33977 \end_inset
33978
33979
33980 \family typewriter
33981 .eps
33982 \family default
33983
33984 \begin_inset Quotes grd
33985 \end_inset
33986
33987 ) enthalten.
33988  Weil LyX die Verwendung jedes bekannten Bildformats erlaubt, muss es diese
33989  intern nach EPS konvertiert werden.
33990  Dies wird bei vielen Bildern in einem Dokument den Arbeitsfluss drastisch
33991  verlangsamen.
33992  Wenn Sie also PostScript benutzen wollen, sollten Sie Ihre Bilder vorher
33993  konvertieren und direkt als EPS einfügen.
33994 \end_layout
33995
33996 \begin_layout Standard
33997 Sie können Ihr Dokument als PostScript über das Menü 
33998 \family sans
33999 Datei\SpecialChar \menuseparator
34000 Exportieren\SpecialChar \menuseparator
34001 PostScript
34002 \family default
34003  exportieren.
34004  Sie können eine Vorschau Ihres Dokument als PostScript über das Menü 
34005 \family sans
34006 Ansicht
34007 \family default
34008  oder den Werkzeugleistenknopf 
34009 \begin_inset Graphics
34010         filename ../../images/buffer-view_ps.png
34011         scale 85
34012         scaleBeforeRotation
34013
34014 \end_inset
34015
34016  anschauen.
34017 \end_layout
34018
34019 \begin_layout Section
34020 PDF
34021 \begin_inset CommandInset label
34022 LatexCommand label
34023 name "abs:PDF"
34024
34025 \end_inset
34026
34027
34028 \begin_inset Index
34029 status collapsed
34030
34031 \begin_layout Plain Layout
34032 Dateiformat! PDF
34033 \end_layout
34034
34035 \end_inset
34036
34037
34038 \begin_inset Index
34039 status collapsed
34040
34041 \begin_layout Plain Layout
34042 PDF
34043 \end_layout
34044
34045 \end_inset
34046
34047
34048 \end_layout
34049
34050 \begin_layout Standard
34051 Dieser Dateityp hat die Erweiterung 
34052 \begin_inset Quotes gld
34053 \end_inset
34054
34055
34056 \family typewriter
34057 .pdf
34058 \family default
34059
34060 \begin_inset Quotes grd
34061 \end_inset
34062
34063 .
34064  Das
34065 \emph on
34066  
34067 \emph default
34068
34069 \begin_inset Quotes gld
34070 \end_inset
34071
34072 Portable Document Format
34073 \begin_inset Quotes grd
34074 \end_inset
34075
34076  (PDF) wurde auch von der Firma 
34077 \family typewriter
34078 Adobe
34079 \family default
34080  als Derivat von PostScript entwickelt.
34081  Es ist komprimierter und benutzt weniger Befehle als PostScript.
34082  Wie der Begriff 
34083 \begin_inset Quotes gld
34084 \end_inset
34085
34086 portable
34087 \begin_inset Quotes grd
34088 \end_inset
34089
34090  (übertragbar) vermuten lässt, kann eine 
34091 \family typewriter
34092 .pdf
34093 \family default
34094 -Datei auf jeden Rechner übertragen werden, und der Ausdruck sieht immer
34095  gleich aus.
34096 \end_layout
34097
34098 \begin_layout Standard
34099 PDF kann Bilder im eigenen PDF-Format, im Format 
34100 \begin_inset Quotes gld
34101 \end_inset
34102
34103 Joint Photographic Experts Group
34104 \begin_inset Quotes grd
34105 \end_inset
34106
34107  (JPEG
34108 \begin_inset Index
34109 status collapsed
34110
34111 \begin_layout Plain Layout
34112 JPG, JPEG
34113 \end_layout
34114
34115 \end_inset
34116
34117 , Datei-Erweiterung 
34118 \begin_inset Quotes gld
34119 \end_inset
34120
34121
34122 \family typewriter
34123 .jpg
34124 \family default
34125
34126 \begin_inset Quotes grd
34127 \end_inset
34128
34129  oder 
34130 \begin_inset Quotes gld
34131 \end_inset
34132
34133
34134 \family typewriter
34135 .jpeg
34136 \family default
34137
34138 \begin_inset Quotes grd
34139 \end_inset
34140
34141 ) und im Format 
34142 \begin_inset Quotes gld
34143 \end_inset
34144
34145 Portable Network Graphics
34146 \begin_inset Quotes grd
34147 \end_inset
34148
34149  (PNG
34150 \begin_inset Index
34151 status collapsed
34152
34153 \begin_layout Plain Layout
34154 PNG
34155 \end_layout
34156
34157 \end_inset
34158
34159 , Datei-Erweiterung 
34160 \begin_inset Quotes gld
34161 \end_inset
34162
34163
34164 \family typewriter
34165 .png
34166 \family default
34167
34168 \begin_inset Quotes grd
34169 \end_inset
34170
34171 ) enthalten.
34172  Trotzdem können Sie jedes bekannte Bildformat benutzen, weil LyX es für
34173  Sie konvertieren wird.
34174  Die Konvertierungen werden Ihren Arbeitsfluss verlangsamen, weswegen empfohlen
34175  wird, eines der drei erwähnten Bildformate zu benutzen.
34176 \end_layout
34177
34178 \begin_layout Standard
34179 PDF-Dateien können Sie über 
34180 \family sans
34181 Datei\SpecialChar \menuseparator
34182 Exportieren
34183 \family default
34184  auf drei Arten erzeugen:
34185 \end_layout
34186
34187 \begin_layout Description
34188 PDF
34189 \begin_inset Space ~
34190 \end_inset
34191
34192 (ps2pdf) benutzt das Programm
34193 \family typewriter
34194  ps2pdf
34195 \family default
34196 , das ein PDF aus einer PostScript-Version Ihres Dokument erstellt.
34197  Die PostScript-Version wird Programm 
34198 \family typewriter
34199 dvips
34200 \family default
34201  aus einer DVI-Version erstellt.
34202  Es werden also drei Konvertierungen verwendet.
34203 \end_layout
34204
34205 \begin_layout Description
34206 PDF
34207 \begin_inset Space ~
34208 \end_inset
34209
34210 (dvipdfm) benutzt das Programm 
34211 \family typewriter
34212 dvipdfm
34213 \family default
34214 , das Ihr Dokument im ersten Schritt nach DVI und in einem zweiten nach
34215  PDF konvertiert.
34216 \end_layout
34217
34218 \begin_layout Description
34219 PDF
34220 \begin_inset Space ~
34221 \end_inset
34222
34223 (pdflatex) benutzt das Programm
34224 \family typewriter
34225  pdftex
34226 \family default
34227 , das Ihr Dokument direkt nach PDF konvertiert.
34228 \end_layout
34229
34230 \begin_layout Standard
34231
34232 \family sans
34233 PDF
34234 \begin_inset Space ~
34235 \end_inset
34236
34237 (pdflatex)
34238 \family default
34239  wird empfohlen, weil
34240 \family typewriter
34241  pdftex
34242 \family default
34243  alle Funktionen der aktuellen PDF-Versionen unterstützt, schnell ist und
34244  ohne Probleme arbeitet.
34245  Das Programm 
34246 \family typewriter
34247 dvi\SpecialChar \-
34248 pdfm
34249 \family default
34250  wird nicht weiterentwickelt und ist deshalb nicht sehr aktuell.
34251 \end_layout
34252
34253 \begin_layout Standard
34254 Sie können Ihr Dokument als PDF über das Menü 
34255 \family sans
34256 Datei\SpecialChar \menuseparator
34257 Exportieren\SpecialChar \menuseparator
34258 PDF
34259 \family default
34260  exportieren.
34261  Sie können eine Vorschau Ihres Dokument als PDF über das Menü 
34262 \family sans
34263 Ansicht
34264 \family default
34265  oder den Werkzeugleistenknopf 
34266 \begin_inset Graphics
34267         filename ../../images/buffer-view_pdf2.png
34268         scale 85
34269         scaleBeforeRotation
34270
34271 \end_inset
34272
34273  anschauen 
34274 \family sans
34275 (
34276 \family default
34277 der 
34278 \family sans
34279 PDF
34280 \begin_inset Space ~
34281 \end_inset
34282
34283 (pdflatex)
34284 \family default
34285  verwendet).
34286 \end_layout
34287
34288 \begin_layout Chapter
34289 Erklärung der Gleichung
34290 \begin_inset Space ~
34291 \end_inset
34292
34293
34294 \begin_inset CommandInset ref
34295 LatexCommand eqref
34296 reference "eq:Wgn"
34297
34298 \end_inset
34299
34300
34301 \begin_inset CommandInset label
34302 LatexCommand label
34303 name "kap:Exläuterung-einer-Gleichung"
34304
34305 \end_inset
34306
34307
34308 \end_layout
34309
34310 \begin_layout Standard
34311 Die Gesamtbreite von
34312 \emph on
34313  n
34314 \emph default
34315  Tabellenzellen 
34316 \begin_inset Formula $W_{\mathrm{tot\, n}}$
34317 \end_inset
34318
34319  kann wie folgt berechnet werden:
34320 \end_layout
34321
34322 \begin_layout Standard
34323 \begin_inset Formula \begin{equation}
34324 W_{\mathrm{tot}\, n}=n\cdot(W_{g\, n}+2\cdot\backslash\mbox{tabcolsep})+(n+1)\cdot\backslash\mbox{arrayrulewidth}\label{eq:Wtot_n}\end{equation}
34325
34326 \end_inset
34327
34328
34329 \end_layout
34330
34331 \begin_layout Standard
34332 Dabei ist 
34333 \begin_inset Formula $W_{g\, n}$
34334 \end_inset
34335
34336  die Breite jeder Zelle.
34337
34338 \series bold
34339  
34340 \backslash
34341 tabcolsep
34342 \series default
34343  ist die LaTeX-Länge zwischen dem Zellentext und der Zellgrenze mit dem
34344  Standardwert 6
34345 \begin_inset Space \thinspace{}
34346 \end_inset
34347
34348 pt.
34349  
34350 \series bold
34351
34352 \backslash
34353 arrayrulewidth
34354 \series default
34355  ist die Dicke der Zellgrenze mit dem Standardwert 0.4
34356 \begin_inset Space \thinspace{}
34357 \end_inset
34358
34359 pt.
34360 \end_layout
34361
34362 \begin_layout Standard
34363 Nach Gleichung
34364 \begin_inset Space ~
34365 \end_inset
34366
34367
34368 \begin_inset CommandInset ref
34369 LatexCommand ref
34370 reference "eq:Wtot_n"
34371
34372 \end_inset
34373
34374  ist die Gesamtbreite einer Mehrfachspalte, 
34375 \begin_inset Formula $W_{\mathrm{tot\, mult}}$
34376 \end_inset
34377
34378 ,
34379 \end_layout
34380
34381 \begin_layout Standard
34382 \begin_inset Formula \begin{equation}
34383 W_{\mathrm{tot\, mult}}=W_{g\,\mathrm{mult}}+2\cdot\backslash\mbox{tabcolsep}+2\cdot\backslash\mbox{arrayrulewidth}\label{eq:Wtot_mult}\end{equation}
34384
34385 \end_inset
34386
34387
34388 \end_layout
34389
34390 \begin_layout Standard
34391 Setzt man die Gleichungen
34392 \begin_inset Space ~
34393 \end_inset
34394
34395
34396 \begin_inset CommandInset ref
34397 LatexCommand ref
34398 reference "eq:Wtot_n"
34399
34400 \end_inset
34401
34402  und 
34403 \begin_inset CommandInset ref
34404 LatexCommand ref
34405 reference "eq:Wtot_mult"
34406
34407 \end_inset
34408
34409  gleich, kann man die benötigte Breite 
34410 \begin_inset Formula $W_{g\, n}$
34411 \end_inset
34412
34413 , wenn 
34414 \emph on
34415 n
34416 \emph default
34417  Spalten überspannt sind, so dass jede Spalte eine Gesamtbreite 
34418 \begin_inset Formula $W_{\mathrm{tot\, mult}}/n$
34419 \end_inset
34420
34421  hat, berechnen:
34422 \end_layout
34423
34424 \begin_layout Standard
34425 \begin_inset Formula \begin{equation}
34426 W_{g\, n}=(W_{g\,\mathrm{mult}}+(1-n)\cdot(2\cdot\backslash\mbox{tabcolsep}+\backslash\mbox{arrayrulewidth}))/n\end{equation}
34427
34428 \end_inset
34429
34430
34431 \end_layout
34432
34433 \begin_layout Bibliography
34434 \begin_inset CommandInset bibitem
34435 LatexCommand bibitem
34436 key "booktabs"
34437
34438 \end_inset
34439
34440
34441 \begin_inset ERT
34442 status collapsed
34443
34444 \begin_layout Plain Layout
34445
34446
34447 \backslash
34448 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/booktabs/booktabs.pdf}
34449 {
34450 \end_layout
34451
34452 \end_inset
34453
34454
34455 \series bold
34456 booktabs
34457 \series default
34458
34459 \begin_inset ERT
34460 status collapsed
34461
34462 \begin_layout Plain Layout
34463
34464 }
34465 \end_layout
34466
34467 \end_inset
34468
34469 -Dokumentation im Internet
34470 \begin_inset Index
34471 status collapsed
34472
34473 \begin_layout Plain Layout
34474 LaTeX-Pakete ! booktabs
34475 \end_layout
34476
34477 \end_inset
34478
34479
34480 \end_layout
34481
34482 \begin_layout Bibliography
34483 \begin_inset CommandInset bibitem
34484 LatexCommand bibitem
34485 key "caption"
34486
34487 \end_inset
34488
34489
34490 \begin_inset ERT
34491 status collapsed
34492
34493 \begin_layout Plain Layout
34494
34495
34496 \backslash
34497 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/caption/caption-deu.pd
34498 f}{
34499 \end_layout
34500
34501 \end_inset
34502
34503
34504 \series bold
34505 caption
34506 \series default
34507
34508 \begin_inset ERT
34509 status collapsed
34510
34511 \begin_layout Plain Layout
34512
34513 }
34514 \end_layout
34515
34516 \end_inset
34517
34518 -Dokumentation im Internet
34519 \begin_inset Index
34520 status collapsed
34521
34522 \begin_layout Plain Layout
34523 LaTeX-Pakete ! caption
34524 \end_layout
34525
34526 \end_inset
34527
34528
34529 \end_layout
34530
34531 \begin_layout Bibliography
34532 \begin_inset CommandInset bibitem
34533 LatexCommand bibitem
34534 key "endfloat"
34535
34536 \end_inset
34537
34538
34539 \begin_inset ERT
34540 status collapsed
34541
34542 \begin_layout Plain Layout
34543
34544
34545 \backslash
34546 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/endfloat/endfloat.pdf}
34547 {
34548 \end_layout
34549
34550 \end_inset
34551
34552
34553 \series bold
34554 endfloat
34555 \series default
34556
34557 \begin_inset ERT
34558 status collapsed
34559
34560 \begin_layout Plain Layout
34561
34562 }
34563 \end_layout
34564
34565 \end_inset
34566
34567 -Dokumentation im Internet
34568 \begin_inset Index
34569 status collapsed
34570
34571 \begin_layout Plain Layout
34572 LaTeX-Pakete ! endf
34573 \begin_inset ERT
34574 status collapsed
34575
34576 \begin_layout Plain Layout
34577
34578
34579 \backslash
34580
34581 \begin_inset ERT
34582 status collapsed
34583
34584 \begin_layout Plain Layout
34585
34586 {
34587 \end_layout
34588
34589 \end_inset
34590
34591
34592 \begin_inset ERT
34593 status collapsed
34594
34595 \begin_layout Plain Layout
34596
34597 }
34598 \end_layout
34599
34600 \end_inset
34601
34602
34603 \end_layout
34604
34605 \end_inset
34606
34607 /loat
34608 \end_layout
34609
34610 \end_inset
34611
34612
34613 \end_layout
34614
34615 \begin_layout Bibliography
34616 \begin_inset CommandInset bibitem
34617 LatexCommand bibitem
34618 key "wrapfig"
34619
34620 \end_inset
34621
34622
34623 \begin_inset ERT
34624 status collapsed
34625
34626 \begin_layout Plain Layout
34627
34628
34629 \backslash
34630 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/wrapfig/wrapfig.sty}{
34631 \end_layout
34632
34633 \end_inset
34634
34635
34636 \series bold
34637 wrapfig
34638 \series default
34639
34640 \begin_inset ERT
34641 status collapsed
34642
34643 \begin_layout Plain Layout
34644
34645 }
34646 \end_layout
34647
34648 \end_inset
34649
34650 -Dokumentation im Internet
34651 \begin_inset Index
34652 status collapsed
34653
34654 \begin_layout Plain Layout
34655 LaTeX-Pakete ! wrapfig
34656 \begin_inset ERT
34657 status collapsed
34658
34659 \begin_layout Plain Layout
34660
34661
34662 \backslash
34663
34664 \begin_inset ERT
34665 status collapsed
34666
34667 \begin_layout Plain Layout
34668
34669 {
34670 \end_layout
34671
34672 \end_inset
34673
34674
34675 \begin_inset ERT
34676 status collapsed
34677
34678 \begin_layout Plain Layout
34679
34680 }
34681 \end_layout
34682
34683 \end_inset
34684
34685
34686 \end_layout
34687
34688 \end_inset
34689
34690 vspace
34691 \begin_inset ERT
34692 status collapsed
34693
34694 \begin_layout Plain Layout
34695
34696 {
34697 \end_layout
34698
34699 \end_inset
34700
34701 4mm
34702 \begin_inset ERT
34703 status collapsed
34704
34705 \begin_layout Plain Layout
34706
34707 }
34708 \end_layout
34709
34710 \end_inset
34711
34712
34713 \end_layout
34714
34715 \end_inset
34716
34717
34718 \end_layout
34719
34720 \begin_layout Bibliography
34721 \begin_inset CommandInset bibitem
34722 LatexCommand bibitem
34723 key "footmisc"
34724
34725 \end_inset
34726
34727
34728 \begin_inset ERT
34729 status collapsed
34730
34731 \begin_layout Plain Layout
34732
34733
34734 \backslash
34735 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/footmisc/footmisc.pdf}
34736 {
34737 \end_layout
34738
34739 \end_inset
34740
34741
34742 \series bold
34743 footmisc
34744 \series default
34745
34746 \begin_inset ERT
34747 status collapsed
34748
34749 \begin_layout Plain Layout
34750
34751 }
34752 \end_layout
34753
34754 \end_inset
34755
34756 -Dokumentation im Internet
34757 \begin_inset Index
34758 status collapsed
34759
34760 \begin_layout Plain Layout
34761 LaTeX-Pakete ! footmisc
34762 \end_layout
34763
34764 \end_inset
34765
34766
34767 \end_layout
34768
34769 \begin_layout Bibliography
34770 \begin_inset CommandInset bibitem
34771 LatexCommand bibitem
34772 key "hypcap"
34773
34774 \end_inset
34775
34776
34777 \begin_inset ERT
34778 status collapsed
34779
34780 \begin_layout Plain Layout
34781
34782
34783 \backslash
34784 href{http://www.ctan.org/tex-archive/macros/latex/contrib/oberdiek/hypcap.pdf}{
34785 \end_layout
34786
34787 \end_inset
34788
34789
34790 \series bold
34791 hypcap
34792 \series default
34793
34794 \begin_inset ERT
34795 status collapsed
34796
34797 \begin_layout Plain Layout
34798
34799 }
34800 \end_layout
34801
34802 \end_inset
34803
34804 -Dokumentation im Internet
34805 \begin_inset Index
34806 status collapsed
34807
34808 \begin_layout Plain Layout
34809 LaTeX-Pakete ! hypcap
34810 \end_layout
34811
34812 \end_inset
34813
34814
34815 \end_layout
34816
34817 \begin_layout Bibliography
34818 \begin_inset CommandInset bibitem
34819 LatexCommand bibitem
34820 key "hyperref"
34821
34822 \end_inset
34823
34824
34825 \begin_inset ERT
34826 status collapsed
34827
34828 \begin_layout Plain Layout
34829
34830
34831 \backslash
34832 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/hyperref/hyperref.pdf}
34833 {
34834 \end_layout
34835
34836 \end_inset
34837
34838
34839 \series bold
34840 hyperref
34841 \series default
34842
34843 \begin_inset ERT
34844 status collapsed
34845
34846 \begin_layout Plain Layout
34847
34848 }
34849 \end_layout
34850
34851 \end_inset
34852
34853 -Dokumentation im Internet
34854 \begin_inset Index
34855 status collapsed
34856
34857 \begin_layout Plain Layout
34858 LaTeX-Pakete ! hyperref
34859 \end_layout
34860
34861 \end_inset
34862
34863
34864 \end_layout
34865
34866 \begin_layout Bibliography
34867 \begin_inset CommandInset bibitem
34868 LatexCommand bibitem
34869 key "koma-script"
34870
34871 \end_inset
34872
34873
34874 \begin_inset ERT
34875 status collapsed
34876
34877 \begin_layout Plain Layout
34878
34879
34880 \backslash
34881 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/koma-script/scrguide.p
34882 df}{
34883 \end_layout
34884
34885 \end_inset
34886
34887
34888 \series bold
34889 koma-script
34890 \series default
34891
34892 \begin_inset ERT
34893 status collapsed
34894
34895 \begin_layout Plain Layout
34896
34897 }
34898 \end_layout
34899
34900 \end_inset
34901
34902 -Dokumentation im Internet
34903 \begin_inset Index
34904 status collapsed
34905
34906 \begin_layout Plain Layout
34907 LaTeX-Pakete ! koma-script
34908 \end_layout
34909
34910 \end_inset
34911
34912
34913 \end_layout
34914
34915 \begin_layout Bibliography
34916 \begin_inset CommandInset bibitem
34917 LatexCommand bibitem
34918 key "latexguide"
34919
34920 \end_inset
34921
34922 Kopka, Helmut und Daly, Patrick W.: 
34923 \emph on
34924 A Guide to LaTeX Fourth Edition.
34925
34926 \emph default
34927  Addison-Wesley, 2003
34928 \end_layout
34929
34930 \begin_layout Bibliography
34931 \begin_inset CommandInset bibitem
34932 LatexCommand bibitem
34933 key "lamport"
34934
34935 \end_inset
34936
34937 Lamport, Leslie: 
34938 \emph on
34939 LaTeX: A Document Preparation System.
34940
34941 \emph default
34942  Addison-Wesley, second edition, 1994
34943 \end_layout
34944
34945 \begin_layout Bibliography
34946 \begin_inset CommandInset bibitem
34947 LatexCommand bibitem
34948 key "listings"
34949
34950 \end_inset
34951
34952
34953 \begin_inset ERT
34954 status collapsed
34955
34956 \begin_layout Plain Layout
34957
34958
34959 \backslash
34960 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/listings/listings.pdf}
34961 {
34962 \end_layout
34963
34964 \end_inset
34965
34966
34967 \series bold
34968 listings
34969 \series default
34970
34971 \begin_inset ERT
34972 status collapsed
34973
34974 \begin_layout Plain Layout
34975
34976 }
34977 \end_layout
34978
34979 \end_inset
34980
34981 -Dokumentation im Internet
34982 \begin_inset Index
34983 status collapsed
34984
34985 \begin_layout Plain Layout
34986 LaTeX-Pakete ! listings
34987 \end_layout
34988
34989 \end_inset
34990
34991
34992 \end_layout
34993
34994 \begin_layout Bibliography
34995 \begin_inset CommandInset bibitem
34996 LatexCommand bibitem
34997 key "marginnote"
34998
34999 \end_inset
35000
35001
35002 \begin_inset ERT
35003 status collapsed
35004
35005 \begin_layout Plain Layout
35006
35007
35008 \backslash
35009 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/marginnote/marginnote.
35010 pdf}{
35011 \end_layout
35012
35013 \end_inset
35014
35015
35016 \series bold
35017 marginnote
35018 \series default
35019
35020 \begin_inset ERT
35021 status collapsed
35022
35023 \begin_layout Plain Layout
35024
35025 }
35026 \end_layout
35027
35028 \end_inset
35029
35030 -Dokumentation im Internet
35031 \begin_inset Index
35032 status collapsed
35033
35034 \begin_layout Plain Layout
35035 LaTeX-Pakete ! marginnote
35036 \end_layout
35037
35038 \end_inset
35039
35040
35041 \end_layout
35042
35043 \begin_layout Bibliography
35044 \begin_inset CommandInset bibitem
35045 LatexCommand bibitem
35046 key "latexcompanion"
35047
35048 \end_inset
35049
35050 Mittelbach, Frank und Goossens, Michel: 
35051 \emph on
35052 The LaTeX Companion Second Edition.
35053
35054 \emph default
35055  Addison-Wesley, 2004
35056 \end_layout
35057
35058 \begin_layout Bibliography
35059 \begin_inset CommandInset bibitem
35060 LatexCommand bibitem
35061 key "latex-praxisbuch"
35062
35063 \end_inset
35064
35065 Niedermair, Elke & Michael: 
35066 \emph on
35067 LaTeX-Praxisbuch
35068 \emph default
35069 , Franzis-Verlag, 2004
35070 \end_layout
35071
35072 \begin_layout Bibliography
35073 \begin_inset CommandInset bibitem
35074 LatexCommand bibitem
35075 key "pstricks"
35076
35077 \end_inset
35078
35079
35080 \begin_inset ERT
35081 status collapsed
35082
35083 \begin_layout Plain Layout
35084
35085
35086 \backslash
35087 href{http://tug.org/PSTricks/main.cgi/}{
35088 \end_layout
35089
35090 \end_inset
35091
35092
35093 \series bold
35094 PSTricks
35095 \series default
35096
35097 \begin_inset ERT
35098 status collapsed
35099
35100 \begin_layout Plain Layout
35101
35102 }
35103 \end_layout
35104
35105 \end_inset
35106
35107 -Internetseite
35108 \begin_inset Index
35109 status collapsed
35110
35111 \begin_layout Plain Layout
35112 LaTeX-Pakete ! pstricks
35113 \end_layout
35114
35115 \end_inset
35116
35117
35118 \end_layout
35119
35120 \begin_layout Bibliography
35121 \begin_inset CommandInset bibitem
35122 LatexCommand bibitem
35123 key "sidecap"
35124
35125 \end_inset
35126
35127
35128 \begin_inset ERT
35129 status collapsed
35130
35131 \begin_layout Plain Layout
35132
35133
35134 \backslash
35135 href{ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/sidecap/sidecap.pdf}{
35136 \end_layout
35137
35138 \end_inset
35139
35140
35141 \series bold
35142 sidecap
35143 \series default
35144
35145 \begin_inset ERT
35146 status collapsed
35147
35148 \begin_layout Plain Layout
35149
35150 }
35151 \end_layout
35152
35153 \end_inset
35154
35155 -Dokumentation im Internet
35156 \begin_inset Index
35157 status collapsed
35158
35159 \begin_layout Plain Layout
35160 LaTeX-Pakete ! sidecap
35161 \end_layout
35162
35163 \end_inset
35164
35165
35166 \end_layout
35167
35168 \begin_layout Bibliography
35169 \begin_inset CommandInset bibitem
35170 LatexCommand bibitem
35171 key "NewInLyX15"
35172
35173 \end_inset
35174
35175
35176 \begin_inset ERT
35177 status collapsed
35178
35179 \begin_layout Plain Layout
35180
35181
35182 \backslash
35183 href{http://wiki.lyx.org/LyX/NewInLyX15}{
35184 \end_layout
35185
35186 \end_inset
35187
35188 Wiki-Seite
35189 \begin_inset ERT
35190 status collapsed
35191
35192 \begin_layout Plain Layout
35193
35194 }
35195 \end_layout
35196
35197 \end_inset
35198
35199  über neue Funktionen in 
35200 \family sans
35201 LyX 1.5.0
35202 \family default
35203 .
35204 \end_layout
35205
35206 \begin_layout Standard
35207 \begin_inset CommandInset index_print
35208 LatexCommand printindex
35209
35210 \end_inset
35211
35212
35213 \end_layout
35214
35215 \begin_layout Standard
35216 \begin_inset FloatList figure
35217
35218 \end_inset
35219
35220
35221 \end_layout
35222
35223 \begin_layout Standard
35224 \begin_inset FloatList table
35225
35226 \end_inset
35227
35228
35229 \end_layout
35230
35231 \begin_layout Standard
35232 \begin_inset ERT
35233 status open
35234
35235 \begin_layout Plain Layout
35236
35237
35238 \backslash
35239 listof{algorithm}{Algorithmenverzeichnis}
35240 \end_layout
35241
35242 \end_inset
35243
35244
35245 \begin_inset Note Note
35246 status collapsed
35247
35248 \begin_layout Plain Layout
35249 siehe Abschnitt
35250 \begin_inset Space ~
35251 \end_inset
35252
35253
35254 \begin_inset CommandInset ref
35255 LatexCommand ref
35256 reference "uab:Gleitobjekt-Algorithmen"
35257
35258 \end_inset
35259
35260  für eine Beschreibung
35261 \end_layout
35262
35263 \end_inset
35264
35265
35266 \end_layout
35267
35268 \end_body
35269 \end_document