]> git.lyx.org Git - lyx.git/blob - lib/doc/de/EmbeddedObjects.lyx
EmbeddedObjects.lyx: - convert all \xxxphantom TeX code insets to the new phantom...
[lyx.git] / lib / doc / de / EmbeddedObjects.lyx
1 #LyX 2.0.0svn created this file. For more info see http://www.lyx.org/
2 \lyxformat 401
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 \let\myTOC\tableofcontents
24 \renewcommand\tableofcontents{%
25   \frontmatter
26   \pdfbookmark[1]{\contentsname}{}
27   \myTOC
28   \mainmatter }
29
30 % Formatierung von Legenden
31 \usepackage[labelfont={bf,sf}, tableposition=top]{caption}[2004/07/16]
32
33 % Befehle, um Legenden neben Tabellen und Abbildungen zu setzen
34 \usepackage{sidecap}
35
36 \newcommand{\TabBesBeg}{%
37  \let\MyTable\table
38  \let\MyEndtable\endtable
39  \renewenvironment{table}{\begin{SCtable}}{\end{SCtable}}}
40
41 \newcommand{\TabBesEnd}{%
42  \let\table\MyTable
43  \let\endtable\MyEndtable}
44
45 \newcommand{\FigBesBeg}{%
46  \let\MyFigure\figure
47  \let\MyEndfigure\endfigure
48  \renewenvironment{figure}{\begin{SCfigure}}{\end{SCfigure}}}
49
50 \newcommand{\FigBesEnd}{%
51  \let\figure\MyFigure
52  \let\endfigure\MyEndfigure}
53
54 % ermöglicht das Berechnen von Werten
55 \usepackage{calc}
56
57 % Ermöglicht besondere Tabellenzellen-Ausrichtungen
58 \usepackage{dcolumn}
59
60 %Vergrößert den Teil der Seite, in dem Gleitobjekte
61 % unten angeordnet werden dürfen
62 \renewcommand{\bottomfraction}{0.5}
63
64 % Vermeidet, dass Gleitobjekte vor ihrem Abschnitt gedruckt werden
65 \let\mySection\section\renewcommand{\section}{\suppressfloats[t]\mySection}
66
67 % beschleunigt die Berechnung von langen Tabellen
68 \setcounter{LTchunksize}{100}
69
70 % wird für skalierte und rotierte Boxen benötigt
71 \@ifundefined{rotatebox}{\usepackage{graphicx}}{}
72
73 % wird bei farbigen Tabellen benutzt
74 \@ifundefined{textcolor}
75  {\usepackage{color}}{}
76 \definecolor{dunkelgruen}{cmyk}{0.5, 0, 1, 0}
77 \definecolor{hellgrau}{gray}{0.8}
78
79 % testen ob paket colortbl installiert ist
80 % wird für farbige Tabellenzellen benutzt
81 \newboolean{colortbl}
82 \IfFileExists{colortbl.sty}
83  {\usepackage{colortbl}
84   \setboolean{colortbl}{true}}
85  {\setboolean{colortbl}{false}}
86
87 % wird für Mehrfachzeilen benutzt
88 \usepackage{multirow}
89 %\renewcommand{\multirowsetup}{\centering}
90
91 % wird fuer Tabellen im Buchstil benutzt
92 \usepackage{booktabs}
93
94 % wird benutzt, um Tabellenzellen zu vergrößern
95 \@ifundefined{extrarowheight}
96  {\usepackage{array}}{}
97 \setlength{\extrarowheight}{2pt}
98
99 % wird fuer benutzerdefinierte Tabellen benutzt
100 % ---
101 \newcolumntype{M}[1]
102  {>{\centering\hspace{0pt}}m{#1}}
103
104 \newcolumntype{S}[2]
105  {>{\centering\hspace{0pt}}m{(#1+(2\tabcolsep+\arrayrulewidth)*(1-#2))/#2}}
106
107 \newcolumntype{K}[1]
108  {>{\columncolor{#1}\hspace{0pt}}c}
109
110 \newcolumntype{V}{!{\vrule width 1.5pt}}
111
112 \newcolumntype{W}{!{\color{green}\vline}}
113 % ---
114
115 % Setzt einen zusaetzlichen Abstand von
116 % 1.5 mm zwischen Fussnoten
117 \let\myFoot\footnote
118 \renewcommand{\footnote}[1]{\myFoot{#1\vspace{1.5mm}}}
119
120 % Gleit-Algorithmen werden innerhalb von Kapiteln numeriert
121 \numberwithin{algorithm}{chapter}
122
123 % Grauschrift-Notizen in blauer Farbe
124 \renewenvironment{lyxgreyedout}
125  {\textcolor{blue}\bgroup}{\egroup}
126
127 % ------------------------------------
128 % Prüfung auf benötigte LaTeXPakete
129 \usepackage{ifthen}
130
131 % Pruefung auf arydshln
132 % für Tabellen mit gestrichelten Linien
133 \newboolean{arydshln}
134 \IfFileExists{arydshln.sty}
135  {\usepackage{arydshln}
136   \setboolean{arydshln}{true}}
137  {\setboolean{arydshln}{false}}
138
139 % Prüfung auf marginnote
140 % für Randnotizen
141 \newboolean{marginnote}
142 \IfFileExists{marginnote.sty}
143  {\usepackage{marginnote}
144   \let\marginpar\marginnote
145   \setboolean{marginnote}{true}}
146  {\setboolean{marginnote}{false}}
147
148 % Prüfung auf sidecap
149 % für seitliche Beschriftungen
150 \newboolean{sidecap}
151 \IfFileExists{sidecap.sty}
152  {\usepackage{sidecap}
153   \setboolean{sidecap}{true}}
154  {\setboolean{sidecap}{false}}
155
156 % Umdefinieren des Makros \LyX für PDF-Lesezeichen
157 \def\LyX{\texorpdfstring{%
158   L\kern-.1667em\lower.25em\hbox{Y}\kern-.125emX\@}
159   {LyX}}
160
161 % Damit der Index den Namen "Stichwortverzeichnis" erhält
162 \addto\captionsngerman{\renewcommand{\indexname}{Stichwortverzeichnis}}
163 \end_preamble
164 \options fleqn,liststotoc,bibtotoc,idxtotoc,BCOR7.5mm,titlepage,tablecaptionabove
165 \use_default_options false
166 \maintain_unincluded_children false
167 \language ngerman
168 \inputencoding auto
169 \fontencoding global
170 \font_roman default
171 \font_sans default
172 \font_typewriter default
173 \font_default_family default
174 \use_xetex false
175 \font_sc false
176 \font_osf false
177 \font_sf_scale 100
178 \font_tt_scale 100
179
180 \graphics default
181 \default_output_format default
182 \output_sync 0
183 \bibtex_command default
184 \index_command default
185 \paperfontsize 12
186 \spacing single
187 \use_hyperref true
188 \pdf_title "Das LyX-Handbuch der Einfügungen: Abbildungen, Tabellen, Gleitobjekte, Notizen und Boxen"
189 \pdf_author "LyX Team, Uwe Stöhr, deutsche Übersetzung: Hartmut Haase"
190 \pdf_subject "LyX-Dokumentation über Abbildungen, Tabellen, Gleitobjekte, Notizen und Boxen"
191 \pdf_keywords "LyX, Abbildungen, Tabellen, Gleitobjekte, Notizen, Boxen"
192 \pdf_bookmarks true
193 \pdf_bookmarksnumbered true
194 \pdf_bookmarksopen true
195 \pdf_bookmarksopenlevel 1
196 \pdf_breaklinks false
197 \pdf_pdfborder false
198 \pdf_colorlinks true
199 \pdf_backref false
200 \pdf_pdfusetitle false
201 \pdf_quoted_options "linkcolor=black, citecolor=black, urlcolor=blue, filecolor=blue, pdfpagelayout=OneColumn, pdfnewwindow=true, pdfstartview=XYZ, plainpages=false"
202 \papersize a4paper
203 \use_geometry false
204 \use_amsmath 2
205 \use_esint 0
206 \use_mhchem 1
207 \use_mathdots 1
208 \cite_engine basic
209 \use_bibtopic false
210 \use_indices false
211 \paperorientation portrait
212 \suppress_date false
213 \index Stichwortverzeichnis
214 \shortcut idx
215 \color #008000
216 \end_index
217 \secnumdepth 3
218 \tocdepth 3
219 \paragraph_separation skip
220 \defskip medskip
221 \quotes_language german
222 \papercolumns 1
223 \papersides 2
224 \paperpagestyle default
225 \bullet 1 0 9 -1
226 \bullet 2 2 35 -1
227 \bullet 3 2 7 -1
228 \tracking_changes false
229 \output_changes false
230 \html_math_output 0
231 \html_be_strict false
232 \end_header
233
234 \begin_body
235
236 \begin_layout Title
237 Das LyX-Handbuch der Einfügungen:
238 \begin_inset Newline newline
239 \end_inset
240
241  
242 \size larger
243 Abbildungen, Tabellen, Gleitobjekte, Notizen und Boxen
244 \end_layout
245
246 \begin_layout Author
247 vom LyX Team
248 \begin_inset Foot
249 status collapsed
250
251 \begin_layout Plain Layout
252 \noindent
253
254 \size normal
255 Übersetzung und Bearbeitung: Hartmut Haase
256 \size default
257 , Uwe Stöhr
258 \begin_inset Newline newline
259 \end_inset
260
261 Wenn Sie Anmerkungen oder Korrekturvorschläge machen wollen, schreiben Sie
262  bitte an: 
263 \begin_inset CommandInset href
264 LatexCommand href
265 name "lyx-docs@lists.lyx.org"
266 target "lyx-docs@lists.lyx.org?subject=EmbeddedObjects manual"
267 type "mailto:"
268
269 \end_inset
270
271
272 \end_layout
273
274 \end_inset
275
276
277 \begin_inset Note Note
278 status collapsed
279
280 \begin_layout Plain Layout
281 Autor: Uwe Stöhr <uwestoehr@web.de>
282 \end_layout
283
284 \end_inset
285
286
287 \begin_inset Newline newline
288 \end_inset
289
290
291 \begin_inset Newline newline
292 \end_inset
293
294
295 \family sans
296 Version 2.0.x
297 \end_layout
298
299 \begin_layout Standard
300 \begin_inset CommandInset toc
301 LatexCommand tableofcontents
302
303 \end_inset
304
305
306 \end_layout
307
308 \begin_layout Standard
309 \begin_inset Note Note
310 status open
311
312 \begin_layout Plain Layout
313 Um alle Teile diese Handbuches als DVI, HTML, PDF, PostScript oder RTF exportier
314 en zu können oder es auszudrucken, benötigen Sie die LaTeX-Pakte 
315 \series bold
316 arydshln
317 \series default
318
319 \series bold
320 colortbl
321 \series default
322
323 \series bold
324 marginnote
325 \series default
326  und 
327 \series bold
328 sidecap
329 \series default
330 .
331  Wenn sie nicht installiert sind, erfolgt die Ausgabe ohne die Teile, in
332  denen sie benötigt werden.
333 \end_layout
334
335 \begin_layout Plain Layout
336 Wenn es Ihnen trotzdem nicht gelingen sollte, können Sie die neueste PDF-Version
337  des englischen Originals hier finden:
338 \begin_inset Newline newline
339 \end_inset
340
341
342 \series bold
343 http://wiki.lyx.org/LyX/DocumentationDevelopment#EmbeddedObjects
344 \end_layout
345
346 \end_inset
347
348
349 \end_layout
350
351 \begin_layout Chapter
352 Abbildungen
353 \begin_inset Index idx
354 status collapsed
355
356 \begin_layout Plain Layout
357 Abbildungen
358 \end_layout
359
360 \end_inset
361
362
363 \end_layout
364
365 \begin_layout Section
366 Grafik-Dialog
367 \begin_inset Index idx
368 status collapsed
369
370 \begin_layout Plain Layout
371 Abbildungen ! Grafik-Dialog
372 \end_layout
373
374 \end_inset
375
376
377 \begin_inset CommandInset label
378 LatexCommand label
379 name "abs:Grafik-Dialog"
380
381 \end_inset
382
383
384 \end_layout
385
386 \begin_layout Standard
387 Um eine Abbildung in Ihr Dokument einzufügen, klicken Sie auf das Symbol
388  
389 \begin_inset Graphics
390         filename ../../images/dialog-show-new-inset_graphics.png
391         scale 70
392         scaleBeforeRotation
393         BoundingBox 0bp 6bp 22bp 22bp
394
395 \end_inset
396
397  in der Werkzeugleiste oder wählen das Menü 
398 \family sans
399 Einfügen\SpecialChar \menuseparator
400 Grafik
401 \family default
402 .
403  Ein Dialogfenster erscheint, in dem Sie einen Dateinamen direkt oder über
404  
405 \family sans
406 Durchsuchen
407 \family default
408  eingeben können.
409  Die Abbildung wird in der druckfertigen Ausgabe genau dort erscheinen,
410  an der Sie sie eingefügt haben.
411 \end_layout
412
413 \begin_layout Standard
414 Der Grafik-Dialog wird immer dann geöffnet, wenn Sie auf eine Abbildung
415  klicken.
416  Der Dialog hat drei Karteikarten:
417 \end_layout
418
419 \begin_layout Description
420
421 \family sans
422 Grafik
423 \family default
424  Hier können Sie eine Grafik-Datei auswählen und ihr Aussehen in der druckbaren
425  Version festlegen.
426  Die für die Bildgröße verfügbaren Einheiten werden im Anhang
427 \begin_inset space ~
428 \end_inset
429
430
431 \begin_inset CommandInset ref
432 LatexCommand ref
433 reference "kap:In-LyX-verfügbare"
434
435 \end_inset
436
437  erklärt.
438 \begin_inset Newline newline
439 \end_inset
440
441
442 \begin_inset Index idx
443 status collapsed
444
445 \begin_layout Plain Layout
446 Abbildungen ! rotierte
447 \end_layout
448
449 \end_inset
450
451 Sie können Abbildungen durch Angabe eines 
452 \family sans
453 Winkel
454 \family default
455
456 \begin_inset space ~
457 \end_inset
458
459
460 \family sans
461 (Grad)
462 \family default
463  und Festlegung eines 
464 \family sans
465 Drehpunktes
466 \family default
467  drehen.
468  Negative Winkel drehen im Uhrzeigersinn.
469  Die Abbildung wird auch in LyX gedreht.
470 \begin_inset Newline newline
471 \end_inset
472
473
474 \begin_inset Index idx
475 status collapsed
476
477 \begin_layout Plain Layout
478 Abbildungen ! skalierte
479 \end_layout
480
481 \end_inset
482
483 Abbildungen können in der Größe verändert werden, indem man Prozentwerte
484  oder Höhe und Breite definiert.
485  Wenn man nur einen Wert angibt, wird der andere automatisch berechnet.
486  Wenn Sie beide Werte angeben, wird die Abbildung an die Größe angepasst,
487  wobei sie möglicherweise verzerrt wird.
488  Um das zu vermeiden, sollten Sie 
489 \family sans
490 Seitenverhältnis
491 \begin_inset space ~
492 \end_inset
493
494 beibehalten
495 \family default
496  ankreuzen.
497  Die Abbildung wird dann so angepasst, dass die vorgegebenen Werte für Höhe
498  und Breite nicht überschritten werden.
499 \begin_inset Newline newline
500 \end_inset
501
502 Wenn Sie mit der rechten Maustaste auf eine Grafik klicken und dann im erscheine
503 nden Kontext-Menü 
504 \family sans
505 Datei extern bearbeiten
506 \family default
507  auswählen, können Abbildungen mit einem Programm ihrer Wahl zum Bearbeiten
508  öffnen.
509  Das Programm kann für jedes Bildformat in den LyX-Einstellungen unter 
510 \family sans
511 Datei-Handhabung\SpecialChar \menuseparator
512 Dateiformate
513 \family default
514  festgelegt werden.
515 \end_layout
516
517 \begin_layout Description
518
519 \family sans
520 Ausschnitt
521 \family default
522  Alternativ zur Verwendung von Skalierungen, kann man hier Koordinaten angeben,
523  um Höhe und Breite der Abbildung für die Ausgabe festzulegen.
524  Wenn Sie auf 
525 \family sans
526 Lese
527 \begin_inset space ~
528 \end_inset
529
530 aus
531 \begin_inset space ~
532 \end_inset
533
534 Datei
535 \family default
536  klicken, werden die Koordinaten automatisch berechnet.
537  Die Option 
538 \family sans
539 Auf
540 \begin_inset space ~
541 \end_inset
542
543 Begrenzungsbox
544 \begin_inset space ~
545 \end_inset
546
547 zuschneiden
548 \family default
549  wird nur den Teil der Abbildung drucken, der innerhalb der vorgegebenen
550  Koordinaten liegt.
551  Normalerweise müssen Sie sich um Bildkoordinaten nicht kümmern und können
552  diese Karteikarte ignorieren.
553 \end_layout
554
555 \begin_layout Description
556
557 \family sans
558 LaTeX-
559 \begin_inset space ~
560 \end_inset
561
562 und
563 \begin_inset space ~
564 \end_inset
565
566 LyX-Optionen
567 \family default
568  Hier können Sie das Aussehen einer Abbildung innerhalb von LyX ändern und
569  LaTeX-Experten können weitere LaTeX-Optionen definieren.
570 \begin_inset Newline newline
571 \end_inset
572
573 Ist die Option 
574 \family sans
575 Entwurfsmodus 
576 \family default
577 angekreuzt, wird nur ein Rahmen in der Größe der Abbildung mit dem Dateinamen
578  darin gedruckt.
579 \begin_inset Newline newline
580 \end_inset
581
582 Die Option 
583 \family sans
584 Beim
585 \begin_inset space ~
586 \end_inset
587
588 Exportieren
589 \begin_inset space ~
590 \end_inset
591
592 nicht
593 \begin_inset space ~
594 \end_inset
595
596 entpacken
597 \family default
598  betrifft nur gepackte EPS-Dateien, zum Beispiel 
599 \emph on
600 x.eps.gz
601 \emph default
602 .
603  LaTeX kann so mit ihnen umgehen.
604 \begin_inset Newline newline
605 \end_inset
606
607 Gepackte EPS-Dateien sparen Platz, wenn Sie als Ausgabe-Format PostScript
608  wählen, siehe Anhang
609 \begin_inset space ~
610 \end_inset
611
612
613 \begin_inset CommandInset ref
614 LatexCommand ref
615 reference "abs:PostScript"
616
617 \end_inset
618
619 .
620  Um EPS-Dateien zu packen, benutzen Sie folgende Kommandozeilenbefehle:
621 \begin_inset Newline newline
622 \end_inset
623
624
625 \series bold
626 gzip x.eps
627 \begin_inset Newline newline
628 \end_inset
629
630 zgrep %%Bounding x.eps.gz > x.eps.bb
631 \series default
632
633 \begin_inset Newline newline
634 \end_inset
635
636 Der zweite Befehl erzeugt die Begrenzungsbox 
637 \begin_inset Quotes gld
638 \end_inset
639
640 x.eps.bb
641 \begin_inset Quotes grd
642 \end_inset
643
644 , die LaTeX für gepackte Abbildungen benötigt.
645 \begin_inset Newline newline
646 \end_inset
647
648 Das Feld 
649 \family sans
650 Gruppenname
651 \begin_inset space ~
652 \end_inset
653
654 initialisieren
655 \family default
656  ermöglicht es eine Einstellungsgruppe zu definieren oder dem Bild eine
657  solche zuzuordnen.
658 \begin_inset Index idx
659 status collapsed
660
661 \begin_layout Plain Layout
662 Abbildungen ! Einstellungsgruppen
663 \end_layout
664
665 \end_inset
666
667  Bilder innerhalb einer solchen Gruppe teilen ihre Einstellungen, so dass
668  alle Bilder der Gruppe geändert werden, wenn die Einstellungen eines Bildes
669  der Gruppe geändert werden.
670  Damit kann man z.B.
671 \begin_inset space ~
672 \end_inset
673
674 die Bildgröße für eine Reihe von Bildern ändern, ohne dies bei jedem einzelnen
675  Bild tun zu müssen.
676  Eine Einstellungsgruppe zuzuordnen kann auch über das Kontextmenü des Bildes
677  geschehen, indem man den Namen der gewünschten Gruppe anklickt.
678 \end_layout
679
680 \begin_layout Standard
681 \begin_inset VSpace bigskip
682 \end_inset
683
684
685 \end_layout
686
687 \begin_layout Standard
688 Hier ist eine zentrierte EPS-Abbildung
689 \begin_inset Foot
690 status collapsed
691
692 \begin_layout Plain Layout
693 Abbildungsformate sind in Abschnitt
694 \begin_inset space ~
695 \end_inset
696
697
698 \begin_inset CommandInset ref
699 LatexCommand ref
700 reference "abs:Bildformate"
701
702 \end_inset
703
704  beschrieben.
705 \end_layout
706
707 \end_inset
708
709  in einem eigenen Absatz:
710 \end_layout
711
712 \begin_layout Standard
713 \align center
714 \begin_inset Graphics
715         filename ../clipart/mobius.eps
716         scale 70
717         scaleBeforeRotation
718         rotateOrigin center
719
720 \end_inset
721
722
723 \end_layout
724
725 \begin_layout Standard
726 \noindent
727 Hier ist dieselbe Abbildung, aber im Entwurfsmodus gedruckt:
728 \end_layout
729
730 \begin_layout Standard
731 \align center
732 \begin_inset Graphics
733         filename ../clipart/mobius.eps
734         scale 70
735         draft
736         scaleBeforeRotation
737         rotateOrigin center
738
739 \end_inset
740
741
742 \end_layout
743
744 \begin_layout Section
745 Gleitende Abbildungen
746 \begin_inset CommandInset label
747 LatexCommand label
748 name "abs:Gleitende-Abbildungen"
749
750 \end_inset
751
752
753 \begin_inset Index idx
754 status collapsed
755
756 \begin_layout Plain Layout
757 Abbildungen ! gleitende
758 \end_layout
759
760 \end_inset
761
762
763 \begin_inset Index idx
764 status collapsed
765
766 \begin_layout Plain Layout
767 Gleitobjekte ! Abbildungen
768 \end_layout
769
770 \end_inset
771
772
773 \end_layout
774
775 \begin_layout Standard
776 Allgemeine Erläuterungen zu Gleitobjekten finden Sie in Abschnitt
777 \begin_inset space ~
778 \end_inset
779
780
781 \begin_inset CommandInset ref
782 LatexCommand ref
783 reference "abs:Gleitobjekte-Einleitung"
784
785 \end_inset
786
787 .
788 \end_layout
789
790 \begin_layout Standard
791 Wenn Sie auf das Werkzeugleisten-Symbol 
792 \begin_inset Graphics
793         filename ../../images/float-insert_figure.png
794         scale 70
795         scaleBeforeRotation
796         BoundingBox 0bp 6bp 22bp 22bp
797
798 \end_inset
799
800  klicken oder 
801 \family sans
802 Einfügen\SpecialChar \menuseparator
803 Gleit\SpecialChar \-
804 objekt\SpecialChar \menuseparator
805 Abbildung
806 \family default
807  wählen, erhalten Sie einen leeren roten Rahmen ohne Abbildung.
808  In das rot umrahmte Feld rechts von 
809 \emph on
810 Abbildung
811 \begin_inset space ~
812 \end_inset
813
814 Nr:
815 \emph default
816  schreiben Sie die Bildbeschriftung.
817  Nach einem Klick oberhalb oder unterhalb von 
818 \emph on
819 Abbildung
820 \begin_inset space ~
821 \end_inset
822
823 Nr:
824 \emph default
825  können Sie dann eine Abbildung wie 
826 \begin_inset CommandInset ref
827 LatexCommand ref
828 reference "abb:kill-plat"
829
830 \end_inset
831
832  oberhalb oder wie Abbildung
833 \begin_inset space ~
834 \end_inset
835
836
837 \begin_inset CommandInset ref
838 LatexCommand ref
839 reference "abb:escher"
840
841 \end_inset
842
843  unterhalb der Bildbeschriftung einfügen.
844  Näheres über Bildbeschriftungen erfahren Sie in Abschnitt
845 \begin_inset space ~
846 \end_inset
847
848
849 \begin_inset CommandInset ref
850 LatexCommand ref
851 reference "abs:Titel-Platzierung"
852
853 \end_inset
854
855 .
856 \end_layout
857
858 \begin_layout Standard
859 \begin_inset Float figure
860 wide false
861 sideways false
862 status open
863
864 \begin_layout Plain Layout
865 \align center
866 \begin_inset Graphics
867         filename ../clipart/platypus.eps
868         width 50col%
869         scaleBeforeRotation
870         rotateOrigin center
871
872 \end_inset
873
874
875 \end_layout
876
877 \begin_layout Plain Layout
878 \begin_inset Caption
879
880 \begin_layout Plain Layout
881 \begin_inset CommandInset label
882 LatexCommand label
883 name "abb:kill-plat"
884
885 \end_inset
886
887 Platypus in einem Gleitobjekt
888 \end_layout
889
890 \end_inset
891
892
893 \end_layout
894
895 \end_inset
896
897
898 \end_layout
899
900 \begin_layout Standard
901 \begin_inset Float figure
902 wide false
903 sideways false
904 status open
905
906 \begin_layout Plain Layout
907 \begin_inset Caption
908
909 \begin_layout Plain Layout
910 \begin_inset CommandInset label
911 LatexCommand label
912 name "abb:escher"
913
914 \end_inset
915
916 M.C.
917  Escher
918 \end_layout
919
920 \end_inset
921
922
923 \end_layout
924
925 \begin_layout Plain Layout
926 \align center
927 \begin_inset Graphics
928         filename ../clipart/escher-lsd.eps
929         scale 80
930         scaleBeforeRotation
931         rotateOrigin center
932
933 \end_inset
934
935
936 \end_layout
937
938 \end_inset
939
940
941 \end_layout
942
943 \begin_layout Standard
944 \begin_inset Index idx
945 status collapsed
946
947 \begin_layout Plain Layout
948 Querverweise ! auf Abbildungen
949 \end_layout
950
951 \end_inset
952
953 Abbildung
954 \begin_inset space ~
955 \end_inset
956
957
958 \begin_inset CommandInset ref
959 LatexCommand ref
960 reference "abb:kill-plat"
961
962 \end_inset
963
964  und 
965 \begin_inset CommandInset ref
966 LatexCommand ref
967 reference "abb:escher"
968
969 \end_inset
970
971  sind Beispiele für Abbildungen, auf die verwiesen werden kann.
972  Dafür fügen Sie in der Beschriftung mit 
973 \family sans
974 Einfügen\SpecialChar \menuseparator
975 Marke
976 \family default
977  oder durch Klicken auf 
978 \begin_inset Graphics
979         filename ../../images/label-insert.png
980         scale 70
981         scaleBeforeRotation
982         BoundingBox 0bp 6bp 20bp 20bp
983
984 \end_inset
985
986  eine Marke ein.
987  Auf diese können Sie dann wie gewohnt mit 
988 \family sans
989 Einfügen\SpecialChar \menuseparator
990 Querverweis
991 \family default
992  oder durch Klicken auf 
993 \begin_inset Graphics
994         filename ../../images/dialog-show-new-inset_ref.png
995         scale 70
996         scaleBeforeRotation
997         BoundingBox 0bp 6bp 22bp 22bp
998
999 \end_inset
1000
1001  verweisen.
1002  Das ist besser als eine vage Formulierung wie 
1003 \begin_inset Quotes gld
1004 \end_inset
1005
1006 die obige Abbildung
1007 \begin_inset Quotes grd
1008 \end_inset
1009
1010  zu benutzen, weil LaTeX die Abbildung dort platzieren wird, wo es sinnvoll
1011  erscheint, und das muss nicht 
1012 \emph on
1013 oben
1014 \emph default
1015  sein.
1016  Verweise werden detailliert in Abschnitt
1017 \begin_inset space ~
1018 \end_inset
1019
1020
1021 \begin_inset CommandInset ref
1022 LatexCommand ref
1023 reference "abs:Auf-Gleitobjekte-verweisen"
1024
1025 \end_inset
1026
1027  beschrieben.
1028 \end_layout
1029
1030 \begin_layout Standard
1031 Normalerweise wird eine Gleitabbildung nur aus einem Bild bestehen, aber
1032  manchmal benötigt man mehrere Bilder mit unterschiedlichen Beschriftungen.
1033  Das erreicht man, indem man weitere Gleitabbildungen in eine bestehende
1034  Gleitabbildung einfügt.
1035  Beachten Sie, dass im Abbildungsverzeichnis nur die Hauptbeschriftung erscheint.
1036  Abbildung
1037 \begin_inset space ~
1038 \end_inset
1039
1040
1041 \begin_inset CommandInset ref
1042 LatexCommand ref
1043 reference "abb:Zwei-Teilabbildungen"
1044
1045 \end_inset
1046
1047  ist ein Beispiel für eine Gleitabbildung mit zwei Teilabbildungen nebeneinander.
1048  Sie können die Bilder auch untereinander setzen, indem Sie nach der ersten
1049  Gleitabbildung auf Eingabe drücken.
1050  Abbildung
1051 \begin_inset space ~
1052 \end_inset
1053
1054
1055 \begin_inset CommandInset ref
1056 LatexCommand ref
1057 reference "abb:Undefinierbar"
1058
1059 \end_inset
1060
1061  und 
1062 \begin_inset CommandInset ref
1063 LatexCommand ref
1064 reference "abb:Ein-Schnabeltier"
1065
1066 \end_inset
1067
1068  sind die Teilabbildungen.
1069 \end_layout
1070
1071 \begin_layout Standard
1072 \begin_inset Float figure
1073 wide false
1074 sideways false
1075 status open
1076
1077 \begin_layout Plain Layout
1078 \begin_inset space \hfill{}
1079 \end_inset
1080
1081
1082 \begin_inset Float figure
1083 wide false
1084 sideways false
1085 status collapsed
1086
1087 \begin_layout Plain Layout
1088 \begin_inset Caption
1089
1090 \begin_layout Plain Layout
1091 \begin_inset CommandInset label
1092 LatexCommand label
1093 name "abb:Undefinierbar"
1094
1095 \end_inset
1096
1097 Undefinierbar
1098 \end_layout
1099
1100 \end_inset
1101
1102
1103 \end_layout
1104
1105 \begin_layout Plain Layout
1106 \begin_inset Graphics
1107         filename ../clipart/escher-lsd.eps
1108         width 35col%
1109         scaleBeforeRotation
1110         groupId Teilabbildung
1111
1112 \end_inset
1113
1114
1115 \end_layout
1116
1117 \end_inset
1118
1119
1120 \begin_inset space \hfill{}
1121 \end_inset
1122
1123
1124 \begin_inset Float figure
1125 wide false
1126 sideways false
1127 status collapsed
1128
1129 \begin_layout Plain Layout
1130 \begin_inset Caption
1131
1132 \begin_layout Plain Layout
1133 \begin_inset CommandInset label
1134 LatexCommand label
1135 name "abb:Ein-Schnabeltier"
1136
1137 \end_inset
1138
1139 Ein Schnabeltier
1140 \end_layout
1141
1142 \end_inset
1143
1144
1145 \end_layout
1146
1147 \begin_layout Plain Layout
1148 \begin_inset Graphics
1149         filename ../clipart/platypus.eps
1150         width 35col%
1151         scaleBeforeRotation
1152         groupId Teilabbildung
1153
1154 \end_inset
1155
1156
1157 \end_layout
1158
1159 \end_inset
1160
1161
1162 \begin_inset space \hfill{}
1163 \end_inset
1164
1165
1166 \end_layout
1167
1168 \begin_layout Plain Layout
1169 \begin_inset Caption
1170
1171 \begin_layout Plain Layout
1172 \begin_inset CommandInset label
1173 LatexCommand label
1174 name "abb:Zwei-Teilabbildungen"
1175
1176 \end_inset
1177
1178 Zwei Teilabbildungen nebeneinander.
1179  Beide Bilder gehören der Einstellungsgruppe mit dem Namen 
1180 \begin_inset Quotes gld
1181 \end_inset
1182
1183 Teilabbildung
1184 \begin_inset Quotes grd
1185 \end_inset
1186
1187  an.
1188 \end_layout
1189
1190 \end_inset
1191
1192
1193 \end_layout
1194
1195 \end_inset
1196
1197
1198 \end_layout
1199
1200 \begin_layout Section
1201 Bildformate
1202 \begin_inset CommandInset label
1203 LatexCommand label
1204 name "abs:Bildformate"
1205
1206 \end_inset
1207
1208
1209 \begin_inset Index idx
1210 status collapsed
1211
1212 \begin_layout Plain Layout
1213 Abbildungen ! Bildformate
1214 \end_layout
1215
1216 \end_inset
1217
1218
1219 \end_layout
1220
1221 \begin_layout Standard
1222 Sie können Bilder in jedem bekannten Dateiformat einfügen.
1223  Aber wie in Anhang
1224 \begin_inset space ~
1225 \end_inset
1226
1227
1228 \begin_inset CommandInset ref
1229 LatexCommand ref
1230 reference "kap:Ausgabedatei-Formate"
1231
1232 \end_inset
1233
1234  beschrieben, erlaubt jedes Ausgabeformat nur ein paar Bildformate.
1235  LyX benutzt im Hintergrund das Programm
1236 \family typewriter
1237  ImageMagick
1238 \family default
1239 , um Bilder ins richtige Ausgabeformat zu konvertieren.
1240  Sie beschleunigen Ihre Arbeit, wenn Sie solche Konvertierungen im Hintergrund
1241  vermeiden.
1242  Dazu sollten Sie nur Bildformate benutzen, die direkt in die Ausgabe eingefügt
1243  werden können.
1244  Diese Formate werden in Anhang
1245 \begin_inset space ~
1246 \end_inset
1247
1248
1249 \begin_inset CommandInset ref
1250 LatexCommand ref
1251 reference "kap:Ausgabedatei-Formate"
1252
1253 \end_inset
1254
1255  beschrieben.
1256 \end_layout
1257
1258 \begin_layout Standard
1259 Ähnlich wie bei Fonts gibt es zwei Bildformate:
1260 \end_layout
1261
1262 \begin_layout Description
1263 Pixelbilder bestehen aus Pixeln, meist in komprimierter Form.
1264  Sie sind deshalb nicht völlig skalierbar und sehen bei starken Vergrößerungen
1265  
1266 \emph on
1267 pixelig
1268 \emph default
1269  aus.
1270  Bekannte Pixel-Formate sind 
1271 \begin_inset Quotes gld
1272 \end_inset
1273
1274 Graphics Interchange Format
1275 \begin_inset Quotes grd
1276 \end_inset
1277
1278  (GIF, Dateiendung
1279 \family typewriter
1280  
1281 \family default
1282
1283 \begin_inset Quotes gld
1284 \end_inset
1285
1286
1287 \family typewriter
1288 .gif
1289 \family default
1290
1291 \begin_inset Quotes grd
1292 \end_inset
1293
1294 )
1295 \begin_inset Index idx
1296 status collapsed
1297
1298 \begin_layout Plain Layout
1299 GIF
1300 \end_layout
1301
1302 \end_inset
1303
1304
1305 \begin_inset Quotes gld
1306 \end_inset
1307
1308 Portable Network Graphics
1309 \begin_inset Quotes grd
1310 \end_inset
1311
1312  (PNG, Dateiendung 
1313 \begin_inset Quotes gld
1314 \end_inset
1315
1316
1317 \family typewriter
1318 .png
1319 \family default
1320
1321 \begin_inset Quotes grd
1322 \end_inset
1323
1324 )
1325 \begin_inset Index idx
1326 status collapsed
1327
1328 \begin_layout Plain Layout
1329 PNG
1330 \end_layout
1331
1332 \end_inset
1333
1334
1335 \begin_inset Quotes gld
1336 \end_inset
1337
1338 Joint Photographic Experts Group
1339 \begin_inset Quotes grd
1340 \end_inset
1341
1342  (JPEG, Dateiendung
1343 \family typewriter
1344  
1345 \family default
1346
1347 \begin_inset Quotes gld
1348 \end_inset
1349
1350
1351 \family typewriter
1352 .jpg
1353 \family default
1354
1355 \begin_inset Quotes grd
1356 \end_inset
1357
1358  oder 
1359 \begin_inset Quotes gld
1360 \end_inset
1361
1362
1363 \family typewriter
1364 .jpeg
1365 \family default
1366
1367 \begin_inset Quotes grd
1368 \end_inset
1369
1370 )
1371 \begin_inset Index idx
1372 status collapsed
1373
1374 \begin_layout Plain Layout
1375 JPG, JPEG
1376 \end_layout
1377
1378 \end_inset
1379
1380  und 
1381 \begin_inset Quotes gld
1382 \end_inset
1383
1384 Windows Bitmap
1385 \begin_inset Quotes grd
1386 \end_inset
1387
1388  (BMP, Dateiendung 
1389 \begin_inset Quotes gld
1390 \end_inset
1391
1392
1393 \family typewriter
1394 .bmp
1395 \family default
1396
1397 \begin_inset Quotes grd
1398 \end_inset
1399
1400 )
1401 \begin_inset Index idx
1402 status collapsed
1403
1404 \begin_layout Plain Layout
1405 BMP
1406 \end_layout
1407
1408 \end_inset
1409
1410 .
1411 \end_layout
1412
1413 \begin_layout Description
1414 Vektorbilder bestehen aus Vektoren und können deshalb ohne Datenverlust
1415  auf jede beliebige Größe skaliert werden.
1416  Das ist wichtig bei Präsentationen und Online-Dokumenten, um in Diagramme
1417  zoomen zu können.
1418 \begin_inset Newline newline
1419 \end_inset
1420
1421 Bekannte Formate sind 
1422 \begin_inset Quotes gld
1423 \end_inset
1424
1425 Scalable Vector Graphics
1426 \begin_inset Quotes grd
1427 \end_inset
1428
1429  (SVG, Dateiendung
1430 \family typewriter
1431  
1432 \family default
1433
1434 \begin_inset Quotes gld
1435 \end_inset
1436
1437
1438 \family typewriter
1439 .svg
1440 \family default
1441
1442 \begin_inset Quotes grd
1443 \end_inset
1444
1445 )
1446 \begin_inset Index idx
1447 status collapsed
1448
1449 \begin_layout Plain Layout
1450 SVG
1451 \end_layout
1452
1453 \end_inset
1454
1455
1456 \begin_inset Quotes gld
1457 \end_inset
1458
1459 Encapsulated PostScript
1460 \begin_inset Quotes grd
1461 \end_inset
1462
1463  (EPS, Dateiendung 
1464 \begin_inset Quotes gld
1465 \end_inset
1466
1467
1468 \family typewriter
1469 .eps
1470 \family default
1471
1472 \begin_inset Quotes grd
1473 \end_inset
1474
1475 )
1476 \begin_inset Index idx
1477 status collapsed
1478
1479 \begin_layout Plain Layout
1480 EPS
1481 \end_layout
1482
1483 \end_inset
1484
1485
1486 \begin_inset Quotes gld
1487 \end_inset
1488
1489 Portable Document Format
1490 \begin_inset Quotes grd
1491 \end_inset
1492
1493  (PDF, Dateiendung
1494 \family typewriter
1495  
1496 \family default
1497
1498 \begin_inset Quotes gld
1499 \end_inset
1500
1501
1502 \family typewriter
1503 .pdf
1504 \family default
1505
1506 \begin_inset Quotes grd
1507 \end_inset
1508
1509 )
1510 \begin_inset Index idx
1511 status collapsed
1512
1513 \begin_layout Plain Layout
1514 PDF
1515 \end_layout
1516
1517 \end_inset
1518
1519  und 
1520 \begin_inset Quotes gld
1521 \end_inset
1522
1523 Windows Metafile
1524 \begin_inset Quotes grd
1525 \end_inset
1526
1527  (WMF, Dateiendung 
1528 \begin_inset Quotes gld
1529 \end_inset
1530
1531
1532 \family typewriter
1533 .wmf
1534 \family default
1535
1536 \begin_inset Quotes grd
1537 \end_inset
1538
1539 )
1540 \begin_inset Index idx
1541 status collapsed
1542
1543 \begin_layout Plain Layout
1544 WMF
1545 \end_layout
1546
1547 \end_inset
1548
1549 .
1550 \end_layout
1551
1552 \begin_layout Standard
1553 Pixelbilder können auch ins PDF- oder EPS-Format konvertiert werden, und
1554  das Ergebnis ist immer noch ein Pixelbild.
1555  In diesem Fall wird ein Kopf mit den Bildeigenschaften zum Originalbild
1556  hinzugefügt.
1557 \begin_inset Foot
1558 status collapsed
1559
1560 \begin_layout Plain Layout
1561 Bei PDF wird das Originalbild auch noch komprimiert.
1562 \end_layout
1563
1564 \end_inset
1565
1566  Die PDF-Dateien, die 
1567 \family typewriter
1568 Adobe Photoshop
1569 \family default
1570  erzeugt, sind zum Beispiel Pixelbilder.
1571 \end_layout
1572
1573 \begin_layout Standard
1574 Normalerweise kann man Pixelbilder nicht in Vektorbilder konvertieren oder
1575  umgekehrt.
1576  Nur die Bildformate PDF und EPS können direkt in PDF- und PostScript-Dateien
1577  eingefügt werden.
1578  SVG- und WMF-Bilder werden in Pixelbilder umgerechnet, wenn die Ausgabedatei
1579  erzeugt wird, weil es zur Zeit keine WMF/SVG
1580 \begin_inset Formula $\to$
1581 \end_inset
1582
1583 PDF/EPS Konverter gibt.
1584 \end_layout
1585
1586 \begin_layout Chapter
1587 Tabellen
1588 \begin_inset Index idx
1589 status collapsed
1590
1591 \begin_layout Plain Layout
1592 Tabellen
1593 \end_layout
1594
1595 \end_inset
1596
1597
1598 \end_layout
1599
1600 \begin_layout Section
1601 Einführung
1602 \begin_inset Index idx
1603 status collapsed
1604
1605 \begin_layout Plain Layout
1606 Tabellen ! Einführung
1607 \end_layout
1608
1609 \end_inset
1610
1611
1612 \end_layout
1613
1614 \begin_layout Standard
1615 Eine Tabelle können Sie mit dem Werkzeugleistenknopf 
1616 \begin_inset Graphics
1617         filename ../../images/tabular-insert.png
1618         scale 70
1619         scaleBeforeRotation
1620         BoundingBox 0bp 6bp 22bp 22bp
1621
1622 \end_inset
1623
1624  oder das Menü 
1625 \family sans
1626 Einfügen\SpecialChar \menuseparator
1627 Tabelle
1628 \family default
1629  einfügen.
1630  Wenn Sie auf den Werkzeugleistenknopf klicken, sehen Sie eine 5×5
1631 \begin_inset space \thinspace{}
1632 \end_inset
1633
1634 -Tabelle.
1635  Wenn Sie mit dem Mauszeiger darüberfahren, werden die Felder dunkelblau
1636  und die Größe der dunkelblauen Tabelle angezeigt.
1637  Ein weiterer Mausklick fügt die so definierte Tabelle an der Cursorposition
1638  ein.
1639  Wenn Sie das Menü benutzen, erscheint ein Fenster, in dem Sie Zeilen- und
1640  Spaltenanzahl festlegen können.
1641 \end_layout
1642
1643 \begin_layout Standard
1644 In der so erstellten Tabelle ist jede Zelle umrandet.
1645  Die erste Zeile ist vom Rest durch eine doppelte Linie abgetrennt.
1646  Das wird dadurch erreicht, dass die erste Zeile eine Linie unterhalb und
1647  die zweite Zeile eine Linie oberhalb haben.
1648  Hier ist ein Beispiel:
1649 \end_layout
1650
1651 \begin_layout Standard
1652 \align center
1653 \begin_inset Tabular
1654 <lyxtabular version="3" rows="5" columns="4">
1655 <features tabularvalignment="middle">
1656 <column alignment="center" valignment="top" width="0">
1657 <column alignment="center" valignment="top" width="0">
1658 <column alignment="center" valignment="top" width="0">
1659 <column alignment="center" valignment="top" width="0">
1660 <row>
1661 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1662 \begin_inset Text
1663
1664 \begin_layout Plain Layout
1665
1666 \end_layout
1667
1668 \end_inset
1669 </cell>
1670 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1671 \begin_inset Text
1672
1673 \begin_layout Plain Layout
1674
1675 \family roman
1676 \series medium
1677 \shape up
1678 \size normal
1679 \emph off
1680 \bar no
1681 \noun off
1682 \color none
1683 1
1684 \end_layout
1685
1686 \end_inset
1687 </cell>
1688 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1689 \begin_inset Text
1690
1691 \begin_layout Plain Layout
1692 2
1693 \end_layout
1694
1695 \end_inset
1696 </cell>
1697 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1698 \begin_inset Text
1699
1700 \begin_layout Plain Layout
1701 3
1702 \end_layout
1703
1704 \end_inset
1705 </cell>
1706 </row>
1707 <row>
1708 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1709 \begin_inset Text
1710
1711 \begin_layout Plain Layout
1712
1713 \family roman
1714 \series medium
1715 \shape up
1716 \size normal
1717 \emph off
1718 \bar no
1719 \noun off
1720 \color none
1721 A
1722 \end_layout
1723
1724 \end_inset
1725 </cell>
1726 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1727 \begin_inset Text
1728
1729 \begin_layout Plain Layout
1730
1731 \end_layout
1732
1733 \end_inset
1734 </cell>
1735 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1736 \begin_inset Text
1737
1738 \begin_layout Plain Layout
1739
1740 \end_layout
1741
1742 \end_inset
1743 </cell>
1744 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1745 \begin_inset Text
1746
1747 \begin_layout Plain Layout
1748
1749 \end_layout
1750
1751 \end_inset
1752 </cell>
1753 </row>
1754 <row>
1755 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1756 \begin_inset Text
1757
1758 \begin_layout Plain Layout
1759
1760 \family roman
1761 \series medium
1762 \shape up
1763 \size normal
1764 \emph off
1765 \bar no
1766 \noun off
1767 \color none
1768 B
1769 \end_layout
1770
1771 \end_inset
1772 </cell>
1773 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1774 \begin_inset Text
1775
1776 \begin_layout Plain Layout
1777
1778 \end_layout
1779
1780 \end_inset
1781 </cell>
1782 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1783 \begin_inset Text
1784
1785 \begin_layout Plain Layout
1786
1787 \end_layout
1788
1789 \end_inset
1790 </cell>
1791 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1792 \begin_inset Text
1793
1794 \begin_layout Plain Layout
1795
1796 \end_layout
1797
1798 \end_inset
1799 </cell>
1800 </row>
1801 <row>
1802 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1803 \begin_inset Text
1804
1805 \begin_layout Plain Layout
1806
1807 \family roman
1808 \series medium
1809 \shape up
1810 \size normal
1811 \emph off
1812 \bar no
1813 \noun off
1814 \color none
1815 C
1816 \end_layout
1817
1818 \end_inset
1819 </cell>
1820 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1821 \begin_inset Text
1822
1823 \begin_layout Plain Layout
1824
1825 \end_layout
1826
1827 \end_inset
1828 </cell>
1829 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1830 \begin_inset Text
1831
1832 \begin_layout Plain Layout
1833
1834 \end_layout
1835
1836 \end_inset
1837 </cell>
1838 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1839 \begin_inset Text
1840
1841 \begin_layout Plain Layout
1842
1843 \end_layout
1844
1845 \end_inset
1846 </cell>
1847 </row>
1848 <row>
1849 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1850 \begin_inset Text
1851
1852 \begin_layout Plain Layout
1853 D
1854 \end_layout
1855
1856 \end_inset
1857 </cell>
1858 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1859 \begin_inset Text
1860
1861 \begin_layout Plain Layout
1862
1863 \end_layout
1864
1865 \end_inset
1866 </cell>
1867 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1868 \begin_inset Text
1869
1870 \begin_layout Plain Layout
1871
1872 \end_layout
1873
1874 \end_inset
1875 </cell>
1876 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1877 \begin_inset Text
1878
1879 \begin_layout Plain Layout
1880
1881 \end_layout
1882
1883 \end_inset
1884 </cell>
1885 </row>
1886 </lyxtabular>
1887
1888 \end_inset
1889
1890
1891 \end_layout
1892
1893 \begin_layout Section
1894 Tabellen-Einstellungen
1895 \begin_inset Index idx
1896 status collapsed
1897
1898 \begin_layout Plain Layout
1899 Tabellen ! Einstellungen
1900 \end_layout
1901
1902 \end_inset
1903
1904
1905 \end_layout
1906
1907 \begin_layout Standard
1908 Sie können das Aussehen einer Tabelle ändern, indem Sie mit der rechten
1909  Maustaste draufklicken.
1910  Dadurch wird ein Kontextmenü angezeigt, an dessem Ende 
1911 \family sans
1912 Einstellungen
1913 \family default
1914  steht.
1915  Ein Klick darauf öffnet das Fenster 
1916 \family sans
1917 Tabellen-Einstellungen
1918 \family default
1919 .
1920  Hier können die Einstellungen der Zelle, in der der Mauszeiger beim Rechtsklick
1921  gerade war, geändert werden und auch die der zugehörigen Zeile und Spalte.
1922  Viele Optionen sind auch für eine Zellenauswahl wirksam.
1923  Das bedeutet, wenn Sie mehrere Zellen, Zeilen oder Spalten markiert haben
1924  – sie sind dann hellblau hinterlegt – gilt eine Aktion für die gesamte
1925  Auswahl.
1926  Beachten Sie, dass ein Unterschied besteht, ob Sie den 
1927 \emph on
1928 Inhalt
1929 \emph default
1930  einer Zelle oder die Zelle selber ausgewählt haben.
1931  Das 
1932 \family sans
1933 Tabellen-Einstellungen
1934 \family default
1935 -Menü hat folgende Karteikarten:
1936 \end_layout
1937
1938 \begin_layout Description
1939
1940 \family sans
1941 Tabellen-Einstellungen
1942 \family default
1943  Hier können Sie die 
1944 \family sans
1945 Horizontale
1946 \begin_inset space ~
1947 \end_inset
1948
1949 Ausrichtung
1950 \family default
1951  der momentanen Spalte und die 
1952 \family sans
1953 Spaltenbreite
1954 \family default
1955  festlegen.
1956  Wenn Sie eine 
1957 \family sans
1958 Spaltenbreite
1959 \family default
1960  festgelegt haben, können Sie auch eine 
1961 \family sans
1962 Vertikale
1963 \begin_inset space ~
1964 \end_inset
1965
1966 Ausrichtung
1967 \family default
1968  der momentanen Zeile wählen.
1969  Bei einer festen Spaltenbreite können Zellen Zeilenumbrüche und mehrere
1970  Absätze haben, wie in Abschnitt
1971 \begin_inset space ~
1972 \end_inset
1973
1974
1975 \begin_inset CommandInset ref
1976 LatexCommand ref
1977 reference "uab:Mehrfache-Zeilen-in"
1978
1979 \end_inset
1980
1981  beschrieben.
1982  Ohne feste Spaltenbreite ist die Spalte so breit wie ihre breiteste Zelle.
1983 \begin_inset Newline newline
1984 \end_inset
1985
1986 Außerdem können Sie mehrere Zellen einer Zeile markieren und die Auswahl
1987  als 
1988 \family sans
1989 Mehrfachspalte
1990 \family default
1991  definieren, wie in Abschnitt
1992 \begin_inset space ~
1993 \end_inset
1994
1995
1996 \begin_inset CommandInset ref
1997 LatexCommand ref
1998 reference "uab:Mehrfachspalten"
1999
2000 \end_inset
2001
2002  beschrieben.
2003 \begin_inset Newline newline
2004 \end_inset
2005
2006 Weiterhin können Sie eine Zelle, eine Auswahl oder die gesamte Tabelle gegen
2007  den Uhrzeigersinn um 90° drehen.
2008  LyX zeigt diese Drehung nicht, nur die druckfertige Ausgabe.
2009 \begin_inset Newline newline
2010 \end_inset
2011
2012
2013 \begin_inset Note Greyedout
2014 status open
2015
2016 \begin_layout Plain Layout
2017
2018 \series bold
2019 Achtung:
2020 \series default
2021  Nicht alle DVI-Betrachter können Rotationen anzeigen.
2022 \end_layout
2023
2024 \end_inset
2025
2026
2027 \begin_inset Newline newline
2028 \end_inset
2029
2030 Man kann auch ein 
2031 \family sans
2032 LaTe
2033 \begin_inset ERT
2034 status collapsed
2035
2036 \begin_layout Plain Layout
2037
2038 {}
2039 \end_layout
2040
2041 \end_inset
2042
2043 X-Argument
2044 \family default
2045  für besondere Tabellen-Formatierun\SpecialChar \-
2046 gen einfügen, wie in den Abschnitten
2047  
2048 \begin_inset CommandInset ref
2049 LatexCommand ref
2050 reference "uab:Mehrfachspalten-Berechnungen"
2051
2052 \end_inset
2053
2054  und 
2055 \begin_inset CommandInset ref
2056 LatexCommand ref
2057 reference "abs:Farbige-Tabellen"
2058
2059 \end_inset
2060
2061  beschrieben.
2062 \end_layout
2063
2064 \begin_layout Description
2065
2066 \family sans
2067 Rahmen
2068 \family default
2069  Hier können Sie Begrenzungslinien für die momentane(n) Zeile(n) und Spalte(n)
2070  hinzufügen und löschen.
2071 \begin_inset Newline newline
2072 \end_inset
2073
2074 Wenn Sie die Stil-Option
2075 \family sans
2076  Formal
2077 \family default
2078  benutzen, wird die Tabelle in eine formale Tabelle, wie in Abschnitt
2079 \begin_inset space ~
2080 \end_inset
2081
2082
2083 \begin_inset CommandInset ref
2084 LatexCommand ref
2085 reference "abs:Formale-Tabellen"
2086
2087 \end_inset
2088
2089  beschrieben, konvertiert.
2090 \begin_inset Newline newline
2091 \end_inset
2092
2093 Hier können Sie auch zusätzliche Abstände für Zeilen festlegen, wie in Abschnitt
2094 \begin_inset space ~
2095 \end_inset
2096
2097
2098 \begin_inset CommandInset ref
2099 LatexCommand ref
2100 reference "uab:Zeilenabstand"
2101
2102 \end_inset
2103
2104  beschrieben.
2105 \end_layout
2106
2107 \begin_layout Description
2108
2109 \family sans
2110 Lange
2111 \begin_inset space ~
2112 \end_inset
2113
2114 Tabelle
2115 \family default
2116  Hier kann eine Tabelle als 
2117 \family sans
2118 Lange
2119 \begin_inset space ~
2120 \end_inset
2121
2122 Tabelle
2123 \family default
2124  definiert werden, die über mehrere Seiten reicht.
2125  Die Abschnitte
2126 \begin_inset space ~
2127 \end_inset
2128
2129
2130 \begin_inset CommandInset ref
2131 LatexCommand ref
2132 reference "abs:Lange-Tabellen"
2133
2134 \end_inset
2135
2136  und 
2137 \begin_inset CommandInset ref
2138 LatexCommand ref
2139 reference "abs:Special-Longtable-Issues"
2140
2141 \end_inset
2142
2143  beschreiben diese Funktion genauer.
2144 \end_layout
2145
2146 \begin_layout Standard
2147 Wenn das Menü 
2148 \family sans
2149 Tabellen-Einstellungen
2150 \family default
2151  geöffnet ist, können Sie den Cursor mit den Pfeiltasten von Zelle zu Zelle
2152  bewegen, und die Eigenschaften der jeweiligen Zelle werden angezeigt.
2153 \end_layout
2154
2155 \begin_layout Section
2156 Tabellen-Werkzeugleiste
2157 \begin_inset Index idx
2158 status collapsed
2159
2160 \begin_layout Plain Layout
2161 Tabellen ! Werkzeugleiste
2162 \end_layout
2163
2164 \end_inset
2165
2166
2167 \end_layout
2168
2169 \begin_layout Standard
2170 Die Tabellen-Werkzeugleiste ist eine Alternative zum Menü 
2171 \family sans
2172 Tabellen-Einstellungen
2173 \family default
2174 , wenn man Tabellen-Einstellungen schneller ändern möchte.
2175  Wenn der Cursor in einer Tabelle steht, erscheint sie am unteren Rand des
2176  LyX-Fensters.
2177 \end_layout
2178
2179 \begin_layout Standard
2180 Die Werkzeugleiste hat folgende Knöpfe:
2181 \end_layout
2182
2183 \begin_layout Labeling
2184 \labelwidthstring 00.00.0000
2185 \begin_inset Graphics
2186         filename ../../images/tabular-feature_append-row.png
2187         scaleBeforeRotation
2188
2189 \end_inset
2190
2191  Fügt eine Zeile unterhalb der momentanen an
2192 \end_layout
2193
2194 \begin_layout Labeling
2195 \labelwidthstring 00.00.0000
2196 \begin_inset Graphics
2197         filename ../../images/tabular-feature_append-column.png
2198         scaleBeforeRotation
2199
2200 \end_inset
2201
2202  Fügt eine Spalte rechts von der momentanen an
2203 \end_layout
2204
2205 \begin_layout Labeling
2206 \labelwidthstring 00.00.0000
2207 \begin_inset Graphics
2208         filename ../../images/tabular-feature_delete-row.png
2209         scaleBeforeRotation
2210
2211 \end_inset
2212
2213  Löscht die ausgewählte(n) Zeile(n)
2214 \end_layout
2215
2216 \begin_layout Labeling
2217 \labelwidthstring 00.00.0000
2218 \begin_inset Graphics
2219         filename ../../images/tabular-feature_delete-column.png
2220         scaleBeforeRotation
2221
2222 \end_inset
2223
2224  Löscht die ausgewählte(n) Spalte(n)
2225 \end_layout
2226
2227 \begin_layout Labeling
2228 \labelwidthstring 00.00.0000
2229 \begin_inset Graphics
2230         filename ../../images/tabular-feature_toggle-line-top.png
2231         scaleBeforeRotation
2232
2233 \end_inset
2234
2235  Fügt eine Linie oberhalb der ausgewählte(n) Zeile(n) an oder löscht sie,
2236  wenn der Knopf grau hinterlegt ist
2237 \end_layout
2238
2239 \begin_layout Labeling
2240 \labelwidthstring 00.00.0000
2241 \begin_inset Graphics
2242         filename ../../images/tabular-feature_toggle-line-bottom.png
2243         scaleBeforeRotation
2244
2245 \end_inset
2246
2247  Fügt eine Linie unterhalb der ausgewählte(n) Zeile(n) an oder löscht sie,
2248  wenn der Knopf grau hinterlegt ist
2249 \end_layout
2250
2251 \begin_layout Labeling
2252 \labelwidthstring 00.00.0000
2253 \begin_inset Graphics
2254         filename ../../images/tabular-feature_toggle-line-left.png
2255         scaleBeforeRotation
2256
2257 \end_inset
2258
2259  Fügt eine Linie links der ausgewählte(n) Spalte(n) an oder löscht sie,
2260  wenn der Knopf grau hinterlegt ist
2261 \end_layout
2262
2263 \begin_layout Labeling
2264 \labelwidthstring 00.00.0000
2265 \begin_inset Graphics
2266         filename ../../images/tabular-feature_toggle-line-right.png
2267         scaleBeforeRotation
2268
2269 \end_inset
2270
2271  Fügt eine Linie rechts der ausgewählte(n) Spalte(n) an oder löscht sie,
2272  wenn der Knopf grau hinterlegt ist
2273 \end_layout
2274
2275 \begin_layout Labeling
2276 \labelwidthstring 00.00.0000
2277 \begin_inset Graphics
2278         filename ../../images/tabular-feature_set-all-lines.png
2279         scaleBeforeRotation
2280
2281 \end_inset
2282
2283  Setzt alle Linien um die ausgewählte(n) Zelle(n)
2284 \end_layout
2285
2286 \begin_layout Labeling
2287 \labelwidthstring 00.00.0000
2288 \begin_inset Graphics
2289         filename ../../images/tabular-feature_unset-all-lines.png
2290         scaleBeforeRotation
2291
2292 \end_inset
2293
2294  Löscht alle Linien um die ausgewählte(n) Zelle(n)
2295 \end_layout
2296
2297 \begin_layout Labeling
2298 \labelwidthstring 00.00.0000
2299 \begin_inset Graphics
2300         filename ../../images/tabular-feature_m-align-left.png
2301         scaleBeforeRotation
2302
2303 \end_inset
2304
2305  Richtet den Inhalt der ausgewählte(n) Spalte(n) linksbündig aus
2306 \end_layout
2307
2308 \begin_layout Labeling
2309 \labelwidthstring 00.00.0000
2310 \begin_inset Graphics
2311         filename ../../images/tabular-feature_m-align-center.png
2312         scaleBeforeRotation
2313
2314 \end_inset
2315
2316  Zentriert den Inhalt der ausgewählte(n) Spalte(n)
2317 \end_layout
2318
2319 \begin_layout Labeling
2320 \labelwidthstring 00.00.0000
2321 \begin_inset Graphics
2322         filename ../../images/tabular-feature_m-align-right.png
2323         scaleBeforeRotation
2324
2325 \end_inset
2326
2327  Richtet den Inhalt der ausgewählte(n) Spalte(n) rechtsbündig aus
2328 \end_layout
2329
2330 \begin_layout Labeling
2331 \labelwidthstring 00.00.0000
2332 \begin_inset Graphics
2333         filename ../../images/tabular-feature_m-valign-top.png
2334         scaleBeforeRotation
2335
2336 \end_inset
2337
2338  Richtet den Inhalt der ausgewählte(n) Zeile(n) oben aus
2339 \end_layout
2340
2341 \begin_layout Labeling
2342 \labelwidthstring 00.00.0000
2343 \begin_inset Graphics
2344         filename ../../images/tabular-feature_m-valign-middle.png
2345         scaleBeforeRotation
2346
2347 \end_inset
2348
2349  Zentriert den Inhalt der ausgewählte(n) Zeile(n) 
2350 \end_layout
2351
2352 \begin_layout Labeling
2353 \labelwidthstring 00.00.0000
2354 \begin_inset Graphics
2355         filename ../../images/tabular-feature_m-valign-bottom.png
2356         scaleBeforeRotation
2357
2358 \end_inset
2359
2360  Richtet den Inhalt der ausgewählte(n) Zeile(n) unten aus
2361 \end_layout
2362
2363 \begin_layout Labeling
2364 \labelwidthstring 00.00.0000
2365 \begin_inset Graphics
2366         filename ../../images/tabular-feature_set-rotate-cell.png
2367         scaleBeforeRotation
2368
2369 \end_inset
2370
2371  Dreht den Inhalt der ausgewählte(n) Zelle(n) um 90° gegen den Uhrzeigersinn
2372 \end_layout
2373
2374 \begin_layout Labeling
2375 \labelwidthstring 00.00.0000
2376 \begin_inset Graphics
2377         filename ../../images/tabular-feature_set-rotate-tabular.png
2378         scaleBeforeRotation
2379
2380 \end_inset
2381
2382  Dreht die Tabelle um 90° gegen den Uhrzeigersinn
2383 \end_layout
2384
2385 \begin_layout Labeling
2386 \labelwidthstring 00.00.0000
2387 \begin_inset Graphics
2388         filename ../../images/tabular-feature_multicolumn.png
2389         scaleBeforeRotation
2390
2391 \end_inset
2392
2393  Setzt die ausgewählte(n) Zelle(n) einer Zeile als Mehrfachspalte
2394 \end_layout
2395
2396 \begin_layout Standard
2397 \begin_inset Note Greyedout
2398 status open
2399
2400 \begin_layout Plain Layout
2401
2402 \series bold
2403 Bemerkung:
2404 \series default
2405  Für die Ausgabe wird die vertikale Ausrichtung der ersten Zelle in einer
2406  Reihe für alle Zelle der Reihe verwendet.
2407 \end_layout
2408
2409 \end_inset
2410
2411
2412 \end_layout
2413
2414 \begin_layout Section
2415 Bearbeiten-Menü
2416 \begin_inset Index idx
2417 status collapsed
2418
2419 \begin_layout Plain Layout
2420 Tabellen ! Bearbeiten-Menü
2421 \end_layout
2422
2423 \end_inset
2424
2425
2426 \end_layout
2427
2428 \begin_layout Standard
2429 Es gibt noch eine dritte Möglichkeit, Tabellen-Einstellungen zu ändern.
2430  Wenn der Cursor in einer Tabelle steht, sind im 
2431 \family sans
2432 Bearbeiten
2433 \family default
2434 -Menü folgende Punkte aktiviert: 
2435 \family sans
2436 Tabelle
2437 \family default
2438
2439 \family sans
2440 Zeilen
2441 \begin_inset space ~
2442 \end_inset
2443
2444 &
2445 \begin_inset space ~
2446 \end_inset
2447
2448 Spalten
2449 \family default
2450  und 
2451 \family sans
2452 Tabellen-Einstellungen
2453 \family default
2454 .
2455  Unter den ersten beiden Punkten sind einige der bereits beschriebenen Einstellu
2456 ngsmöglichkeiten zu erreichen.
2457 \end_layout
2458
2459 \begin_layout Section
2460 Gleitende Tabellen
2461 \begin_inset CommandInset label
2462 LatexCommand label
2463 name "abs:Gleitende-Tabellen"
2464
2465 \end_inset
2466
2467
2468 \begin_inset Index idx
2469 status collapsed
2470
2471 \begin_layout Plain Layout
2472 Gleitobjekte ! Tabellen
2473 \end_layout
2474
2475 \end_inset
2476
2477
2478 \begin_inset Index idx
2479 status collapsed
2480
2481 \begin_layout Plain Layout
2482 Tabellen ! gleitende
2483 \end_layout
2484
2485 \end_inset
2486
2487
2488 \end_layout
2489
2490 \begin_layout Standard
2491 Allgemeine Erklärungen über Gleitobjekte finden Sie in Abschnitt
2492 \begin_inset space ~
2493 \end_inset
2494
2495
2496 \begin_inset CommandInset ref
2497 LatexCommand ref
2498 reference "abs:Gleitobjekte-Einleitung"
2499
2500 \end_inset
2501
2502 .
2503 \end_layout
2504
2505 \begin_layout Standard
2506 \begin_inset Float table
2507 placement h
2508 wide false
2509 sideways false
2510 status open
2511
2512 \begin_layout Plain Layout
2513 \begin_inset Caption
2514
2515 \begin_layout Plain Layout
2516 \begin_inset CommandInset label
2517 LatexCommand label
2518 name "tab:a table float"
2519
2520 \end_inset
2521
2522 Eine gleitende Tabelle
2523 \end_layout
2524
2525 \end_inset
2526
2527
2528 \end_layout
2529
2530 \begin_layout Plain Layout
2531 \align center
2532 \begin_inset Tabular
2533 <lyxtabular version="3" rows="3" columns="3">
2534 <features tabularvalignment="middle">
2535 <column alignment="center" valignment="top" width="0pt">
2536 <column alignment="center" valignment="top" width="0pt">
2537 <column alignment="center" valignment="top" width="0pt">
2538 <row>
2539 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2540 \begin_inset Text
2541
2542 \begin_layout Plain Layout
2543
2544 \family roman
2545 \series medium
2546 \shape up
2547 \size normal
2548 \emph off
2549 \bar no
2550 \noun off
2551 \color none
2552 1
2553 \end_layout
2554
2555 \end_inset
2556 </cell>
2557 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2558 \begin_inset Text
2559
2560 \begin_layout Plain Layout
2561
2562 \family roman
2563 \series medium
2564 \shape up
2565 \size normal
2566 \emph off
2567 \bar no
2568 \noun off
2569 \color none
2570 2
2571 \end_layout
2572
2573 \end_inset
2574 </cell>
2575 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2576 \begin_inset Text
2577
2578 \begin_layout Plain Layout
2579
2580 \family roman
2581 \series medium
2582 \shape up
2583 \size normal
2584 \emph off
2585 \bar no
2586 \noun off
2587 \color none
2588 3
2589 \end_layout
2590
2591 \end_inset
2592 </cell>
2593 </row>
2594 <row>
2595 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2596 \begin_inset Text
2597
2598 \begin_layout Plain Layout
2599
2600 \family roman
2601 \series medium
2602 \shape up
2603 \size normal
2604 \emph off
2605 \bar no
2606 \noun off
2607 \color none
2608 Martin
2609 \end_layout
2610
2611 \end_inset
2612 </cell>
2613 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2614 \begin_inset Text
2615
2616 \begin_layout Plain Layout
2617
2618 \family roman
2619 \series medium
2620 \shape up
2621 \size normal
2622 \emph off
2623 \bar no
2624 \noun off
2625 \color none
2626 Lena
2627 \end_layout
2628
2629 \end_inset
2630 </cell>
2631 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2632 \begin_inset Text
2633
2634 \begin_layout Plain Layout
2635
2636 \family roman
2637 \series medium
2638 \shape up
2639 \size normal
2640 \emph off
2641 \bar no
2642 \noun off
2643 \color none
2644 Alina
2645 \end_layout
2646
2647 \end_inset
2648 </cell>
2649 </row>
2650 <row>
2651 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2652 \begin_inset Text
2653
2654 \begin_layout Plain Layout
2655
2656 \family roman
2657 \series medium
2658 \shape up
2659 \size normal
2660 \emph off
2661 \bar no
2662 \noun off
2663 \color none
2664 \begin_inset Formula $\int x^{2}dx$
2665 \end_inset
2666
2667
2668 \end_layout
2669
2670 \end_inset
2671 </cell>
2672 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2673 \begin_inset Text
2674
2675 \begin_layout Plain Layout
2676
2677 \family roman
2678 \series medium
2679 \shape up
2680 \size normal
2681 \emph off
2682 \bar no
2683 \noun off
2684 \color none
2685 \begin_inset Formula $\left[\begin{array}{cc}
2686 a & b\\
2687 c & d
2688 \end{array}\right]$
2689 \end_inset
2690
2691
2692 \end_layout
2693
2694 \end_inset
2695 </cell>
2696 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2697 \begin_inset Text
2698
2699 \begin_layout Plain Layout
2700
2701 \family roman
2702 \series medium
2703 \shape up
2704 \size normal
2705 \emph off
2706 \bar no
2707 \noun off
2708 \color none
2709 \begin_inset Formula $1+1=2$
2710 \end_inset
2711
2712
2713 \end_layout
2714
2715 \end_inset
2716 </cell>
2717 </row>
2718 </lyxtabular>
2719
2720 \end_inset
2721
2722
2723 \end_layout
2724
2725 \end_inset
2726
2727
2728 \end_layout
2729
2730 \begin_layout Standard
2731 Gleitende Tabellen können über 
2732 \family sans
2733 Einfügen\SpecialChar \menuseparator
2734 Gleitobjekt\SpecialChar \menuseparator
2735 Tabelle
2736 \family default
2737  oder einen Klick auf den Werkzeugleistenknopf 
2738 \begin_inset Graphics
2739         filename ../../images/float-insert_table.png
2740         scale 70
2741         scaleBeforeRotation
2742         BoundingBox 0bp 6bp 22bp 22bp
2743
2744 \end_inset
2745
2746  erzeugt werden.
2747  Sie erhalten zunächst einen leeren roten Rahmen ohne Tabelle.
2748  In das rot umrahmte Feld rechts von 
2749 \emph on
2750 Tabelle
2751 \begin_inset space ~
2752 \end_inset
2753
2754 Nr:
2755 \emph default
2756  schreiben Sie die Tabellenbeschriftung.
2757  Nach einem Klick oberhalb oder unterhalb von 
2758 \emph on
2759 Tabelle
2760 \begin_inset space ~
2761 \end_inset
2762
2763 Nr:
2764 \emph default
2765  können Sie dann eine Tabelle mit dem Werkzeugleistenknopf 
2766 \begin_inset Graphics
2767         filename ../../images/tabular-insert.png
2768         scale 70
2769         scaleBeforeRotation
2770         BoundingBox 0bp 6bp 22bp 22bp
2771
2772 \end_inset
2773
2774  oder dem Menü 
2775 \family sans
2776 Einfügen\SpecialChar \menuseparator
2777 Tabelle
2778 \family default
2779  einfügen.
2780 \end_layout
2781
2782 \begin_layout Standard
2783 Tabelle
2784 \begin_inset space ~
2785 \end_inset
2786
2787
2788 \begin_inset CommandInset ref
2789 LatexCommand ref
2790 reference "tab:a table float"
2791
2792 \end_inset
2793
2794  ist ein Beispiel für eine gleitende Tabelle.
2795 \end_layout
2796
2797 \begin_layout Standard
2798 Normalerweise steht die Tabellenbeschriftung über einer Tabelle, aber unglücklic
2799 herweise wird das von LaTeX Standard-Klassen nicht unterstützt.
2800  Das bedeutet, dass bei den Klassen 
2801 \family sans
2802 article
2803 \family default
2804
2805 \family sans
2806 book
2807 \family default
2808
2809 \family sans
2810 letter
2811 \family default
2812 , und 
2813 \family sans
2814 report
2815 \family default
2816  kein Abstand zwischen dem Titel und der Tabelle sein wird.
2817  Um den einzufügen, können Sie zum Ladebefehl des LaTeX-Paketes 
2818 \series bold
2819 caption
2820 \series default
2821
2822 \begin_inset Index idx
2823 status collapsed
2824
2825 \begin_layout Plain Layout
2826 LaTeX-Pakete ! caption
2827 \end_layout
2828
2829 \end_inset
2830
2831  im LaTeX-Vorspann Ihres Dokuments folgende Option einfügen:
2832 \begin_inset Foot
2833 status open
2834
2835 \begin_layout Plain Layout
2836 Näheres finden Sie im Abschnitt
2837 \begin_inset space ~
2838 \end_inset
2839
2840
2841 \begin_inset CommandInset ref
2842 LatexCommand ref
2843 reference "abs:Titel-Platzierung"
2844
2845 \end_inset
2846
2847 .
2848 \end_layout
2849
2850 \end_inset
2851
2852
2853 \end_layout
2854
2855 \begin_layout Standard
2856
2857 \series bold
2858 tableposition=top
2859 \end_layout
2860
2861 \begin_layout Standard
2862 Das Paket 
2863 \series bold
2864 caption
2865 \series default
2866 , das in Abschnitt
2867 \begin_inset space ~
2868 \end_inset
2869
2870
2871 \begin_inset CommandInset ref
2872 LatexCommand ref
2873 reference "abs:Titel-Formatierung"
2874
2875 \end_inset
2876
2877  beschrieben wird, wird zum Einstellen der Legende-Optionen benutzt.
2878 \end_layout
2879
2880 \begin_layout Standard
2881 \begin_inset Index idx
2882 status collapsed
2883
2884 \begin_layout Plain Layout
2885 Querverweise ! auf Tabellen
2886 \end_layout
2887
2888 \end_inset
2889
2890 Auf Tabellen kann über ihre Marke verwiesen werden.
2891  Dafür fügen Sie in der Beschriftung mit 
2892 \family sans
2893 Einfügen\SpecialChar \menuseparator
2894 Marke
2895 \family default
2896  oder durch Klicken auf 
2897 \begin_inset Graphics
2898         filename ../../images/label-insert.png
2899         scale 70
2900         scaleBeforeRotation
2901         BoundingBox 0bp 6bp 20bp 20bp
2902
2903 \end_inset
2904
2905  eine Marke ein.
2906  Auf diese können Sie dann wie gewohnt mit 
2907 \family sans
2908 Einfügen\SpecialChar \menuseparator
2909 Querverweis
2910 \family default
2911  oder durch Klicken auf 
2912 \begin_inset Graphics
2913         filename ../../images/dialog-show-new-inset_ref.png
2914         scale 70
2915         scaleBeforeRotation
2916         BoundingBox 0bp 6bp 22bp 22bp
2917
2918 \end_inset
2919
2920  verweisen.
2921  Verweise werden detailliert in Abschnitt
2922 \begin_inset space ~
2923 \end_inset
2924
2925
2926 \begin_inset CommandInset ref
2927 LatexCommand ref
2928 reference "abs:Auf-Gleitobjekte-verweisen"
2929
2930 \end_inset
2931
2932  beschrieben.
2933 \end_layout
2934
2935 \begin_layout Section
2936 Lange Tabellen
2937 \begin_inset CommandInset label
2938 LatexCommand label
2939 name "abs:Lange-Tabellen"
2940
2941 \end_inset
2942
2943
2944 \begin_inset Index idx
2945 status collapsed
2946
2947 \begin_layout Plain Layout
2948 Tabellen ! lange
2949 \end_layout
2950
2951 \end_inset
2952
2953
2954 \end_layout
2955
2956 \begin_layout Standard
2957 Wenn eine Tabelle zu lang ist, um auf eine Seite zu passen, können Sie im
2958  Dialogfenster 
2959 \family sans
2960 Tabellen-Einstellungen
2961 \family default
2962  auf der Karteikarte  
2963 \family sans
2964 Lange
2965 \begin_inset space ~
2966 \end_inset
2967
2968 Tabelle
2969 \family default
2970  die Option 
2971 \family sans
2972 Lange
2973 \begin_inset space ~
2974 \end_inset
2975
2976 Tabelle
2977 \begin_inset space ~
2978 \end_inset
2979
2980 verwenden
2981 \family default
2982  ankreuzen, damit die Tabelle automatisch auf mehrere Seiten verteilt wird.
2983  Wird dies gemacht, werden folgende Optionen freigeschaltet:
2984 \end_layout
2985
2986 \begin_layout Description
2987 Kopfzeile: Die aktuelle Zeile wird als eine Überschrifts-Zeile aller Seiten
2988  festgelegt; mit Ausnahme der ersten, wenn 
2989 \family sans
2990 Erste
2991 \begin_inset space ~
2992 \end_inset
2993
2994 Kopfzeile
2995 \family default
2996  aktiviert ist.
2997 \end_layout
2998
2999 \begin_layout Description
3000 Erste
3001 \lang english
3002
3003 \begin_inset space ~
3004 \end_inset
3005
3006
3007 \lang ngerman
3008 Kopfzeile: Die aktuelle Zeile wird als eine Überschrifts-Zeile der ersten
3009  Seite einer mehrseitigen Tabelle definiert.
3010 \end_layout
3011
3012 \begin_layout Description
3013 Fußzeile: Die aktuelle Zeile wird als eine Fußzeile aller Seiten festgelegt;
3014  mit Ausnahme der letzten, wenn 
3015 \family sans
3016 Letzte
3017 \begin_inset space ~
3018 \end_inset
3019
3020 Fußzeile
3021 \family default
3022  aktiviert ist.
3023 \end_layout
3024
3025 \begin_layout Description
3026 Letzte
3027 \begin_inset space ~
3028 \end_inset
3029
3030 Fußzeile: Die aktuelle Zeile wird als eine die Fußzeile der letzten Seite
3031  einer mehrseitigen Tabelle definiert.
3032 \end_layout
3033
3034 \begin_layout Description
3035 Legende: Die aktuelle Zeile enthält die Legende.
3036  Sie wird als einzelne Spalte zurückgesetzt und eine Beschriftung wird eingefügt.
3037  Mehr über Beschriftungen langer Tabellen ist in Abschnitt
3038 \begin_inset space ~
3039 \end_inset
3040
3041
3042 \begin_inset CommandInset ref
3043 LatexCommand ref
3044 reference "uab:Beschriftungen-langer-Tabellen"
3045
3046 \end_inset
3047
3048  erklärt.
3049 \end_layout
3050
3051 \begin_layout Standard
3052 Hier ist ein Beispiel einer langen Tabelle:
3053 \end_layout
3054
3055 \begin_layout Standard
3056 \align center
3057 \begin_inset Tabular
3058 <lyxtabular version="3" rows="69" columns="3">
3059 <features islongtable="true" longtabularalignment="center">
3060 <column alignment="left" valignment="top" width="0cm">
3061 <column alignment="left" valignment="top" width="0pt">
3062 <column alignment="right" valignment="top" width="0pt">
3063 <row endfirsthead="true">
3064 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3065 \begin_inset Text
3066
3067 \begin_layout Plain Layout
3068
3069 \series bold
3070 Telefonliste (ignoriere die Namen)
3071 \end_layout
3072
3073 \end_inset
3074 </cell>
3075 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
3076 \begin_inset Text
3077
3078 \begin_layout Plain Layout
3079
3080 \end_layout
3081
3082 \end_inset
3083 </cell>
3084 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3085 \begin_inset Text
3086
3087 \begin_layout Plain Layout
3088
3089 \end_layout
3090
3091 \end_inset
3092 </cell>
3093 </row>
3094 <row endfirsthead="true">
3095 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
3096 \begin_inset Text
3097
3098 \begin_layout Plain Layout
3099
3100 \series bold
3101 NAME
3102 \end_layout
3103
3104 \end_inset
3105 </cell>
3106 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
3107 \begin_inset Text
3108
3109 \begin_layout Plain Layout
3110
3111 \end_layout
3112
3113 \end_inset
3114 </cell>
3115 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
3116 \begin_inset Text
3117
3118 \begin_layout Plain Layout
3119
3120 \series bold
3121 TEL.
3122 \end_layout
3123
3124 \end_inset
3125 </cell>
3126 </row>
3127 <row endhead="true">
3128 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3129 \begin_inset Text
3130
3131 \begin_layout Plain Layout
3132
3133 \series bold
3134 Telefonliste
3135 \end_layout
3136
3137 \end_inset
3138 </cell>
3139 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
3140 \begin_inset Text
3141
3142 \begin_layout Plain Layout
3143
3144 \end_layout
3145
3146 \end_inset
3147 </cell>
3148 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3149 \begin_inset Text
3150
3151 \begin_layout Plain Layout
3152
3153 \end_layout
3154
3155 \end_inset
3156 </cell>
3157 </row>
3158 <row endhead="true">
3159 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
3160 \begin_inset Text
3161
3162 \begin_layout Plain Layout
3163
3164 \series bold
3165 NAME
3166 \end_layout
3167
3168 \end_inset
3169 </cell>
3170 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
3171 \begin_inset Text
3172
3173 \begin_layout Plain Layout
3174
3175 \end_layout
3176
3177 \end_inset
3178 </cell>
3179 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
3180 \begin_inset Text
3181
3182 \begin_layout Plain Layout
3183
3184 \series bold
3185 TEL.
3186 \end_layout
3187
3188 \end_inset
3189 </cell>
3190 </row>
3191 <row endfoot="true">
3192 <cell multicolumn="1" alignment="right" valignment="top" usebox="none">
3193 \begin_inset Text
3194
3195 \begin_layout Plain Layout
3196
3197 \series bold
3198 wird fortgesetzt
3199 \series default
3200  \SpecialChar \ldots{}
3201
3202 \end_layout
3203
3204 \end_inset
3205 </cell>
3206 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
3207 \begin_inset Text
3208
3209 \begin_layout Plain Layout
3210
3211 \end_layout
3212
3213 \end_inset
3214 </cell>
3215 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3216 \begin_inset Text
3217
3218 \begin_layout Plain Layout
3219
3220 \end_layout
3221
3222 \end_inset
3223 </cell>
3224 </row>
3225 <row>
3226 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3227 \begin_inset Text
3228
3229 \begin_layout Plain Layout
3230
3231 \series bold
3232 Annovi
3233 \end_layout
3234
3235 \end_inset
3236 </cell>
3237 <cell alignment="center" valignment="top" usebox="none">
3238 \begin_inset Text
3239
3240 \begin_layout Plain Layout
3241 Silvia
3242 \end_layout
3243
3244 \end_inset
3245 </cell>
3246 <cell alignment="right" valignment="top" leftline="true" rightline="true" usebox="none">
3247 \begin_inset Text
3248
3249 \begin_layout Plain Layout
3250 111
3251 \end_layout
3252
3253 \end_inset
3254 </cell>
3255 </row>
3256 <row>
3257 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3258 \begin_inset Text
3259
3260 \begin_layout Plain Layout
3261
3262 \series bold
3263 Bertoli
3264 \end_layout
3265
3266 \end_inset
3267 </cell>
3268 <cell alignment="center" valignment="top" usebox="none">
3269 \begin_inset Text
3270
3271 \begin_layout Plain Layout
3272 Stefano
3273 \end_layout
3274
3275 \end_inset
3276 </cell>
3277 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
3278 \begin_inset Text
3279
3280 \begin_layout Plain Layout
3281 111
3282 \end_layout
3283
3284 \end_inset
3285 </cell>
3286 </row>
3287 <row>
3288 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3289 \begin_inset Text
3290
3291 \begin_layout Plain Layout
3292
3293 \series bold
3294 Bozzi
3295 \end_layout
3296
3297 \end_inset
3298 </cell>
3299 <cell alignment="center" valignment="top" usebox="none">
3300 \begin_inset Text
3301
3302 \begin_layout Plain Layout
3303 Walter
3304 \end_layout
3305
3306 \end_inset
3307 </cell>
3308 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
3309 \begin_inset Text
3310
3311 \begin_layout Plain Layout
3312 111
3313 \end_layout
3314
3315 \end_inset
3316 </cell>
3317 </row>
3318 <row>
3319 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3320 \begin_inset Text
3321
3322 \begin_layout Plain Layout
3323
3324 \series bold
3325 Cachia
3326 \end_layout
3327
3328 \end_inset
3329 </cell>
3330 <cell alignment="center" valignment="top" usebox="none">
3331 \begin_inset Text
3332
3333 \begin_layout Plain Layout
3334 Maria
3335 \end_layout
3336
3337 \end_inset
3338 </cell>
3339 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
3340 \begin_inset Text
3341
3342 \begin_layout Plain Layout
3343 111
3344 \end_layout
3345
3346 \end_inset
3347 </cell>
3348 </row>
3349 <row>
3350 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3351 \begin_inset Text
3352
3353 \begin_layout Plain Layout
3354
3355 \series bold
3356 Cachia
3357 \end_layout
3358
3359 \end_inset
3360 </cell>
3361 <cell alignment="center" valignment="top" usebox="none">
3362 \begin_inset Text
3363
3364 \begin_layout Plain Layout
3365 Maurizio
3366 \end_layout
3367
3368 \end_inset
3369 </cell>
3370 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
3371 \begin_inset Text
3372
3373 \begin_layout Plain Layout
3374 111
3375 \end_layout
3376
3377 \end_inset
3378 </cell>
3379 </row>
3380 <row>
3381 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3382 \begin_inset Text
3383
3384 \begin_layout Plain Layout
3385
3386 \series bold
3387 Cinquemani
3388 \end_layout
3389
3390 \end_inset
3391 </cell>
3392 <cell alignment="center" valignment="top" usebox="none">
3393 \begin_inset Text
3394
3395 \begin_layout Plain Layout
3396 Giusi
3397 \end_layout
3398
3399 \end_inset
3400 </cell>
3401 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
3402 \begin_inset Text
3403
3404 \begin_layout Plain Layout
3405 111
3406 \end_layout
3407
3408 \end_inset
3409 </cell>
3410 </row>
3411 <row>
3412 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3413 \begin_inset Text
3414
3415 \begin_layout Plain Layout
3416
3417 \series bold
3418 Colin
3419 \end_layout
3420
3421 \end_inset
3422 </cell>
3423 <cell alignment="center" valignment="top" usebox="none">
3424 \begin_inset Text
3425
3426 \begin_layout Plain Layout
3427 Bernard
3428 \end_layout
3429
3430 \end_inset
3431 </cell>
3432 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
3433 \begin_inset Text
3434
3435 \begin_layout Plain Layout
3436 111
3437 \end_layout
3438
3439 \end_inset
3440 </cell>
3441 </row>
3442 <row>
3443 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3444 \begin_inset Text
3445
3446 \begin_layout Plain Layout
3447
3448 \series bold
3449 Concli
3450 \end_layout
3451
3452 \end_inset
3453 </cell>
3454 <cell alignment="center" valignment="top" usebox="none">
3455 \begin_inset Text
3456
3457 \begin_layout Plain Layout
3458 Gianfranco
3459 \end_layout
3460
3461 \end_inset
3462 </cell>
3463 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
3464 \begin_inset Text
3465
3466 \begin_layout Plain Layout
3467 111
3468 \end_layout
3469
3470 \end_inset
3471 </cell>
3472 </row>
3473 <row>
3474 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3475 \begin_inset Text
3476
3477 \begin_layout Plain Layout
3478
3479 \series bold
3480 Dal Bosco
3481 \end_layout
3482
3483 \end_inset
3484 </cell>
3485 <cell alignment="center" valignment="top" usebox="none">
3486 \begin_inset Text
3487
3488 \begin_layout Plain Layout
3489 Carolina
3490 \end_layout
3491
3492 \end_inset
3493 </cell>
3494 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
3495 \begin_inset Text
3496
3497 \begin_layout Plain Layout
3498 111
3499 \end_layout
3500
3501 \end_inset
3502 </cell>
3503 </row>
3504 <row>
3505 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3506 \begin_inset Text
3507
3508 \begin_layout Plain Layout
3509
3510 \series bold
3511 Dalpiaz
3512 \end_layout
3513
3514 \end_inset
3515 </cell>
3516 <cell alignment="center" valignment="top" usebox="none">
3517 \begin_inset Text
3518
3519 \begin_layout Plain Layout
3520 Annamaria
3521 \end_layout
3522
3523 \end_inset
3524 </cell>
3525 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
3526 \begin_inset Text
3527
3528 \begin_layout Plain Layout
3529 111
3530 \end_layout
3531
3532 \end_inset
3533 </cell>
3534 </row>
3535 <row>
3536 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3537 \begin_inset Text
3538
3539 \begin_layout Plain Layout
3540
3541 \series bold
3542 Feliciello
3543 \end_layout
3544
3545 \end_inset
3546 </cell>
3547 <cell alignment="center" valignment="top" usebox="none">
3548 \begin_inset Text
3549
3550 \begin_layout Plain Layout
3551 Domenico
3552 \end_layout
3553
3554 \end_inset
3555 </cell>
3556 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
3557 \begin_inset Text
3558
3559 \begin_layout Plain Layout
3560 111
3561 \end_layout
3562
3563 \end_inset
3564 </cell>
3565 </row>
3566 <row>
3567 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3568 \begin_inset Text
3569
3570 \begin_layout Plain Layout
3571
3572 \series bold
3573 Focarelli
3574 \end_layout
3575
3576 \end_inset
3577 </cell>
3578 <cell alignment="center" valignment="top" usebox="none">
3579 \begin_inset Text
3580
3581 \begin_layout Plain Layout
3582 Paola
3583 \end_layout
3584
3585 \end_inset
3586 </cell>
3587 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
3588 \begin_inset Text
3589
3590 \begin_layout Plain Layout
3591 111
3592 \end_layout
3593
3594 \end_inset
3595 </cell>
3596 </row>
3597 <row>
3598 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3599 \begin_inset Text
3600
3601 \begin_layout Plain Layout
3602
3603 \series bold
3604 Galletti
3605 \end_layout
3606
3607 \end_inset
3608 </cell>
3609 <cell alignment="center" valignment="top" usebox="none">
3610 \begin_inset Text
3611
3612 \begin_layout Plain Layout
3613 Oreste
3614 \end_layout
3615
3616 \end_inset
3617 </cell>
3618 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
3619 \begin_inset Text
3620
3621 \begin_layout Plain Layout
3622 111
3623 \end_layout
3624
3625 \end_inset
3626 </cell>
3627 </row>
3628 <row>
3629 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3630 \begin_inset Text
3631
3632 \begin_layout Plain Layout
3633
3634 \series bold
3635 Gasparini
3636 \end_layout
3637
3638 \end_inset
3639 </cell>
3640 <cell alignment="center" valignment="top" usebox="none">
3641 \begin_inset Text
3642
3643 \begin_layout Plain Layout
3644 Franca
3645 \end_layout
3646
3647 \end_inset
3648 </cell>
3649 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
3650 \begin_inset Text
3651
3652 \begin_layout Plain Layout
3653 111
3654 \end_layout
3655
3656 \end_inset
3657 </cell>
3658 </row>
3659 <row>
3660 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3661 \begin_inset Text
3662
3663 \begin_layout Plain Layout
3664
3665 \series bold
3666 Rizzardi
3667 \end_layout
3668
3669 \end_inset
3670 </cell>
3671 <cell alignment="center" valignment="top" usebox="none">
3672 \begin_inset Text
3673
3674 \begin_layout Plain Layout
3675 Paola
3676 \end_layout
3677
3678 \end_inset
3679 </cell>
3680 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
3681 \begin_inset Text
3682
3683 \begin_layout Plain Layout
3684 111
3685 \end_layout
3686
3687 \end_inset
3688 </cell>
3689 </row>
3690 <row>
3691 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3692 \begin_inset Text
3693
3694 \begin_layout Plain Layout
3695
3696 \series bold
3697 Lassini
3698 \end_layout
3699
3700 \end_inset
3701 </cell>
3702 <cell alignment="center" valignment="top" usebox="none">
3703 \begin_inset Text
3704
3705 \begin_layout Plain Layout
3706 Giancarlo
3707 \end_layout
3708
3709 \end_inset
3710 </cell>
3711 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
3712 \begin_inset Text
3713
3714 \begin_layout Plain Layout
3715 111
3716 \end_layout
3717
3718 \end_inset
3719 </cell>
3720 </row>
3721 <row>
3722 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3723 \begin_inset Text
3724
3725 \begin_layout Plain Layout
3726
3727 \series bold
3728 Malfatti
3729 \end_layout
3730
3731 \end_inset
3732 </cell>
3733 <cell alignment="center" valignment="top" usebox="none">
3734 \begin_inset Text
3735
3736 \begin_layout Plain Layout
3737 Luciano
3738 \end_layout
3739
3740 \end_inset
3741 </cell>
3742 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
3743 \begin_inset Text
3744
3745 \begin_layout Plain Layout
3746 111
3747 \end_layout
3748
3749 \end_inset
3750 </cell>
3751 </row>
3752 <row>
3753 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3754 \begin_inset Text
3755
3756 \begin_layout Plain Layout
3757
3758 \series bold
3759 Malfatti
3760 \end_layout
3761
3762 \end_inset
3763 </cell>
3764 <cell alignment="center" valignment="top" usebox="none">
3765 \begin_inset Text
3766
3767 \begin_layout Plain Layout
3768 Valeriano
3769 \end_layout
3770
3771 \end_inset
3772 </cell>
3773 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
3774 \begin_inset Text
3775
3776 \begin_layout Plain Layout
3777 111
3778 \end_layout
3779
3780 \end_inset
3781 </cell>
3782 </row>
3783 <row>
3784 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3785 \begin_inset Text
3786
3787 \begin_layout Plain Layout
3788
3789 \series bold
3790 Meneguzzo
3791 \end_layout
3792
3793 \end_inset
3794 </cell>
3795 <cell alignment="center" valignment="top" usebox="none">
3796 \begin_inset Text
3797
3798 \begin_layout Plain Layout
3799 Roberto
3800 \end_layout
3801
3802 \end_inset
3803 </cell>
3804 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
3805 \begin_inset Text
3806
3807 \begin_layout Plain Layout
3808 111
3809 \end_layout
3810
3811 \end_inset
3812 </cell>
3813 </row>
3814 <row>
3815 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3816 \begin_inset Text
3817
3818 \begin_layout Plain Layout
3819
3820 \series bold
3821 Mezzadra
3822 \end_layout
3823
3824 \end_inset
3825 </cell>
3826 <cell alignment="center" valignment="top" usebox="none">
3827 \begin_inset Text
3828
3829 \begin_layout Plain Layout
3830 Roberto
3831 \end_layout
3832
3833 \end_inset
3834 </cell>
3835 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
3836 \begin_inset Text
3837
3838 \begin_layout Plain Layout
3839 111
3840 \end_layout
3841
3842 \end_inset
3843 </cell>
3844 </row>
3845 <row>
3846 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3847 \begin_inset Text
3848
3849 \begin_layout Plain Layout
3850
3851 \series bold
3852 Pirpamer
3853 \end_layout
3854
3855 \end_inset
3856 </cell>
3857 <cell alignment="center" valignment="top" usebox="none">
3858 \begin_inset Text
3859
3860 \begin_layout Plain Layout
3861 Erich
3862 \end_layout
3863
3864 \end_inset
3865 </cell>
3866 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
3867 \begin_inset Text
3868
3869 \begin_layout Plain Layout
3870 111
3871 \end_layout
3872
3873 \end_inset
3874 </cell>
3875 </row>
3876 <row>
3877 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3878 \begin_inset Text
3879
3880 \begin_layout Plain Layout
3881
3882 \series bold
3883 Pochiesa
3884 \end_layout
3885
3886 \end_inset
3887 </cell>
3888 <cell alignment="center" valignment="top" usebox="none">
3889 \begin_inset Text
3890
3891 \begin_layout Plain Layout
3892 Paolo
3893 \end_layout
3894
3895 \end_inset
3896 </cell>
3897 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
3898 \begin_inset Text
3899
3900 \begin_layout Plain Layout
3901 111, 222
3902 \end_layout
3903
3904 \end_inset
3905 </cell>
3906 </row>
3907 <row>
3908 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3909 \begin_inset Text
3910
3911 \begin_layout Plain Layout
3912
3913 \series bold
3914 Radina
3915 \end_layout
3916
3917 \end_inset
3918 </cell>
3919 <cell alignment="center" valignment="top" usebox="none">
3920 \begin_inset Text
3921
3922 \begin_layout Plain Layout
3923 Claudio
3924 \end_layout
3925
3926 \end_inset
3927 </cell>
3928 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
3929 \begin_inset Text
3930
3931 \begin_layout Plain Layout
3932 111
3933 \end_layout
3934
3935 \end_inset
3936 </cell>
3937 </row>
3938 <row>
3939 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3940 \begin_inset Text
3941
3942 \begin_layout Plain Layout
3943
3944 \series bold
3945 Stuffer
3946 \end_layout
3947
3948 \end_inset
3949 </cell>
3950 <cell alignment="center" valignment="top" usebox="none">
3951 \begin_inset Text
3952
3953 \begin_layout Plain Layout
3954 Oskar
3955 \end_layout
3956
3957 \end_inset
3958 </cell>
3959 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
3960 \begin_inset Text
3961
3962 \begin_layout Plain Layout
3963 111
3964 \end_layout
3965
3966 \end_inset
3967 </cell>
3968 </row>
3969 <row>
3970 <cell alignment="center" valignment="top" leftline="true" usebox="none">
3971 \begin_inset Text
3972
3973 \begin_layout Plain Layout
3974
3975 \series bold
3976 Tacchelli
3977 \end_layout
3978
3979 \end_inset
3980 </cell>
3981 <cell alignment="center" valignment="top" usebox="none">
3982 \begin_inset Text
3983
3984 \begin_layout Plain Layout
3985 Ugo
3986 \end_layout
3987
3988 \end_inset
3989 </cell>
3990 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
3991 \begin_inset Text
3992
3993 \begin_layout Plain Layout
3994 111
3995 \end_layout
3996
3997 \end_inset
3998 </cell>
3999 </row>
4000 <row>
4001 <cell alignment="center" valignment="top" leftline="true" usebox="none">
4002 \begin_inset Text
4003
4004 \begin_layout Plain Layout
4005
4006 \series bold
4007 Tezzele
4008 \end_layout
4009
4010 \end_inset
4011 </cell>
4012 <cell alignment="center" valignment="top" usebox="none">
4013 \begin_inset Text
4014
4015 \begin_layout Plain Layout
4016 Margit
4017 \end_layout
4018
4019 \end_inset
4020 </cell>
4021 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4022 \begin_inset Text
4023
4024 \begin_layout Plain Layout
4025 111
4026 \end_layout
4027
4028 \end_inset
4029 </cell>
4030 </row>
4031 <row>
4032 <cell alignment="center" valignment="top" leftline="true" usebox="none">
4033 \begin_inset Text
4034
4035 \begin_layout Plain Layout
4036
4037 \series bold
4038 Unterkalmsteiner
4039 \end_layout
4040
4041 \end_inset
4042 </cell>
4043 <cell alignment="center" valignment="top" usebox="none">
4044 \begin_inset Text
4045
4046 \begin_layout Plain Layout
4047 Frieda
4048 \end_layout
4049
4050 \end_inset
4051 </cell>
4052 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4053 \begin_inset Text
4054
4055 \begin_layout Plain Layout
4056 111
4057 \end_layout
4058
4059 \end_inset
4060 </cell>
4061 </row>
4062 <row>
4063 <cell alignment="center" valignment="top" leftline="true" usebox="none">
4064 \begin_inset Text
4065
4066 \begin_layout Plain Layout
4067
4068 \series bold
4069 Vieider
4070 \end_layout
4071
4072 \end_inset
4073 </cell>
4074 <cell alignment="center" valignment="top" usebox="none">
4075 \begin_inset Text
4076
4077 \begin_layout Plain Layout
4078 Hilde
4079 \end_layout
4080
4081 \end_inset
4082 </cell>
4083 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4084 \begin_inset Text
4085
4086 \begin_layout Plain Layout
4087 111
4088 \end_layout
4089
4090 \end_inset
4091 </cell>
4092 </row>
4093 <row>
4094 <cell alignment="center" valignment="top" leftline="true" usebox="none">
4095 \begin_inset Text
4096
4097 \begin_layout Plain Layout
4098
4099 \series bold
4100 Vigna
4101 \end_layout
4102
4103 \end_inset
4104 </cell>
4105 <cell alignment="center" valignment="top" usebox="none">
4106 \begin_inset Text
4107
4108 \begin_layout Plain Layout
4109 Jürgen
4110 \end_layout
4111
4112 \end_inset
4113 </cell>
4114 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4115 \begin_inset Text
4116
4117 \begin_layout Plain Layout
4118 111
4119 \end_layout
4120
4121 \end_inset
4122 </cell>
4123 </row>
4124 <row>
4125 <cell alignment="center" valignment="top" leftline="true" usebox="none">
4126 \begin_inset Text
4127
4128 \begin_layout Plain Layout
4129
4130 \series bold
4131 Weber
4132 \end_layout
4133
4134 \end_inset
4135 </cell>
4136 <cell alignment="center" valignment="top" usebox="none">
4137 \begin_inset Text
4138
4139 \begin_layout Plain Layout
4140 Maurizio
4141 \end_layout
4142
4143 \end_inset
4144 </cell>
4145 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4146 \begin_inset Text
4147
4148 \begin_layout Plain Layout
4149 111
4150 \end_layout
4151
4152 \end_inset
4153 </cell>
4154 </row>
4155 <row>
4156 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
4157 \begin_inset Text
4158
4159 \begin_layout Plain Layout
4160
4161 \series bold
4162 Winkler
4163 \end_layout
4164
4165 \end_inset
4166 </cell>
4167 <cell alignment="center" valignment="top" bottomline="true" usebox="none">
4168 \begin_inset Text
4169
4170 \begin_layout Plain Layout
4171 Franz
4172 \end_layout
4173
4174 \end_inset
4175 </cell>
4176 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
4177 \begin_inset Text
4178
4179 \begin_layout Plain Layout
4180 111
4181 \end_layout
4182
4183 \end_inset
4184 </cell>
4185 </row>
4186 <row>
4187 <cell multicolumn="1" alignment="left" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
4188 \begin_inset Text
4189
4190 \begin_layout Plain Layout
4191  
4192 \end_layout
4193
4194 \end_inset
4195 </cell>
4196 <cell multicolumn="2" alignment="center" valignment="top" topline="true" usebox="none">
4197 \begin_inset Text
4198
4199 \begin_layout Plain Layout
4200
4201 \end_layout
4202
4203 \end_inset
4204 </cell>
4205 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4206 \begin_inset Text
4207
4208 \begin_layout Plain Layout
4209
4210 \end_layout
4211
4212 \end_inset
4213 </cell>
4214 </row>
4215 <row>
4216 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4217 \begin_inset Text
4218
4219 \begin_layout Plain Layout
4220
4221 \series bold
4222 Annovi
4223 \end_layout
4224
4225 \end_inset
4226 </cell>
4227 <cell alignment="center" valignment="top" usebox="none">
4228 \begin_inset Text
4229
4230 \begin_layout Plain Layout
4231 Silvia
4232 \end_layout
4233
4234 \end_inset
4235 </cell>
4236 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4237 \begin_inset Text
4238
4239 \begin_layout Plain Layout
4240 555
4241 \end_layout
4242
4243 \end_inset
4244 </cell>
4245 </row>
4246 <row>
4247 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4248 \begin_inset Text
4249
4250 \begin_layout Plain Layout
4251
4252 \series bold
4253 Bertoli
4254 \end_layout
4255
4256 \end_inset
4257 </cell>
4258 <cell alignment="center" valignment="top" usebox="none">
4259 \begin_inset Text
4260
4261 \begin_layout Plain Layout
4262 Stefano
4263 \end_layout
4264
4265 \end_inset
4266 </cell>
4267 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4268 \begin_inset Text
4269
4270 \begin_layout Plain Layout
4271 555
4272 \end_layout
4273
4274 \end_inset
4275 </cell>
4276 </row>
4277 <row>
4278 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4279 \begin_inset Text
4280
4281 \begin_layout Plain Layout
4282
4283 \series bold
4284 Bozzi
4285 \end_layout
4286
4287 \end_inset
4288 </cell>
4289 <cell alignment="center" valignment="top" usebox="none">
4290 \begin_inset Text
4291
4292 \begin_layout Plain Layout
4293 Walter
4294 \end_layout
4295
4296 \end_inset
4297 </cell>
4298 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4299 \begin_inset Text
4300
4301 \begin_layout Plain Layout
4302 555
4303 \end_layout
4304
4305 \end_inset
4306 </cell>
4307 </row>
4308 <row>
4309 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4310 \begin_inset Text
4311
4312 \begin_layout Plain Layout
4313
4314 \series bold
4315 Cachia
4316 \end_layout
4317
4318 \end_inset
4319 </cell>
4320 <cell alignment="center" valignment="top" usebox="none">
4321 \begin_inset Text
4322
4323 \begin_layout Plain Layout
4324 Maria
4325 \end_layout
4326
4327 \end_inset
4328 </cell>
4329 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4330 \begin_inset Text
4331
4332 \begin_layout Plain Layout
4333 555
4334 \end_layout
4335
4336 \end_inset
4337 </cell>
4338 </row>
4339 <row>
4340 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4341 \begin_inset Text
4342
4343 \begin_layout Plain Layout
4344
4345 \series bold
4346 Cachia
4347 \end_layout
4348
4349 \end_inset
4350 </cell>
4351 <cell alignment="center" valignment="top" usebox="none">
4352 \begin_inset Text
4353
4354 \begin_layout Plain Layout
4355 Maurizio
4356 \end_layout
4357
4358 \end_inset
4359 </cell>
4360 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4361 \begin_inset Text
4362
4363 \begin_layout Plain Layout
4364 555
4365 \end_layout
4366
4367 \end_inset
4368 </cell>
4369 </row>
4370 <row>
4371 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4372 \begin_inset Text
4373
4374 \begin_layout Plain Layout
4375
4376 \series bold
4377 Cinquemani
4378 \end_layout
4379
4380 \end_inset
4381 </cell>
4382 <cell alignment="center" valignment="top" usebox="none">
4383 \begin_inset Text
4384
4385 \begin_layout Plain Layout
4386 Giusi
4387 \end_layout
4388
4389 \end_inset
4390 </cell>
4391 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4392 \begin_inset Text
4393
4394 \begin_layout Plain Layout
4395 555
4396 \end_layout
4397
4398 \end_inset
4399 </cell>
4400 </row>
4401 <row>
4402 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4403 \begin_inset Text
4404
4405 \begin_layout Plain Layout
4406
4407 \series bold
4408 Colin
4409 \end_layout
4410
4411 \end_inset
4412 </cell>
4413 <cell alignment="center" valignment="top" usebox="none">
4414 \begin_inset Text
4415
4416 \begin_layout Plain Layout
4417 Bernard
4418 \end_layout
4419
4420 \end_inset
4421 </cell>
4422 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4423 \begin_inset Text
4424
4425 \begin_layout Plain Layout
4426 555
4427 \end_layout
4428
4429 \end_inset
4430 </cell>
4431 </row>
4432 <row>
4433 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4434 \begin_inset Text
4435
4436 \begin_layout Plain Layout
4437
4438 \series bold
4439 Concli
4440 \end_layout
4441
4442 \end_inset
4443 </cell>
4444 <cell alignment="center" valignment="top" usebox="none">
4445 \begin_inset Text
4446
4447 \begin_layout Plain Layout
4448 Gianfranco
4449 \end_layout
4450
4451 \end_inset
4452 </cell>
4453 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4454 \begin_inset Text
4455
4456 \begin_layout Plain Layout
4457 555
4458 \end_layout
4459
4460 \end_inset
4461 </cell>
4462 </row>
4463 <row>
4464 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4465 \begin_inset Text
4466
4467 \begin_layout Plain Layout
4468
4469 \series bold
4470 Dal Bosco
4471 \end_layout
4472
4473 \end_inset
4474 </cell>
4475 <cell alignment="center" valignment="top" usebox="none">
4476 \begin_inset Text
4477
4478 \begin_layout Plain Layout
4479 Carolina
4480 \end_layout
4481
4482 \end_inset
4483 </cell>
4484 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4485 \begin_inset Text
4486
4487 \begin_layout Plain Layout
4488 555
4489 \end_layout
4490
4491 \end_inset
4492 </cell>
4493 </row>
4494 <row>
4495 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4496 \begin_inset Text
4497
4498 \begin_layout Plain Layout
4499
4500 \series bold
4501 Dalpiaz
4502 \end_layout
4503
4504 \end_inset
4505 </cell>
4506 <cell alignment="center" valignment="top" usebox="none">
4507 \begin_inset Text
4508
4509 \begin_layout Plain Layout
4510 Annamaria
4511 \end_layout
4512
4513 \end_inset
4514 </cell>
4515 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4516 \begin_inset Text
4517
4518 \begin_layout Plain Layout
4519 555
4520 \end_layout
4521
4522 \end_inset
4523 </cell>
4524 </row>
4525 <row>
4526 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4527 \begin_inset Text
4528
4529 \begin_layout Plain Layout
4530
4531 \series bold
4532 Feliciello
4533 \end_layout
4534
4535 \end_inset
4536 </cell>
4537 <cell alignment="center" valignment="top" usebox="none">
4538 \begin_inset Text
4539
4540 \begin_layout Plain Layout
4541 Domenico
4542 \end_layout
4543
4544 \end_inset
4545 </cell>
4546 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4547 \begin_inset Text
4548
4549 \begin_layout Plain Layout
4550 555
4551 \end_layout
4552
4553 \end_inset
4554 </cell>
4555 </row>
4556 <row>
4557 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4558 \begin_inset Text
4559
4560 \begin_layout Plain Layout
4561
4562 \series bold
4563 Focarelli
4564 \end_layout
4565
4566 \end_inset
4567 </cell>
4568 <cell alignment="center" valignment="top" usebox="none">
4569 \begin_inset Text
4570
4571 \begin_layout Plain Layout
4572 Paola
4573 \end_layout
4574
4575 \end_inset
4576 </cell>
4577 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4578 \begin_inset Text
4579
4580 \begin_layout Plain Layout
4581 555
4582 \end_layout
4583
4584 \end_inset
4585 </cell>
4586 </row>
4587 <row>
4588 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4589 \begin_inset Text
4590
4591 \begin_layout Plain Layout
4592
4593 \series bold
4594 Galletti
4595 \end_layout
4596
4597 \end_inset
4598 </cell>
4599 <cell alignment="center" valignment="top" usebox="none">
4600 \begin_inset Text
4601
4602 \begin_layout Plain Layout
4603 Oreste
4604 \end_layout
4605
4606 \end_inset
4607 </cell>
4608 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4609 \begin_inset Text
4610
4611 \begin_layout Plain Layout
4612 555
4613 \end_layout
4614
4615 \end_inset
4616 </cell>
4617 </row>
4618 <row>
4619 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4620 \begin_inset Text
4621
4622 \begin_layout Plain Layout
4623
4624 \series bold
4625 Gasparini
4626 \end_layout
4627
4628 \end_inset
4629 </cell>
4630 <cell alignment="center" valignment="top" usebox="none">
4631 \begin_inset Text
4632
4633 \begin_layout Plain Layout
4634 Franca
4635 \end_layout
4636
4637 \end_inset
4638 </cell>
4639 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4640 \begin_inset Text
4641
4642 \begin_layout Plain Layout
4643 555
4644 \end_layout
4645
4646 \end_inset
4647 </cell>
4648 </row>
4649 <row>
4650 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4651 \begin_inset Text
4652
4653 \begin_layout Plain Layout
4654
4655 \series bold
4656 Rizzardi
4657 \end_layout
4658
4659 \end_inset
4660 </cell>
4661 <cell alignment="center" valignment="top" usebox="none">
4662 \begin_inset Text
4663
4664 \begin_layout Plain Layout
4665 Paola
4666 \end_layout
4667
4668 \end_inset
4669 </cell>
4670 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4671 \begin_inset Text
4672
4673 \begin_layout Plain Layout
4674 555
4675 \end_layout
4676
4677 \end_inset
4678 </cell>
4679 </row>
4680 <row>
4681 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4682 \begin_inset Text
4683
4684 \begin_layout Plain Layout
4685
4686 \series bold
4687 Lassini
4688 \end_layout
4689
4690 \end_inset
4691 </cell>
4692 <cell alignment="center" valignment="top" usebox="none">
4693 \begin_inset Text
4694
4695 \begin_layout Plain Layout
4696 Giancarlo
4697 \end_layout
4698
4699 \end_inset
4700 </cell>
4701 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4702 \begin_inset Text
4703
4704 \begin_layout Plain Layout
4705 555
4706 \end_layout
4707
4708 \end_inset
4709 </cell>
4710 </row>
4711 <row>
4712 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4713 \begin_inset Text
4714
4715 \begin_layout Plain Layout
4716
4717 \series bold
4718 Malfatti
4719 \end_layout
4720
4721 \end_inset
4722 </cell>
4723 <cell alignment="center" valignment="top" usebox="none">
4724 \begin_inset Text
4725
4726 \begin_layout Plain Layout
4727 Luciano
4728 \end_layout
4729
4730 \end_inset
4731 </cell>
4732 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4733 \begin_inset Text
4734
4735 \begin_layout Plain Layout
4736 555
4737 \end_layout
4738
4739 \end_inset
4740 </cell>
4741 </row>
4742 <row>
4743 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4744 \begin_inset Text
4745
4746 \begin_layout Plain Layout
4747
4748 \series bold
4749 Malfatti
4750 \end_layout
4751
4752 \end_inset
4753 </cell>
4754 <cell alignment="center" valignment="top" usebox="none">
4755 \begin_inset Text
4756
4757 \begin_layout Plain Layout
4758 Valeriano
4759 \end_layout
4760
4761 \end_inset
4762 </cell>
4763 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4764 \begin_inset Text
4765
4766 \begin_layout Plain Layout
4767 555
4768 \end_layout
4769
4770 \end_inset
4771 </cell>
4772 </row>
4773 <row>
4774 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4775 \begin_inset Text
4776
4777 \begin_layout Plain Layout
4778
4779 \series bold
4780 Meneguzzo
4781 \end_layout
4782
4783 \end_inset
4784 </cell>
4785 <cell alignment="center" valignment="top" usebox="none">
4786 \begin_inset Text
4787
4788 \begin_layout Plain Layout
4789 Roberto
4790 \end_layout
4791
4792 \end_inset
4793 </cell>
4794 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4795 \begin_inset Text
4796
4797 \begin_layout Plain Layout
4798 555
4799 \end_layout
4800
4801 \end_inset
4802 </cell>
4803 </row>
4804 <row>
4805 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4806 \begin_inset Text
4807
4808 \begin_layout Plain Layout
4809
4810 \series bold
4811 Mezzadra
4812 \end_layout
4813
4814 \end_inset
4815 </cell>
4816 <cell alignment="center" valignment="top" usebox="none">
4817 \begin_inset Text
4818
4819 \begin_layout Plain Layout
4820 Roberto
4821 \end_layout
4822
4823 \end_inset
4824 </cell>
4825 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4826 \begin_inset Text
4827
4828 \begin_layout Plain Layout
4829 555
4830 \end_layout
4831
4832 \end_inset
4833 </cell>
4834 </row>
4835 <row>
4836 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4837 \begin_inset Text
4838
4839 \begin_layout Plain Layout
4840
4841 \series bold
4842 Pirpamer
4843 \end_layout
4844
4845 \end_inset
4846 </cell>
4847 <cell alignment="center" valignment="top" usebox="none">
4848 \begin_inset Text
4849
4850 \begin_layout Plain Layout
4851 Erich
4852 \end_layout
4853
4854 \end_inset
4855 </cell>
4856 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4857 \begin_inset Text
4858
4859 \begin_layout Plain Layout
4860 555
4861 \end_layout
4862
4863 \end_inset
4864 </cell>
4865 </row>
4866 <row>
4867 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4868 \begin_inset Text
4869
4870 \begin_layout Plain Layout
4871
4872 \series bold
4873 Pochiesa
4874 \end_layout
4875
4876 \end_inset
4877 </cell>
4878 <cell alignment="center" valignment="top" usebox="none">
4879 \begin_inset Text
4880
4881 \begin_layout Plain Layout
4882 Paolo
4883 \end_layout
4884
4885 \end_inset
4886 </cell>
4887 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4888 \begin_inset Text
4889
4890 \begin_layout Plain Layout
4891 555, 222
4892 \end_layout
4893
4894 \end_inset
4895 </cell>
4896 </row>
4897 <row>
4898 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4899 \begin_inset Text
4900
4901 \begin_layout Plain Layout
4902
4903 \series bold
4904 Radina
4905 \end_layout
4906
4907 \end_inset
4908 </cell>
4909 <cell alignment="center" valignment="top" usebox="none">
4910 \begin_inset Text
4911
4912 \begin_layout Plain Layout
4913 Claudio
4914 \end_layout
4915
4916 \end_inset
4917 </cell>
4918 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4919 \begin_inset Text
4920
4921 \begin_layout Plain Layout
4922 555
4923 \end_layout
4924
4925 \end_inset
4926 </cell>
4927 </row>
4928 <row>
4929 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4930 \begin_inset Text
4931
4932 \begin_layout Plain Layout
4933
4934 \series bold
4935 Stuffer
4936 \end_layout
4937
4938 \end_inset
4939 </cell>
4940 <cell alignment="center" valignment="top" usebox="none">
4941 \begin_inset Text
4942
4943 \begin_layout Plain Layout
4944 Oskar
4945 \end_layout
4946
4947 \end_inset
4948 </cell>
4949 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4950 \begin_inset Text
4951
4952 \begin_layout Plain Layout
4953 555
4954 \end_layout
4955
4956 \end_inset
4957 </cell>
4958 </row>
4959 <row>
4960 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4961 \begin_inset Text
4962
4963 \begin_layout Plain Layout
4964
4965 \series bold
4966 Tacchelli
4967 \end_layout
4968
4969 \end_inset
4970 </cell>
4971 <cell alignment="center" valignment="top" usebox="none">
4972 \begin_inset Text
4973
4974 \begin_layout Plain Layout
4975 Ugo
4976 \end_layout
4977
4978 \end_inset
4979 </cell>
4980 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
4981 \begin_inset Text
4982
4983 \begin_layout Plain Layout
4984 555
4985 \end_layout
4986
4987 \end_inset
4988 </cell>
4989 </row>
4990 <row>
4991 <cell alignment="left" valignment="top" leftline="true" usebox="none">
4992 \begin_inset Text
4993
4994 \begin_layout Plain Layout
4995
4996 \series bold
4997 Tezzele
4998 \end_layout
4999
5000 \end_inset
5001 </cell>
5002 <cell alignment="center" valignment="top" usebox="none">
5003 \begin_inset Text
5004
5005 \begin_layout Plain Layout
5006 Margit
5007 \end_layout
5008
5009 \end_inset
5010 </cell>
5011 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
5012 \begin_inset Text
5013
5014 \begin_layout Plain Layout
5015 555
5016 \end_layout
5017
5018 \end_inset
5019 </cell>
5020 </row>
5021 <row>
5022 <cell alignment="left" valignment="top" leftline="true" usebox="none">
5023 \begin_inset Text
5024
5025 \begin_layout Plain Layout
5026
5027 \series bold
5028 Unterkalmsteiner
5029 \end_layout
5030
5031 \end_inset
5032 </cell>
5033 <cell alignment="center" valignment="top" usebox="none">
5034 \begin_inset Text
5035
5036 \begin_layout Plain Layout
5037 Frieda
5038 \end_layout
5039
5040 \end_inset
5041 </cell>
5042 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
5043 \begin_inset Text
5044
5045 \begin_layout Plain Layout
5046 555
5047 \end_layout
5048
5049 \end_inset
5050 </cell>
5051 </row>
5052 <row>
5053 <cell alignment="left" valignment="top" leftline="true" usebox="none">
5054 \begin_inset Text
5055
5056 \begin_layout Plain Layout
5057
5058 \series bold
5059 Vieider
5060 \end_layout
5061
5062 \end_inset
5063 </cell>
5064 <cell alignment="center" valignment="top" usebox="none">
5065 \begin_inset Text
5066
5067 \begin_layout Plain Layout
5068 Hilde
5069 \end_layout
5070
5071 \end_inset
5072 </cell>
5073 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
5074 \begin_inset Text
5075
5076 \begin_layout Plain Layout
5077 555
5078 \end_layout
5079
5080 \end_inset
5081 </cell>
5082 </row>
5083 <row>
5084 <cell alignment="left" valignment="top" leftline="true" usebox="none">
5085 \begin_inset Text
5086
5087 \begin_layout Plain Layout
5088
5089 \series bold
5090 Vigna
5091 \end_layout
5092
5093 \end_inset
5094 </cell>
5095 <cell alignment="center" valignment="top" usebox="none">
5096 \begin_inset Text
5097
5098 \begin_layout Plain Layout
5099 Jürgen
5100 \end_layout
5101
5102 \end_inset
5103 </cell>
5104 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
5105 \begin_inset Text
5106
5107 \begin_layout Plain Layout
5108 999
5109 \end_layout
5110
5111 \end_inset
5112 </cell>
5113 </row>
5114 <row>
5115 <cell alignment="left" valignment="top" leftline="true" usebox="none">
5116 \begin_inset Text
5117
5118 \begin_layout Plain Layout
5119
5120 \series bold
5121 Weber
5122 \end_layout
5123
5124 \end_inset
5125 </cell>
5126 <cell alignment="center" valignment="top" usebox="none">
5127 \begin_inset Text
5128
5129 \begin_layout Plain Layout
5130 Maurizio
5131 \end_layout
5132
5133 \end_inset
5134 </cell>
5135 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
5136 \begin_inset Text
5137
5138 \begin_layout Plain Layout
5139 555
5140 \end_layout
5141
5142 \end_inset
5143 </cell>
5144 </row>
5145 <row>
5146 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
5147 \begin_inset Text
5148
5149 \begin_layout Plain Layout
5150
5151 \series bold
5152 Winkler
5153 \end_layout
5154
5155 \end_inset
5156 </cell>
5157 <cell alignment="center" valignment="top" bottomline="true" usebox="none">
5158 \begin_inset Text
5159
5160 \begin_layout Plain Layout
5161 Franz
5162 \end_layout
5163
5164 \end_inset
5165 </cell>
5166 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
5167 \begin_inset Text
5168
5169 \begin_layout Plain Layout
5170 555
5171 \end_layout
5172
5173 \end_inset
5174 </cell>
5175 </row>
5176 <row endlastfoot="true">
5177 <cell multicolumn="1" alignment="right" valignment="top" usebox="none">
5178 \begin_inset Text
5179
5180 \begin_layout Plain Layout
5181 Ende
5182 \end_layout
5183
5184 \end_inset
5185 </cell>
5186 <cell multicolumn="2" alignment="center" valignment="top" topline="true" usebox="none">
5187 \begin_inset Text
5188
5189 \begin_layout Plain Layout
5190
5191 \end_layout
5192
5193 \end_inset
5194 </cell>
5195 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5196 \begin_inset Text
5197
5198 \begin_layout Plain Layout
5199
5200 \end_layout
5201
5202 \end_inset
5203 </cell>
5204 </row>
5205 </lyxtabular>
5206
5207 \end_inset
5208
5209
5210 \begin_inset ERT
5211 status collapsed
5212
5213 \begin_layout Plain Layout
5214
5215
5216 \backslash
5217 addtocounter{table}{-1}
5218 \end_layout
5219
5220 \end_inset
5221
5222
5223 \begin_inset Note Note
5224 status collapsed
5225
5226 \begin_layout Plain Layout
5227 Die Bedeutung dieses Befehls finden Sie in der Bemerkung 1 von Abschnitt
5228 \begin_inset space ~
5229 \end_inset
5230
5231
5232 \begin_inset CommandInset ref
5233 LatexCommand ref
5234 reference "uab:Beschriftungen-langer-Tabellen"
5235
5236 \end_inset
5237
5238
5239 \end_layout
5240
5241 \end_inset
5242
5243
5244 \end_layout
5245
5246 \begin_layout Subsection
5247 Fußnoten in langen Tabellen
5248 \begin_inset CommandInset label
5249 LatexCommand label
5250 name "uab:Fußnoten-in-langen"
5251
5252 \end_inset
5253
5254
5255 \begin_inset Index idx
5256 status collapsed
5257
5258 \begin_layout Plain Layout
5259 Tabellen ! lange ! Fußnoten
5260 \end_layout
5261
5262 \end_inset
5263
5264
5265 \end_layout
5266
5267 \begin_layout Standard
5268 Fußnoten kann man in jede Zelle einer langen Tabelle einfügen.
5269  Sie werden auf der Seite erscheinen, auf der auch die Zelle gedruckt wird.
5270  Tabelle
5271 \begin_inset space ~
5272 \end_inset
5273
5274
5275 \begin_inset CommandInset ref
5276 LatexCommand ref
5277 reference "tab:DiffCaptions"
5278
5279 \end_inset
5280
5281  hat zum Beispiel eine Fußnote.
5282 \end_layout
5283
5284 \begin_layout Subsection
5285 Ausrichtung langer Tabellen
5286 \begin_inset Index idx
5287 status collapsed
5288
5289 \begin_layout Plain Layout
5290 Tabellen ! lange ! Ausrichtung
5291 \end_layout
5292
5293 \end_inset
5294
5295
5296 \end_layout
5297
5298 \begin_layout Standard
5299 Lange Tabellen sind standardmäßig zentriert ausgerichtet.
5300  Im Gegensatz zur Ausrichtung von Tabellenspalten und -zeilen kann die Ausrichtu
5301 ng von Tabellen nicht im Tabellen-Dialogfenster geändert werden.
5302  Um die Ausrichtung von langen Tabellen zu ändern, müssen die Werte der
5303  Längen 
5304 \series bold
5305
5306 \backslash
5307 LTleft 
5308 \series default
5309 und 
5310 \series bold
5311
5312 \backslash
5313 LTright
5314 \series default
5315  geändert werden, indem diese Zeile als TeX-Code vor die lange Tabelle eingefügt
5316  wird:
5317 \end_layout
5318
5319 \begin_layout Standard
5320
5321 \series bold
5322
5323 \backslash
5324 setlength{
5325 \backslash
5326 LTleft}{Wert}
5327 \end_layout
5328
5329 \begin_layout Standard
5330 Wobei der Wert eine der in Tabelle
5331 \begin_inset space ~
5332 \end_inset
5333
5334
5335 \begin_inset CommandInset ref
5336 LatexCommand ref
5337 reference "tab:Maßeinheiten"
5338
5339 \end_inset
5340
5341  aufgelisteten Einheiten haben kann.
5342  
5343 \series bold
5344
5345 \backslash
5346 LTleft
5347 \series default
5348  legt den horizontalen Abstand vom linken Seitenrand bis zur Tabelle fest,
5349  
5350 \series bold
5351
5352 \backslash
5353 LTright
5354 \series default
5355  den Abstand von rechts.
5356  Die Voreinstellung für beide Werte ist 
5357 \series bold
5358
5359 \backslash
5360 fill
5361 \series default
5362 , was in diesem Fall gleichbedeutend mit einem variablen horizontalen Abstand
5363  in LyX ist.
5364 \end_layout
5365
5366 \begin_layout Standard
5367 Die folgende lange Tabelle wurde links ausgerichtet, indem 
5368 \series bold
5369
5370 \backslash
5371 LTleft
5372 \series default
5373  auf den Wert 0
5374 \begin_inset space \thinspace{}
5375 \end_inset
5376
5377 pt gesetzt wurde.
5378 \begin_inset ERT
5379 status collapsed
5380
5381 \begin_layout Plain Layout
5382
5383
5384 \backslash
5385 setlength{
5386 \backslash
5387 LTleft}{0pt}
5388 \end_layout
5389
5390 \end_inset
5391
5392
5393 \end_layout
5394
5395 \begin_layout Standard
5396 \begin_inset Tabular
5397 <lyxtabular version="3" rows="5" columns="5">
5398 <features islongtable="true" longtabularalignment="center">
5399 <column alignment="center" valignment="top" width="0">
5400 <column alignment="center" valignment="top" width="0">
5401 <column alignment="center" valignment="top" width="0">
5402 <column alignment="center" valignment="top" width="0">
5403 <column alignment="center" valignment="top" width="0">
5404 <row>
5405 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5406 \begin_inset Text
5407
5408 \begin_layout Plain Layout
5409 1
5410 \end_layout
5411
5412 \end_inset
5413 </cell>
5414 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5415 \begin_inset Text
5416
5417 \begin_layout Plain Layout
5418 2
5419 \end_layout
5420
5421 \end_inset
5422 </cell>
5423 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5424 \begin_inset Text
5425
5426 \begin_layout Plain Layout
5427 3
5428 \end_layout
5429
5430 \end_inset
5431 </cell>
5432 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5433 \begin_inset Text
5434
5435 \begin_layout Plain Layout
5436 4
5437 \end_layout
5438
5439 \end_inset
5440 </cell>
5441 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5442 \begin_inset Text
5443
5444 \begin_layout Plain Layout
5445 5
5446 \end_layout
5447
5448 \end_inset
5449 </cell>
5450 </row>
5451 <row>
5452 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5453 \begin_inset Text
5454
5455 \begin_layout Plain Layout
5456 asd
5457 \end_layout
5458
5459 \end_inset
5460 </cell>
5461 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5462 \begin_inset Text
5463
5464 \begin_layout Plain Layout
5465 s
5466 \end_layout
5467
5468 \end_inset
5469 </cell>
5470 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5471 \begin_inset Text
5472
5473 \begin_layout Plain Layout
5474 s
5475 \end_layout
5476
5477 \end_inset
5478 </cell>
5479 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5480 \begin_inset Text
5481
5482 \begin_layout Plain Layout
5483 s
5484 \end_layout
5485
5486 \end_inset
5487 </cell>
5488 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5489 \begin_inset Text
5490
5491 \begin_layout Plain Layout
5492 asd
5493 \end_layout
5494
5495 \end_inset
5496 </cell>
5497 </row>
5498 <row>
5499 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5500 \begin_inset Text
5501
5502 \begin_layout Plain Layout
5503 asd
5504 \end_layout
5505
5506 \end_inset
5507 </cell>
5508 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5509 \begin_inset Text
5510
5511 \begin_layout Plain Layout
5512 s
5513 \end_layout
5514
5515 \end_inset
5516 </cell>
5517 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5518 \begin_inset Text
5519
5520 \begin_layout Plain Layout
5521 s
5522 \end_layout
5523
5524 \end_inset
5525 </cell>
5526 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5527 \begin_inset Text
5528
5529 \begin_layout Plain Layout
5530 s
5531 \end_layout
5532
5533 \end_inset
5534 </cell>
5535 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5536 \begin_inset Text
5537
5538 \begin_layout Plain Layout
5539 asd
5540 \end_layout
5541
5542 \end_inset
5543 </cell>
5544 </row>
5545 <row>
5546 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5547 \begin_inset Text
5548
5549 \begin_layout Plain Layout
5550 asd
5551 \end_layout
5552
5553 \end_inset
5554 </cell>
5555 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5556 \begin_inset Text
5557
5558 \begin_layout Plain Layout
5559 s
5560 \end_layout
5561
5562 \end_inset
5563 </cell>
5564 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5565 \begin_inset Text
5566
5567 \begin_layout Plain Layout
5568 s
5569 \end_layout
5570
5571 \end_inset
5572 </cell>
5573 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5574 \begin_inset Text
5575
5576 \begin_layout Plain Layout
5577 s
5578 \end_layout
5579
5580 \end_inset
5581 </cell>
5582 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5583 \begin_inset Text
5584
5585 \begin_layout Plain Layout
5586 asd
5587 \end_layout
5588
5589 \end_inset
5590 </cell>
5591 </row>
5592 <row>
5593 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5594 \begin_inset Text
5595
5596 \begin_layout Plain Layout
5597 asd
5598 \end_layout
5599
5600 \end_inset
5601 </cell>
5602 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5603 \begin_inset Text
5604
5605 \begin_layout Plain Layout
5606 asd
5607 \end_layout
5608
5609 \end_inset
5610 </cell>
5611 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5612 \begin_inset Text
5613
5614 \begin_layout Plain Layout
5615 asd
5616 \end_layout
5617
5618 \end_inset
5619 </cell>
5620 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5621 \begin_inset Text
5622
5623 \begin_layout Plain Layout
5624 asd
5625 \end_layout
5626
5627 \end_inset
5628 </cell>
5629 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5630 \begin_inset Text
5631
5632 \begin_layout Plain Layout
5633 asd
5634 \end_layout
5635
5636 \end_inset
5637 </cell>
5638 </row>
5639 </lyxtabular>
5640
5641 \end_inset
5642
5643
5644 \begin_inset ERT
5645 status collapsed
5646
5647 \begin_layout Plain Layout
5648
5649
5650 \backslash
5651 setlength{
5652 \backslash
5653 LTleft}{
5654 \backslash
5655 fill}
5656 \end_layout
5657
5658 \end_inset
5659
5660
5661 \begin_inset ERT
5662 status collapsed
5663
5664 \begin_layout Plain Layout
5665
5666
5667 \backslash
5668 addtocounter{table}{-1}
5669 \end_layout
5670
5671 \end_inset
5672
5673
5674 \begin_inset Note Note
5675 status collapsed
5676
5677 \begin_layout Plain Layout
5678 Die Bedeutung dieses Befehls finden Sie in der Bemerkung 1 von Abschnitt
5679 \begin_inset space ~
5680 \end_inset
5681
5682
5683 \begin_inset CommandInset ref
5684 LatexCommand ref
5685 reference "uab:Beschriftungen-langer-Tabellen"
5686
5687 \end_inset
5688
5689
5690 \end_layout
5691
5692 \end_inset
5693
5694
5695 \end_layout
5696
5697 \begin_layout Subsection
5698 Beschriftungen langer Tabellen
5699 \begin_inset CommandInset label
5700 LatexCommand label
5701 name "uab:Beschriftungen-langer-Tabellen"
5702
5703 \end_inset
5704
5705
5706 \begin_inset Index idx
5707 status collapsed
5708
5709 \begin_layout Plain Layout
5710 Tabellen ! lange ! Titel
5711 \end_layout
5712
5713 \end_inset
5714
5715
5716 \end_layout
5717
5718 \begin_layout Standard
5719 Eine lange Tabelle kann man nicht in ein Gleitobjekt packen, weil Gleitobjekte
5720  nur auf eine Seite gedruckt werden können.
5721  Daher wird die Beschriftung in eine Tabellenzeile eingegeben, wie in Abschnitt
5722 \begin_inset space ~
5723 \end_inset
5724
5725
5726 \begin_inset CommandInset ref
5727 LatexCommand ref
5728 reference "abs:Lange-Tabellen"
5729
5730 \end_inset
5731
5732  erklärt.
5733  Nur eine Tabellenzeile kann eine Beschriftung enthalten.
5734 \end_layout
5735
5736 \begin_layout Standard
5737 Hier ist eine kurze lange Tabelle, die zeigt, wie das funktioniert:
5738 \end_layout
5739
5740 \begin_layout Standard
5741 \begin_inset Tabular
5742 <lyxtabular version="3" rows="6" columns="5">
5743 <features islongtable="true" longtabularalignment="center">
5744 <column alignment="center" valignment="top" width="0">
5745 <column alignment="center" valignment="top" width="0">
5746 <column alignment="center" valignment="top" width="0">
5747 <column alignment="center" valignment="top" width="0">
5748 <column alignment="center" valignment="top" width="0">
5749 <row caption="true">
5750 <cell multicolumn="1" alignment="center" valignment="top" usebox="none">
5751 \begin_inset Text
5752
5753 \begin_layout Plain Layout
5754 \begin_inset Caption
5755
5756 \begin_layout Plain Layout
5757 Eine lange Tabelle mit Titel
5758 \begin_inset Argument
5759 status open
5760
5761 \begin_layout Plain Layout
5762 Lange Tabelle
5763 \end_layout
5764
5765 \end_inset
5766
5767
5768 \end_layout
5769
5770 \end_inset
5771
5772
5773 \end_layout
5774
5775 \end_inset
5776 </cell>
5777 <cell multicolumn="2" alignment="center" valignment="top" leftline="true" usebox="none">
5778 \begin_inset Text
5779
5780 \begin_layout Plain Layout
5781
5782 \end_layout
5783
5784 \end_inset
5785 </cell>
5786 <cell multicolumn="2" alignment="center" valignment="top" leftline="true" usebox="none">
5787 \begin_inset Text
5788
5789 \begin_layout Plain Layout
5790
5791 \end_layout
5792
5793 \end_inset
5794 </cell>
5795 <cell multicolumn="2" alignment="center" valignment="top" leftline="true" usebox="none">
5796 \begin_inset Text
5797
5798 \begin_layout Plain Layout
5799
5800 \end_layout
5801
5802 \end_inset
5803 </cell>
5804 <cell multicolumn="2" alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
5805 \begin_inset Text
5806
5807 \begin_layout Plain Layout
5808
5809 \end_layout
5810
5811 \end_inset
5812 </cell>
5813 </row>
5814 <row>
5815 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5816 \begin_inset Text
5817
5818 \begin_layout Plain Layout
5819 1
5820 \end_layout
5821
5822 \end_inset
5823 </cell>
5824 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5825 \begin_inset Text
5826
5827 \begin_layout Plain Layout
5828 2
5829 \end_layout
5830
5831 \end_inset
5832 </cell>
5833 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5834 \begin_inset Text
5835
5836 \begin_layout Plain Layout
5837 3
5838 \end_layout
5839
5840 \end_inset
5841 </cell>
5842 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5843 \begin_inset Text
5844
5845 \begin_layout Plain Layout
5846 4
5847 \end_layout
5848
5849 \end_inset
5850 </cell>
5851 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5852 \begin_inset Text
5853
5854 \begin_layout Plain Layout
5855 5
5856 \end_layout
5857
5858 \end_inset
5859 </cell>
5860 </row>
5861 <row>
5862 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5863 \begin_inset Text
5864
5865 \begin_layout Plain Layout
5866 asd
5867 \end_layout
5868
5869 \end_inset
5870 </cell>
5871 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5872 \begin_inset Text
5873
5874 \begin_layout Plain Layout
5875 s
5876 \end_layout
5877
5878 \end_inset
5879 </cell>
5880 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5881 \begin_inset Text
5882
5883 \begin_layout Plain Layout
5884 s
5885 \end_layout
5886
5887 \end_inset
5888 </cell>
5889 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5890 \begin_inset Text
5891
5892 \begin_layout Plain Layout
5893 s
5894 \end_layout
5895
5896 \end_inset
5897 </cell>
5898 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5899 \begin_inset Text
5900
5901 \begin_layout Plain Layout
5902 asd
5903 \end_layout
5904
5905 \end_inset
5906 </cell>
5907 </row>
5908 <row>
5909 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5910 \begin_inset Text
5911
5912 \begin_layout Plain Layout
5913 asd
5914 \end_layout
5915
5916 \end_inset
5917 </cell>
5918 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5919 \begin_inset Text
5920
5921 \begin_layout Plain Layout
5922 s
5923 \end_layout
5924
5925 \end_inset
5926 </cell>
5927 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5928 \begin_inset Text
5929
5930 \begin_layout Plain Layout
5931 s
5932 \end_layout
5933
5934 \end_inset
5935 </cell>
5936 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5937 \begin_inset Text
5938
5939 \begin_layout Plain Layout
5940 s
5941 \end_layout
5942
5943 \end_inset
5944 </cell>
5945 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5946 \begin_inset Text
5947
5948 \begin_layout Plain Layout
5949 asd
5950 \end_layout
5951
5952 \end_inset
5953 </cell>
5954 </row>
5955 <row>
5956 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5957 \begin_inset Text
5958
5959 \begin_layout Plain Layout
5960 asd
5961 \end_layout
5962
5963 \end_inset
5964 </cell>
5965 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5966 \begin_inset Text
5967
5968 \begin_layout Plain Layout
5969 s
5970 \end_layout
5971
5972 \end_inset
5973 </cell>
5974 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5975 \begin_inset Text
5976
5977 \begin_layout Plain Layout
5978 s
5979 \end_layout
5980
5981 \end_inset
5982 </cell>
5983 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5984 \begin_inset Text
5985
5986 \begin_layout Plain Layout
5987 s
5988 \end_layout
5989
5990 \end_inset
5991 </cell>
5992 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5993 \begin_inset Text
5994
5995 \begin_layout Plain Layout
5996 asd
5997 \end_layout
5998
5999 \end_inset
6000 </cell>
6001 </row>
6002 <row>
6003 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6004 \begin_inset Text
6005
6006 \begin_layout Plain Layout
6007 asd
6008 \end_layout
6009
6010 \end_inset
6011 </cell>
6012 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6013 \begin_inset Text
6014
6015 \begin_layout Plain Layout
6016 asd
6017 \end_layout
6018
6019 \end_inset
6020 </cell>
6021 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6022 \begin_inset Text
6023
6024 \begin_layout Plain Layout
6025 asd
6026 \end_layout
6027
6028 \end_inset
6029 </cell>
6030 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6031 \begin_inset Text
6032
6033 \begin_layout Plain Layout
6034 asd
6035 \end_layout
6036
6037 \end_inset
6038 </cell>
6039 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6040 \begin_inset Text
6041
6042 \begin_layout Plain Layout
6043 asd
6044 \end_layout
6045
6046 \end_inset
6047 </cell>
6048 </row>
6049 </lyxtabular>
6050
6051 \end_inset
6052
6053
6054 \end_layout
6055
6056 \begin_layout Standard
6057 \begin_inset VSpace medskip
6058 \end_inset
6059
6060
6061 \begin_inset Note Greyedout
6062 status open
6063
6064 \begin_layout Plain Layout
6065
6066 \series bold
6067 Bemerkung
6068 \begin_inset space ~
6069 \end_inset
6070
6071 1:
6072 \series default
6073  Die Tabellennummer wird für jede lange Tabelle erhöht, auch wenn Sie keinen
6074  Titel vergeben.
6075  Deshalb könnte es passieren, dass zum Beispiel Tabelle
6076 \begin_inset space ~
6077 \end_inset
6078
6079 2.4 auf Tabelle
6080 \begin_inset space ~
6081 \end_inset
6082
6083 2.1 im Tabellenverzeichnis folgt, wenn dazwischen zwei lange Tabellen ohne
6084  Beschriftung sind.
6085  Um das zu vermeiden, können Sie hinter jede lange Tabelle ohne Titel folgenden
6086  LaTeX-Befehl als TeX-Code einfügen:
6087 \end_layout
6088
6089 \begin_layout Plain Layout
6090
6091 \series bold
6092
6093 \backslash
6094 addtocounter{table}{-1}
6095 \end_layout
6096
6097 \begin_layout Plain Layout
6098 Das ist nicht notwendig, wenn keine der langen Tabellen im Dokument eine
6099  Beschriftung hat und Sie diesen Code zum LaTeX-Vorspann hinzufügen:
6100 \end_layout
6101
6102 \begin_layout Plain Layout
6103
6104 \series bold
6105
6106 \backslash
6107 let
6108 \backslash
6109 myEnd
6110 \backslash
6111 endlongtable
6112 \begin_inset Newline newline
6113 \end_inset
6114
6115
6116 \backslash
6117 renewcommand{
6118 \backslash
6119 endlongtable}{
6120 \backslash
6121 myEnd
6122 \backslash
6123 addtocounter{table}{-1}}
6124 \end_layout
6125
6126 \end_inset
6127
6128
6129 \end_layout
6130
6131 \begin_layout Standard
6132 \begin_inset Note Greyedout
6133 status open
6134
6135 \begin_layout Plain Layout
6136
6137 \series bold
6138 Bemerkung
6139 \begin_inset space ~
6140 \end_inset
6141
6142 2:
6143 \series default
6144  Wenn Sie 
6145 \series bold
6146 hyperref
6147 \series default
6148
6149 \begin_inset Index idx
6150 status collapsed
6151
6152 \begin_layout Plain Layout
6153 LaTeX-Pakete ! hyperref
6154 \end_layout
6155
6156 \end_inset
6157
6158  in den
6159 \family sans
6160  PDF-Eigenschaften
6161 \family default
6162  im 
6163 \family sans
6164 Dokument-Einstellungen
6165 \family default
6166  Dialog für Querverweise benutzen, wird der Verweis auf eine lange Tabelle
6167  immer auf den Anfang des Dokuments zeigen.
6168 \end_layout
6169
6170 \end_inset
6171
6172
6173 \end_layout
6174
6175 \begin_layout Subsubsection
6176 Querverweise auf 
6177 \family sans
6178 lange Tabelle
6179 \family default
6180 n
6181 \begin_inset Index idx
6182 status collapsed
6183
6184 \begin_layout Plain Layout
6185 Tabellen ! lange ! Querverweis
6186 \end_layout
6187
6188 \end_inset
6189
6190
6191 \end_layout
6192
6193 \begin_layout Standard
6194 \begin_inset Tabular
6195 <lyxtabular version="3" rows="6" columns="5">
6196 <features islongtable="true" longtabularalignment="center">
6197 <column alignment="center" valignment="top" width="0">
6198 <column alignment="center" valignment="top" width="0">
6199 <column alignment="center" valignment="top" width="0">
6200 <column alignment="center" valignment="top" width="0">
6201 <column alignment="center" valignment="top" width="0">
6202 <row caption="true">
6203 <cell multicolumn="1" alignment="center" valignment="top" usebox="none">
6204 \begin_inset Text
6205
6206 \begin_layout Plain Layout
6207 \begin_inset Caption
6208
6209 \begin_layout Plain Layout
6210 Lange Tabelle mit Marke
6211 \begin_inset CommandInset label
6212 LatexCommand label
6213 name "tab:LangeTabelle-mit-Marke"
6214
6215 \end_inset
6216
6217
6218 \end_layout
6219
6220 \end_inset
6221
6222
6223 \end_layout
6224
6225 \end_inset
6226 </cell>
6227 <cell multicolumn="2" alignment="center" valignment="top" leftline="true" usebox="none">
6228 \begin_inset Text
6229
6230 \begin_layout Plain Layout
6231
6232 \end_layout
6233
6234 \end_inset
6235 </cell>
6236 <cell multicolumn="2" alignment="center" valignment="top" leftline="true" usebox="none">
6237 \begin_inset Text
6238
6239 \begin_layout Plain Layout
6240
6241 \end_layout
6242
6243 \end_inset
6244 </cell>
6245 <cell multicolumn="2" alignment="center" valignment="top" leftline="true" usebox="none">
6246 \begin_inset Text
6247
6248 \begin_layout Plain Layout
6249
6250 \end_layout
6251
6252 \end_inset
6253 </cell>
6254 <cell multicolumn="2" alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
6255 \begin_inset Text
6256
6257 \begin_layout Plain Layout
6258
6259 \end_layout
6260
6261 \end_inset
6262 </cell>
6263 </row>
6264 <row>
6265 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6266 \begin_inset Text
6267
6268 \begin_layout Plain Layout
6269 1
6270 \end_layout
6271
6272 \end_inset
6273 </cell>
6274 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6275 \begin_inset Text
6276
6277 \begin_layout Plain Layout
6278 2
6279 \end_layout
6280
6281 \end_inset
6282 </cell>
6283 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6284 \begin_inset Text
6285
6286 \begin_layout Plain Layout
6287 3
6288 \end_layout
6289
6290 \end_inset
6291 </cell>
6292 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6293 \begin_inset Text
6294
6295 \begin_layout Plain Layout
6296 4
6297 \end_layout
6298
6299 \end_inset
6300 </cell>
6301 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6302 \begin_inset Text
6303
6304 \begin_layout Plain Layout
6305 5
6306 \end_layout
6307
6308 \end_inset
6309 </cell>
6310 </row>
6311 <row>
6312 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6313 \begin_inset Text
6314
6315 \begin_layout Plain Layout
6316 asd
6317 \end_layout
6318
6319 \end_inset
6320 </cell>
6321 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6322 \begin_inset Text
6323
6324 \begin_layout Plain Layout
6325 s
6326 \end_layout
6327
6328 \end_inset
6329 </cell>
6330 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6331 \begin_inset Text
6332
6333 \begin_layout Plain Layout
6334 s
6335 \end_layout
6336
6337 \end_inset
6338 </cell>
6339 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6340 \begin_inset Text
6341
6342 \begin_layout Plain Layout
6343 s
6344 \end_layout
6345
6346 \end_inset
6347 </cell>
6348 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6349 \begin_inset Text
6350
6351 \begin_layout Plain Layout
6352 asd
6353 \end_layout
6354
6355 \end_inset
6356 </cell>
6357 </row>
6358 <row>
6359 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6360 \begin_inset Text
6361
6362 \begin_layout Plain Layout
6363 asd
6364 \end_layout
6365
6366 \end_inset
6367 </cell>
6368 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6369 \begin_inset Text
6370
6371 \begin_layout Plain Layout
6372 s
6373 \end_layout
6374
6375 \end_inset
6376 </cell>
6377 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6378 \begin_inset Text
6379
6380 \begin_layout Plain Layout
6381 s
6382 \end_layout
6383
6384 \end_inset
6385 </cell>
6386 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6387 \begin_inset Text
6388
6389 \begin_layout Plain Layout
6390 s
6391 \end_layout
6392
6393 \end_inset
6394 </cell>
6395 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6396 \begin_inset Text
6397
6398 \begin_layout Plain Layout
6399 asd
6400 \end_layout
6401
6402 \end_inset
6403 </cell>
6404 </row>
6405 <row>
6406 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6407 \begin_inset Text
6408
6409 \begin_layout Plain Layout
6410 asd
6411 \end_layout
6412
6413 \end_inset
6414 </cell>
6415 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6416 \begin_inset Text
6417
6418 \begin_layout Plain Layout
6419 s
6420 \end_layout
6421
6422 \end_inset
6423 </cell>
6424 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6425 \begin_inset Text
6426
6427 \begin_layout Plain Layout
6428 s
6429 \end_layout
6430
6431 \end_inset
6432 </cell>
6433 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6434 \begin_inset Text
6435
6436 \begin_layout Plain Layout
6437 s
6438 \end_layout
6439
6440 \end_inset
6441 </cell>
6442 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6443 \begin_inset Text
6444
6445 \begin_layout Plain Layout
6446 asd
6447 \end_layout
6448
6449 \end_inset
6450 </cell>
6451 </row>
6452 <row>
6453 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6454 \begin_inset Text
6455
6456 \begin_layout Plain Layout
6457 asd
6458 \end_layout
6459
6460 \end_inset
6461 </cell>
6462 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6463 \begin_inset Text
6464
6465 \begin_layout Plain Layout
6466 sad
6467 \end_layout
6468
6469 \end_inset
6470 </cell>
6471 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6472 \begin_inset Text
6473
6474 \begin_layout Plain Layout
6475 asd
6476 \end_layout
6477
6478 \end_inset
6479 </cell>
6480 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6481 \begin_inset Text
6482
6483 \begin_layout Plain Layout
6484 asd
6485 \end_layout
6486
6487 \end_inset
6488 </cell>
6489 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6490 \begin_inset Text
6491
6492 \begin_layout Plain Layout
6493 asd
6494 \end_layout
6495
6496 \end_inset
6497 </cell>
6498 </row>
6499 </lyxtabular>
6500
6501 \end_inset
6502
6503
6504 \end_layout
6505
6506 \begin_layout Standard
6507 Damit auf eine lange Tabelle verwiesen werden kann, müssen Sie eine Marke
6508  im Titel einfügen.
6509 \end_layout
6510
6511 \begin_layout Standard
6512 Dies ist ein Verweis auf Tabelle
6513 \begin_inset space ~
6514 \end_inset
6515
6516
6517 \begin_inset CommandInset ref
6518 LatexCommand ref
6519 reference "tab:LangeTabelle-mit-Marke"
6520
6521 \end_inset
6522
6523 .
6524 \end_layout
6525
6526 \begin_layout Standard
6527 Mit dem LaTeX-Paket 
6528 \series bold
6529 caption
6530 \series default
6531
6532 \begin_inset Index idx
6533 status collapsed
6534
6535 \begin_layout Plain Layout
6536 LaTeX-Pakete ! caption
6537 \end_layout
6538
6539 \end_inset
6540
6541 , siehe Abschnitt
6542 \begin_inset space ~
6543 \end_inset
6544
6545
6546 \begin_inset CommandInset ref
6547 LatexCommand ref
6548 reference "abs:Titel-Formatierung"
6549
6550 \end_inset
6551
6552 , können Sie alle anderen Beschriftungsoptionen benutzen.
6553 \end_layout
6554
6555 \begin_layout Subsubsection
6556 Titelbreite
6557 \begin_inset Index idx
6558 status collapsed
6559
6560 \begin_layout Plain Layout
6561 Tabellen ! lange ! Beschriftungsbreite
6562 \end_layout
6563
6564 \end_inset
6565
6566
6567 \end_layout
6568
6569 \begin_layout Standard
6570 Die maximale Titelbreite wird durch die Variable 
6571 \series bold
6572
6573 \backslash
6574 LTcapwidth
6575 \series default
6576  definiert.
6577  Ihr Standardwert ist 4
6578 \begin_inset space \thinspace{}
6579 \end_inset
6580
6581 Zoll (
6582 \begin_inset Formula $\approx10$
6583 \end_inset
6584
6585
6586 \begin_inset space \thinspace{}
6587 \end_inset
6588
6589 cm).
6590  Um das zu ändern, können Sie entweder im LaTeX-Vorspann oder als TeX-Code
6591  vor der betreffenden Tabelle folgenden Befehl einsetzen:
6592 \end_layout
6593
6594 \begin_layout Standard
6595
6596 \series bold
6597
6598 \backslash
6599 setlength{
6600 \backslash
6601 LTcapwidth}{Breite}
6602 \end_layout
6603
6604 \begin_layout Standard
6605 wobei die Breite eine der in Anhang
6606 \begin_inset space ~
6607 \end_inset
6608
6609
6610 \begin_inset CommandInset ref
6611 LatexCommand ref
6612 reference "kap:In-LyX-verfügbare"
6613
6614 \end_inset
6615
6616  aufgelisteten Einheiten haben kann.
6617 \end_layout
6618
6619 \begin_layout Standard
6620 Die beiden folgenden Tabellen zeigen den Unterschied:
6621 \end_layout
6622
6623 \begin_layout Standard
6624 \begin_inset Tabular
6625 <lyxtabular version="3" rows="6" columns="5">
6626 <features islongtable="true" longtabularalignment="center">
6627 <column alignment="center" valignment="top" width="0">
6628 <column alignment="center" valignment="top" width="0">
6629 <column alignment="center" valignment="top" width="0">
6630 <column alignment="center" valignment="top" width="0">
6631 <column alignment="center" valignment="top" width="0">
6632 <row caption="true">
6633 <cell multicolumn="1" alignment="center" valignment="top" usebox="none">
6634 \begin_inset Text
6635
6636 \begin_layout Plain Layout
6637 \begin_inset Caption
6638
6639 \begin_layout Plain Layout
6640 Langer Titel mit Standardbreite, Langer Titel mit Standardbreite
6641 \begin_inset Argument
6642 status open
6643
6644 \begin_layout Plain Layout
6645 Titel mit Standardbreite
6646 \end_layout
6647
6648 \end_inset
6649
6650
6651 \end_layout
6652
6653 \end_inset
6654
6655
6656 \end_layout
6657
6658 \end_inset
6659 </cell>
6660 <cell multicolumn="2" alignment="center" valignment="top" leftline="true" usebox="none">
6661 \begin_inset Text
6662
6663 \begin_layout Plain Layout
6664
6665 \end_layout
6666
6667 \end_inset
6668 </cell>
6669 <cell multicolumn="2" alignment="center" valignment="top" leftline="true" usebox="none">
6670 \begin_inset Text
6671
6672 \begin_layout Plain Layout
6673
6674 \end_layout
6675
6676 \end_inset
6677 </cell>
6678 <cell multicolumn="2" alignment="center" valignment="top" leftline="true" usebox="none">
6679 \begin_inset Text
6680
6681 \begin_layout Plain Layout
6682
6683 \end_layout
6684
6685 \end_inset
6686 </cell>
6687 <cell multicolumn="2" alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
6688 \begin_inset Text
6689
6690 \begin_layout Plain Layout
6691
6692 \end_layout
6693
6694 \end_inset
6695 </cell>
6696 </row>
6697 <row>
6698 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6699 \begin_inset Text
6700
6701 \begin_layout Plain Layout
6702 1
6703 \end_layout
6704
6705 \end_inset
6706 </cell>
6707 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6708 \begin_inset Text
6709
6710 \begin_layout Plain Layout
6711 2
6712 \end_layout
6713
6714 \end_inset
6715 </cell>
6716 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6717 \begin_inset Text
6718
6719 \begin_layout Plain Layout
6720 3
6721 \end_layout
6722
6723 \end_inset
6724 </cell>
6725 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6726 \begin_inset Text
6727
6728 \begin_layout Plain Layout
6729 4
6730 \end_layout
6731
6732 \end_inset
6733 </cell>
6734 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6735 \begin_inset Text
6736
6737 \begin_layout Plain Layout
6738 5
6739 \end_layout
6740
6741 \end_inset
6742 </cell>
6743 </row>
6744 <row>
6745 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6746 \begin_inset Text
6747
6748 \begin_layout Plain Layout
6749 asd
6750 \end_layout
6751
6752 \end_inset
6753 </cell>
6754 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6755 \begin_inset Text
6756
6757 \begin_layout Plain Layout
6758 s
6759 \end_layout
6760
6761 \end_inset
6762 </cell>
6763 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6764 \begin_inset Text
6765
6766 \begin_layout Plain Layout
6767 s
6768 \end_layout
6769
6770 \end_inset
6771 </cell>
6772 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6773 \begin_inset Text
6774
6775 \begin_layout Plain Layout
6776 s
6777 \end_layout
6778
6779 \end_inset
6780 </cell>
6781 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6782 \begin_inset Text
6783
6784 \begin_layout Plain Layout
6785 asd
6786 \end_layout
6787
6788 \end_inset
6789 </cell>
6790 </row>
6791 <row>
6792 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6793 \begin_inset Text
6794
6795 \begin_layout Plain Layout
6796 asd
6797 \end_layout
6798
6799 \end_inset
6800 </cell>
6801 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6802 \begin_inset Text
6803
6804 \begin_layout Plain Layout
6805 s
6806 \end_layout
6807
6808 \end_inset
6809 </cell>
6810 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6811 \begin_inset Text
6812
6813 \begin_layout Plain Layout
6814 s
6815 \end_layout
6816
6817 \end_inset
6818 </cell>
6819 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6820 \begin_inset Text
6821
6822 \begin_layout Plain Layout
6823 s
6824 \end_layout
6825
6826 \end_inset
6827 </cell>
6828 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6829 \begin_inset Text
6830
6831 \begin_layout Plain Layout
6832 asd
6833 \end_layout
6834
6835 \end_inset
6836 </cell>
6837 </row>
6838 <row>
6839 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6840 \begin_inset Text
6841
6842 \begin_layout Plain Layout
6843 asd
6844 \end_layout
6845
6846 \end_inset
6847 </cell>
6848 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6849 \begin_inset Text
6850
6851 \begin_layout Plain Layout
6852 s
6853 \end_layout
6854
6855 \end_inset
6856 </cell>
6857 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6858 \begin_inset Text
6859
6860 \begin_layout Plain Layout
6861 s
6862 \end_layout
6863
6864 \end_inset
6865 </cell>
6866 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6867 \begin_inset Text
6868
6869 \begin_layout Plain Layout
6870 s
6871 \end_layout
6872
6873 \end_inset
6874 </cell>
6875 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6876 \begin_inset Text
6877
6878 \begin_layout Plain Layout
6879 asd
6880 \end_layout
6881
6882 \end_inset
6883 </cell>
6884 </row>
6885 <row>
6886 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6887 \begin_inset Text
6888
6889 \begin_layout Plain Layout
6890 asd
6891 \end_layout
6892
6893 \end_inset
6894 </cell>
6895 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6896 \begin_inset Text
6897
6898 \begin_layout Plain Layout
6899 sad
6900 \end_layout
6901
6902 \end_inset
6903 </cell>
6904 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6905 \begin_inset Text
6906
6907 \begin_layout Plain Layout
6908 asd
6909 \end_layout
6910
6911 \end_inset
6912 </cell>
6913 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6914 \begin_inset Text
6915
6916 \begin_layout Plain Layout
6917 asd
6918 \end_layout
6919
6920 \end_inset
6921 </cell>
6922 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6923 \begin_inset Text
6924
6925 \begin_layout Plain Layout
6926 asd
6927 \end_layout
6928
6929 \end_inset
6930 </cell>
6931 </row>
6932 </lyxtabular>
6933
6934 \end_inset
6935
6936
6937 \end_layout
6938
6939 \begin_layout Standard
6940 \begin_inset ERT
6941 status collapsed
6942
6943 \begin_layout Plain Layout
6944
6945
6946 \backslash
6947 setlength{
6948 \backslash
6949 LTcapwidth}{5cm}
6950 \end_layout
6951
6952 \end_inset
6953
6954
6955 \begin_inset Tabular
6956 <lyxtabular version="3" rows="6" columns="5">
6957 <features islongtable="true" longtabularalignment="center">
6958 <column alignment="center" valignment="top" width="0">
6959 <column alignment="center" valignment="top" width="0">
6960 <column alignment="center" valignment="top" width="0">
6961 <column alignment="center" valignment="top" width="0">
6962 <column alignment="center" valignment="top" width="0">
6963 <row caption="true">
6964 <cell multicolumn="1" alignment="center" valignment="top" usebox="none">
6965 \begin_inset Text
6966
6967 \begin_layout Plain Layout
6968 \begin_inset Caption
6969
6970 \begin_layout Plain Layout
6971 Langer Titel mit 5
6972 \begin_inset space \thinspace{}
6973 \end_inset
6974
6975 cm Breite, Langer Titel mit 5
6976 \begin_inset space \thinspace{}
6977 \end_inset
6978
6979 cm Breite
6980 \begin_inset Argument
6981 status open
6982
6983 \begin_layout Plain Layout
6984 Titel mit 5
6985 \begin_inset space \thinspace{}
6986 \end_inset
6987
6988 cm Breite
6989 \end_layout
6990
6991 \end_inset
6992
6993
6994 \end_layout
6995
6996 \end_inset
6997
6998
6999 \end_layout
7000
7001 \end_inset
7002 </cell>
7003 <cell multicolumn="2" alignment="center" valignment="top" leftline="true" usebox="none">
7004 \begin_inset Text
7005
7006 \begin_layout Plain Layout
7007
7008 \end_layout
7009
7010 \end_inset
7011 </cell>
7012 <cell multicolumn="2" alignment="center" valignment="top" leftline="true" usebox="none">
7013 \begin_inset Text
7014
7015 \begin_layout Plain Layout
7016
7017 \end_layout
7018
7019 \end_inset
7020 </cell>
7021 <cell multicolumn="2" alignment="center" valignment="top" leftline="true" usebox="none">
7022 \begin_inset Text
7023
7024 \begin_layout Plain Layout
7025
7026 \end_layout
7027
7028 \end_inset
7029 </cell>
7030 <cell multicolumn="2" alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
7031 \begin_inset Text
7032
7033 \begin_layout Plain Layout
7034
7035 \end_layout
7036
7037 \end_inset
7038 </cell>
7039 </row>
7040 <row>
7041 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7042 \begin_inset Text
7043
7044 \begin_layout Plain Layout
7045 1
7046 \end_layout
7047
7048 \end_inset
7049 </cell>
7050 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7051 \begin_inset Text
7052
7053 \begin_layout Plain Layout
7054 2
7055 \end_layout
7056
7057 \end_inset
7058 </cell>
7059 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7060 \begin_inset Text
7061
7062 \begin_layout Plain Layout
7063 3
7064 \end_layout
7065
7066 \end_inset
7067 </cell>
7068 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7069 \begin_inset Text
7070
7071 \begin_layout Plain Layout
7072 4
7073 \end_layout
7074
7075 \end_inset
7076 </cell>
7077 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7078 \begin_inset Text
7079
7080 \begin_layout Plain Layout
7081 5
7082 \end_layout
7083
7084 \end_inset
7085 </cell>
7086 </row>
7087 <row>
7088 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7089 \begin_inset Text
7090
7091 \begin_layout Plain Layout
7092 asd
7093 \end_layout
7094
7095 \end_inset
7096 </cell>
7097 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7098 \begin_inset Text
7099
7100 \begin_layout Plain Layout
7101 s
7102 \end_layout
7103
7104 \end_inset
7105 </cell>
7106 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7107 \begin_inset Text
7108
7109 \begin_layout Plain Layout
7110 s
7111 \end_layout
7112
7113 \end_inset
7114 </cell>
7115 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7116 \begin_inset Text
7117
7118 \begin_layout Plain Layout
7119 s
7120 \end_layout
7121
7122 \end_inset
7123 </cell>
7124 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7125 \begin_inset Text
7126
7127 \begin_layout Plain Layout
7128 asd
7129 \end_layout
7130
7131 \end_inset
7132 </cell>
7133 </row>
7134 <row>
7135 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7136 \begin_inset Text
7137
7138 \begin_layout Plain Layout
7139 asd
7140 \end_layout
7141
7142 \end_inset
7143 </cell>
7144 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7145 \begin_inset Text
7146
7147 \begin_layout Plain Layout
7148 s
7149 \end_layout
7150
7151 \end_inset
7152 </cell>
7153 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7154 \begin_inset Text
7155
7156 \begin_layout Plain Layout
7157 s
7158 \end_layout
7159
7160 \end_inset
7161 </cell>
7162 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7163 \begin_inset Text
7164
7165 \begin_layout Plain Layout
7166 s
7167 \end_layout
7168
7169 \end_inset
7170 </cell>
7171 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7172 \begin_inset Text
7173
7174 \begin_layout Plain Layout
7175 asd
7176 \end_layout
7177
7178 \end_inset
7179 </cell>
7180 </row>
7181 <row>
7182 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7183 \begin_inset Text
7184
7185 \begin_layout Plain Layout
7186 asd
7187 \end_layout
7188
7189 \end_inset
7190 </cell>
7191 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7192 \begin_inset Text
7193
7194 \begin_layout Plain Layout
7195 s
7196 \end_layout
7197
7198 \end_inset
7199 </cell>
7200 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7201 \begin_inset Text
7202
7203 \begin_layout Plain Layout
7204 s
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 s
7214 \end_layout
7215
7216 \end_inset
7217 </cell>
7218 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7219 \begin_inset Text
7220
7221 \begin_layout Plain Layout
7222 asd
7223 \end_layout
7224
7225 \end_inset
7226 </cell>
7227 </row>
7228 <row>
7229 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7230 \begin_inset Text
7231
7232 \begin_layout Plain Layout
7233 asd
7234 \end_layout
7235
7236 \end_inset
7237 </cell>
7238 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7239 \begin_inset Text
7240
7241 \begin_layout Plain Layout
7242 sad
7243 \end_layout
7244
7245 \end_inset
7246 </cell>
7247 <cell alignment="center" valignment="top" topline="true" bottomline="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" bottomline="true" leftline="true" usebox="none">
7257 \begin_inset Text
7258
7259 \begin_layout Plain Layout
7260 asd
7261 \end_layout
7262
7263 \end_inset
7264 </cell>
7265 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7266 \begin_inset Text
7267
7268 \begin_layout Plain Layout
7269 asd
7270 \end_layout
7271
7272 \end_inset
7273 </cell>
7274 </row>
7275 </lyxtabular>
7276
7277 \end_inset
7278
7279
7280 \begin_inset ERT
7281 status collapsed
7282
7283 \begin_layout Plain Layout
7284
7285
7286 \backslash
7287 setlength{
7288 \backslash
7289 LTcapwidth}{4in}
7290 \end_layout
7291
7292 \end_inset
7293
7294
7295 \begin_inset Note Note
7296 status collapsed
7297
7298 \begin_layout Plain Layout
7299 Beschriftungsbreite zurücksetzen
7300 \end_layout
7301
7302 \end_inset
7303
7304
7305 \end_layout
7306
7307 \begin_layout Standard
7308 \begin_inset Note Greyedout
7309 status open
7310
7311 \begin_layout Plain Layout
7312
7313 \series bold
7314 Achtung:
7315 \series default
7316  Wenn das LaTeX-Paket 
7317 \series bold
7318 caption
7319 \series default
7320
7321 \begin_inset Index idx
7322 status collapsed
7323
7324 \begin_layout Plain Layout
7325 LaTeX-Pakete ! caption
7326 \end_layout
7327
7328 \end_inset
7329
7330  verwendet wird, so wie in diesem Dokument, wird die ganze Seitenbreite
7331  für die Beschriftung verwendet, wenn Sie den voreingestellten Wert von
7332  4
7333 \begin_inset space \thinspace{}
7334 \end_inset
7335
7336 Zoll für 
7337 \series bold
7338
7339 \backslash
7340 LTcapwidth
7341 \series default
7342  benutzen.
7343  Um in diesem Fall eine genau 4
7344 \begin_inset space \thinspace{}
7345 \end_inset
7346
7347 Zoll breite Beschriftung zu erhalten, können Sie entweder einen leicht von
7348  4
7349 \begin_inset space \thinspace{}
7350 \end_inset
7351
7352 Zoll veränderten Wert wie z.
7353 \begin_inset space \thinspace{}
7354 \end_inset
7355
7356 B.
7357  3.99
7358 \begin_inset space \thinspace{}
7359 \end_inset
7360
7361 Zoll verwenden oder den LaTeX-Befehl 
7362 \series bold
7363
7364 \backslash
7365 captionsetup{width=Wert}
7366 \series default
7367  benutzen, der vom 
7368 \series bold
7369 caption
7370 \series default
7371 -Paket bereitgestellt wird.
7372 \end_layout
7373
7374 \end_inset
7375
7376
7377 \end_layout
7378
7379 \begin_layout Subsubsection
7380 Unterschiedliche Titel für Tabellenseiten
7381 \begin_inset Index idx
7382 status collapsed
7383
7384 \begin_layout Plain Layout
7385 Tabellen ! lange ! mehrere Titel
7386 \end_layout
7387
7388 \end_inset
7389
7390
7391 \end_layout
7392
7393 \begin_layout Standard
7394 Wenn die anderen Tabellenseiten einen anderen Titel bekommen sollen als
7395  die erste, müssen Sie die Beschriftung in eine leere Zeile, die als Kopfzeile
7396  definiert wurde, mit diesem TeX-Code Befehl einfügen:
7397 \end_layout
7398
7399 \begin_layout Standard
7400
7401 \series bold
7402
7403 \backslash
7404 caption*{Beschriftung}
7405 \backslash
7406
7407 \backslash
7408 %
7409 \end_layout
7410
7411 \begin_layout Standard
7412 Tabelle
7413 \begin_inset space ~
7414 \end_inset
7415
7416
7417 \begin_inset CommandInset ref
7418 LatexCommand ref
7419 reference "tab:DiffCaptions"
7420
7421 \end_inset
7422
7423  ist ein Beispiel für eine lange Tabelle mit unterschiedlichen Titeln und
7424  ohne Tabellennummer auf der zweiten Seite.
7425 \end_layout
7426
7427 \begin_layout Standard
7428 \align center
7429 \begin_inset Tabular
7430 <lyxtabular version="3" rows="59" columns="3">
7431 <features islongtable="true" lastFootEmpty="true" longtabularalignment="center">
7432 <column alignment="left" valignment="top" width="0cm">
7433 <column alignment="left" valignment="top" width="0pt">
7434 <column alignment="right" valignment="top" width="0pt">
7435 <row caption="true">
7436 <cell multicolumn="1" alignment="left" valignment="top" usebox="none">
7437 \begin_inset Text
7438
7439 \begin_layout Plain Layout
7440 \begin_inset Caption
7441
7442 \begin_layout Plain Layout
7443 Telefonliste
7444 \begin_inset CommandInset label
7445 LatexCommand label
7446 name "tab:DiffCaptions"
7447
7448 \end_inset
7449
7450
7451 \begin_inset Argument
7452 status collapsed
7453
7454 \begin_layout Plain Layout
7455 Telefonliste
7456 \end_layout
7457
7458 \end_inset
7459
7460
7461 \end_layout
7462
7463 \end_inset
7464
7465
7466 \end_layout
7467
7468 \end_inset
7469 </cell>
7470 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7471 \begin_inset Text
7472
7473 \begin_layout Plain Layout
7474
7475 \end_layout
7476
7477 \end_inset
7478 </cell>
7479 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7480 \begin_inset Text
7481
7482 \begin_layout Plain Layout
7483
7484 \end_layout
7485
7486 \end_inset
7487 </cell>
7488 </row>
7489 <row endfirsthead="true">
7490 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7491 \begin_inset Text
7492
7493 \begin_layout Plain Layout
7494
7495 \series bold
7496 Telefonliste (ignoriere die Namen)
7497 \end_layout
7498
7499 \end_inset
7500 </cell>
7501 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7502 \begin_inset Text
7503
7504 \begin_layout Plain Layout
7505
7506 \end_layout
7507
7508 \end_inset
7509 </cell>
7510 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7511 \begin_inset Text
7512
7513 \begin_layout Plain Layout
7514
7515 \end_layout
7516
7517 \end_inset
7518 </cell>
7519 </row>
7520 <row endfirsthead="true">
7521 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
7522 \begin_inset Text
7523
7524 \begin_layout Plain Layout
7525
7526 \series bold
7527 NAME
7528 \end_layout
7529
7530 \end_inset
7531 </cell>
7532 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
7533 \begin_inset Text
7534
7535 \begin_layout Plain Layout
7536
7537 \end_layout
7538
7539 \end_inset
7540 </cell>
7541 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
7542 \begin_inset Text
7543
7544 \begin_layout Plain Layout
7545
7546 \series bold
7547 TEL.
7548 \end_layout
7549
7550 \end_inset
7551 </cell>
7552 </row>
7553 <row endhead="true">
7554 <cell alignment="center" valignment="top" leftline="true" usebox="none">
7555 \begin_inset Text
7556
7557 \begin_layout Plain Layout
7558 \begin_inset ERT
7559 status open
7560
7561 \begin_layout Plain Layout
7562
7563
7564 \backslash
7565 caption*{Fortsetzung der Telefonliste}
7566 \backslash
7567
7568 \backslash
7569 %
7570 \end_layout
7571
7572 \end_inset
7573
7574
7575 \end_layout
7576
7577 \end_inset
7578 </cell>
7579 <cell alignment="center" valignment="top" rightline="true" usebox="none">
7580 \begin_inset Text
7581
7582 \begin_layout Plain Layout
7583
7584 \end_layout
7585
7586 \end_inset
7587 </cell>
7588 <cell alignment="center" valignment="top" rightline="true" usebox="none">
7589 \begin_inset Text
7590
7591 \begin_layout Plain Layout
7592
7593 \end_layout
7594
7595 \end_inset
7596 </cell>
7597 </row>
7598 <row endhead="true">
7599 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7600 \begin_inset Text
7601
7602 \begin_layout Plain Layout
7603
7604 \series bold
7605 Telefonliste
7606 \end_layout
7607
7608 \end_inset
7609 </cell>
7610 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
7611 \begin_inset Text
7612
7613 \begin_layout Plain Layout
7614
7615 \end_layout
7616
7617 \end_inset
7618 </cell>
7619 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7620 \begin_inset Text
7621
7622 \begin_layout Plain Layout
7623
7624 \end_layout
7625
7626 \end_inset
7627 </cell>
7628 </row>
7629 <row endhead="true">
7630 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
7631 \begin_inset Text
7632
7633 \begin_layout Plain Layout
7634
7635 \series bold
7636 NAME
7637 \end_layout
7638
7639 \end_inset
7640 </cell>
7641 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
7642 \begin_inset Text
7643
7644 \begin_layout Plain Layout
7645
7646 \end_layout
7647
7648 \end_inset
7649 </cell>
7650 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
7651 \begin_inset Text
7652
7653 \begin_layout Plain Layout
7654
7655 \series bold
7656 TEL.
7657 \end_layout
7658
7659 \end_inset
7660 </cell>
7661 </row>
7662 <row endfoot="true">
7663 <cell multicolumn="1" alignment="right" valignment="top" usebox="none">
7664 \begin_inset Text
7665
7666 \begin_layout Plain Layout
7667 wird fortgesetzt\SpecialChar \ldots{}
7668
7669 \end_layout
7670
7671 \end_inset
7672 </cell>
7673 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
7674 \begin_inset Text
7675
7676 \begin_layout Plain Layout
7677
7678 \end_layout
7679
7680 \end_inset
7681 </cell>
7682 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7683 \begin_inset Text
7684
7685 \begin_layout Plain Layout
7686
7687 \end_layout
7688
7689 \end_inset
7690 </cell>
7691 </row>
7692 <row>
7693 <cell alignment="center" valignment="top" leftline="true" usebox="none">
7694 \begin_inset Text
7695
7696 \begin_layout Plain Layout
7697
7698 \series bold
7699 Annovi
7700 \end_layout
7701
7702 \end_inset
7703 </cell>
7704 <cell alignment="center" valignment="top" rightline="true" usebox="none">
7705 \begin_inset Text
7706
7707 \begin_layout Plain Layout
7708 Silvia
7709 \end_layout
7710
7711 \end_inset
7712 </cell>
7713 <cell alignment="right" valignment="top" rightline="true" usebox="none">
7714 \begin_inset Text
7715
7716 \begin_layout Plain Layout
7717 111
7718 \end_layout
7719
7720 \end_inset
7721 </cell>
7722 </row>
7723 <row>
7724 <cell alignment="center" valignment="top" leftline="true" usebox="none">
7725 \begin_inset Text
7726
7727 \begin_layout Plain Layout
7728
7729 \series bold
7730 Bertoli
7731 \end_layout
7732
7733 \end_inset
7734 </cell>
7735 <cell alignment="center" valignment="top" rightline="true" usebox="none">
7736 \begin_inset Text
7737
7738 \begin_layout Plain Layout
7739 Stefano
7740 \end_layout
7741
7742 \end_inset
7743 </cell>
7744 <cell alignment="center" valignment="top" rightline="true" usebox="none">
7745 \begin_inset Text
7746
7747 \begin_layout Plain Layout
7748 111
7749 \end_layout
7750
7751 \end_inset
7752 </cell>
7753 </row>
7754 <row>
7755 <cell alignment="center" valignment="top" leftline="true" usebox="none">
7756 \begin_inset Text
7757
7758 \begin_layout Plain Layout
7759
7760 \series bold
7761 Bozzi
7762 \end_layout
7763
7764 \end_inset
7765 </cell>
7766 <cell alignment="center" valignment="top" rightline="true" usebox="none">
7767 \begin_inset Text
7768
7769 \begin_layout Plain Layout
7770 Walter
7771 \end_layout
7772
7773 \end_inset
7774 </cell>
7775 <cell alignment="center" valignment="top" rightline="true" usebox="none">
7776 \begin_inset Text
7777
7778 \begin_layout Plain Layout
7779 111
7780 \end_layout
7781
7782 \end_inset
7783 </cell>
7784 </row>
7785 <row>
7786 <cell alignment="center" valignment="top" leftline="true" usebox="none">
7787 \begin_inset Text
7788
7789 \begin_layout Plain Layout
7790
7791 \series bold
7792 Cachia
7793 \end_layout
7794
7795 \end_inset
7796 </cell>
7797 <cell alignment="center" valignment="top" rightline="true" usebox="none">
7798 \begin_inset Text
7799
7800 \begin_layout Plain Layout
7801 Maria
7802 \end_layout
7803
7804 \end_inset
7805 </cell>
7806 <cell alignment="center" valignment="top" rightline="true" usebox="none">
7807 \begin_inset Text
7808
7809 \begin_layout Plain Layout
7810 111
7811 \end_layout
7812
7813 \end_inset
7814 </cell>
7815 </row>
7816 <row>
7817 <cell alignment="center" valignment="top" leftline="true" usebox="none">
7818 \begin_inset Text
7819
7820 \begin_layout Plain Layout
7821
7822 \series bold
7823 Cachia
7824 \end_layout
7825
7826 \end_inset
7827 </cell>
7828 <cell alignment="center" valignment="top" rightline="true" usebox="none">
7829 \begin_inset Text
7830
7831 \begin_layout Plain Layout
7832 Maurizio
7833 \end_layout
7834
7835 \end_inset
7836 </cell>
7837 <cell alignment="center" valignment="top" rightline="true" usebox="none">
7838 \begin_inset Text
7839
7840 \begin_layout Plain Layout
7841 111
7842 \end_layout
7843
7844 \end_inset
7845 </cell>
7846 </row>
7847 <row>
7848 <cell alignment="center" valignment="top" leftline="true" usebox="none">
7849 \begin_inset Text
7850
7851 \begin_layout Plain Layout
7852
7853 \series bold
7854 Cinquemani
7855 \end_layout
7856
7857 \end_inset
7858 </cell>
7859 <cell alignment="center" valignment="top" rightline="true" usebox="none">
7860 \begin_inset Text
7861
7862 \begin_layout Plain Layout
7863 Giusi
7864 \end_layout
7865
7866 \end_inset
7867 </cell>
7868 <cell alignment="center" valignment="top" rightline="true" usebox="none">
7869 \begin_inset Text
7870
7871 \begin_layout Plain Layout
7872 111
7873 \end_layout
7874
7875 \end_inset
7876 </cell>
7877 </row>
7878 <row>
7879 <cell alignment="center" valignment="top" leftline="true" usebox="none">
7880 \begin_inset Text
7881
7882 \begin_layout Plain Layout
7883
7884 \series bold
7885 Colin
7886 \end_layout
7887
7888 \end_inset
7889 </cell>
7890 <cell alignment="center" valignment="top" rightline="true" usebox="none">
7891 \begin_inset Text
7892
7893 \begin_layout Plain Layout
7894 Bernard
7895 \end_layout
7896
7897 \end_inset
7898 </cell>
7899 <cell alignment="center" valignment="top" rightline="true" usebox="none">
7900 \begin_inset Text
7901
7902 \begin_layout Plain Layout
7903 111
7904 \end_layout
7905
7906 \end_inset
7907 </cell>
7908 </row>
7909 <row>
7910 <cell alignment="center" valignment="top" leftline="true" usebox="none">
7911 \begin_inset Text
7912
7913 \begin_layout Plain Layout
7914
7915 \series bold
7916 Concli
7917 \end_layout
7918
7919 \end_inset
7920 </cell>
7921 <cell alignment="center" valignment="top" rightline="true" usebox="none">
7922 \begin_inset Text
7923
7924 \begin_layout Plain Layout
7925 Gianfranco
7926 \end_layout
7927
7928 \end_inset
7929 </cell>
7930 <cell alignment="center" valignment="top" rightline="true" usebox="none">
7931 \begin_inset Text
7932
7933 \begin_layout Plain Layout
7934 111
7935 \end_layout
7936
7937 \end_inset
7938 </cell>
7939 </row>
7940 <row>
7941 <cell alignment="center" valignment="top" leftline="true" usebox="none">
7942 \begin_inset Text
7943
7944 \begin_layout Plain Layout
7945
7946 \series bold
7947 Dal Bosco
7948 \end_layout
7949
7950 \end_inset
7951 </cell>
7952 <cell alignment="center" valignment="top" rightline="true" usebox="none">
7953 \begin_inset Text
7954
7955 \begin_layout Plain Layout
7956 Carolina
7957 \end_layout
7958
7959 \end_inset
7960 </cell>
7961 <cell alignment="center" valignment="top" rightline="true" usebox="none">
7962 \begin_inset Text
7963
7964 \begin_layout Plain Layout
7965 111
7966 \end_layout
7967
7968 \end_inset
7969 </cell>
7970 </row>
7971 <row>
7972 <cell alignment="center" valignment="top" leftline="true" usebox="none">
7973 \begin_inset Text
7974
7975 \begin_layout Plain Layout
7976
7977 \series bold
7978 Dalpiaz
7979 \end_layout
7980
7981 \end_inset
7982 </cell>
7983 <cell alignment="center" valignment="top" rightline="true" usebox="none">
7984 \begin_inset Text
7985
7986 \begin_layout Plain Layout
7987 Annamaria
7988 \end_layout
7989
7990 \end_inset
7991 </cell>
7992 <cell alignment="center" valignment="top" rightline="true" usebox="none">
7993 \begin_inset Text
7994
7995 \begin_layout Plain Layout
7996 111
7997 \end_layout
7998
7999 \end_inset
8000 </cell>
8001 </row>
8002 <row>
8003 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8004 \begin_inset Text
8005
8006 \begin_layout Plain Layout
8007
8008 \series bold
8009 Feliciello
8010 \end_layout
8011
8012 \end_inset
8013 </cell>
8014 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8015 \begin_inset Text
8016
8017 \begin_layout Plain Layout
8018 Domenico
8019 \end_layout
8020
8021 \end_inset
8022 </cell>
8023 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8024 \begin_inset Text
8025
8026 \begin_layout Plain Layout
8027 111
8028 \end_layout
8029
8030 \end_inset
8031 </cell>
8032 </row>
8033 <row>
8034 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8035 \begin_inset Text
8036
8037 \begin_layout Plain Layout
8038
8039 \series bold
8040 Focarelli
8041 \end_layout
8042
8043 \end_inset
8044 </cell>
8045 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8046 \begin_inset Text
8047
8048 \begin_layout Plain Layout
8049 Paola
8050 \end_layout
8051
8052 \end_inset
8053 </cell>
8054 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8055 \begin_inset Text
8056
8057 \begin_layout Plain Layout
8058 111
8059 \end_layout
8060
8061 \end_inset
8062 </cell>
8063 </row>
8064 <row>
8065 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8066 \begin_inset Text
8067
8068 \begin_layout Plain Layout
8069
8070 \series bold
8071 Galletti
8072 \end_layout
8073
8074 \end_inset
8075 </cell>
8076 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8077 \begin_inset Text
8078
8079 \begin_layout Plain Layout
8080 Oreste
8081 \end_layout
8082
8083 \end_inset
8084 </cell>
8085 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8086 \begin_inset Text
8087
8088 \begin_layout Plain Layout
8089 111
8090 \end_layout
8091
8092 \end_inset
8093 </cell>
8094 </row>
8095 <row>
8096 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8097 \begin_inset Text
8098
8099 \begin_layout Plain Layout
8100
8101 \series bold
8102 Gasparini
8103 \end_layout
8104
8105 \end_inset
8106 </cell>
8107 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8108 \begin_inset Text
8109
8110 \begin_layout Plain Layout
8111 Franca
8112 \end_layout
8113
8114 \end_inset
8115 </cell>
8116 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8117 \begin_inset Text
8118
8119 \begin_layout Plain Layout
8120 111
8121 \end_layout
8122
8123 \end_inset
8124 </cell>
8125 </row>
8126 <row>
8127 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8128 \begin_inset Text
8129
8130 \begin_layout Plain Layout
8131
8132 \series bold
8133 Rizzardi
8134 \series default
8135
8136 \begin_inset Foot
8137 status open
8138
8139 \begin_layout Plain Layout
8140 Beispielfußnote
8141 \end_layout
8142
8143 \end_inset
8144
8145
8146 \end_layout
8147
8148 \end_inset
8149 </cell>
8150 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8151 \begin_inset Text
8152
8153 \begin_layout Plain Layout
8154 Paola
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 111
8164 \end_layout
8165
8166 \end_inset
8167 </cell>
8168 </row>
8169 <row>
8170 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8171 \begin_inset Text
8172
8173 \begin_layout Plain Layout
8174
8175 \series bold
8176 Lassini
8177 \end_layout
8178
8179 \end_inset
8180 </cell>
8181 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8182 \begin_inset Text
8183
8184 \begin_layout Plain Layout
8185 Giancarlo
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 111
8195 \end_layout
8196
8197 \end_inset
8198 </cell>
8199 </row>
8200 <row>
8201 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8202 \begin_inset Text
8203
8204 \begin_layout Plain Layout
8205
8206 \series bold
8207 Malfatti
8208 \end_layout
8209
8210 \end_inset
8211 </cell>
8212 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8213 \begin_inset Text
8214
8215 \begin_layout Plain Layout
8216 Luciano
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 111
8226 \end_layout
8227
8228 \end_inset
8229 </cell>
8230 </row>
8231 <row>
8232 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8233 \begin_inset Text
8234
8235 \begin_layout Plain Layout
8236
8237 \series bold
8238 Malfatti
8239 \end_layout
8240
8241 \end_inset
8242 </cell>
8243 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8244 \begin_inset Text
8245
8246 \begin_layout Plain Layout
8247 Valeriano
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 111
8257 \end_layout
8258
8259 \end_inset
8260 </cell>
8261 </row>
8262 <row>
8263 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8264 \begin_inset Text
8265
8266 \begin_layout Plain Layout
8267
8268 \series bold
8269 Meneguzzo
8270 \end_layout
8271
8272 \end_inset
8273 </cell>
8274 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8275 \begin_inset Text
8276
8277 \begin_layout Plain Layout
8278 Roberto
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 111
8288 \end_layout
8289
8290 \end_inset
8291 </cell>
8292 </row>
8293 <row>
8294 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8295 \begin_inset Text
8296
8297 \begin_layout Plain Layout
8298
8299 \series bold
8300 Mezzadra
8301 \end_layout
8302
8303 \end_inset
8304 </cell>
8305 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8306 \begin_inset Text
8307
8308 \begin_layout Plain Layout
8309 Roberto
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 111
8319 \end_layout
8320
8321 \end_inset
8322 </cell>
8323 </row>
8324 <row>
8325 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8326 \begin_inset Text
8327
8328 \begin_layout Plain Layout
8329
8330 \series bold
8331 Pirpamer
8332 \end_layout
8333
8334 \end_inset
8335 </cell>
8336 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8337 \begin_inset Text
8338
8339 \begin_layout Plain Layout
8340 Erich
8341 \end_layout
8342
8343 \end_inset
8344 </cell>
8345 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8346 \begin_inset Text
8347
8348 \begin_layout Plain Layout
8349 111
8350 \end_layout
8351
8352 \end_inset
8353 </cell>
8354 </row>
8355 <row>
8356 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8357 \begin_inset Text
8358
8359 \begin_layout Plain Layout
8360
8361 \series bold
8362 Pochiesa
8363 \end_layout
8364
8365 \end_inset
8366 </cell>
8367 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8368 \begin_inset Text
8369
8370 \begin_layout Plain Layout
8371 Paolo
8372 \end_layout
8373
8374 \end_inset
8375 </cell>
8376 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8377 \begin_inset Text
8378
8379 \begin_layout Plain Layout
8380 111, 222
8381 \end_layout
8382
8383 \end_inset
8384 </cell>
8385 </row>
8386 <row>
8387 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8388 \begin_inset Text
8389
8390 \begin_layout Plain Layout
8391
8392 \series bold
8393 Radina
8394 \end_layout
8395
8396 \end_inset
8397 </cell>
8398 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8399 \begin_inset Text
8400
8401 \begin_layout Plain Layout
8402 Claudio
8403 \end_layout
8404
8405 \end_inset
8406 </cell>
8407 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8408 \begin_inset Text
8409
8410 \begin_layout Plain Layout
8411 111
8412 \end_layout
8413
8414 \end_inset
8415 </cell>
8416 </row>
8417 <row>
8418 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8419 \begin_inset Text
8420
8421 \begin_layout Plain Layout
8422
8423 \series bold
8424 Stuffer
8425 \end_layout
8426
8427 \end_inset
8428 </cell>
8429 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8430 \begin_inset Text
8431
8432 \begin_layout Plain Layout
8433 Oskar
8434 \end_layout
8435
8436 \end_inset
8437 </cell>
8438 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8439 \begin_inset Text
8440
8441 \begin_layout Plain Layout
8442 111
8443 \end_layout
8444
8445 \end_inset
8446 </cell>
8447 </row>
8448 <row>
8449 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8450 \begin_inset Text
8451
8452 \begin_layout Plain Layout
8453
8454 \series bold
8455 Tacchelli
8456 \end_layout
8457
8458 \end_inset
8459 </cell>
8460 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8461 \begin_inset Text
8462
8463 \begin_layout Plain Layout
8464 Ugo
8465 \end_layout
8466
8467 \end_inset
8468 </cell>
8469 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8470 \begin_inset Text
8471
8472 \begin_layout Plain Layout
8473 111
8474 \end_layout
8475
8476 \end_inset
8477 </cell>
8478 </row>
8479 <row>
8480 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8481 \begin_inset Text
8482
8483 \begin_layout Plain Layout
8484
8485 \series bold
8486 Tezzele
8487 \end_layout
8488
8489 \end_inset
8490 </cell>
8491 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8492 \begin_inset Text
8493
8494 \begin_layout Plain Layout
8495 Margit
8496 \end_layout
8497
8498 \end_inset
8499 </cell>
8500 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8501 \begin_inset Text
8502
8503 \begin_layout Plain Layout
8504 111
8505 \end_layout
8506
8507 \end_inset
8508 </cell>
8509 </row>
8510 <row>
8511 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8512 \begin_inset Text
8513
8514 \begin_layout Plain Layout
8515
8516 \series bold
8517 Unterkalmsteiner
8518 \end_layout
8519
8520 \end_inset
8521 </cell>
8522 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8523 \begin_inset Text
8524
8525 \begin_layout Plain Layout
8526 Frieda
8527 \end_layout
8528
8529 \end_inset
8530 </cell>
8531 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8532 \begin_inset Text
8533
8534 \begin_layout Plain Layout
8535 111
8536 \end_layout
8537
8538 \end_inset
8539 </cell>
8540 </row>
8541 <row>
8542 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8543 \begin_inset Text
8544
8545 \begin_layout Plain Layout
8546
8547 \series bold
8548 Vieider
8549 \end_layout
8550
8551 \end_inset
8552 </cell>
8553 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8554 \begin_inset Text
8555
8556 \begin_layout Plain Layout
8557 Hilde
8558 \end_layout
8559
8560 \end_inset
8561 </cell>
8562 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8563 \begin_inset Text
8564
8565 \begin_layout Plain Layout
8566 111
8567 \end_layout
8568
8569 \end_inset
8570 </cell>
8571 </row>
8572 <row>
8573 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8574 \begin_inset Text
8575
8576 \begin_layout Plain Layout
8577
8578 \series bold
8579 Vigna
8580 \end_layout
8581
8582 \end_inset
8583 </cell>
8584 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8585 \begin_inset Text
8586
8587 \begin_layout Plain Layout
8588 Jürgen
8589 \end_layout
8590
8591 \end_inset
8592 </cell>
8593 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8594 \begin_inset Text
8595
8596 \begin_layout Plain Layout
8597 111
8598 \end_layout
8599
8600 \end_inset
8601 </cell>
8602 </row>
8603 <row>
8604 <cell alignment="center" valignment="top" leftline="true" usebox="none">
8605 \begin_inset Text
8606
8607 \begin_layout Plain Layout
8608
8609 \series bold
8610 Weber
8611 \end_layout
8612
8613 \end_inset
8614 </cell>
8615 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8616 \begin_inset Text
8617
8618 \begin_layout Plain Layout
8619 Maurizio
8620 \end_layout
8621
8622 \end_inset
8623 </cell>
8624 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8625 \begin_inset Text
8626
8627 \begin_layout Plain Layout
8628 111
8629 \end_layout
8630
8631 \end_inset
8632 </cell>
8633 </row>
8634 <row>
8635 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8636 \begin_inset Text
8637
8638 \begin_layout Plain Layout
8639
8640 \series bold
8641 Winkler
8642 \end_layout
8643
8644 \end_inset
8645 </cell>
8646 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
8647 \begin_inset Text
8648
8649 \begin_layout Plain Layout
8650 Franz
8651 \end_layout
8652
8653 \end_inset
8654 </cell>
8655 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
8656 \begin_inset Text
8657
8658 \begin_layout Plain Layout
8659 111
8660 \end_layout
8661
8662 \end_inset
8663 </cell>
8664 </row>
8665 <row>
8666 <cell multicolumn="1" alignment="left" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8667 \begin_inset Text
8668
8669 \begin_layout Plain Layout
8670  
8671 \end_layout
8672
8673 \end_inset
8674 </cell>
8675 <cell multicolumn="2" alignment="center" valignment="top" topline="true" usebox="none">
8676 \begin_inset Text
8677
8678 \begin_layout Plain Layout
8679
8680 \end_layout
8681
8682 \end_inset
8683 </cell>
8684 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8685 \begin_inset Text
8686
8687 \begin_layout Plain Layout
8688
8689 \end_layout
8690
8691 \end_inset
8692 </cell>
8693 </row>
8694 <row>
8695 <cell alignment="left" valignment="top" leftline="true" usebox="none">
8696 \begin_inset Text
8697
8698 \begin_layout Plain Layout
8699
8700 \series bold
8701 Annovi
8702 \end_layout
8703
8704 \end_inset
8705 </cell>
8706 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8707 \begin_inset Text
8708
8709 \begin_layout Plain Layout
8710 Silvia
8711 \end_layout
8712
8713 \end_inset
8714 </cell>
8715 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8716 \begin_inset Text
8717
8718 \begin_layout Plain Layout
8719 555
8720 \end_layout
8721
8722 \end_inset
8723 </cell>
8724 </row>
8725 <row>
8726 <cell alignment="left" valignment="top" leftline="true" usebox="none">
8727 \begin_inset Text
8728
8729 \begin_layout Plain Layout
8730
8731 \series bold
8732 Bertoli
8733 \end_layout
8734
8735 \end_inset
8736 </cell>
8737 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8738 \begin_inset Text
8739
8740 \begin_layout Plain Layout
8741 Stefano
8742 \end_layout
8743
8744 \end_inset
8745 </cell>
8746 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8747 \begin_inset Text
8748
8749 \begin_layout Plain Layout
8750 555
8751 \end_layout
8752
8753 \end_inset
8754 </cell>
8755 </row>
8756 <row>
8757 <cell alignment="left" valignment="top" leftline="true" usebox="none">
8758 \begin_inset Text
8759
8760 \begin_layout Plain Layout
8761
8762 \series bold
8763 Bozzi
8764 \end_layout
8765
8766 \end_inset
8767 </cell>
8768 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8769 \begin_inset Text
8770
8771 \begin_layout Plain Layout
8772 Walter
8773 \end_layout
8774
8775 \end_inset
8776 </cell>
8777 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8778 \begin_inset Text
8779
8780 \begin_layout Plain Layout
8781 555
8782 \end_layout
8783
8784 \end_inset
8785 </cell>
8786 </row>
8787 <row>
8788 <cell alignment="left" valignment="top" leftline="true" usebox="none">
8789 \begin_inset Text
8790
8791 \begin_layout Plain Layout
8792
8793 \series bold
8794 Cachia
8795 \end_layout
8796
8797 \end_inset
8798 </cell>
8799 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8800 \begin_inset Text
8801
8802 \begin_layout Plain Layout
8803 Maria
8804 \end_layout
8805
8806 \end_inset
8807 </cell>
8808 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8809 \begin_inset Text
8810
8811 \begin_layout Plain Layout
8812 555
8813 \end_layout
8814
8815 \end_inset
8816 </cell>
8817 </row>
8818 <row>
8819 <cell alignment="left" valignment="top" leftline="true" usebox="none">
8820 \begin_inset Text
8821
8822 \begin_layout Plain Layout
8823
8824 \series bold
8825 Cachia
8826 \end_layout
8827
8828 \end_inset
8829 </cell>
8830 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8831 \begin_inset Text
8832
8833 \begin_layout Plain Layout
8834 Maurizio
8835 \end_layout
8836
8837 \end_inset
8838 </cell>
8839 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8840 \begin_inset Text
8841
8842 \begin_layout Plain Layout
8843 555
8844 \end_layout
8845
8846 \end_inset
8847 </cell>
8848 </row>
8849 <row>
8850 <cell alignment="left" valignment="top" leftline="true" usebox="none">
8851 \begin_inset Text
8852
8853 \begin_layout Plain Layout
8854
8855 \series bold
8856 Cinquemani
8857 \end_layout
8858
8859 \end_inset
8860 </cell>
8861 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8862 \begin_inset Text
8863
8864 \begin_layout Plain Layout
8865 Giusi
8866 \end_layout
8867
8868 \end_inset
8869 </cell>
8870 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8871 \begin_inset Text
8872
8873 \begin_layout Plain Layout
8874 555
8875 \end_layout
8876
8877 \end_inset
8878 </cell>
8879 </row>
8880 <row>
8881 <cell alignment="left" valignment="top" leftline="true" usebox="none">
8882 \begin_inset Text
8883
8884 \begin_layout Plain Layout
8885
8886 \series bold
8887 Colin
8888 \end_layout
8889
8890 \end_inset
8891 </cell>
8892 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8893 \begin_inset Text
8894
8895 \begin_layout Plain Layout
8896 Bernard
8897 \end_layout
8898
8899 \end_inset
8900 </cell>
8901 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8902 \begin_inset Text
8903
8904 \begin_layout Plain Layout
8905 555
8906 \end_layout
8907
8908 \end_inset
8909 </cell>
8910 </row>
8911 <row>
8912 <cell alignment="left" valignment="top" leftline="true" usebox="none">
8913 \begin_inset Text
8914
8915 \begin_layout Plain Layout
8916
8917 \series bold
8918 Concli
8919 \end_layout
8920
8921 \end_inset
8922 </cell>
8923 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8924 \begin_inset Text
8925
8926 \begin_layout Plain Layout
8927 Gianfranco
8928 \end_layout
8929
8930 \end_inset
8931 </cell>
8932 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8933 \begin_inset Text
8934
8935 \begin_layout Plain Layout
8936 555
8937 \end_layout
8938
8939 \end_inset
8940 </cell>
8941 </row>
8942 <row>
8943 <cell alignment="left" valignment="top" leftline="true" usebox="none">
8944 \begin_inset Text
8945
8946 \begin_layout Plain Layout
8947
8948 \series bold
8949 Dal Bosco
8950 \end_layout
8951
8952 \end_inset
8953 </cell>
8954 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8955 \begin_inset Text
8956
8957 \begin_layout Plain Layout
8958 Carolina
8959 \end_layout
8960
8961 \end_inset
8962 </cell>
8963 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8964 \begin_inset Text
8965
8966 \begin_layout Plain Layout
8967 555
8968 \end_layout
8969
8970 \end_inset
8971 </cell>
8972 </row>
8973 <row>
8974 <cell alignment="left" valignment="top" leftline="true" usebox="none">
8975 \begin_inset Text
8976
8977 \begin_layout Plain Layout
8978
8979 \series bold
8980 Dalpiaz
8981 \end_layout
8982
8983 \end_inset
8984 </cell>
8985 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8986 \begin_inset Text
8987
8988 \begin_layout Plain Layout
8989 Annamaria
8990 \end_layout
8991
8992 \end_inset
8993 </cell>
8994 <cell alignment="center" valignment="top" rightline="true" usebox="none">
8995 \begin_inset Text
8996
8997 \begin_layout Plain Layout
8998 555
8999 \end_layout
9000
9001 \end_inset
9002 </cell>
9003 </row>
9004 <row>
9005 <cell alignment="left" valignment="top" leftline="true" usebox="none">
9006 \begin_inset Text
9007
9008 \begin_layout Plain Layout
9009
9010 \series bold
9011 Feliciello
9012 \end_layout
9013
9014 \end_inset
9015 </cell>
9016 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9017 \begin_inset Text
9018
9019 \begin_layout Plain Layout
9020 Domenico
9021 \end_layout
9022
9023 \end_inset
9024 </cell>
9025 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9026 \begin_inset Text
9027
9028 \begin_layout Plain Layout
9029 555
9030 \end_layout
9031
9032 \end_inset
9033 </cell>
9034 </row>
9035 <row>
9036 <cell alignment="left" valignment="top" leftline="true" usebox="none">
9037 \begin_inset Text
9038
9039 \begin_layout Plain Layout
9040
9041 \series bold
9042 Focarelli
9043 \end_layout
9044
9045 \end_inset
9046 </cell>
9047 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9048 \begin_inset Text
9049
9050 \begin_layout Plain Layout
9051 Paola
9052 \end_layout
9053
9054 \end_inset
9055 </cell>
9056 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9057 \begin_inset Text
9058
9059 \begin_layout Plain Layout
9060 555
9061 \end_layout
9062
9063 \end_inset
9064 </cell>
9065 </row>
9066 <row>
9067 <cell alignment="left" valignment="top" leftline="true" usebox="none">
9068 \begin_inset Text
9069
9070 \begin_layout Plain Layout
9071
9072 \series bold
9073 Galletti
9074 \end_layout
9075
9076 \end_inset
9077 </cell>
9078 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9079 \begin_inset Text
9080
9081 \begin_layout Plain Layout
9082 Oreste
9083 \end_layout
9084
9085 \end_inset
9086 </cell>
9087 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9088 \begin_inset Text
9089
9090 \begin_layout Plain Layout
9091 555
9092 \end_layout
9093
9094 \end_inset
9095 </cell>
9096 </row>
9097 <row>
9098 <cell alignment="left" valignment="top" leftline="true" usebox="none">
9099 \begin_inset Text
9100
9101 \begin_layout Plain Layout
9102
9103 \series bold
9104 Gasparini
9105 \end_layout
9106
9107 \end_inset
9108 </cell>
9109 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9110 \begin_inset Text
9111
9112 \begin_layout Plain Layout
9113 Franca
9114 \end_layout
9115
9116 \end_inset
9117 </cell>
9118 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9119 \begin_inset Text
9120
9121 \begin_layout Plain Layout
9122 555
9123 \end_layout
9124
9125 \end_inset
9126 </cell>
9127 </row>
9128 <row>
9129 <cell alignment="left" valignment="top" leftline="true" usebox="none">
9130 \begin_inset Text
9131
9132 \begin_layout Plain Layout
9133
9134 \series bold
9135 Rizzardi
9136 \end_layout
9137
9138 \end_inset
9139 </cell>
9140 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9141 \begin_inset Text
9142
9143 \begin_layout Plain Layout
9144 Paola
9145 \end_layout
9146
9147 \end_inset
9148 </cell>
9149 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9150 \begin_inset Text
9151
9152 \begin_layout Plain Layout
9153 555
9154 \end_layout
9155
9156 \end_inset
9157 </cell>
9158 </row>
9159 <row>
9160 <cell alignment="left" valignment="top" leftline="true" usebox="none">
9161 \begin_inset Text
9162
9163 \begin_layout Plain Layout
9164
9165 \series bold
9166 Lassini
9167 \end_layout
9168
9169 \end_inset
9170 </cell>
9171 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9172 \begin_inset Text
9173
9174 \begin_layout Plain Layout
9175 Giancarlo
9176 \end_layout
9177
9178 \end_inset
9179 </cell>
9180 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9181 \begin_inset Text
9182
9183 \begin_layout Plain Layout
9184 555
9185 \end_layout
9186
9187 \end_inset
9188 </cell>
9189 </row>
9190 <row>
9191 <cell alignment="left" valignment="top" leftline="true" usebox="none">
9192 \begin_inset Text
9193
9194 \begin_layout Plain Layout
9195
9196 \series bold
9197 Malfatti
9198 \end_layout
9199
9200 \end_inset
9201 </cell>
9202 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9203 \begin_inset Text
9204
9205 \begin_layout Plain Layout
9206 Luciano
9207 \end_layout
9208
9209 \end_inset
9210 </cell>
9211 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9212 \begin_inset Text
9213
9214 \begin_layout Plain Layout
9215 555
9216 \end_layout
9217
9218 \end_inset
9219 </cell>
9220 </row>
9221 <row>
9222 <cell alignment="left" valignment="top" leftline="true" usebox="none">
9223 \begin_inset Text
9224
9225 \begin_layout Plain Layout
9226
9227 \series bold
9228 Malfatti
9229 \end_layout
9230
9231 \end_inset
9232 </cell>
9233 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9234 \begin_inset Text
9235
9236 \begin_layout Plain Layout
9237 Valeriano
9238 \end_layout
9239
9240 \end_inset
9241 </cell>
9242 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9243 \begin_inset Text
9244
9245 \begin_layout Plain Layout
9246 555
9247 \end_layout
9248
9249 \end_inset
9250 </cell>
9251 </row>
9252 <row>
9253 <cell alignment="left" valignment="top" leftline="true" usebox="none">
9254 \begin_inset Text
9255
9256 \begin_layout Plain Layout
9257
9258 \series bold
9259 Meneguzzo
9260 \end_layout
9261
9262 \end_inset
9263 </cell>
9264 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9265 \begin_inset Text
9266
9267 \begin_layout Plain Layout
9268 Roberto
9269 \end_layout
9270
9271 \end_inset
9272 </cell>
9273 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9274 \begin_inset Text
9275
9276 \begin_layout Plain Layout
9277 555
9278 \end_layout
9279
9280 \end_inset
9281 </cell>
9282 </row>
9283 <row>
9284 <cell alignment="left" valignment="top" bottomline="true" leftline="true" usebox="none">
9285 \begin_inset Text
9286
9287 \begin_layout Plain Layout
9288
9289 \series bold
9290 Mezzadra
9291 \end_layout
9292
9293 \end_inset
9294 </cell>
9295 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
9296 \begin_inset Text
9297
9298 \begin_layout Plain Layout
9299 Roberto
9300 \end_layout
9301
9302 \end_inset
9303 </cell>
9304 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
9305 \begin_inset Text
9306
9307 \begin_layout Plain Layout
9308 555
9309 \end_layout
9310
9311 \end_inset
9312 </cell>
9313 </row>
9314 </lyxtabular>
9315
9316 \end_inset
9317
9318
9319 \end_layout
9320
9321 \begin_layout Section
9322 Weitere Möglichkeiten für 
9323 \family sans
9324 lange Tabelle
9325 \family default
9326 n
9327 \begin_inset CommandInset label
9328 LatexCommand label
9329 name "abs:Special-Longtable-Issues"
9330
9331 \end_inset
9332
9333
9334 \end_layout
9335
9336 \begin_layout Subsection
9337 L
9338 \family sans
9339 ange Tabelle
9340 \family default
9341 n: Berechnung
9342 \begin_inset Index idx
9343 status collapsed
9344
9345 \begin_layout Plain Layout
9346 Tabellen ! lange ! Berechnung
9347 \end_layout
9348
9349 \end_inset
9350
9351
9352 \end_layout
9353
9354 \begin_layout Standard
9355 LaTeX berechnet die Länge von Tabellenseiten und die Seitenumbrüche mit
9356  so genannten 
9357 \emph on
9358 chunks
9359 \emph default
9360  (Brocken).
9361  Chunks sind Tabellenteile, die LaTeX gleichzeitig im Speicher hält.
9362  Aus historischen Gründen wurde der Standardwert auf 20 Tabellenzeilen gesetzt.
9363  Wenn Sie Tabellen benutzen, die über mehrere Seiten gehen, verlangsamt
9364  das die Druckausgabe.
9365  Sie können also die Chunkgröße ohne Gefahr auf Werte zwischen 100-1000
9366  setzen, indem Sie in den LaTeX-Vorspann Ihres Dokumentes folgende Zeile
9367  einfügen:
9368 \end_layout
9369
9370 \begin_layout Standard
9371
9372 \series bold
9373
9374 \backslash
9375 setcounter{LTchunksize}{100}
9376 \end_layout
9377
9378 \begin_layout Subsection
9379 Gleitobjekte und L
9380 \family sans
9381 ange Tabelle
9382 \family default
9383 n
9384 \begin_inset Index idx
9385 status collapsed
9386
9387 \begin_layout Plain Layout
9388 Tabellen ! lange ! und Gleitobjekte
9389 \end_layout
9390
9391 \end_inset
9392
9393
9394 \end_layout
9395
9396 \begin_layout Standard
9397 Es kann Probleme geben, wenn sich auf derselben Seite, auf der eine 
9398 \family sans
9399 lange
9400 \begin_inset space ~
9401 \end_inset
9402
9403 Tabelle
9404 \family default
9405  beginnt, ein Gleitobjekt befindet.
9406  Um das zu vermeiden, können Sie vor der 
9407 \family sans
9408 langen
9409 \begin_inset space ~
9410 \end_inset
9411
9412 Tabellen
9413 \family default
9414  einen manuellen Seitenumbruch
9415 \family sans
9416  Einfügen\SpecialChar \menuseparator
9417 Formatierung\SpecialChar \menuseparator
9418 [Doppel]Seite
9419 \begin_inset space \space{}
9420 \end_inset
9421
9422 leeren
9423 \family default
9424  einfügen, siehe 
9425 \emph on
9426 Benutzerhandbuch
9427 \emph default
9428 .
9429 \end_layout
9430
9431 \begin_layout Subsection
9432 Manuelle Seitenumbrüche
9433 \begin_inset Index idx
9434 status collapsed
9435
9436 \begin_layout Plain Layout
9437 Tabellen ! lange ! manueller Seitenumbruch
9438 \end_layout
9439
9440 \end_inset
9441
9442
9443 \end_layout
9444
9445 \begin_layout Standard
9446 Standardmäßig werden Tabellen nur zwischen Zeilen umgebrochen.
9447  Wenn Sie aber eine Zelle mit mehreren Zeilen haben und die Seite innerhalb
9448  der Zelle umbrechen wollen, fügen Sie den Befehl  
9449 \begin_inset Quotes gld
9450 \end_inset
9451
9452
9453 \series bold
9454
9455 \backslash
9456
9457 \backslash
9458
9459 \series default
9460
9461 \begin_inset Quotes grd
9462 \end_inset
9463
9464  für eine neue Zeile als TeX-Code an der Stelle in der Zelle ein, wo umgebrochen
9465  werden kann.
9466  Vor dem 
9467 \begin_inset Quotes gld
9468 \end_inset
9469
9470
9471 \series bold
9472
9473 \backslash
9474
9475 \backslash
9476
9477 \series default
9478
9479 \begin_inset Quotes grd
9480 \end_inset
9481
9482 -Befehl müssen Sie so viele 
9483 \begin_inset Quotes gld
9484 \end_inset
9485
9486
9487 \series bold
9488 &
9489 \series default
9490
9491 \begin_inset Quotes grd
9492 \end_inset
9493
9494  als TeX-Code einfügen wie noch Spalten in der Zeile folgen.
9495  Mit 
9496 \begin_inset Quotes gld
9497 \end_inset
9498
9499
9500 \series bold
9501 &
9502 \series default
9503
9504 \begin_inset Quotes grd
9505 \end_inset
9506
9507   werden in LaTeX Tabellenzellen getrennt.
9508  Hinter jedes 
9509 \begin_inset Quotes gld
9510 \end_inset
9511
9512
9513 \series bold
9514 &
9515 \series default
9516
9517 \begin_inset Quotes grd
9518 \end_inset
9519
9520  schreiben Sie ebenfalls in TeX-Code den Inhalt der entsprechenden Zelle
9521  und löschen den Inhalt dieser Zellen.
9522 \end_layout
9523
9524 \begin_layout Standard
9525 Hinter dem 
9526 \begin_inset Quotes gld
9527 \end_inset
9528
9529
9530 \series bold
9531
9532 \backslash
9533
9534 \backslash
9535
9536 \series default
9537
9538 \begin_inset Quotes grd
9539 \end_inset
9540
9541 -Befehl müssen Sie so viele 
9542 \begin_inset Quotes gld
9543 \end_inset
9544
9545
9546 \series bold
9547 &
9548 \series default
9549
9550 \begin_inset Quotes grd
9551 \end_inset
9552
9553  als TeX-Code einfügen wie Spalten vor der momentanen Spalte sind.
9554  In Tabelle
9555 \begin_inset space ~
9556 \end_inset
9557
9558
9559 \begin_inset CommandInset ref
9560 LatexCommand ref
9561 reference "tab:ForcedPagebreak"
9562
9563 \end_inset
9564
9565  soll eine Zelle in der zweiten Spalte umgebrochen werden.
9566  Es folgt noch eine weitere Spalte.
9567  Deshalb wurde hinter dem Wort 
9568 \emph on
9569 Castelchiodato, 
9570 \emph default
9571 folgendes eingefügt:
9572 \end_layout
9573
9574 \begin_layout Standard
9575
9576 \series bold
9577 & 111
9578 \backslash
9579
9580 \backslash
9581  
9582 \backslash
9583 newpage
9584 \begin_inset Newline newline
9585 \end_inset
9586
9587 &
9588 \end_layout
9589
9590 \begin_layout Standard
9591 Die 
9592 \begin_inset Quotes gld
9593 \end_inset
9594
9595 111
9596 \begin_inset Quotes grd
9597 \end_inset
9598
9599  in der dritten Spalte wurde gelöscht.
9600  
9601 \series bold
9602
9603 \backslash
9604 newpage
9605 \series default
9606  ist nur erforderlich, wenn ein Seitenumbruch an der Stelle unbedingt erfolgen
9607  soll, ansonsten ist es nur eine Möglichkeit zum Umbruch.
9608  Wenn die Fußzeile Ihrer 
9609 \family sans
9610 langen
9611 \begin_inset space ~
9612 \end_inset
9613
9614 Tabelle
9615 \family default
9616  keine obere Linie besitzt, Sie aber eine wünschen, sollten Sie folgende
9617  Befehle benutzen:
9618 \end_layout
9619
9620 \begin_layout Standard
9621
9622 \series bold
9623 & 111
9624 \backslash
9625
9626 \backslash
9627
9628 \begin_inset Newline newline
9629 \end_inset
9630
9631
9632 \backslash
9633 hline &
9634 \end_layout
9635
9636 \begin_layout Standard
9637 Wenn die Zelle, die umgebrochen werden soll, in der letzten Spalte steht,
9638  muss folgender Befehl als TeX-Code am Anfang der Zelle eingefügt werden:
9639 \end_layout
9640
9641 \begin_layout Standard
9642
9643 \series bold
9644
9645 \backslash
9646 setlength{
9647 \backslash
9648 parfillskip}{0pt}
9649 \end_layout
9650
9651 \begin_layout Standard
9652 Damit wird sichergestellt, dass der Teil auf der neuen Seite in voller Breite
9653  erscheint.
9654 \end_layout
9655
9656 \begin_layout Standard
9657 \align center
9658 \begin_inset Tabular
9659 <lyxtabular version="3" rows="38" columns="3">
9660 <features islongtable="true" lastFootEmpty="true" longtabularalignment="center">
9661 <column alignment="left" valignment="top" width="0cm">
9662 <column alignment="left" valignment="top" width="3cm">
9663 <column alignment="right" valignment="top" width="0pt">
9664 <row caption="true">
9665 <cell multicolumn="1" alignment="left" valignment="top" usebox="none">
9666 \begin_inset Text
9667
9668 \begin_layout Plain Layout
9669 \begin_inset Caption
9670
9671 \begin_layout Plain Layout
9672 Tabelle mit manuellem Seitenumbruch in einer Zelle
9673 \begin_inset CommandInset label
9674 LatexCommand label
9675 name "tab:ForcedPagebreak"
9676
9677 \end_inset
9678
9679
9680 \begin_inset Argument
9681 status collapsed
9682
9683 \begin_layout Plain Layout
9684 Tabelle mit manuellem Seitenumbruch in einer Zelle
9685 \end_layout
9686
9687 \end_inset
9688
9689
9690 \end_layout
9691
9692 \end_inset
9693
9694
9695 \end_layout
9696
9697 \end_inset
9698 </cell>
9699 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9700 \begin_inset Text
9701
9702 \begin_layout Plain Layout
9703
9704 \end_layout
9705
9706 \end_inset
9707 </cell>
9708 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9709 \begin_inset Text
9710
9711 \begin_layout Plain Layout
9712
9713 \end_layout
9714
9715 \end_inset
9716 </cell>
9717 </row>
9718 <row endfirsthead="true">
9719 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9720 \begin_inset Text
9721
9722 \begin_layout Plain Layout
9723
9724 \series bold
9725 Telefonliste (ignoriere die Namen)
9726 \end_layout
9727
9728 \end_inset
9729 </cell>
9730 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9731 \begin_inset Text
9732
9733 \begin_layout Plain Layout
9734
9735 \end_layout
9736
9737 \end_inset
9738 </cell>
9739 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9740 \begin_inset Text
9741
9742 \begin_layout Plain Layout
9743
9744 \end_layout
9745
9746 \end_inset
9747 </cell>
9748 </row>
9749 <row endfirsthead="true">
9750 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9751 \begin_inset Text
9752
9753 \begin_layout Plain Layout
9754
9755 \series bold
9756 NAME
9757 \end_layout
9758
9759 \end_inset
9760 </cell>
9761 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
9762 \begin_inset Text
9763
9764 \begin_layout Plain Layout
9765
9766 \end_layout
9767
9768 \end_inset
9769 </cell>
9770 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9771 \begin_inset Text
9772
9773 \begin_layout Plain Layout
9774
9775 \series bold
9776 TEL.
9777 \end_layout
9778
9779 \end_inset
9780 </cell>
9781 </row>
9782 <row endhead="true">
9783 <cell alignment="center" valignment="top" leftline="true" usebox="none">
9784 \begin_inset Text
9785
9786 \begin_layout Plain Layout
9787 \begin_inset ERT
9788 status collapsed
9789
9790 \begin_layout Plain Layout
9791
9792
9793 \backslash
9794 caption*{Fortsetzung der Tabelle}
9795 \backslash
9796
9797 \backslash
9798 %
9799 \end_layout
9800
9801 \end_inset
9802
9803
9804 \end_layout
9805
9806 \end_inset
9807 </cell>
9808 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9809 \begin_inset Text
9810
9811 \begin_layout Plain Layout
9812
9813 \end_layout
9814
9815 \end_inset
9816 </cell>
9817 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9818 \begin_inset Text
9819
9820 \begin_layout Plain Layout
9821
9822 \end_layout
9823
9824 \end_inset
9825 </cell>
9826 </row>
9827 <row endhead="true">
9828 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9829 \begin_inset Text
9830
9831 \begin_layout Plain Layout
9832
9833 \series bold
9834 Telefonliste
9835 \end_layout
9836
9837 \end_inset
9838 </cell>
9839 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
9840 \begin_inset Text
9841
9842 \begin_layout Plain Layout
9843
9844 \end_layout
9845
9846 \end_inset
9847 </cell>
9848 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9849 \begin_inset Text
9850
9851 \begin_layout Plain Layout
9852
9853 \end_layout
9854
9855 \end_inset
9856 </cell>
9857 </row>
9858 <row endhead="true">
9859 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9860 \begin_inset Text
9861
9862 \begin_layout Plain Layout
9863
9864 \series bold
9865 NAME
9866 \end_layout
9867
9868 \end_inset
9869 </cell>
9870 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
9871 \begin_inset Text
9872
9873 \begin_layout Plain Layout
9874
9875 \end_layout
9876
9877 \end_inset
9878 </cell>
9879 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9880 \begin_inset Text
9881
9882 \begin_layout Plain Layout
9883
9884 \series bold
9885 TEL.
9886 \end_layout
9887
9888 \end_inset
9889 </cell>
9890 </row>
9891 <row endfoot="true">
9892 <cell multicolumn="1" alignment="right" valignment="top" usebox="none">
9893 \begin_inset Text
9894
9895 \begin_layout Plain Layout
9896 wird fortgesetzt\SpecialChar \ldots{}
9897
9898 \end_layout
9899
9900 \end_inset
9901 </cell>
9902 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
9903 \begin_inset Text
9904
9905 \begin_layout Plain Layout
9906
9907 \end_layout
9908
9909 \end_inset
9910 </cell>
9911 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9912 \begin_inset Text
9913
9914 \begin_layout Plain Layout
9915
9916 \end_layout
9917
9918 \end_inset
9919 </cell>
9920 </row>
9921 <row>
9922 <cell alignment="center" valignment="top" leftline="true" usebox="none">
9923 \begin_inset Text
9924
9925 \begin_layout Plain Layout
9926
9927 \series bold
9928 Annovi
9929 \end_layout
9930
9931 \end_inset
9932 </cell>
9933 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9934 \begin_inset Text
9935
9936 \begin_layout Plain Layout
9937 Silvia
9938 \end_layout
9939
9940 \end_inset
9941 </cell>
9942 <cell alignment="right" valignment="top" rightline="true" usebox="none">
9943 \begin_inset Text
9944
9945 \begin_layout Plain Layout
9946 111
9947 \end_layout
9948
9949 \end_inset
9950 </cell>
9951 </row>
9952 <row>
9953 <cell alignment="center" valignment="top" leftline="true" usebox="none">
9954 \begin_inset Text
9955
9956 \begin_layout Plain Layout
9957
9958 \series bold
9959 Bertoli
9960 \end_layout
9961
9962 \end_inset
9963 </cell>
9964 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9965 \begin_inset Text
9966
9967 \begin_layout Plain Layout
9968 Stefano
9969 \end_layout
9970
9971 \end_inset
9972 </cell>
9973 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9974 \begin_inset Text
9975
9976 \begin_layout Plain Layout
9977 111
9978 \end_layout
9979
9980 \end_inset
9981 </cell>
9982 </row>
9983 <row>
9984 <cell alignment="center" valignment="top" leftline="true" usebox="none">
9985 \begin_inset Text
9986
9987 \begin_layout Plain Layout
9988
9989 \series bold
9990 Bozzi
9991 \end_layout
9992
9993 \end_inset
9994 </cell>
9995 <cell alignment="center" valignment="top" rightline="true" usebox="none">
9996 \begin_inset Text
9997
9998 \begin_layout Plain Layout
9999 Walter
10000 \end_layout
10001
10002 \end_inset
10003 </cell>
10004 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10005 \begin_inset Text
10006
10007 \begin_layout Plain Layout
10008 111
10009 \end_layout
10010
10011 \end_inset
10012 </cell>
10013 </row>
10014 <row>
10015 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10016 \begin_inset Text
10017
10018 \begin_layout Plain Layout
10019
10020 \series bold
10021 Cachia
10022 \end_layout
10023
10024 \end_inset
10025 </cell>
10026 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10027 \begin_inset Text
10028
10029 \begin_layout Plain Layout
10030 Maria
10031 \end_layout
10032
10033 \end_inset
10034 </cell>
10035 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10036 \begin_inset Text
10037
10038 \begin_layout Plain Layout
10039 111
10040 \end_layout
10041
10042 \end_inset
10043 </cell>
10044 </row>
10045 <row>
10046 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10047 \begin_inset Text
10048
10049 \begin_layout Plain Layout
10050
10051 \series bold
10052 Cachia
10053 \end_layout
10054
10055 \end_inset
10056 </cell>
10057 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10058 \begin_inset Text
10059
10060 \begin_layout Plain Layout
10061 Maurizio
10062 \end_layout
10063
10064 \end_inset
10065 </cell>
10066 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10067 \begin_inset Text
10068
10069 \begin_layout Plain Layout
10070 111
10071 \end_layout
10072
10073 \end_inset
10074 </cell>
10075 </row>
10076 <row>
10077 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10078 \begin_inset Text
10079
10080 \begin_layout Plain Layout
10081
10082 \series bold
10083 Cinquemani
10084 \end_layout
10085
10086 \end_inset
10087 </cell>
10088 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10089 \begin_inset Text
10090
10091 \begin_layout Plain Layout
10092 Giusi
10093 \end_layout
10094
10095 \end_inset
10096 </cell>
10097 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10098 \begin_inset Text
10099
10100 \begin_layout Plain Layout
10101 111
10102 \end_layout
10103
10104 \end_inset
10105 </cell>
10106 </row>
10107 <row>
10108 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10109 \begin_inset Text
10110
10111 \begin_layout Plain Layout
10112
10113 \series bold
10114 Colin
10115 \end_layout
10116
10117 \end_inset
10118 </cell>
10119 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10120 \begin_inset Text
10121
10122 \begin_layout Plain Layout
10123 Bernard
10124 \end_layout
10125
10126 \end_inset
10127 </cell>
10128 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10129 \begin_inset Text
10130
10131 \begin_layout Plain Layout
10132 111
10133 \end_layout
10134
10135 \end_inset
10136 </cell>
10137 </row>
10138 <row>
10139 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10140 \begin_inset Text
10141
10142 \begin_layout Plain Layout
10143
10144 \series bold
10145 Concli
10146 \end_layout
10147
10148 \end_inset
10149 </cell>
10150 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10151 \begin_inset Text
10152
10153 \begin_layout Plain Layout
10154 Gianfranco
10155 \end_layout
10156
10157 \end_inset
10158 </cell>
10159 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10160 \begin_inset Text
10161
10162 \begin_layout Plain Layout
10163 111
10164 \end_layout
10165
10166 \end_inset
10167 </cell>
10168 </row>
10169 <row>
10170 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10171 \begin_inset Text
10172
10173 \begin_layout Plain Layout
10174
10175 \series bold
10176 Dal Bosco
10177 \end_layout
10178
10179 \end_inset
10180 </cell>
10181 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10182 \begin_inset Text
10183
10184 \begin_layout Plain Layout
10185 Carolina
10186 \end_layout
10187
10188 \end_inset
10189 </cell>
10190 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10191 \begin_inset Text
10192
10193 \begin_layout Plain Layout
10194 111
10195 \end_layout
10196
10197 \end_inset
10198 </cell>
10199 </row>
10200 <row>
10201 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10202 \begin_inset Text
10203
10204 \begin_layout Plain Layout
10205
10206 \series bold
10207 Dalpiaz
10208 \end_layout
10209
10210 \end_inset
10211 </cell>
10212 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10213 \begin_inset Text
10214
10215 \begin_layout Plain Layout
10216 Annamaria
10217 \end_layout
10218
10219 \end_inset
10220 </cell>
10221 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10222 \begin_inset Text
10223
10224 \begin_layout Plain Layout
10225 111
10226 \end_layout
10227
10228 \end_inset
10229 </cell>
10230 </row>
10231 <row>
10232 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10233 \begin_inset Text
10234
10235 \begin_layout Plain Layout
10236
10237 \series bold
10238 Feliciello
10239 \end_layout
10240
10241 \end_inset
10242 </cell>
10243 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10244 \begin_inset Text
10245
10246 \begin_layout Plain Layout
10247 Domenico
10248 \end_layout
10249
10250 \end_inset
10251 </cell>
10252 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10253 \begin_inset Text
10254
10255 \begin_layout Plain Layout
10256 111
10257 \end_layout
10258
10259 \end_inset
10260 </cell>
10261 </row>
10262 <row>
10263 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10264 \begin_inset Text
10265
10266 \begin_layout Plain Layout
10267
10268 \series bold
10269 Focarelli
10270 \end_layout
10271
10272 \end_inset
10273 </cell>
10274 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10275 \begin_inset Text
10276
10277 \begin_layout Plain Layout
10278 Paola
10279 \end_layout
10280
10281 \end_inset
10282 </cell>
10283 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10284 \begin_inset Text
10285
10286 \begin_layout Plain Layout
10287 111
10288 \end_layout
10289
10290 \end_inset
10291 </cell>
10292 </row>
10293 <row>
10294 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10295 \begin_inset Text
10296
10297 \begin_layout Plain Layout
10298
10299 \series bold
10300 Galletti
10301 \end_layout
10302
10303 \end_inset
10304 </cell>
10305 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10306 \begin_inset Text
10307
10308 \begin_layout Plain Layout
10309 Oreste
10310 \end_layout
10311
10312 \end_inset
10313 </cell>
10314 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10315 \begin_inset Text
10316
10317 \begin_layout Plain Layout
10318 111
10319 \end_layout
10320
10321 \end_inset
10322 </cell>
10323 </row>
10324 <row>
10325 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10326 \begin_inset Text
10327
10328 \begin_layout Plain Layout
10329
10330 \series bold
10331 Gasparini
10332 \end_layout
10333
10334 \end_inset
10335 </cell>
10336 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10337 \begin_inset Text
10338
10339 \begin_layout Plain Layout
10340 Franca
10341 \end_layout
10342
10343 \end_inset
10344 </cell>
10345 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10346 \begin_inset Text
10347
10348 \begin_layout Plain Layout
10349 111
10350 \end_layout
10351
10352 \end_inset
10353 </cell>
10354 </row>
10355 <row>
10356 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10357 \begin_inset Text
10358
10359 \begin_layout Plain Layout
10360
10361 \series bold
10362 Lassini
10363 \end_layout
10364
10365 \end_inset
10366 </cell>
10367 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10368 \begin_inset Text
10369
10370 \begin_layout Plain Layout
10371 Giancarlo
10372 \end_layout
10373
10374 \end_inset
10375 </cell>
10376 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10377 \begin_inset Text
10378
10379 \begin_layout Plain Layout
10380 111
10381 \end_layout
10382
10383 \end_inset
10384 </cell>
10385 </row>
10386 <row>
10387 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10388 \begin_inset Text
10389
10390 \begin_layout Plain Layout
10391
10392 \series bold
10393 Malfatti
10394 \end_layout
10395
10396 \end_inset
10397 </cell>
10398 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10399 \begin_inset Text
10400
10401 \begin_layout Plain Layout
10402 Luciano
10403 \end_layout
10404
10405 \end_inset
10406 </cell>
10407 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10408 \begin_inset Text
10409
10410 \begin_layout Plain Layout
10411 111
10412 \end_layout
10413
10414 \end_inset
10415 </cell>
10416 </row>
10417 <row>
10418 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10419 \begin_inset Text
10420
10421 \begin_layout Plain Layout
10422
10423 \series bold
10424 Malfatti
10425 \end_layout
10426
10427 \end_inset
10428 </cell>
10429 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10430 \begin_inset Text
10431
10432 \begin_layout Plain Layout
10433 Valeriano
10434 \end_layout
10435
10436 \end_inset
10437 </cell>
10438 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10439 \begin_inset Text
10440
10441 \begin_layout Plain Layout
10442 111
10443 \end_layout
10444
10445 \end_inset
10446 </cell>
10447 </row>
10448 <row>
10449 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10450 \begin_inset Text
10451
10452 \begin_layout Plain Layout
10453
10454 \series bold
10455 Meneguzzo
10456 \end_layout
10457
10458 \end_inset
10459 </cell>
10460 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10461 \begin_inset Text
10462
10463 \begin_layout Plain Layout
10464 Roberto
10465 \end_layout
10466
10467 \end_inset
10468 </cell>
10469 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10470 \begin_inset Text
10471
10472 \begin_layout Plain Layout
10473 111
10474 \end_layout
10475
10476 \end_inset
10477 </cell>
10478 </row>
10479 <row>
10480 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10481 \begin_inset Text
10482
10483 \begin_layout Plain Layout
10484
10485 \series bold
10486 Mezzadra
10487 \end_layout
10488
10489 \end_inset
10490 </cell>
10491 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10492 \begin_inset Text
10493
10494 \begin_layout Plain Layout
10495 Roberto
10496 \end_layout
10497
10498 \end_inset
10499 </cell>
10500 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10501 \begin_inset Text
10502
10503 \begin_layout Plain Layout
10504 111
10505 \end_layout
10506
10507 \end_inset
10508 </cell>
10509 </row>
10510 <row>
10511 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10512 \begin_inset Text
10513
10514 \begin_layout Plain Layout
10515
10516 \series bold
10517 Pirpamer
10518 \end_layout
10519
10520 \end_inset
10521 </cell>
10522 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10523 \begin_inset Text
10524
10525 \begin_layout Plain Layout
10526 Erich
10527 \end_layout
10528
10529 \end_inset
10530 </cell>
10531 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10532 \begin_inset Text
10533
10534 \begin_layout Plain Layout
10535 111
10536 \end_layout
10537
10538 \end_inset
10539 </cell>
10540 </row>
10541 <row>
10542 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10543 \begin_inset Text
10544
10545 \begin_layout Plain Layout
10546
10547 \series bold
10548 Pochiesa
10549 \end_layout
10550
10551 \end_inset
10552 </cell>
10553 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10554 \begin_inset Text
10555
10556 \begin_layout Plain Layout
10557 Paolo
10558 \end_layout
10559
10560 \end_inset
10561 </cell>
10562 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10563 \begin_inset Text
10564
10565 \begin_layout Plain Layout
10566 111, 222
10567 \end_layout
10568
10569 \end_inset
10570 </cell>
10571 </row>
10572 <row>
10573 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10574 \begin_inset Text
10575
10576 \begin_layout Plain Layout
10577
10578 \series bold
10579 Radina
10580 \end_layout
10581
10582 \end_inset
10583 </cell>
10584 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10585 \begin_inset Text
10586
10587 \begin_layout Plain Layout
10588 Claudio
10589 \end_layout
10590
10591 \end_inset
10592 </cell>
10593 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10594 \begin_inset Text
10595
10596 \begin_layout Plain Layout
10597 111
10598 \end_layout
10599
10600 \end_inset
10601 </cell>
10602 </row>
10603 <row>
10604 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10605 \begin_inset Text
10606
10607 \begin_layout Plain Layout
10608
10609 \series bold
10610 Rizzardi
10611 \end_layout
10612
10613 \end_inset
10614 </cell>
10615 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10616 \begin_inset Text
10617
10618 \begin_layout Plain Layout
10619 Paolo, 11.
10620  Fürst von Monte\SpecialChar \-
10621 com\SpecialChar \-
10622 patri, 11.
10623  Fürst von Sulmona und Vivaro, 10.
10624  Fürst von Rossano, 5.
10625  Herzog von Canemorte, 11.
10626  Herzog von Palombara, 5.
10627  Herzog von Castelchiodato,
10628 \begin_inset ERT
10629 status open
10630
10631 \begin_layout Plain Layout
10632
10633 & 111
10634 \backslash
10635
10636 \backslash
10637  
10638 \backslash
10639 newpage
10640 \end_layout
10641
10642 \begin_layout Plain Layout
10643
10644 &
10645 \end_layout
10646
10647 \end_inset
10648
10649  11.
10650  Herzog von Poggionativo, 11.
10651  Markis von Mentana, Norma, Civitella, Pratica, Moricone und Percille, 11.
10652  Graf von Valinfreda, 11.
10653  Baron von Cropalati, 11.
10654  Herr von Scarpa, Edelmann von Rom, Patrizier von Venedig, Neapel und Genua
10655 \end_layout
10656
10657 \end_inset
10658 </cell>
10659 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10660 \begin_inset Text
10661
10662 \begin_layout Plain Layout
10663
10664 \end_layout
10665
10666 \end_inset
10667 </cell>
10668 </row>
10669 <row>
10670 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10671 \begin_inset Text
10672
10673 \begin_layout Plain Layout
10674
10675 \series bold
10676 Stuffer
10677 \end_layout
10678
10679 \end_inset
10680 </cell>
10681 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10682 \begin_inset Text
10683
10684 \begin_layout Plain Layout
10685 Oskar
10686 \end_layout
10687
10688 \end_inset
10689 </cell>
10690 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10691 \begin_inset Text
10692
10693 \begin_layout Plain Layout
10694 111
10695 \end_layout
10696
10697 \end_inset
10698 </cell>
10699 </row>
10700 <row>
10701 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10702 \begin_inset Text
10703
10704 \begin_layout Plain Layout
10705
10706 \series bold
10707 Tacchelli
10708 \end_layout
10709
10710 \end_inset
10711 </cell>
10712 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10713 \begin_inset Text
10714
10715 \begin_layout Plain Layout
10716 Ugo
10717 \end_layout
10718
10719 \end_inset
10720 </cell>
10721 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10722 \begin_inset Text
10723
10724 \begin_layout Plain Layout
10725 111
10726 \end_layout
10727
10728 \end_inset
10729 </cell>
10730 </row>
10731 <row>
10732 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10733 \begin_inset Text
10734
10735 \begin_layout Plain Layout
10736
10737 \series bold
10738 Tezzele
10739 \end_layout
10740
10741 \end_inset
10742 </cell>
10743 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10744 \begin_inset Text
10745
10746 \begin_layout Plain Layout
10747 Margit
10748 \end_layout
10749
10750 \end_inset
10751 </cell>
10752 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10753 \begin_inset Text
10754
10755 \begin_layout Plain Layout
10756 111
10757 \end_layout
10758
10759 \end_inset
10760 </cell>
10761 </row>
10762 <row>
10763 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10764 \begin_inset Text
10765
10766 \begin_layout Plain Layout
10767
10768 \series bold
10769 Unterkalmsteiner
10770 \end_layout
10771
10772 \end_inset
10773 </cell>
10774 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10775 \begin_inset Text
10776
10777 \begin_layout Plain Layout
10778 Frieda
10779 \end_layout
10780
10781 \end_inset
10782 </cell>
10783 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10784 \begin_inset Text
10785
10786 \begin_layout Plain Layout
10787 111
10788 \end_layout
10789
10790 \end_inset
10791 </cell>
10792 </row>
10793 <row>
10794 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10795 \begin_inset Text
10796
10797 \begin_layout Plain Layout
10798
10799 \series bold
10800 Vieider
10801 \end_layout
10802
10803 \end_inset
10804 </cell>
10805 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10806 \begin_inset Text
10807
10808 \begin_layout Plain Layout
10809 Hilde
10810 \end_layout
10811
10812 \end_inset
10813 </cell>
10814 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10815 \begin_inset Text
10816
10817 \begin_layout Plain Layout
10818 111
10819 \end_layout
10820
10821 \end_inset
10822 </cell>
10823 </row>
10824 <row>
10825 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10826 \begin_inset Text
10827
10828 \begin_layout Plain Layout
10829
10830 \series bold
10831 Vigna
10832 \end_layout
10833
10834 \end_inset
10835 </cell>
10836 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10837 \begin_inset Text
10838
10839 \begin_layout Plain Layout
10840 Jürgen
10841 \end_layout
10842
10843 \end_inset
10844 </cell>
10845 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10846 \begin_inset Text
10847
10848 \begin_layout Plain Layout
10849 111
10850 \end_layout
10851
10852 \end_inset
10853 </cell>
10854 </row>
10855 <row>
10856 <cell alignment="center" valignment="top" leftline="true" usebox="none">
10857 \begin_inset Text
10858
10859 \begin_layout Plain Layout
10860
10861 \series bold
10862 Weber
10863 \end_layout
10864
10865 \end_inset
10866 </cell>
10867 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10868 \begin_inset Text
10869
10870 \begin_layout Plain Layout
10871 Maurizio
10872 \end_layout
10873
10874 \end_inset
10875 </cell>
10876 <cell alignment="center" valignment="top" rightline="true" usebox="none">
10877 \begin_inset Text
10878
10879 \begin_layout Plain Layout
10880 111
10881 \end_layout
10882
10883 \end_inset
10884 </cell>
10885 </row>
10886 <row>
10887 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10888 \begin_inset Text
10889
10890 \begin_layout Plain Layout
10891
10892 \series bold
10893 Winkler
10894 \end_layout
10895
10896 \end_inset
10897 </cell>
10898 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
10899 \begin_inset Text
10900
10901 \begin_layout Plain Layout
10902 Franz
10903 \end_layout
10904
10905 \end_inset
10906 </cell>
10907 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
10908 \begin_inset Text
10909
10910 \begin_layout Plain Layout
10911 111
10912 \end_layout
10913
10914 \end_inset
10915 </cell>
10916 </row>
10917 </lyxtabular>
10918
10919 \end_inset
10920
10921
10922 \end_layout
10923
10924 \begin_layout Section
10925 Mehrfache Zeilen, Spalten und Zeilen in Zellen
10926 \end_layout
10927
10928 \begin_layout Subsection
10929 Mehrfache Zeilen in Zellen
10930 \begin_inset CommandInset label
10931 LatexCommand label
10932 name "uab:Mehrfache-Zeilen-in"
10933
10934 \end_inset
10935
10936
10937 \begin_inset Index idx
10938 status collapsed
10939
10940 \begin_layout Plain Layout
10941 Mehrfache ! Zeilen in Zellen
10942 \end_layout
10943
10944 \end_inset
10945
10946
10947 \begin_inset Index idx
10948 status collapsed
10949
10950 \begin_layout Plain Layout
10951 Tabellen ! Zeilenumbrüche
10952 \end_layout
10953
10954 \end_inset
10955
10956
10957 \end_layout
10958
10959 \begin_layout Standard
10960 \noindent
10961 \begin_inset Float table
10962 placement H
10963 wide false
10964 sideways false
10965 status open
10966
10967 \begin_layout Plain Layout
10968 \begin_inset Caption
10969
10970 \begin_layout Plain Layout
10971 \begin_inset CommandInset label
10972 LatexCommand label
10973 name "tab:Table-with-multiple"
10974
10975 \end_inset
10976
10977 Tabelle mit mehrfachen Zeilen in einer Zelle
10978 \end_layout
10979
10980 \end_inset
10981
10982
10983 \end_layout
10984
10985 \begin_layout Plain Layout
10986 \align center
10987 \begin_inset Tabular
10988 <lyxtabular version="3" rows="3" columns="3">
10989 <features tabularvalignment="middle">
10990 <column alignment="center" valignment="middle" width="2.5cm">
10991 <column alignment="center" valignment="middle" width="0.5cm">
10992 <column alignment="center" valignment="middle" width="0.5cm">
10993 <row>
10994 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10995 \begin_inset Text
10996
10997 \begin_layout Plain Layout
10998 zwei
10999 \begin_inset Newline linebreak
11000 \end_inset
11001
11002 Zeilen
11003 \end_layout
11004
11005 \end_inset
11006 </cell>
11007 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11008 \begin_inset Text
11009
11010 \begin_layout Plain Layout
11011 b
11012 \end_layout
11013
11014 \end_inset
11015 </cell>
11016 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11017 \begin_inset Text
11018
11019 \begin_layout Plain Layout
11020 c
11021 \end_layout
11022
11023 \end_inset
11024 </cell>
11025 </row>
11026 <row>
11027 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11028 \begin_inset Text
11029
11030 \begin_layout Plain Layout
11031 d
11032 \end_layout
11033
11034 \end_inset
11035 </cell>
11036 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11037 \begin_inset Text
11038
11039 \begin_layout Plain Layout
11040 e
11041 \end_layout
11042
11043 \end_inset
11044 </cell>
11045 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11046 \begin_inset Text
11047
11048 \begin_layout Plain Layout
11049 f
11050 \end_layout
11051
11052 \end_inset
11053 </cell>
11054 </row>
11055 <row>
11056 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11057 \begin_inset Text
11058
11059 \begin_layout Plain Layout
11060 g
11061 \end_layout
11062
11063 \end_inset
11064 </cell>
11065 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11066 \begin_inset Text
11067
11068 \begin_layout Plain Layout
11069 h
11070 \end_layout
11071
11072 \end_inset
11073 </cell>
11074 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11075 \begin_inset Text
11076
11077 \begin_layout Plain Layout
11078 i
11079 \end_layout
11080
11081 \end_inset
11082 </cell>
11083 </row>
11084 </lyxtabular>
11085
11086 \end_inset
11087
11088
11089 \end_layout
11090
11091 \end_inset
11092
11093
11094 \end_layout
11095
11096 \begin_layout Standard
11097 Wenn Sie für eine Spalte eine feste Breite definieren, können Sie Text als
11098  Absätze mit mehrfachen Zeilen und Silbentrennung eingeben.
11099  Tabelle
11100 \begin_inset space ~
11101 \end_inset
11102
11103
11104 \begin_inset CommandInset ref
11105 LatexCommand ref
11106 reference "tab:Table-with-multiple"
11107
11108 \end_inset
11109
11110  wurde als 3×3-Tabelle erstellt, dann die Breite der ersten Spalte im 
11111 \family sans
11112 Tabellen-Einstellungen
11113 \family default
11114 -Dialog auf 2.5
11115 \begin_inset space \thinspace{}
11116 \end_inset
11117
11118 cm gesetzt und die vertikalen und horizontalen Ausrichtungen zentriert.
11119  Weil unser Text schmaler als 2.5
11120 \begin_inset space \thinspace{}
11121 \end_inset
11122
11123 cm ist, würde er in einer Zeile gedruckt werden.
11124  Um zwei Zeilen zu bekommen, wurde ein rechtsbündiger Zeilenumbruch (Tastenkürze
11125
11126 \family sans
11127 Strg-Shift-Enter
11128 \family default
11129 ) eingefügt.
11130  Wenn der Text länger ist, wird er automatisch umgebrochen.
11131 \end_layout
11132
11133 \begin_layout Standard
11134 Um den Text der beiden anderen Zellen der ersten Zeile vertikal auszurichten,
11135  setzen Sie die Breite der beiden Spalten im 
11136 \family sans
11137 Tabellen-Einstellungen
11138 \family default
11139 -Dialog auf 0.5
11140 \begin_inset space \thinspace{}
11141 \end_inset
11142
11143 cm und die vertikale Ausrichtung auf zentriert.
11144 \end_layout
11145
11146 \begin_layout Standard
11147 Wenn Sie in einer Zelle mit fester Breite als erstes ein sehr langes Wort
11148  haben, kann LaTeX es ohne Trennhilfen nicht trennen.
11149  Wenn Sie LaTeX trotzdem die Trennung überlassen wollen, müssen Sie vor
11150  dem Wort etwas einfügen, damit es nicht wie der erste Eintrag aussieht.
11151  Fügen sie daher 0
11152 \begin_inset space \thinspace{}
11153 \end_inset
11154
11155 pt horizontalen Abstand vor dem Wort ein.
11156  Weil er keinen Platz belegt, ändert er die Druckausgabe nicht.
11157  Tabelle
11158 \begin_inset space ~
11159 \end_inset
11160
11161
11162 \begin_inset CommandInset ref
11163 LatexCommand ref
11164 reference "tab:Table-with-and"
11165
11166 \end_inset
11167
11168  zeigt die Wirkungen.
11169 \end_layout
11170
11171 \begin_layout Standard
11172 \begin_inset Float table
11173 placement h
11174 wide false
11175 sideways false
11176 status open
11177
11178 \begin_layout Plain Layout
11179 \begin_inset Caption
11180
11181 \begin_layout Plain Layout
11182 \begin_inset CommandInset label
11183 LatexCommand label
11184 name "tab:Table-with-and"
11185
11186 \end_inset
11187
11188 Tabelle ohne und mit Silbentrennung
11189 \end_layout
11190
11191 \end_inset
11192
11193
11194 \end_layout
11195
11196 \begin_layout Plain Layout
11197 \begin_inset space \hfill{}
11198 \end_inset
11199
11200
11201 \begin_inset Tabular
11202 <lyxtabular version="3" rows="3" columns="3">
11203 <features tabularvalignment="middle">
11204 <column alignment="center" valignment="middle" width="2.5cm">
11205 <column alignment="center" valignment="middle" width="0.5cm">
11206 <column alignment="center" valignment="middle" width="0.5cm">
11207 <row>
11208 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11209 \begin_inset Text
11210
11211 \begin_layout Plain Layout
11212 einsehrlangesZellenwort
11213 \end_layout
11214
11215 \end_inset
11216 </cell>
11217 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11218 \begin_inset Text
11219
11220 \begin_layout Plain Layout
11221 b
11222 \end_layout
11223
11224 \end_inset
11225 </cell>
11226 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11227 \begin_inset Text
11228
11229 \begin_layout Plain Layout
11230 c
11231 \end_layout
11232
11233 \end_inset
11234 </cell>
11235 </row>
11236 <row>
11237 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11238 \begin_inset Text
11239
11240 \begin_layout Plain Layout
11241 d
11242 \end_layout
11243
11244 \end_inset
11245 </cell>
11246 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11247 \begin_inset Text
11248
11249 \begin_layout Plain Layout
11250 e
11251 \end_layout
11252
11253 \end_inset
11254 </cell>
11255 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11256 \begin_inset Text
11257
11258 \begin_layout Plain Layout
11259 f
11260 \end_layout
11261
11262 \end_inset
11263 </cell>
11264 </row>
11265 <row>
11266 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11267 \begin_inset Text
11268
11269 \begin_layout Plain Layout
11270 g
11271 \end_layout
11272
11273 \end_inset
11274 </cell>
11275 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11276 \begin_inset Text
11277
11278 \begin_layout Plain Layout
11279 h
11280 \end_layout
11281
11282 \end_inset
11283 </cell>
11284 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11285 \begin_inset Text
11286
11287 \begin_layout Plain Layout
11288 i
11289 \end_layout
11290
11291 \end_inset
11292 </cell>
11293 </row>
11294 </lyxtabular>
11295
11296 \end_inset
11297
11298
11299 \begin_inset space \hfill{}
11300 \end_inset
11301
11302
11303 \begin_inset Tabular
11304 <lyxtabular version="3" rows="3" columns="3">
11305 <features tabularvalignment="middle">
11306 <column alignment="center" valignment="middle" width="2.5cm">
11307 <column alignment="center" valignment="middle" width="0.5cm">
11308 <column alignment="center" valignment="middle" width="0.5cm">
11309 <row>
11310 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11311 \begin_inset Text
11312
11313 \begin_layout Plain Layout
11314 \begin_inset space \hspace{}
11315 \length 0pt
11316 \end_inset
11317
11318 einsehrlangesZellenwort
11319 \end_layout
11320
11321 \end_inset
11322 </cell>
11323 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11324 \begin_inset Text
11325
11326 \begin_layout Plain Layout
11327 b
11328 \end_layout
11329
11330 \end_inset
11331 </cell>
11332 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11333 \begin_inset Text
11334
11335 \begin_layout Plain Layout
11336 c
11337 \end_layout
11338
11339 \end_inset
11340 </cell>
11341 </row>
11342 <row>
11343 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11344 \begin_inset Text
11345
11346 \begin_layout Plain Layout
11347 d
11348 \end_layout
11349
11350 \end_inset
11351 </cell>
11352 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11353 \begin_inset Text
11354
11355 \begin_layout Plain Layout
11356 e
11357 \end_layout
11358
11359 \end_inset
11360 </cell>
11361 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11362 \begin_inset Text
11363
11364 \begin_layout Plain Layout
11365 f
11366 \end_layout
11367
11368 \end_inset
11369 </cell>
11370 </row>
11371 <row>
11372 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11373 \begin_inset Text
11374
11375 \begin_layout Plain Layout
11376 g
11377 \end_layout
11378
11379 \end_inset
11380 </cell>
11381 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11382 \begin_inset Text
11383
11384 \begin_layout Plain Layout
11385 h
11386 \end_layout
11387
11388 \end_inset
11389 </cell>
11390 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11391 \begin_inset Text
11392
11393 \begin_layout Plain Layout
11394 i
11395 \end_layout
11396
11397 \end_inset
11398 </cell>
11399 </row>
11400 </lyxtabular>
11401
11402 \end_inset
11403
11404
11405 \begin_inset space \hfill{}
11406 \end_inset
11407
11408
11409 \end_layout
11410
11411 \end_inset
11412
11413
11414 \end_layout
11415
11416 \begin_layout Subsection
11417 Mehrfachspalten
11418 \begin_inset CommandInset label
11419 LatexCommand label
11420 name "uab:Mehrfachspalten"
11421
11422 \end_inset
11423
11424
11425 \begin_inset Index idx
11426 status collapsed
11427
11428 \begin_layout Plain Layout
11429 Mahrfachspalten
11430 \end_layout
11431
11432 \end_inset
11433
11434
11435 \begin_inset Index idx
11436 status collapsed
11437
11438 \begin_layout Plain Layout
11439 Tabellen ! Mahrfachspalten
11440 \end_layout
11441
11442 \end_inset
11443
11444
11445 \end_layout
11446
11447 \begin_layout Subsubsection
11448 Grundlagen
11449 \end_layout
11450
11451 \begin_layout Standard
11452 Um mehrere Zellen einer Zeile zu einer zu verbinden, markieren Sie diese
11453  und verwenden dann den Knopf 
11454 \begin_inset Graphics
11455         filename ../../images/tabular-feature_multicolumn.png
11456         scale 70
11457         scaleBeforeRotation
11458         BoundingBox 0bp 6bp 22bp 22bp
11459
11460 \end_inset
11461
11462  in der Werkzeugleiste, das Menü 
11463 \family sans
11464 Bearbeiten\SpecialChar \menuseparator
11465 Tabelle\SpecialChar \menuseparator
11466 Mehrfachspalte
11467 \family default
11468 , oder klicken Sie rechts auf die markierten Zellen und wählen im Kontextmenü
11469  
11470 \family sans
11471 Mehrfachspalte
11472 \family default
11473 .
11474 \end_layout
11475
11476 \begin_layout Standard
11477 Mehrfachspalten haben ihre eigenen Einstellungen.
11478  Das bedeutet, dass sie sich nur auf die Mehrfachspalte auswirken.
11479  Hier ist ein Beispiel mit einer Mehrfachspalte in der ersten Zeile und
11480  einer in der letzten Zeile, bei der die obere Linie weggelassen wurde:
11481 \end_layout
11482
11483 \begin_layout Standard
11484 \align center
11485 \begin_inset Tabular
11486 <lyxtabular version="3" rows="3" columns="4">
11487 <features firstHeadTopDL="true" firstHeadBottomDL="true" tabularvalignment="middle">
11488 <column alignment="center" valignment="top" width="0pt">
11489 <column alignment="center" valignment="middle" width="0">
11490 <column alignment="center" valignment="top" width="0in">
11491 <column alignment="center" valignment="top" width="0pt">
11492 <row>
11493 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11494 \begin_inset Text
11495
11496 \begin_layout Plain Layout
11497 abc
11498 \end_layout
11499
11500 \end_inset
11501 </cell>
11502 <cell multicolumn="1" alignment="center" valignment="middle" topline="true" bottomline="true" leftline="true" usebox="none">
11503 \begin_inset Text
11504
11505 \begin_layout Plain Layout
11506 def ghi
11507 \end_layout
11508
11509 \end_inset
11510 </cell>
11511 <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11512 \begin_inset Text
11513
11514 \begin_layout Plain Layout
11515
11516 \end_layout
11517
11518 \end_inset
11519 </cell>
11520 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11521 \begin_inset Text
11522
11523 \begin_layout Plain Layout
11524 jkl
11525 \end_layout
11526
11527 \end_inset
11528 </cell>
11529 </row>
11530 <row>
11531 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11532 \begin_inset Text
11533
11534 \begin_layout Plain Layout
11535
11536 \family roman
11537 \series medium
11538 \shape up
11539 \size normal
11540 \emph off
11541 \bar no
11542 \noun off
11543 \color none
11544 A
11545 \end_layout
11546
11547 \end_inset
11548 </cell>
11549 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11550 \begin_inset Text
11551
11552 \begin_layout Plain Layout
11553 B
11554 \end_layout
11555
11556 \end_inset
11557 </cell>
11558 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11559 \begin_inset Text
11560
11561 \begin_layout Plain Layout
11562 C
11563 \end_layout
11564
11565 \end_inset
11566 </cell>
11567 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11568 \begin_inset Text
11569
11570 \begin_layout Plain Layout
11571 D
11572 \end_layout
11573
11574 \end_inset
11575 </cell>
11576 </row>
11577 <row>
11578 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11579 \begin_inset Text
11580
11581 \begin_layout Plain Layout
11582 1
11583 \end_layout
11584
11585 \end_inset
11586 </cell>
11587 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11588 \begin_inset Text
11589
11590 \begin_layout Plain Layout
11591 2
11592 \end_layout
11593
11594 \end_inset
11595 </cell>
11596 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11597 \begin_inset Text
11598
11599 \begin_layout Plain Layout
11600 3
11601 \end_layout
11602
11603 \end_inset
11604 </cell>
11605 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11606 \begin_inset Text
11607
11608 \begin_layout Plain Layout
11609 4
11610 \end_layout
11611
11612 \end_inset
11613 </cell>
11614 </row>
11615 </lyxtabular>
11616
11617 \end_inset
11618
11619
11620 \end_layout
11621
11622 \begin_layout Subsubsection
11623 Mehrfachspalten-Berechnungen
11624 \begin_inset CommandInset label
11625 LatexCommand label
11626 name "uab:Mehrfachspalten-Berechnungen"
11627
11628 \end_inset
11629
11630
11631 \begin_inset Index idx
11632 status collapsed
11633
11634 \begin_layout Plain Layout
11635 Mahrfachspalten ! Berechnung
11636 \end_layout
11637
11638 \end_inset
11639
11640
11641 \begin_inset Index idx
11642 status collapsed
11643
11644 \begin_layout Plain Layout
11645 Tabellen ! Mahrfachspalten ! Berechnung
11646 \end_layout
11647
11648 \end_inset
11649
11650
11651 \end_layout
11652
11653 \begin_layout Standard
11654 LyX unterstützt Mehrfachspalten direkt, aber wir müssen die Breite der neuen
11655  Zellen beachten.
11656 \end_layout
11657
11658 \begin_layout Standard
11659 \begin_inset Float table
11660 placement h
11661 wide false
11662 sideways false
11663 status open
11664
11665 \begin_layout Plain Layout
11666 \begin_inset Caption
11667
11668 \begin_layout Plain Layout
11669 \begin_inset CommandInset label
11670 LatexCommand label
11671 name "tab:Table-with-centered"
11672
11673 \end_inset
11674
11675 Tabelle mit zentriertem Mehrfachspalten-Text über zwei Spalten, die genau
11676  die halbe Breite der Mehrfachspalten-Zelle haben
11677 \begin_inset Argument
11678 status collapsed
11679
11680 \begin_layout Plain Layout
11681 Eine Mehrfachspalten-Tabelle
11682 \end_layout
11683
11684 \end_inset
11685
11686
11687 \end_layout
11688
11689 \end_inset
11690
11691
11692 \end_layout
11693
11694 \begin_layout Plain Layout
11695 \align center
11696 \begin_inset Tabular
11697 <lyxtabular version="3" rows="3" columns="3">
11698 <features tabularvalignment="middle">
11699 <column alignment="center" valignment="middle" width="0" special=">{\centering}m{1.25cm-6.2pt}">
11700 <column alignment="center" valignment="middle" width="0">
11701 <column alignment="center" valignment="top" width="0">
11702 <row>
11703 <cell multicolumn="1" alignment="center" valignment="middle" topline="true" leftline="true" usebox="none" special=">{\centering}m{2.5cm}">
11704 \begin_inset Text
11705
11706 \begin_layout Plain Layout
11707 Dies ist eine Mehrfach\SpecialChar \-
11708 spalten-Zelle
11709 \end_layout
11710
11711 \end_inset
11712 </cell>
11713 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11714 \begin_inset Text
11715
11716 \begin_layout Plain Layout
11717
11718 \end_layout
11719
11720 \end_inset
11721 </cell>
11722 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11723 \begin_inset Text
11724
11725 \begin_layout Plain Layout
11726 c
11727 \end_layout
11728
11729 \end_inset
11730 </cell>
11731 </row>
11732 <row>
11733 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11734 \begin_inset Text
11735
11736 \begin_layout Plain Layout
11737 d
11738 \end_layout
11739
11740 \end_inset
11741 </cell>
11742 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11743 \begin_inset Text
11744
11745 \begin_layout Plain Layout
11746 e
11747 \end_layout
11748
11749 \end_inset
11750 </cell>
11751 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11752 \begin_inset Text
11753
11754 \begin_layout Plain Layout
11755 f
11756 \end_layout
11757
11758 \end_inset
11759 </cell>
11760 </row>
11761 <row>
11762 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11763 \begin_inset Text
11764
11765 \begin_layout Plain Layout
11766 g
11767 \end_layout
11768
11769 \end_inset
11770 </cell>
11771 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11772 \begin_inset Text
11773
11774 \begin_layout Plain Layout
11775 h
11776 \end_layout
11777
11778 \end_inset
11779 </cell>
11780 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11781 \begin_inset Text
11782
11783 \begin_layout Plain Layout
11784 i
11785 \end_layout
11786
11787 \end_inset
11788 </cell>
11789 </row>
11790 </lyxtabular>
11791
11792 \end_inset
11793
11794
11795 \end_layout
11796
11797 \end_inset
11798
11799
11800 \end_layout
11801
11802 \begin_layout Standard
11803 Um Tabelle
11804 \begin_inset space ~
11805 \end_inset
11806
11807
11808 \begin_inset CommandInset ref
11809 LatexCommand ref
11810 reference "tab:Table-with-centered"
11811
11812 \end_inset
11813
11814  zu erhalten, markieren Sie die ersten beiden Zellen der ersten Zeile einer
11815  3×3-Tabelle, kreuzen im 
11816 \family sans
11817 Tabellen-Einstellungen
11818 \family default
11819 -Dialog 
11820 \family sans
11821 Mehrfachspalte
11822 \family default
11823  an, setzen die 
11824 \family sans
11825 Horizontale
11826 \begin_inset space ~
11827 \end_inset
11828
11829 Ausrichtung
11830 \family default
11831  auf 
11832 \family sans
11833 Zentriert
11834 \family default
11835  und die 
11836 \family sans
11837 Breite
11838 \family default
11839  auf 2.5
11840 \begin_inset space \thinspace{}
11841 \end_inset
11842
11843 cm.
11844  Die überspannten Spalten werden dann auf die halbe Breite gesetzt, indem
11845  Sie die Breite der ersten Spalte auf 1.25
11846 \begin_inset space \thinspace{}
11847 \end_inset
11848
11849 cm setzen.
11850  Die zweite Spalte wird dann automatisch 1.25
11851 \begin_inset space \thinspace{}
11852 \end_inset
11853
11854 cm breit (Breite der 
11855 \family sans
11856 Mehrfachspalte
11857 \family default
11858  
11859 \begin_inset Formula $-$
11860 \end_inset
11861
11862  Breite der ersten Spalte).
11863  Dies wurde so für Tabelle
11864 \begin_inset space ~
11865 \end_inset
11866
11867
11868 \begin_inset CommandInset ref
11869 LatexCommand ref
11870 reference "tab:Table-without-half"
11871
11872 \end_inset
11873
11874  gemacht.
11875 \end_layout
11876
11877 \begin_layout Standard
11878 \begin_inset Float table
11879 wide false
11880 sideways false
11881 status open
11882
11883 \begin_layout Plain Layout
11884 \begin_inset Caption
11885
11886 \begin_layout Plain Layout
11887 \begin_inset CommandInset label
11888 LatexCommand label
11889 name "tab:Table-without-half"
11890
11891 \end_inset
11892
11893 Tabelle, in der die überspannten Spalten nicht genau halb so breit sind
11894  wie die Mehrfachspalte
11895 \begin_inset Argument
11896 status collapsed
11897
11898 \begin_layout Plain Layout
11899 Eine unvollkommene Mehrfachspalten-Tabelle
11900 \end_layout
11901
11902 \end_inset
11903
11904
11905 \end_layout
11906
11907 \end_inset
11908
11909
11910 \end_layout
11911
11912 \begin_layout Plain Layout
11913 \align center
11914 \begin_inset Tabular
11915 <lyxtabular version="3" rows="3" columns="3">
11916 <features tabularvalignment="middle">
11917 <column alignment="center" valignment="top" width="1.25cm">
11918 <column alignment="center" valignment="top" width="0">
11919 <column alignment="center" valignment="top" width="0">
11920 <row>
11921 <cell multicolumn="1" alignment="center" valignment="top" topline="true" leftline="true" usebox="none" width="2.5cm">
11922 \begin_inset Text
11923
11924 \begin_layout Plain Layout
11925 Dies ist auch eine Mehr\SpecialChar \-
11926 fach\SpecialChar \-
11927 spalten-Zelle
11928 \end_layout
11929
11930 \end_inset
11931 </cell>
11932 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11933 \begin_inset Text
11934
11935 \begin_layout Plain Layout
11936
11937 \end_layout
11938
11939 \end_inset
11940 </cell>
11941 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11942 \begin_inset Text
11943
11944 \begin_layout Plain Layout
11945 c
11946 \end_layout
11947
11948 \end_inset
11949 </cell>
11950 </row>
11951 <row>
11952 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11953 \begin_inset Text
11954
11955 \begin_layout Plain Layout
11956 d
11957 \end_layout
11958
11959 \end_inset
11960 </cell>
11961 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11962 \begin_inset Text
11963
11964 \begin_layout Plain Layout
11965 e
11966 \end_layout
11967
11968 \end_inset
11969 </cell>
11970 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11971 \begin_inset Text
11972
11973 \begin_layout Plain Layout
11974 f
11975 \end_layout
11976
11977 \end_inset
11978 </cell>
11979 </row>
11980 <row>
11981 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11982 \begin_inset Text
11983
11984 \begin_layout Plain Layout
11985 g
11986 \end_layout
11987
11988 \end_inset
11989 </cell>
11990 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11991 \begin_inset Text
11992
11993 \begin_layout Plain Layout
11994 h
11995 \end_layout
11996
11997 \end_inset
11998 </cell>
11999 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12000 \begin_inset Text
12001
12002 \begin_layout Plain Layout
12003 i
12004 \end_layout
12005
12006 \end_inset
12007 </cell>
12008 </row>
12009 </lyxtabular>
12010
12011 \end_inset
12012
12013
12014 \end_layout
12015
12016 \end_inset
12017
12018
12019 \end_layout
12020
12021 \begin_layout Standard
12022 In der druckfertigen Version sehen Sie, dass die erste Spalte etwas breiter
12023  als die zweite ist.
12024  Das liegt daran, dass die Zellenbreite 
12025 \begin_inset Formula $W_{\mathrm{tot}}$
12026 \end_inset
12027
12028  nicht ihre definierte Breite 
12029 \begin_inset Formula $W_{g}$
12030 \end_inset
12031
12032  ist, sondern ein wenig mehr.
12033  Anhang
12034 \begin_inset space ~
12035 \end_inset
12036
12037
12038 \begin_inset CommandInset ref
12039 LatexCommand ref
12040 reference "kap:Exläuterung-einer-Gleichung"
12041
12042 \end_inset
12043
12044  erklärt das genauer.
12045 \end_layout
12046
12047 \begin_layout Standard
12048 Wenn 
12049 \emph on
12050 n
12051 \emph default
12052  Spalten zu einer Mehrfachspalte zusammengefasst werden, errechnet sich
12053  die definierte Breite 
12054 \begin_inset Formula $W_{g\, n}$
12055 \end_inset
12056
12057  einer Spalte, deren totale Breite = 
12058 \begin_inset Formula $W_{\mathrm{tot\, multicolumn}}/n$
12059 \end_inset
12060
12061  sein soll, wie folgt:
12062 \begin_inset Formula \begin{equation}
12063 W_{g\, n}=(W_{g\,\mathrm{multicolumn}}+(1-n)\cdot(12.4\,\mathrm{pt}))/n\label{eq:Wgn}\end{equation}
12064
12065 \end_inset
12066
12067
12068 \end_layout
12069
12070 \begin_layout Standard
12071 In unserem Falls ist 
12072 \begin_inset Formula $n=2$
12073 \end_inset
12074
12075
12076 \begin_inset Formula $W_{g\,\mathrm{multicolumn}}=2.5\,$
12077 \end_inset
12078
12079 cm, und damit wird aus Gleichung
12080 \begin_inset space ~
12081 \end_inset
12082
12083
12084 \begin_inset CommandInset ref
12085 LatexCommand ref
12086 reference "eq:Wgn"
12087
12088 \end_inset
12089
12090  
12091 \begin_inset Formula \begin{equation}
12092 W_{g\,2}=1.25\,\mathrm{cm}-6.2\,\mathrm{pt}\end{equation}
12093
12094 \end_inset
12095
12096
12097 \end_layout
12098
12099 \begin_layout Standard
12100 Damit LaTeX rechnen kann, muss das Paket 
12101 \series bold
12102 calc
12103 \series default
12104  im Vorspann geladen werden.
12105 \begin_inset Index idx
12106 status collapsed
12107
12108 \begin_layout Plain Layout
12109 LaTeX-Pakete ! calc
12110 \end_layout
12111
12112 \end_inset
12113
12114
12115 \end_layout
12116
12117 \begin_layout Standard
12118
12119 \series bold
12120
12121 \backslash
12122 usepackage{calc}
12123 \end_layout
12124
12125 \begin_layout Standard
12126 LyX erlaubt im 
12127 \family sans
12128 Breite
12129 \family default
12130 -Feld des 
12131 \family sans
12132 Tabellen-Einstellungen
12133 \family default
12134 -Dialogs keine Berechnungen.
12135  Deshalb müssen Sie die Formel für die Breite im Feld 
12136 \family sans
12137 LaTe
12138 \begin_inset ERT
12139 status collapsed
12140
12141 \begin_layout Plain Layout
12142
12143 {}
12144 \end_layout
12145
12146 \end_inset
12147
12148 X-Argument
12149 \family default
12150  eingeben.
12151  Hier iss ein Überblick über die Argumente:
12152 \end_layout
12153
12154 \begin_layout Itemize
12155
12156 \series bold
12157 p{Breite}
12158 \series default
12159  die Zelle bekommt eine feste 
12160 \series bold
12161 Breite
12162 \series default
12163 , und die vertikale Ausrichtung ist 
12164 \family sans
12165 Oben
12166 \end_layout
12167
12168 \begin_layout Itemize
12169
12170 \series bold
12171 m{Breite}
12172 \series default
12173  die Zelle bekommt eine feste 
12174 \series bold
12175 Breite
12176 \series default
12177 , und die vertikale Ausrichtung ist 
12178 \family sans
12179 Mitte
12180 \end_layout
12181
12182 \begin_layout Itemize
12183
12184 \series bold
12185 b{Breite}
12186 \series default
12187  die Zelle bekommt eine feste 
12188 \series bold
12189 Breite
12190 \series default
12191 , und die vertikale Ausrichtung ist 
12192 \family sans
12193 Unten
12194 \end_layout
12195
12196 \begin_layout Standard
12197 Wenn Sie ein LaTeX-Argument eingeben, werden alle anderen Einstellungen
12198  für diese Zelle überschrieben.
12199 \end_layout
12200
12201 \begin_layout Standard
12202 \begin_inset Note Greyedout
12203 status open
12204
12205 \begin_layout Plain Layout
12206
12207 \series bold
12208 Bemerkung:
12209 \series default
12210  Wegen eines Fehlers in LyX werden die überschriebenen Einstellungen dennoch
12211  angezeigt.
12212 \end_layout
12213
12214 \end_inset
12215
12216
12217 \end_layout
12218
12219 \begin_layout Standard
12220 Weil der Text horizontal zentriert sein soll, wurde in den Einstellungen
12221  der Zelle mit dem Inhalt 
12222 \begin_inset Quotes gld
12223 \end_inset
12224
12225 d
12226 \begin_inset Quotes grd
12227 \end_inset
12228
12229  der Tabelle
12230 \begin_inset space ~
12231 \end_inset
12232
12233
12234 \begin_inset CommandInset ref
12235 LatexCommand ref
12236 reference "tab:Table-with-centered"
12237
12238 \end_inset
12239
12240  auch noch der Befehl
12241 \family typewriter
12242 \series bold
12243  
12244 \family default
12245
12246 \backslash
12247 centering
12248 \series default
12249  hinzugefügt.
12250  Das Ganze sieht dann so aus:
12251 \end_layout
12252
12253 \begin_layout Standard
12254
12255 \series bold
12256 |>{
12257 \backslash
12258 centering}m{1.25cm-6.2pt}
12259 \end_layout
12260
12261 \begin_layout Standard
12262 Der vertikale Strich 
12263 \series bold
12264
12265 \begin_inset Quotes gld
12266 \end_inset
12267
12268 |
12269 \series default
12270
12271 \begin_inset Quotes grd
12272 \end_inset
12273
12274  am Anfang zeichnet die linke Linie, und der Befehl 
12275 \series bold
12276
12277 \begin_inset Quotes gld
12278 \end_inset
12279
12280 >{ }
12281 \begin_inset Quotes grd
12282 \end_inset
12283
12284
12285 \series default
12286  bedeutet, dass die Befehle in der geschweiften Klammer vor dem Erstellen
12287  der Zelle benutzt werden sollen.
12288 \end_layout
12289
12290 \begin_layout Standard
12291 Obwohl wir eine zentrierte Ausrichtung für die Mehrfachspalte festgelegt
12292  haben, ist der Text noch immer linksbündig, weil LyX Ausrichtungen nur
12293  für einzelne Spalten anwendet.
12294  Deswegen musste für die Mehrfachspalte folgendes LaTeX-Argument benutzt
12295  werden:
12296 \end_layout
12297
12298 \begin_layout Standard
12299
12300 \series bold
12301 |>{
12302 \backslash
12303 centering}m{2.5cm}|
12304 \end_layout
12305
12306 \begin_layout Subsection
12307 Mehrfachzeilen
12308 \begin_inset CommandInset label
12309 LatexCommand label
12310 name "uab:Mehrfachzeilen"
12311
12312 \end_inset
12313
12314
12315 \begin_inset Index idx
12316 status collapsed
12317
12318 \begin_layout Plain Layout
12319 Mehrfachzeilen
12320 \end_layout
12321
12322 \end_inset
12323
12324
12325 \begin_inset Index idx
12326 status collapsed
12327
12328 \begin_layout Plain Layout
12329 Tabellen ! Mehrfachzeilen
12330 \end_layout
12331
12332 \end_inset
12333
12334
12335 \end_layout
12336
12337 \begin_layout Standard
12338 Im Gegensatz zu Mehrfachspalten werden Mehrfachzeilen noch nicht durch LyX
12339  unterstützt, sodass etwas TeX-Code notwendig ist.
12340  Damit LaTeX Mehrfachzeilen erzeugen kann, muss das Paket 
12341 \series bold
12342 multirow
12343 \series default
12344
12345 \begin_inset Index idx
12346 status collapsed
12347
12348 \begin_layout Plain Layout
12349 LaTeX-Pakete ! multirow
12350 \end_layout
12351
12352 \end_inset
12353
12354  im Vorspann geladen werden:
12355 \end_layout
12356
12357 \begin_layout Standard
12358
12359 \series bold
12360
12361 \backslash
12362 usepackage{multirow}
12363 \end_layout
12364
12365 \begin_layout Standard
12366 Mehrfachzeilen werden mit folgendem Befehl erzeugt:
12367 \end_layout
12368
12369 \begin_layout Standard
12370
12371 \series bold
12372
12373 \backslash
12374 multirow{Zeilenzahl}{Zellenbreite}{Zelleninhalt}
12375 \end_layout
12376
12377 \begin_layout Standard
12378 In der folgenden 3×3-Tabelle wurde obere Linie der letzten Zelle der ersten
12379  Spalte entfernt.
12380 \end_layout
12381
12382 \begin_layout Standard
12383 \align center
12384 \begin_inset ERT
12385 status collapsed
12386
12387 \begin_layout Plain Layout
12388
12389
12390 \backslash
12391 renewcommand{
12392 \backslash
12393 multirowsetup}{
12394 \backslash
12395 centering}
12396 \end_layout
12397
12398 \end_inset
12399
12400
12401 \begin_inset Tabular
12402 <lyxtabular version="3" rows="3" columns="3">
12403 <features tabularvalignment="middle">
12404 <column alignment="center" valignment="top" width="0">
12405 <column alignment="center" valignment="top" width="0">
12406 <column alignment="center" valignment="top" width="0">
12407 <row>
12408 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12409 \begin_inset Text
12410
12411 \begin_layout Plain Layout
12412 a
12413 \end_layout
12414
12415 \end_inset
12416 </cell>
12417 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12418 \begin_inset Text
12419
12420 \begin_layout Plain Layout
12421 b
12422 \end_layout
12423
12424 \end_inset
12425 </cell>
12426 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12427 \begin_inset Text
12428
12429 \begin_layout Plain Layout
12430 c
12431 \end_layout
12432
12433 \end_inset
12434 </cell>
12435 </row>
12436 <row>
12437 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12438 \begin_inset Text
12439
12440 \begin_layout Plain Layout
12441 \begin_inset ERT
12442 status collapsed
12443
12444 \begin_layout Plain Layout
12445
12446
12447 \backslash
12448 multirow{2}{2.5cm}{
12449 \end_layout
12450
12451 \end_inset
12452
12453 mehrzeiliger Text
12454 \begin_inset ERT
12455 status collapsed
12456
12457 \begin_layout Plain Layout
12458
12459 }
12460 \end_layout
12461
12462 \end_inset
12463
12464
12465 \end_layout
12466
12467 \end_inset
12468 </cell>
12469 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12470 \begin_inset Text
12471
12472 \begin_layout Plain Layout
12473 e
12474 \end_layout
12475
12476 \end_inset
12477 </cell>
12478 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12479 \begin_inset Text
12480
12481 \begin_layout Plain Layout
12482 f
12483 \end_layout
12484
12485 \end_inset
12486 </cell>
12487 </row>
12488 <row>
12489 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
12490 \begin_inset Text
12491
12492 \begin_layout Plain Layout
12493
12494 \end_layout
12495
12496 \end_inset
12497 </cell>
12498 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12499 \begin_inset Text
12500
12501 \begin_layout Plain Layout
12502 h
12503 \end_layout
12504
12505 \end_inset
12506 </cell>
12507 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12508 \begin_inset Text
12509
12510 \begin_layout Plain Layout
12511 i
12512 \end_layout
12513
12514 \end_inset
12515 </cell>
12516 </row>
12517 </lyxtabular>
12518
12519 \end_inset
12520
12521
12522 \begin_inset ERT
12523 status collapsed
12524
12525 \begin_layout Plain Layout
12526
12527
12528 \backslash
12529 renewcommand{
12530 \backslash
12531 multirowsetup}{
12532 \backslash
12533 raggedright}
12534 \end_layout
12535
12536 \end_inset
12537
12538
12539 \end_layout
12540
12541 \begin_layout Standard
12542 In der Zelle darüber wurde dann mit dem Befehl
12543 \end_layout
12544
12545 \begin_layout Standard
12546
12547 \series bold
12548
12549 \backslash
12550 multirow{2}{2.5cm}{
12551 \end_layout
12552
12553 \begin_layout Standard
12554 als TeX-Code die Mehrfachzeile definiert.
12555  Sie besteht aus zwei Zeilen und einer Breite von 2.5
12556 \begin_inset space \thinspace{}
12557 \end_inset
12558
12559 cm.
12560  Der Inhalt steht außerhalb des TeX-Code-Kästchens, und der Befehl wird
12561  mit der Klammer 
12562 \begin_inset Quotes gld
12563 \end_inset
12564
12565
12566 \series bold
12567 }
12568 \series default
12569
12570 \begin_inset Quotes grd
12571 \end_inset
12572
12573  in einem weiteren TeX-Code-Kästchen abgeschlossen.
12574 \end_layout
12575
12576 \begin_layout Standard
12577
12578 \series bold
12579
12580 \backslash
12581 multirow
12582 \series default
12583  richtet seinen Inhalt standardmäßig linksbündig aus.
12584  Um die Ausrichtung zu Ändern, erneuern Sie den Befehl 
12585 \series bold
12586
12587 \backslash
12588 multirowsetup
12589 \series default
12590  mit dem Befehl
12591 \end_layout
12592
12593 \begin_layout Standard
12594
12595 \series bold
12596
12597 \backslash
12598 renewcommand{
12599 \backslash
12600 multirowsetup}{
12601 \backslash
12602 centering}
12603 \end_layout
12604
12605 \begin_layout Standard
12606 im LaTeX-Vorspann.
12607  Es werden dann die Inhalte aller Mehrfachzeilen-Zellen des Dokuments zentriert.
12608  Wenn diese Ausrichtung nur für einige Tabellen gelten soll, kann der Befehl
12609  auch mittels TeX-Code vor der jeweiligen Tabelle, statt im LaTeX-Vorspann,
12610  erneuert werden.
12611  Für rechtsbündigen Text ersetzt man 
12612 \series bold
12613
12614 \backslash
12615 centering
12616 \series default
12617  durch 
12618 \series bold
12619
12620 \backslash
12621 raggedleft
12622 \series default
12623 .
12624  Um zur linksbündigen Ausrichtung zurückzukehren, wird 
12625 \series bold
12626
12627 \backslash
12628 raggedright
12629 \series default
12630  verwendet.
12631 \end_layout
12632
12633 \begin_layout Section
12634 Formale Tabellen
12635 \begin_inset CommandInset label
12636 LatexCommand label
12637 name "abs:Formale-Tabellen"
12638
12639 \end_inset
12640
12641
12642 \begin_inset Index idx
12643 status collapsed
12644
12645 \begin_layout Plain Layout
12646 Tabellen ! Formale
12647 \end_layout
12648
12649 \end_inset
12650
12651
12652 \end_layout
12653
12654 \begin_layout Standard
12655 Tabellen werden in Büchern oft wie Tabelle
12656 \begin_inset space ~
12657 \end_inset
12658
12659
12660 \begin_inset CommandInset ref
12661 LatexCommand ref
12662 reference "tab:Formale-Tabelle"
12663
12664 \end_inset
12665
12666  gesetzt.
12667  Diese Tabellen werden
12668 \emph on
12669  formal
12670 \emph default
12671  genannt.
12672  Formale Tabellen bekommen Sie, wenn Sie im 
12673 \family sans
12674 Tabellen-Einstellungen
12675 \family default
12676 -Dialog auf der Karteikarte 
12677 \family sans
12678 Rahmen
12679 \family default
12680  den 
12681 \family sans
12682 Stil
12683 \family default
12684  
12685 \family sans
12686 Formal
12687 \family default
12688  ankreuzen.
12689 \end_layout
12690
12691 \begin_layout Standard
12692 \begin_inset Float table
12693 placement h
12694 wide false
12695 sideways false
12696 status open
12697
12698 \begin_layout Plain Layout
12699 \begin_inset Caption
12700
12701 \begin_layout Plain Layout
12702 \begin_inset CommandInset label
12703 LatexCommand label
12704 name "tab:Formale-Tabelle"
12705
12706 \end_inset
12707
12708 Formale Tabelle
12709 \end_layout
12710
12711 \end_inset
12712
12713
12714 \end_layout
12715
12716 \begin_layout Plain Layout
12717 \align center
12718 \begin_inset Tabular
12719 <lyxtabular version="3" rows="8" columns="4">
12720 <features booktabs="true" tabularvalignment="middle">
12721 <column alignment="center" valignment="top" width="0">
12722 <column alignment="right" valignment="top" width="0">
12723 <column alignment="right" valignment="top" width="0">
12724 <column alignment="right" valignment="top" width="0">
12725 <row>
12726 <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
12727 \begin_inset Text
12728
12729 \begin_layout Plain Layout
12730 System
12731 \end_layout
12732
12733 \end_inset
12734 </cell>
12735 <cell alignment="center" valignment="top" topline="true" usebox="none">
12736 \begin_inset Text
12737
12738 \begin_layout Plain Layout
12739 Chip
12740 \begin_inset space \thinspace{}
12741 \end_inset
12742
12743 1
12744 \end_layout
12745
12746 \end_inset
12747 </cell>
12748 <cell multicolumn="1" alignment="center" valignment="top" topline="true" usebox="none">
12749 \begin_inset Text
12750
12751 \begin_layout Plain Layout
12752 Chip
12753 \begin_inset space \thinspace{}
12754 \end_inset
12755
12756 2
12757 \end_layout
12758
12759 \end_inset
12760 </cell>
12761 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12762 \begin_inset Text
12763
12764 \begin_layout Plain Layout
12765
12766 \end_layout
12767
12768 \end_inset
12769 </cell>
12770 </row>
12771 <row>
12772 <cell alignment="center" valignment="top" rightline="true" usebox="none">
12773 \begin_inset Text
12774
12775 \begin_layout Plain Layout
12776 \begin_inset ERT
12777 status collapsed
12778
12779 \begin_layout Plain Layout
12780
12781
12782 \backslash
12783 cmidrule(r){2-2}
12784 \end_layout
12785
12786 \end_inset
12787
12788
12789 \begin_inset ERT
12790 status collapsed
12791
12792 \begin_layout Plain Layout
12793
12794
12795 \backslash
12796 cmidrule(l){3-4}
12797 \end_layout
12798
12799 \end_inset
12800
12801 Detektordicke in µm
12802 \end_layout
12803
12804 \end_inset
12805 </cell>
12806 <cell alignment="center" valignment="top" usebox="none">
12807 \begin_inset Text
12808
12809 \begin_layout Plain Layout
12810 300
12811 \end_layout
12812
12813 \end_inset
12814 </cell>
12815 <cell alignment="center" valignment="top" usebox="none">
12816 \begin_inset Text
12817
12818 \begin_layout Plain Layout
12819 300
12820 \end_layout
12821
12822 \end_inset
12823 </cell>
12824 <cell alignment="center" valignment="top" usebox="none">
12825 \begin_inset Text
12826
12827 \begin_layout Plain Layout
12828 700
12829 \end_layout
12830
12831 \end_inset
12832 </cell>
12833 </row>
12834 <row>
12835 <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
12836 \begin_inset Text
12837
12838 \begin_layout Plain Layout
12839 Kantenwinkel in °
12840 \end_layout
12841
12842 \end_inset
12843 </cell>
12844 <cell alignment="center" valignment="top" topline="true" usebox="none">
12845 \begin_inset Text
12846
12847 \begin_layout Plain Layout
12848 3.55
12849 \end_layout
12850
12851 \end_inset
12852 </cell>
12853 <cell alignment="center" valignment="top" topline="true" usebox="none">
12854 \begin_inset Text
12855
12856 \begin_layout Plain Layout
12857 2.71
12858 \end_layout
12859
12860 \end_inset
12861 </cell>
12862 <cell alignment="center" valignment="top" topline="true" usebox="none">
12863 \begin_inset Text
12864
12865 \begin_layout Plain Layout
12866 7.99
12867 \end_layout
12868
12869 \end_inset
12870 </cell>
12871 </row>
12872 <row topspace="default">
12873 <cell alignment="center" valignment="top" rightline="true" usebox="none">
12874 \begin_inset Text
12875
12876 \begin_layout Plain Layout
12877 räumliche Auf\SpecialChar \textcompwordmark{}
12878 lösung in µm
12879 \end_layout
12880
12881 \end_inset
12882 </cell>
12883 <cell alignment="center" valignment="top" usebox="none">
12884 \begin_inset Text
12885
12886 \begin_layout Plain Layout
12887 4.26
12888 \end_layout
12889
12890 \end_inset
12891 </cell>
12892 <cell alignment="center" valignment="top" usebox="none">
12893 \begin_inset Text
12894
12895 \begin_layout Plain Layout
12896 10.17
12897 \end_layout
12898
12899 \end_inset
12900 </cell>
12901 <cell alignment="center" valignment="top" usebox="none">
12902 \begin_inset Text
12903
12904 \begin_layout Plain Layout
12905 10.56
12906 \end_layout
12907
12908 \end_inset
12909 </cell>
12910 </row>
12911 <row topspace="default">
12912 <cell alignment="center" valignment="top" rightline="true" usebox="none">
12913 \begin_inset Text
12914
12915 \begin_layout Plain Layout
12916 MTF bei 
12917 \begin_inset Formula $f_{\mathrm{max}}$
12918 \end_inset
12919
12920
12921 \end_layout
12922
12923 \end_inset
12924 </cell>
12925 <cell alignment="center" valignment="top" usebox="none">
12926 \begin_inset Text
12927
12928 \begin_layout Plain Layout
12929 0.53
12930 \end_layout
12931
12932 \end_inset
12933 </cell>
12934 <cell alignment="center" valignment="top" usebox="none">
12935 \begin_inset Text
12936
12937 \begin_layout Plain Layout
12938 0.37
12939 \end_layout
12940
12941 \end_inset
12942 </cell>
12943 <cell alignment="center" valignment="top" usebox="none">
12944 \begin_inset Text
12945
12946 \begin_layout Plain Layout
12947 0.39
12948 \end_layout
12949
12950 \end_inset
12951 </cell>
12952 </row>
12953 <row topspace="default">
12954 <cell alignment="center" valignment="top" rightline="true" usebox="none">
12955 \begin_inset Text
12956
12957 \begin_layout Plain Layout
12958 \begin_inset ERT
12959 status collapsed
12960
12961 \begin_layout Plain Layout
12962
12963
12964 \backslash
12965 cmidrule(l{10pt}){1-1}
12966 \end_layout
12967
12968 \end_inset
12969
12970 LSF räumliche Auf\SpecialChar \textcompwordmark{}
12971 lösung
12972 \end_layout
12973
12974 \end_inset
12975 </cell>
12976 <cell alignment="center" valignment="top" usebox="none">
12977 \begin_inset Text
12978
12979 \begin_layout Plain Layout
12980
12981 \end_layout
12982
12983 \end_inset
12984 </cell>
12985 <cell alignment="center" valignment="top" usebox="none">
12986 \begin_inset Text
12987
12988 \begin_layout Plain Layout
12989
12990 \end_layout
12991
12992 \end_inset
12993 </cell>
12994 <cell alignment="center" valignment="top" usebox="none">
12995 \begin_inset Text
12996
12997 \begin_layout Plain Layout
12998
12999 \end_layout
13000
13001 \end_inset
13002 </cell>
13003 </row>
13004 <row>
13005 <cell alignment="center" valignment="top" rightline="true" usebox="none">
13006 \begin_inset Text
13007
13008 \begin_layout Plain Layout
13009 in µm
13010 \end_layout
13011
13012 \end_inset
13013 </cell>
13014 <cell alignment="center" valignment="top" usebox="none">
13015 \begin_inset Text
13016
13017 \begin_layout Plain Layout
13018 129.7
13019 \end_layout
13020
13021 \end_inset
13022 </cell>
13023 <cell alignment="center" valignment="top" usebox="none">
13024 \begin_inset Text
13025
13026 \begin_layout Plain Layout
13027 52.75
13028 \end_layout
13029
13030 \end_inset
13031 </cell>
13032 <cell alignment="center" valignment="top" usebox="none">
13033 \begin_inset Text
13034
13035 \begin_layout Plain Layout
13036 50.78
13037 \end_layout
13038
13039 \end_inset
13040 </cell>
13041 </row>
13042 <row>
13043 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
13044 \begin_inset Text
13045
13046 \begin_layout Plain Layout
13047 in % der Pixelgröße
13048 \end_layout
13049
13050 \end_inset
13051 </cell>
13052 <cell alignment="center" valignment="top" bottomline="true" usebox="none">
13053 \begin_inset Text
13054
13055 \begin_layout Plain Layout
13056 76.3
13057 \end_layout
13058
13059 \end_inset
13060 </cell>
13061 <cell alignment="center" valignment="top" bottomline="true" usebox="none">
13062 \begin_inset Text
13063
13064 \begin_layout Plain Layout
13065 95.9
13066 \end_layout
13067
13068 \end_inset
13069 </cell>
13070 <cell alignment="center" valignment="top" bottomline="true" usebox="none">
13071 \begin_inset Text
13072
13073 \begin_layout Plain Layout
13074 92.3
13075 \end_layout
13076
13077 \end_inset
13078 </cell>
13079 </row>
13080 </lyxtabular>
13081
13082 \end_inset
13083
13084
13085 \end_layout
13086
13087 \end_inset
13088
13089
13090 \end_layout
13091
13092 \begin_layout Standard
13093 Abstände zu Tabellenzeilen können auf der Karteikarte 
13094 \family sans
13095 Rahmen
13096 \family default
13097  des 
13098 \family sans
13099 Tabellen-Ein\SpecialChar \-
13100 stel\SpecialChar \-
13101 lun\SpecialChar \-
13102 gen
13103 \family default
13104 -Dialogs hinzugefügt werden, wie in Abschnitt
13105 \begin_inset space ~
13106 \end_inset
13107
13108
13109 \begin_inset CommandInset ref
13110 LatexCommand ref
13111 reference "uab:Zeilenabstand"
13112
13113 \end_inset
13114
13115  beschrieben.
13116 \end_layout
13117
13118 \begin_layout Standard
13119 Im Gegensatz zu normalen Tabellen haben formale keine vertikalen Linien.
13120  Die horizontalen können wie für normale Tabellen gesetzt werden, sehen
13121  gedruckt aber anders aus.
13122  Die erste und letzte Linie ist 0.08
13123 \begin_inset space \thinspace{}
13124 \end_inset
13125
13126 em dick, während die anderen 0.05
13127 \begin_inset space \thinspace{}
13128 \end_inset
13129
13130 em dick sind.
13131 \end_layout
13132
13133 \begin_layout Standard
13134 Die Standarddicken können im LaTeX-Vorspann geändert werden:
13135 \end_layout
13136
13137 \begin_layout Standard
13138
13139 \series bold
13140
13141 \backslash
13142 let
13143 \backslash
13144 mytoprule
13145 \backslash
13146 toprule
13147 \begin_inset Newline newline
13148 \end_inset
13149
13150
13151 \backslash
13152 renewcommand{
13153 \backslash
13154 toprule}{
13155 \backslash
13156 mytoprule[Breite]}
13157 \end_layout
13158
13159 \begin_layout Standard
13160 Dies Beispiel gilt für die oberste Linie, genannt 
13161 \series bold
13162 toprule
13163 \series default
13164 .
13165  Für die letzte müssen Sie 
13166 \series bold
13167 toprule
13168 \series default
13169  durch 
13170 \series bold
13171 bottomrule
13172 \series default
13173  ersetzen.
13174  Die Linien dazwischen heißen 
13175 \series bold
13176 midrule
13177 \series default
13178 .
13179  Für 
13180 \family sans
13181 Breite
13182 \family default
13183  können Sie alle Einheiten benutzen, die in Anhang
13184 \begin_inset space ~
13185 \end_inset
13186
13187
13188 \begin_inset CommandInset ref
13189 LatexCommand ref
13190 reference "kap:In-LyX-verfügbare"
13191
13192 \end_inset
13193
13194  aufgelistet sind.
13195 \end_layout
13196
13197 \begin_layout Standard
13198 Linien, die nicht über alle Spalten der Tabelle gehen, erhalten Sie durch
13199  eine Linie unter einer Mehrfachspalte.
13200  LyX wird intern den Befehl 
13201 \series bold
13202
13203 \backslash
13204 cmidrule
13205 \series default
13206  benutzen, um diese Linie zu drucken.
13207  Der ganze Befehl sieht so aus:
13208 \end_layout
13209
13210 \begin_layout Standard
13211
13212 \series bold
13213
13214 \backslash
13215 cmidrule[width](trim){Anfangsspalte-Endspalte}
13216 \end_layout
13217
13218 \begin_layout Standard
13219 Die 
13220 \series bold
13221
13222 \backslash
13223 cmidrule
13224 \series default
13225 -Optionen werden (noch) nicht von LyX unterstützt, also müssen Sie TeX-Code
13226  benutzen.
13227  
13228 \series bold
13229
13230 \backslash
13231 cmidrule
13232 \series default
13233  kann man benutzen, indem man den Befehl als TeX-Code als erstes in die
13234  erste Zelle einer Zeile einfügt.
13235  Die Linie wird dann über der Zeile gedruckt.
13236 \end_layout
13237
13238 \begin_layout Standard
13239 Der Standardwert ist 0.03
13240 \begin_inset space \thinspace{}
13241 \end_inset
13242
13243 em.
13244  Die Linie reicht von 
13245 \family typewriter
13246 Anfangsspalte
13247 \family default
13248  bis 
13249 \family typewriter
13250 End\SpecialChar \-
13251 spal\SpecialChar \-
13252 te
13253 \family default
13254 .
13255  Wenn die Linie nur über eine Spalte reicht, sind beide Werte gleich.
13256   Der optionale Parameter 
13257 \family typewriter
13258 trim
13259 \family default
13260  kann die Werte 
13261 \emph on
13262 r
13263 \emph default
13264
13265 \emph on
13266 r{Breite}
13267 \emph default
13268
13269 \emph on
13270 l
13271 \family typewriter
13272 \emph default
13273  
13274 \family default
13275 oder 
13276 \emph on
13277 l{Breite}
13278 \emph default
13279  annehmen, wobei die 
13280 \family sans
13281 Breite
13282 \family default
13283  optional ist.
13284  
13285 \emph on
13286 l{2pt}
13287 \emph default
13288  zum Beispiel bedeutet, dass die Linie links um 2
13289 \begin_inset space \thinspace{}
13290 \end_inset
13291
13292 pt gekürzt wird.
13293  Ohne Breitenangabe werden die Linien um 0.5
13294 \begin_inset space \thinspace{}
13295 \end_inset
13296
13297 em gekürzt.
13298 \end_layout
13299
13300 \begin_layout Standard
13301 \begin_inset VSpace bigskip
13302 \end_inset
13303
13304 In Tabelle
13305 \begin_inset space ~
13306 \end_inset
13307
13308
13309 \begin_inset CommandInset ref
13310 LatexCommand ref
13311 reference "tab:Formale-Tabelle"
13312
13313 \end_inset
13314
13315  wurden die Befehle
13316 \end_layout
13317
13318 \begin_layout Standard
13319
13320 \series bold
13321
13322 \backslash
13323 cmidrule(r){2-2}
13324 \backslash
13325 cmidrule(l){3-4}
13326 \end_layout
13327
13328 \begin_layout Standard
13329 am Anfang der zweiten Zeile und
13330 \end_layout
13331
13332 \begin_layout Standard
13333
13334 \series bold
13335
13336 \backslash
13337 cmidrule(l{10pt}){1-1}
13338 \end_layout
13339
13340 \begin_layout Standard
13341 in der sechsten benutzt.
13342 \end_layout
13343
13344 \begin_layout Standard
13345 \begin_inset VSpace bigskip
13346 \end_inset
13347
13348
13349 \end_layout
13350
13351 \begin_layout Standard
13352 Sie können mit 
13353 \series bold
13354
13355 \backslash
13356 cmidrule
13357 \series default
13358  auch überlappende Linien wie in Tabelle
13359 \begin_inset space ~
13360 \end_inset
13361
13362
13363 \begin_inset CommandInset ref
13364 LatexCommand ref
13365 reference "tab:Special-booktabs-table"
13366
13367 \end_inset
13368
13369  definieren.
13370  Der Befehl ist:
13371 \end_layout
13372
13373 \begin_layout Standard
13374
13375 \series bold
13376
13377 \backslash
13378 morecmidrules
13379 \end_layout
13380
13381 \begin_layout Standard
13382 In Zeile zwei der Tabelle
13383 \begin_inset space ~
13384 \end_inset
13385
13386
13387 \begin_inset CommandInset ref
13388 LatexCommand ref
13389 reference "tab:Special-booktabs-table"
13390
13391 \end_inset
13392
13393  wurde folgender Befehl benutzt:
13394 \end_layout
13395
13396 \begin_layout Standard
13397
13398 \series bold
13399
13400 \backslash
13401 cmidrule(r){2-2}
13402 \backslash
13403 cmidrule(l){3-4}
13404 \backslash
13405 morecmidrules
13406 \begin_inset Newline newline
13407 \end_inset
13408
13409
13410 \backslash
13411 cmidrule{2-4}
13412 \end_layout
13413
13414 \begin_layout Standard
13415 und in Zeile sechs:
13416 \end_layout
13417
13418 \begin_layout Standard
13419
13420 \series bold
13421
13422 \backslash
13423 midrule
13424 \backslash
13425 morecmidrules
13426 \backslash
13427 cmidrule{3-4}
13428 \end_layout
13429
13430 \begin_layout Standard
13431 \begin_inset VSpace bigskip
13432 \end_inset
13433
13434
13435 \end_layout
13436
13437 \begin_layout Standard
13438 Wenn Sie trotzdem mit den Linien nicht zufrieden sind, können Sie mit folgendem
13439  Befehl eine Linie zeichnen, die alle Spalten überspannt:
13440 \end_layout
13441
13442 \begin_layout Standard
13443
13444 \series bold
13445
13446 \backslash
13447 specialrule{Dicke}{Abstand davor}{Abstand danach}
13448 \end_layout
13449
13450 \begin_layout Standard
13451 Weitere Informationen finden Sie im Handbuch des LaTeX-Pakets 
13452 \series bold
13453 booktabs
13454 \series default
13455  
13456 \begin_inset CommandInset citation
13457 LatexCommand cite
13458 key "booktabs"
13459
13460 \end_inset
13461
13462 .
13463 \begin_inset Index idx
13464 status collapsed
13465
13466 \begin_layout Plain Layout
13467 LaTeX-Pakete ! booktabs
13468 \end_layout
13469
13470 \end_inset
13471
13472
13473 \end_layout
13474
13475 \begin_layout Standard
13476 \begin_inset Float table
13477 placement h
13478 wide false
13479 sideways false
13480 status open
13481
13482 \begin_layout Plain Layout
13483 \begin_inset Caption
13484
13485 \begin_layout Plain Layout
13486 \begin_inset CommandInset label
13487 LatexCommand label
13488 name "tab:Special-booktabs-table"
13489
13490 \end_inset
13491
13492 Eine spezielle formale Tabelle
13493 \end_layout
13494
13495 \end_inset
13496
13497
13498 \end_layout
13499
13500 \begin_layout Plain Layout
13501 \align center
13502 \begin_inset Tabular
13503 <lyxtabular version="3" rows="8" columns="4">
13504 <features booktabs="true" tabularvalignment="middle">
13505 <column alignment="center" valignment="top" width="0">
13506 <column alignment="center" valignment="top" width="0">
13507 <column alignment="right" valignment="top" width="0">
13508 <column alignment="right" valignment="top" width="0">
13509 <row>
13510 <cell alignment="center" valignment="top" topline="true" usebox="none">
13511 \begin_inset Text
13512
13513 \begin_layout Plain Layout
13514 System
13515 \end_layout
13516
13517 \end_inset
13518 </cell>
13519 <cell alignment="center" valignment="top" topline="true" usebox="none">
13520 \begin_inset Text
13521
13522 \begin_layout Plain Layout
13523 Chip
13524 \begin_inset space \thinspace{}
13525 \end_inset
13526
13527 1
13528 \end_layout
13529
13530 \end_inset
13531 </cell>
13532 <cell multicolumn="1" alignment="center" valignment="top" topline="true" usebox="none">
13533 \begin_inset Text
13534
13535 \begin_layout Plain Layout
13536 Chip
13537 \begin_inset space \thinspace{}
13538 \end_inset
13539
13540 2
13541 \end_layout
13542
13543 \end_inset
13544 </cell>
13545 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13546 \begin_inset Text
13547
13548 \begin_layout Plain Layout
13549
13550 \end_layout
13551
13552 \end_inset
13553 </cell>
13554 </row>
13555 <row>
13556 <cell alignment="center" valignment="top" usebox="none">
13557 \begin_inset Text
13558
13559 \begin_layout Plain Layout
13560 \begin_inset ERT
13561 status collapsed
13562
13563 \begin_layout Plain Layout
13564
13565
13566 \backslash
13567 cmidrule(r){2-2}
13568 \end_layout
13569
13570 \end_inset
13571
13572
13573 \begin_inset ERT
13574 status collapsed
13575
13576 \begin_layout Plain Layout
13577
13578
13579 \backslash
13580 cmidrule(l){3-4}
13581 \end_layout
13582
13583 \end_inset
13584
13585
13586 \begin_inset ERT
13587 status collapsed
13588
13589 \begin_layout Plain Layout
13590
13591
13592 \backslash
13593 morecmidrules 
13594 \end_layout
13595
13596 \end_inset
13597
13598
13599 \begin_inset ERT
13600 status collapsed
13601
13602 \begin_layout Plain Layout
13603
13604
13605 \backslash
13606 cmidrule{2-4}
13607 \end_layout
13608
13609 \end_inset
13610
13611 Detektordicke in µm
13612 \end_layout
13613
13614 \end_inset
13615 </cell>
13616 <cell alignment="center" valignment="top" usebox="none">
13617 \begin_inset Text
13618
13619 \begin_layout Plain Layout
13620 300
13621 \end_layout
13622
13623 \end_inset
13624 </cell>
13625 <cell alignment="center" valignment="top" usebox="none">
13626 \begin_inset Text
13627
13628 \begin_layout Plain Layout
13629 300
13630 \end_layout
13631
13632 \end_inset
13633 </cell>
13634 <cell alignment="center" valignment="top" usebox="none">
13635 \begin_inset Text
13636
13637 \begin_layout Plain Layout
13638 700
13639 \end_layout
13640
13641 \end_inset
13642 </cell>
13643 </row>
13644 <row>
13645 <cell alignment="center" valignment="top" topline="true" usebox="none">
13646 \begin_inset Text
13647
13648 \begin_layout Plain Layout
13649 Kantenwinkel in °
13650 \end_layout
13651
13652 \end_inset
13653 </cell>
13654 <cell alignment="center" valignment="top" topline="true" usebox="none">
13655 \begin_inset Text
13656
13657 \begin_layout Plain Layout
13658 3,55
13659 \end_layout
13660
13661 \end_inset
13662 </cell>
13663 <cell alignment="center" valignment="top" topline="true" usebox="none">
13664 \begin_inset Text
13665
13666 \begin_layout Plain Layout
13667 2,71
13668 \end_layout
13669
13670 \end_inset
13671 </cell>
13672 <cell alignment="center" valignment="top" topline="true" usebox="none">
13673 \begin_inset Text
13674
13675 \begin_layout Plain Layout
13676 7,99
13677 \end_layout
13678
13679 \end_inset
13680 </cell>
13681 </row>
13682 <row topspace="default">
13683 <cell alignment="center" valignment="top" usebox="none">
13684 \begin_inset Text
13685
13686 \begin_layout Plain Layout
13687 räumliche Auf\SpecialChar \textcompwordmark{}
13688 lösung in µm
13689 \end_layout
13690
13691 \end_inset
13692 </cell>
13693 <cell alignment="center" valignment="top" usebox="none">
13694 \begin_inset Text
13695
13696 \begin_layout Plain Layout
13697 4,26
13698 \end_layout
13699
13700 \end_inset
13701 </cell>
13702 <cell alignment="center" valignment="top" usebox="none">
13703 \begin_inset Text
13704
13705 \begin_layout Plain Layout
13706 10,17
13707 \end_layout
13708
13709 \end_inset
13710 </cell>
13711 <cell alignment="center" valignment="top" usebox="none">
13712 \begin_inset Text
13713
13714 \begin_layout Plain Layout
13715 10,56
13716 \end_layout
13717
13718 \end_inset
13719 </cell>
13720 </row>
13721 <row topspace="default">
13722 <cell alignment="center" valignment="top" usebox="none">
13723 \begin_inset Text
13724
13725 \begin_layout Plain Layout
13726 MTF bei 
13727 \begin_inset Formula $f_{\mathrm{max}}$
13728 \end_inset
13729
13730
13731 \end_layout
13732
13733 \end_inset
13734 </cell>
13735 <cell alignment="center" valignment="top" usebox="none">
13736 \begin_inset Text
13737
13738 \begin_layout Plain Layout
13739 0,53
13740 \end_layout
13741
13742 \end_inset
13743 </cell>
13744 <cell alignment="center" valignment="top" usebox="none">
13745 \begin_inset Text
13746
13747 \begin_layout Plain Layout
13748 0,37
13749 \end_layout
13750
13751 \end_inset
13752 </cell>
13753 <cell alignment="center" valignment="top" usebox="none">
13754 \begin_inset Text
13755
13756 \begin_layout Plain Layout
13757 0,39
13758 \end_layout
13759
13760 \end_inset
13761 </cell>
13762 </row>
13763 <row>
13764 <cell alignment="center" valignment="top" topline="true" usebox="none">
13765 \begin_inset Text
13766
13767 \begin_layout Plain Layout
13768 \begin_inset ERT
13769 status collapsed
13770
13771 \begin_layout Plain Layout
13772
13773
13774 \backslash
13775 morecmidrules 
13776 \end_layout
13777
13778 \end_inset
13779
13780
13781 \begin_inset ERT
13782 status collapsed
13783
13784 \begin_layout Plain Layout
13785
13786
13787 \backslash
13788 cmidrule{3-4}
13789 \end_layout
13790
13791 \end_inset
13792
13793 LSF-räumliche Auf\SpecialChar \textcompwordmark{}
13794 lösung
13795 \end_layout
13796
13797 \end_inset
13798 </cell>
13799 <cell alignment="center" valignment="top" topline="true" usebox="none">
13800 \begin_inset Text
13801
13802 \begin_layout Plain Layout
13803
13804 \end_layout
13805
13806 \end_inset
13807 </cell>
13808 <cell alignment="center" valignment="top" topline="true" usebox="none">
13809 \begin_inset Text
13810
13811 \begin_layout Plain Layout
13812
13813 \end_layout
13814
13815 \end_inset
13816 </cell>
13817 <cell alignment="center" valignment="top" topline="true" usebox="none">
13818 \begin_inset Text
13819
13820 \begin_layout Plain Layout
13821
13822 \end_layout
13823
13824 \end_inset
13825 </cell>
13826 </row>
13827 <row>
13828 <cell alignment="center" valignment="top" usebox="none">
13829 \begin_inset Text
13830
13831 \begin_layout Plain Layout
13832 in µm
13833 \end_layout
13834
13835 \end_inset
13836 </cell>
13837 <cell alignment="center" valignment="top" usebox="none">
13838 \begin_inset Text
13839
13840 \begin_layout Plain Layout
13841 129,7
13842 \end_layout
13843
13844 \end_inset
13845 </cell>
13846 <cell alignment="center" valignment="top" usebox="none">
13847 \begin_inset Text
13848
13849 \begin_layout Plain Layout
13850 52,75
13851 \end_layout
13852
13853 \end_inset
13854 </cell>
13855 <cell alignment="center" valignment="top" usebox="none">
13856 \begin_inset Text
13857
13858 \begin_layout Plain Layout
13859 50,78
13860 \end_layout
13861
13862 \end_inset
13863 </cell>
13864 </row>
13865 <row>
13866 <cell alignment="center" valignment="top" bottomline="true" usebox="none">
13867 \begin_inset Text
13868
13869 \begin_layout Plain Layout
13870 in % der Pixelgröße
13871 \end_layout
13872
13873 \end_inset
13874 </cell>
13875 <cell alignment="center" valignment="top" bottomline="true" usebox="none">
13876 \begin_inset Text
13877
13878 \begin_layout Plain Layout
13879 76,3
13880 \end_layout
13881
13882 \end_inset
13883 </cell>
13884 <cell alignment="center" valignment="top" bottomline="true" usebox="none">
13885 \begin_inset Text
13886
13887 \begin_layout Plain Layout
13888 95,9
13889 \end_layout
13890
13891 \end_inset
13892 </cell>
13893 <cell alignment="center" valignment="top" bottomline="true" usebox="none">
13894 \begin_inset Text
13895
13896 \begin_layout Plain Layout
13897 92,3
13898 \end_layout
13899
13900 \end_inset
13901 </cell>
13902 </row>
13903 </lyxtabular>
13904
13905 \end_inset
13906
13907
13908 \end_layout
13909
13910 \end_inset
13911
13912
13913 \end_layout
13914
13915 \begin_layout Section
13916 Vertikale Tabellen-Ausrichtung
13917 \begin_inset Index idx
13918 status collapsed
13919
13920 \begin_layout Plain Layout
13921 Tabellen ! Ausrichtung
13922 \end_layout
13923
13924 \end_inset
13925
13926
13927 \end_layout
13928
13929 \begin_layout Standard
13930 Damit Tabellen vertikal im Text ausgerichtet werden können, müssen sie in
13931  einer Box sein.
13932  Die Box kann dann vertikal ausgerichtet werden, wie in Abschnitt
13933 \begin_inset space ~
13934 \end_inset
13935
13936
13937 \begin_inset CommandInset ref
13938 LatexCommand ref
13939 reference "abs:Box-Dialog"
13940
13941 \end_inset
13942
13943  beschrieben.
13944 \end_layout
13945
13946 \begin_layout Standard
13947 Im folgenden sind die Tabellen jeweils in einer Minipage-Box
13948 \begin_inset Foot
13949 status collapsed
13950
13951 \begin_layout Plain Layout
13952 Minipages werden in Abschnitt
13953 \begin_inset space ~
13954 \end_inset
13955
13956
13957 \begin_inset CommandInset ref
13958 LatexCommand ref
13959 reference "abs:Minipage"
13960
13961 \end_inset
13962
13963  beschrieben.
13964 \end_layout
13965
13966 \end_inset
13967
13968  mit 15
13969 \begin_inset space \thinspace{}
13970 \end_inset
13971
13972 col%-Breite:
13973 \end_layout
13974
13975 \begin_layout Itemize
13976 Test 
13977 \begin_inset Box Frameless
13978 position "t"
13979 hor_pos "c"
13980 has_inner_box 1
13981 inner_pos "c"
13982 use_parbox 0
13983 use_makebox 0
13984 width "15col%"
13985 special "none"
13986 height "1in"
13987 height_special "totalheight"
13988 status collapsed
13989
13990 \begin_layout Plain Layout
13991 \begin_inset Tabular
13992 <lyxtabular version="3" rows="3" columns="3">
13993 <features tabularvalignment="middle">
13994 <column alignment="center" valignment="top" width="0">
13995 <column alignment="center" valignment="top" width="0">
13996 <column alignment="center" valignment="top" width="0">
13997 <row>
13998 <cell multicolumn="1" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13999 \begin_inset Text
14000
14001 \begin_layout Plain Layout
14002 Tabelle 1
14003 \end_layout
14004
14005 \end_inset
14006 </cell>
14007 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14008 \begin_inset Text
14009
14010 \begin_layout Plain Layout
14011
14012 \end_layout
14013
14014 \end_inset
14015 </cell>
14016 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14017 \begin_inset Text
14018
14019 \begin_layout Plain Layout
14020
14021 \end_layout
14022
14023 \end_inset
14024 </cell>
14025 </row>
14026 <row>
14027 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14028 \begin_inset Text
14029
14030 \begin_layout Plain Layout
14031 b
14032 \end_layout
14033
14034 \end_inset
14035 </cell>
14036 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14037 \begin_inset Text
14038
14039 \begin_layout Plain Layout
14040 e
14041 \end_layout
14042
14043 \end_inset
14044 </cell>
14045 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14046 \begin_inset Text
14047
14048 \begin_layout Plain Layout
14049 h
14050 \end_layout
14051
14052 \end_inset
14053 </cell>
14054 </row>
14055 <row>
14056 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
14057 \begin_inset Text
14058
14059 \begin_layout Plain Layout
14060 c
14061 \end_layout
14062
14063 \end_inset
14064 </cell>
14065 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
14066 \begin_inset Text
14067
14068 \begin_layout Plain Layout
14069 f
14070 \end_layout
14071
14072 \end_inset
14073 </cell>
14074 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
14075 \begin_inset Text
14076
14077 \begin_layout Plain Layout
14078 i
14079 \end_layout
14080
14081 \end_inset
14082 </cell>
14083 </row>
14084 </lyxtabular>
14085
14086 \end_inset
14087
14088
14089 \end_layout
14090
14091 \end_inset
14092
14093  Test 
14094 \begin_inset ERT
14095 status collapsed
14096
14097 \begin_layout Plain Layout
14098
14099
14100 \backslash
14101 raisebox{0.85
14102 \backslash
14103 baselineskip}{
14104 \end_layout
14105
14106 \end_inset
14107
14108
14109 \begin_inset Box Frameless
14110 position "t"
14111 hor_pos "c"
14112 has_inner_box 1
14113 inner_pos "c"
14114 use_parbox 0
14115 use_makebox 0
14116 width "15col%"
14117 special "none"
14118 height "1in"
14119 height_special "totalheight"
14120 status collapsed
14121
14122 \begin_layout Plain Layout
14123 \begin_inset Tabular
14124 <lyxtabular version="3" rows="3" columns="3">
14125 <features tabularvalignment="middle">
14126 <column alignment="center" valignment="top" width="0">
14127 <column alignment="center" valignment="top" width="0">
14128 <column alignment="center" valignment="top" width="0">
14129 <row>
14130 <cell multicolumn="1" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14131 \begin_inset Text
14132
14133 \begin_layout Plain Layout
14134 Tabelle 2
14135 \end_layout
14136
14137 \end_inset
14138 </cell>
14139 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14140 \begin_inset Text
14141
14142 \begin_layout Plain Layout
14143
14144 \end_layout
14145
14146 \end_inset
14147 </cell>
14148 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14149 \begin_inset Text
14150
14151 \begin_layout Plain Layout
14152
14153 \end_layout
14154
14155 \end_inset
14156 </cell>
14157 </row>
14158 <row>
14159 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14160 \begin_inset Text
14161
14162 \begin_layout Plain Layout
14163 b
14164 \end_layout
14165
14166 \end_inset
14167 </cell>
14168 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14169 \begin_inset Text
14170
14171 \begin_layout Plain Layout
14172 e
14173 \end_layout
14174
14175 \end_inset
14176 </cell>
14177 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14178 \begin_inset Text
14179
14180 \begin_layout Plain Layout
14181 h
14182 \end_layout
14183
14184 \end_inset
14185 </cell>
14186 </row>
14187 <row>
14188 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
14189 \begin_inset Text
14190
14191 \begin_layout Plain Layout
14192 c
14193 \end_layout
14194
14195 \end_inset
14196 </cell>
14197 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
14198 \begin_inset Text
14199
14200 \begin_layout Plain Layout
14201 f
14202 \end_layout
14203
14204 \end_inset
14205 </cell>
14206 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
14207 \begin_inset Text
14208
14209 \begin_layout Plain Layout
14210 i
14211 \end_layout
14212
14213 \end_inset
14214 </cell>
14215 </row>
14216 </lyxtabular>
14217
14218 \end_inset
14219
14220
14221 \end_layout
14222
14223 \end_inset
14224
14225
14226 \begin_inset ERT
14227 status collapsed
14228
14229 \begin_layout Plain Layout
14230
14231 }
14232 \end_layout
14233
14234 \end_inset
14235
14236
14237 \end_layout
14238
14239 \begin_layout Itemize
14240 Test 
14241 \begin_inset Box Frameless
14242 position "c"
14243 hor_pos "c"
14244 has_inner_box 1
14245 inner_pos "c"
14246 use_parbox 0
14247 use_makebox 0
14248 width "15col%"
14249 special "none"
14250 height "1in"
14251 height_special "totalheight"
14252 status collapsed
14253
14254 \begin_layout Plain Layout
14255 \begin_inset Tabular
14256 <lyxtabular version="3" rows="3" columns="3">
14257 <features tabularvalignment="middle">
14258 <column alignment="center" valignment="top" width="0">
14259 <column alignment="center" valignment="top" width="0">
14260 <column alignment="center" valignment="top" width="0">
14261 <row>
14262 <cell multicolumn="1" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14263 \begin_inset Text
14264
14265 \begin_layout Plain Layout
14266 Tabelle 3
14267 \end_layout
14268
14269 \end_inset
14270 </cell>
14271 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14272 \begin_inset Text
14273
14274 \begin_layout Plain Layout
14275
14276 \end_layout
14277
14278 \end_inset
14279 </cell>
14280 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14281 \begin_inset Text
14282
14283 \begin_layout Plain Layout
14284
14285 \end_layout
14286
14287 \end_inset
14288 </cell>
14289 </row>
14290 <row>
14291 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14292 \begin_inset Text
14293
14294 \begin_layout Plain Layout
14295 b
14296 \end_layout
14297
14298 \end_inset
14299 </cell>
14300 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14301 \begin_inset Text
14302
14303 \begin_layout Plain Layout
14304 e
14305 \end_layout
14306
14307 \end_inset
14308 </cell>
14309 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14310 \begin_inset Text
14311
14312 \begin_layout Plain Layout
14313 h
14314 \end_layout
14315
14316 \end_inset
14317 </cell>
14318 </row>
14319 <row>
14320 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
14321 \begin_inset Text
14322
14323 \begin_layout Plain Layout
14324 c
14325 \end_layout
14326
14327 \end_inset
14328 </cell>
14329 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
14330 \begin_inset Text
14331
14332 \begin_layout Plain Layout
14333 f
14334 \end_layout
14335
14336 \end_inset
14337 </cell>
14338 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
14339 \begin_inset Text
14340
14341 \begin_layout Plain Layout
14342 i
14343 \end_layout
14344
14345 \end_inset
14346 </cell>
14347 </row>
14348 </lyxtabular>
14349
14350 \end_inset
14351
14352
14353 \end_layout
14354
14355 \end_inset
14356
14357
14358 \end_layout
14359
14360 \begin_layout Itemize
14361 Test 
14362 \begin_inset Box Frameless
14363 position "b"
14364 hor_pos "c"
14365 has_inner_box 1
14366 inner_pos "c"
14367 use_parbox 0
14368 use_makebox 0
14369 width "15col%"
14370 special "none"
14371 height "1in"
14372 height_special "totalheight"
14373 status collapsed
14374
14375 \begin_layout Plain Layout
14376 \begin_inset Tabular
14377 <lyxtabular version="3" rows="3" columns="3">
14378 <features tabularvalignment="middle">
14379 <column alignment="center" valignment="top" width="0">
14380 <column alignment="center" valignment="top" width="0">
14381 <column alignment="center" valignment="top" width="0">
14382 <row>
14383 <cell multicolumn="1" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14384 \begin_inset Text
14385
14386 \begin_layout Plain Layout
14387 Tabelle 4
14388 \end_layout
14389
14390 \end_inset
14391 </cell>
14392 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14393 \begin_inset Text
14394
14395 \begin_layout Plain Layout
14396
14397 \end_layout
14398
14399 \end_inset
14400 </cell>
14401 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14402 \begin_inset Text
14403
14404 \begin_layout Plain Layout
14405
14406 \end_layout
14407
14408 \end_inset
14409 </cell>
14410 </row>
14411 <row>
14412 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14413 \begin_inset Text
14414
14415 \begin_layout Plain Layout
14416 b
14417 \end_layout
14418
14419 \end_inset
14420 </cell>
14421 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14422 \begin_inset Text
14423
14424 \begin_layout Plain Layout
14425 e
14426 \end_layout
14427
14428 \end_inset
14429 </cell>
14430 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14431 \begin_inset Text
14432
14433 \begin_layout Plain Layout
14434 h
14435 \end_layout
14436
14437 \end_inset
14438 </cell>
14439 </row>
14440 <row>
14441 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
14442 \begin_inset Text
14443
14444 \begin_layout Plain Layout
14445 c
14446 \end_layout
14447
14448 \end_inset
14449 </cell>
14450 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
14451 \begin_inset Text
14452
14453 \begin_layout Plain Layout
14454 f
14455 \end_layout
14456
14457 \end_inset
14458 </cell>
14459 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
14460 \begin_inset Text
14461
14462 \begin_layout Plain Layout
14463 i
14464 \end_layout
14465
14466 \end_inset
14467 </cell>
14468 </row>
14469 </lyxtabular>
14470
14471 \end_inset
14472
14473
14474 \end_layout
14475
14476 \end_inset
14477
14478 Test 
14479 \begin_inset ERT
14480 status collapsed
14481
14482 \begin_layout Plain Layout
14483
14484
14485 \backslash
14486 raisebox{-0.32
14487 \backslash
14488 baselineskip}{
14489 \end_layout
14490
14491 \end_inset
14492
14493
14494 \begin_inset Box Frameless
14495 position "b"
14496 hor_pos "c"
14497 has_inner_box 1
14498 inner_pos "c"
14499 use_parbox 0
14500 use_makebox 0
14501 width "15col%"
14502 special "none"
14503 height "1in"
14504 height_special "totalheight"
14505 status collapsed
14506
14507 \begin_layout Plain Layout
14508 \begin_inset Tabular
14509 <lyxtabular version="3" rows="3" columns="3">
14510 <features tabularvalignment="middle">
14511 <column alignment="center" valignment="top" width="0">
14512 <column alignment="center" valignment="top" width="0">
14513 <column alignment="center" valignment="top" width="0">
14514 <row>
14515 <cell multicolumn="1" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14516 \begin_inset Text
14517
14518 \begin_layout Plain Layout
14519 Tabelle 5
14520 \end_layout
14521
14522 \end_inset
14523 </cell>
14524 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14525 \begin_inset Text
14526
14527 \begin_layout Plain Layout
14528
14529 \end_layout
14530
14531 \end_inset
14532 </cell>
14533 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14534 \begin_inset Text
14535
14536 \begin_layout Plain Layout
14537
14538 \end_layout
14539
14540 \end_inset
14541 </cell>
14542 </row>
14543 <row>
14544 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14545 \begin_inset Text
14546
14547 \begin_layout Plain Layout
14548 b
14549 \end_layout
14550
14551 \end_inset
14552 </cell>
14553 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14554 \begin_inset Text
14555
14556 \begin_layout Plain Layout
14557 e
14558 \end_layout
14559
14560 \end_inset
14561 </cell>
14562 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14563 \begin_inset Text
14564
14565 \begin_layout Plain Layout
14566 h
14567 \end_layout
14568
14569 \end_inset
14570 </cell>
14571 </row>
14572 <row>
14573 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
14574 \begin_inset Text
14575
14576 \begin_layout Plain Layout
14577 c
14578 \end_layout
14579
14580 \end_inset
14581 </cell>
14582 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
14583 \begin_inset Text
14584
14585 \begin_layout Plain Layout
14586 f
14587 \end_layout
14588
14589 \end_inset
14590 </cell>
14591 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
14592 \begin_inset Text
14593
14594 \begin_layout Plain Layout
14595 i
14596 \end_layout
14597
14598 \end_inset
14599 </cell>
14600 </row>
14601 </lyxtabular>
14602
14603 \end_inset
14604
14605
14606 \end_layout
14607
14608 \end_inset
14609
14610
14611 \begin_inset ERT
14612 status collapsed
14613
14614 \begin_layout Plain Layout
14615
14616 }
14617 \end_layout
14618
14619 \end_inset
14620
14621
14622 \end_layout
14623
14624 \begin_layout Standard
14625 Wie Sie sehen können, ist der Text der ersten Zeile von Tabelle
14626 \begin_inset space \space{}
14627 \end_inset
14628
14629 1 und letzten Zeile von Tabelle
14630 \begin_inset space \space{}
14631 \end_inset
14632
14633 4 bezüglich dem Wort 
14634 \begin_inset Quotes gld
14635 \end_inset
14636
14637 Test
14638 \begin_inset Quotes grd
14639 \end_inset
14640
14641  nicht richtig ausgerichtet.
14642  Um das zu erreichen, müssen Sie die Minipage-Box in eine 
14643 \begin_inset Quotes gld
14644 \end_inset
14645
14646 Raisebox
14647 \begin_inset Quotes grd
14648 \end_inset
14649
14650
14651 \begin_inset Foot
14652 status collapsed
14653
14654 \begin_layout Plain Layout
14655 Raiseboxen werden in Abschnitt
14656 \begin_inset space ~
14657 \end_inset
14658
14659
14660 \begin_inset CommandInset ref
14661 LatexCommand ref
14662 reference "uab:Vertikale-Ausrichtung"
14663
14664 \end_inset
14665
14666  beschrieben.
14667 \end_layout
14668
14669 \end_inset
14670
14671  setzen.
14672  In Tabelle
14673 \begin_inset space \space{}
14674 \end_inset
14675
14676 2 wurde der Text mit dem Befehl
14677 \end_layout
14678
14679 \begin_layout Standard
14680
14681 \series bold
14682
14683 \backslash
14684 raisebox{0.85
14685 \backslash
14686 baselineskip}{
14687 \end_layout
14688
14689 \begin_layout Standard
14690 vor der Box ausgerichtet.
14691  Hinter der Box wurde auch noch 
14692 \series bold
14693 }
14694 \series default
14695  als TeX-Code eingefügt, weil der obige Befehl mit 
14696 \series bold
14697 {
14698 \series default
14699  aufhörte.
14700  Für Tabelle
14701 \begin_inset space \space{}
14702 \end_inset
14703
14704 5 wurde der Befehl
14705 \end_layout
14706
14707 \begin_layout Standard
14708
14709 \series bold
14710
14711 \backslash
14712 raisebox{-0.32
14713 \backslash
14714 baselineskip}{
14715 \end_layout
14716
14717 \begin_layout Standard
14718 benutzt.
14719 \end_layout
14720
14721 \begin_layout Standard
14722 \begin_inset Note Greyedout
14723 status open
14724
14725 \begin_layout Plain Layout
14726
14727 \series bold
14728 Bemerkung:
14729 \series default
14730  Die Ausrichtung ist nicht ganz genau, weil sie von der Dokumentschrift,
14731  der Schriftgröße und der Dicke der Tabellenlinien abhängt.
14732  Der Faktor im 
14733 \series bold
14734
14735 \backslash
14736 raisebox
14737 \series default
14738 -Befehl muss deshalb an Ihre Verhältnisse angepasst werden.
14739 \end_layout
14740
14741 \end_inset
14742
14743
14744 \end_layout
14745
14746 \begin_layout Section
14747 Farbige Tabellen
14748 \begin_inset CommandInset label
14749 LatexCommand label
14750 name "abs:Farbige-Tabellen"
14751
14752 \end_inset
14753
14754
14755 \begin_inset Index idx
14756 status collapsed
14757
14758 \begin_layout Plain Layout
14759 Tabellen ! farbige
14760 \end_layout
14761
14762 \end_inset
14763
14764
14765 \end_layout
14766
14767 \begin_layout Subsection
14768 Farbige Zellen
14769 \begin_inset Index idx
14770 status collapsed
14771
14772 \begin_layout Plain Layout
14773 farbige !  Tabellenzellen
14774 \end_layout
14775
14776 \end_inset
14777
14778
14779 \end_layout
14780
14781 \begin_layout Standard
14782 \begin_inset Float table
14783 placement h
14784 wide false
14785 sideways false
14786 status open
14787
14788 \begin_layout Plain Layout
14789 \begin_inset Caption
14790
14791 \begin_layout Plain Layout
14792 \begin_inset CommandInset label
14793 LatexCommand label
14794 name "tab:Farbige-Tabelle-ohne"
14795
14796 \end_inset
14797
14798 Farbige Tabelle, ohne Paket 
14799 \series bold
14800 colortbl
14801 \series default
14802
14803 \begin_inset Argument
14804 status collapsed
14805
14806 \begin_layout Plain Layout
14807 Tabelle ohne 
14808 \family typewriter
14809 colortbl
14810 \end_layout
14811
14812 \end_inset
14813
14814
14815 \end_layout
14816
14817 \end_inset
14818
14819
14820 \end_layout
14821
14822 \begin_layout Plain Layout
14823 \align center
14824 \begin_inset Tabular
14825 <lyxtabular version="3" rows="3" columns="3">
14826 <features tabularvalignment="middle">
14827 <column alignment="center" valignment="top" width="0">
14828 <column alignment="center" valignment="top" width="0">
14829 <column alignment="center" valignment="top" width="0">
14830 <row>
14831 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14832 \begin_inset Text
14833
14834 \begin_layout Plain Layout
14835
14836 \color green
14837 a
14838 \end_layout
14839
14840 \end_inset
14841 </cell>
14842 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14843 \begin_inset Text
14844
14845 \begin_layout Plain Layout
14846
14847 \color red
14848 b
14849 \end_layout
14850
14851 \end_inset
14852 </cell>
14853 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14854 \begin_inset Text
14855
14856 \begin_layout Plain Layout
14857
14858 \color red
14859 c
14860 \end_layout
14861
14862 \end_inset
14863 </cell>
14864 </row>
14865 <row>
14866 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14867 \begin_inset Text
14868
14869 \begin_layout Plain Layout
14870
14871 \color green
14872 d
14873 \end_layout
14874
14875 \end_inset
14876 </cell>
14877 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14878 \begin_inset Text
14879
14880 \begin_layout Plain Layout
14881
14882 \color blue
14883 e
14884 \end_layout
14885
14886 \end_inset
14887 </cell>
14888 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14889 \begin_inset Text
14890
14891 \begin_layout Plain Layout
14892
14893 \color blue
14894 f
14895 \end_layout
14896
14897 \end_inset
14898 </cell>
14899 </row>
14900 <row>
14901 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
14902 \begin_inset Text
14903
14904 \begin_layout Plain Layout
14905
14906 \color green
14907 g
14908 \end_layout
14909
14910 \end_inset
14911 </cell>
14912 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
14913 \begin_inset Text
14914
14915 \begin_layout Plain Layout
14916
14917 \color blue
14918 h
14919 \end_layout
14920
14921 \end_inset
14922 </cell>
14923 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
14924 \begin_inset Text
14925
14926 \begin_layout Plain Layout
14927
14928 \color blue
14929 i
14930 \end_layout
14931
14932 \end_inset
14933 </cell>
14934 </row>
14935 </lyxtabular>
14936
14937 \end_inset
14938
14939
14940 \end_layout
14941
14942 \end_inset
14943
14944
14945 \end_layout
14946
14947 \begin_layout Standard
14948 \begin_inset CommandInset label
14949 LatexCommand label
14950 name "Wenn-Sie-nur"
14951
14952 \end_inset
14953
14954 Wenn Sie nur farbigen Text
14955 \begin_inset Index idx
14956 status collapsed
14957
14958 \begin_layout Plain Layout
14959 Farbe ! für Text
14960 \end_layout
14961
14962 \end_inset
14963
14964  benötigen, markieren Sie diesen und ändern die Farbe durch einen Klick
14965  auf den Werkzeugleistenknopf 
14966 \begin_inset Graphics
14967         filename ../../images/dialog-show_character.png
14968         scale 70
14969         scaleBeforeRotation
14970         BoundingBox 0bp 0bp 20bp 20bp
14971
14972 \end_inset
14973
14974  oder über das Menü 
14975 \family sans
14976 Bearbeiten\SpecialChar \menuseparator
14977 Textstil\SpecialChar \menuseparator
14978 Benutzerdefiniert
14979 \family default
14980  mit dem 
14981 \family sans
14982 Textstil
14983 \family default
14984 -Dialog wie es in Tabelle
14985 \begin_inset space ~
14986 \end_inset
14987
14988
14989 \begin_inset CommandInset ref
14990 LatexCommand ref
14991 reference "tab:Farbige-Tabelle-ohne"
14992
14993 \end_inset
14994
14995  gemacht wurde.
14996  In anderen Fällen müssen Sie das LaTeX-Paket 
14997 \series bold
14998 colortbl
14999 \series default
15000  benutzen.
15001 \begin_inset Index idx
15002 status collapsed
15003
15004 \begin_layout Plain Layout
15005 LaTeX-Pakete ! colortbl
15006 \end_layout
15007
15008 \end_inset
15009
15010
15011 \end_layout
15012
15013 \begin_layout Standard
15014 \begin_inset ERT
15015 status collapsed
15016
15017 \begin_layout Plain Layout
15018
15019
15020 \backslash
15021 ifcolortbl
15022 \end_layout
15023
15024 \end_inset
15025
15026
15027 \begin_inset Note Note
15028 status open
15029
15030 \begin_layout Plain Layout
15031 Die folgende Teil wird nur gedruckt, wenn das LaTeX-Paket 
15032 \series bold
15033 colortbl
15034 \series default
15035  installiert ist.
15036 \end_layout
15037
15038 \end_inset
15039
15040
15041 \end_layout
15042
15043 \begin_layout Standard
15044 Um farbige Tabellen zu erzeugen, muss 
15045 \series bold
15046 colortbl
15047 \series default
15048  im LaTeX-Vorspann geladen werden:
15049 \end_layout
15050
15051 \begin_layout Standard
15052
15053 \series bold
15054
15055 \backslash
15056 usepackage{colortbl}
15057 \end_layout
15058
15059 \begin_layout Standard
15060 Die Farbe einer Spalte ändert man dann mit dem Befehl
15061 \end_layout
15062
15063 \begin_layout Standard
15064
15065 \series bold
15066
15067 \backslash
15068 columncolor{Farbname}
15069 \end_layout
15070
15071 \begin_layout Standard
15072 innerhalb des Befehls 
15073 \series bold
15074 >{}
15075 \series default
15076 .
15077  Mehr über den Befehl 
15078 \series bold
15079 >{}
15080 \series default
15081  finden Sie im Abschnitt
15082 \begin_inset space ~
15083 \end_inset
15084
15085
15086 \begin_inset CommandInset ref
15087 LatexCommand ref
15088 reference "uab:Mehrfachspalten-Berechnungen"
15089
15090 \end_inset
15091
15092 .
15093 \end_layout
15094
15095 \begin_layout Standard
15096 Folgende Farbnamen sind vordefiniert:
15097 \end_layout
15098
15099 \begin_layout Standard
15100
15101 \family sans
15102 red
15103 \family default
15104
15105 \family sans
15106 green
15107 \family default
15108
15109 \family sans
15110 yellow
15111 \family default
15112
15113 \family sans
15114 blue
15115 \family default
15116
15117 \family sans
15118 cyan
15119 \family default
15120
15121 \family sans
15122 magenta
15123 \family default
15124
15125 \family sans
15126 black
15127 \family default
15128  und 
15129 \family sans
15130 white
15131 \begin_inset Newline newline
15132 \end_inset
15133
15134 (rot, grün, gelb, blau, türkis, purpurrot, schwarz 
15135 \family default
15136 und
15137 \family sans
15138  weiß
15139 \family default
15140 ).
15141 \end_layout
15142
15143 \begin_layout Standard
15144 \begin_inset VSpace medskip
15145 \end_inset
15146
15147
15148 \end_layout
15149
15150 \begin_layout Standard
15151 Sie können auch eigene Farben definieren:
15152 \end_layout
15153
15154 \begin_layout Standard
15155
15156 \series bold
15157
15158 \backslash
15159 definecolor{Farbname}{Farbmodell}{Farbwerte}
15160 \end_layout
15161
15162 \begin_layout Standard
15163 Das Farbmodell kann eins der folgenden sein:
15164 \end_layout
15165
15166 \begin_layout Labeling
15167 \labelwidthstring 00.00.0000
15168 cmyk: cyan, magenta, yellow, black
15169 \end_layout
15170
15171 \begin_layout Labeling
15172 \labelwidthstring 00.00.0000
15173 rgb: red, green blue
15174 \end_layout
15175
15176 \begin_layout Labeling
15177 \labelwidthstring 00.00.0000
15178 gray: gray
15179 \end_layout
15180
15181 \begin_layout Standard
15182 und die Farbwerte sind durch Kommata getrennte Zahlen zwischen 0 und 1,
15183  die die entsprechende Farbe für das Farbmodell beschreiben.
15184 \end_layout
15185
15186 \begin_layout Standard
15187 Im LaTeX-Vorspann können Sie zum Beispiel die Farbe 
15188 \emph on
15189
15190 \begin_inset Quotes gld
15191 \end_inset
15192
15193 dunkelgruen
15194 \emph default
15195
15196 \begin_inset Quotes grd
15197 \end_inset
15198
15199  und 
15200 \begin_inset Quotes gld
15201 \end_inset
15202
15203
15204 \emph on
15205 hellgrau
15206 \emph default
15207
15208 \begin_inset Quotes grd
15209 \end_inset
15210
15211  folgendermaßen definieren:
15212 \end_layout
15213
15214 \begin_layout Standard
15215
15216 \series bold
15217
15218 \backslash
15219 definecolor{dunkelgruen}{cmyk}{0.5, 0, 1, 0.5}
15220 \end_layout
15221
15222 \begin_layout Standard
15223
15224 \series bold
15225
15226 \backslash
15227 definecolor{hellgrau}{gray}{0.8}
15228 \end_layout
15229
15230 \begin_layout Standard
15231 \begin_inset VSpace medskip
15232 \end_inset
15233
15234
15235 \end_layout
15236
15237 \begin_layout Standard
15238 Linien werden mit dem Befehl
15239 \end_layout
15240
15241 \begin_layout Standard
15242
15243 \series bold
15244
15245 \backslash
15246 rowcolor{Farbname}
15247 \end_layout
15248
15249 \begin_layout Standard
15250 gefärbt, Zellen mit dem Befehl
15251 \end_layout
15252
15253 \begin_layout Standard
15254
15255 \series bold
15256
15257 \backslash
15258 cellcolor{Farbname}
15259 \end_layout
15260
15261 \begin_layout Standard
15262 Beide Befehle werden am Anfang einer Zelle als TeX-Code eingegeben.
15263 \end_layout
15264
15265 \begin_layout Standard
15266 Um nur Text zu färben, machen Sie es wie 
15267 \begin_inset CommandInset ref
15268 LatexCommand vpageref
15269 reference "Wenn-Sie-nur"
15270
15271 \end_inset
15272
15273  beschrieben.
15274  Wenn die Zelle aber TeX-Code zum Färben enthält, 
15275 \emph on
15276 markieren Sie nur den Text
15277 \emph default
15278 , sonst werden Sie LaTeX-Fehler erzeugen.
15279 \end_layout
15280
15281 \begin_layout Standard
15282 \begin_inset Note Greyedout
15283 status open
15284
15285 \begin_layout Plain Layout
15286
15287 \series bold
15288 Achtung:
15289 \series default
15290  Nicht alle DVI-Betrachter können alle selbst definierten Farben anzeigen.
15291 \end_layout
15292
15293 \end_inset
15294
15295
15296 \end_layout
15297
15298 \begin_layout Standard
15299 \begin_inset VSpace medskip
15300 \end_inset
15301
15302
15303 \end_layout
15304
15305 \begin_layout Standard
15306 Die Tabelle
15307 \begin_inset space ~
15308 \end_inset
15309
15310
15311 \begin_inset CommandInset ref
15312 LatexCommand ref
15313 reference "tab:Table-colored-using"
15314
15315 \end_inset
15316
15317  wurde folgendermaßen erstellt: die erste Spalte soll 
15318 \emph on
15319
15320 \begin_inset Quotes gld
15321 \end_inset
15322
15323 dunkelgruen
15324 \emph default
15325
15326 \begin_inset Quotes grd
15327 \end_inset
15328
15329  werden, also müssen Sie ins 
15330 \family sans
15331 LaTe
15332 \begin_inset ERT
15333 status collapsed
15334
15335 \begin_layout Plain Layout
15336
15337 {}
15338 \end_layout
15339
15340 \end_inset
15341
15342 X-Argument
15343 \family default
15344  der Zellen der ersten Spalte den Befehl
15345 \end_layout
15346
15347 \begin_layout Standard
15348
15349 \series bold
15350 >{
15351 \backslash
15352 columncolor{dunkelgruen}
15353 \backslash
15354 centering}c
15355 \end_layout
15356
15357 \begin_layout Standard
15358 schreiben.
15359  Die erste Zeile soll türkis hinterlegt sein, deshalb wurde der TeX-Code-Befehl
15360 \end_layout
15361
15362 \begin_layout Standard
15363
15364 \series bold
15365
15366 \backslash
15367 rowcolor{cyan}
15368 \end_layout
15369
15370 \begin_layout Standard
15371 in die erste Zelle der ersten Zeile eingefügt.
15372  Diese Farbe ersetzt die Spaltenfarbe.
15373  Die letzte Zelle der letzten Zeile soll purpurrot hinterlegt werden, Das
15374  wird mit folgendem Befehl erreicht:
15375 \end_layout
15376
15377 \begin_layout Standard
15378
15379 \series bold
15380
15381 \backslash
15382 cellcolor{magenta}
15383 \end_layout
15384
15385 \begin_layout Standard
15386 Die Buchstaben färben Sie wie oben beschrieben mit dem 
15387 \family sans
15388 Textstil
15389 \family default
15390 -Dialog.
15391 \end_layout
15392
15393 \begin_layout Standard
15394 \begin_inset Float table
15395 placement h
15396 wide false
15397 sideways false
15398 status open
15399
15400 \begin_layout Plain Layout
15401 \begin_inset Caption
15402
15403 \begin_layout Plain Layout
15404 \begin_inset CommandInset label
15405 LatexCommand label
15406 name "tab:Table-colored-using"
15407
15408 \end_inset
15409
15410 Eine mit dem Paket 
15411 \series bold
15412 colortbl
15413 \series default
15414  gefärbte Tabelle
15415 \begin_inset Argument
15416 status collapsed
15417
15418 \begin_layout Plain Layout
15419 Tabelle mit 
15420 \family typewriter
15421 colortbl
15422 \end_layout
15423
15424 \end_inset
15425
15426
15427 \end_layout
15428
15429 \end_inset
15430
15431
15432 \end_layout
15433
15434 \begin_layout Plain Layout
15435 \align center
15436 \begin_inset Tabular
15437 <lyxtabular version="3" rows="3" columns="3">
15438 <features tabularvalignment="middle">
15439 <column alignment="center" valignment="top" width="0" special=">{\columncolor{dunkelgruen}\centering}c">
15440 <column alignment="center" valignment="top" width="0">
15441 <column alignment="center" valignment="top" width="0">
15442 <row>
15443 <cell alignment="center" valignment="top" usebox="none">
15444 \begin_inset Text
15445
15446 \begin_layout Plain Layout
15447 \begin_inset ERT
15448 status collapsed
15449
15450 \begin_layout Plain Layout
15451
15452
15453 \backslash
15454 rowcolor{cyan}
15455 \end_layout
15456
15457 \end_inset
15458
15459
15460 \color magenta
15461 a
15462 \end_layout
15463
15464 \end_inset
15465 </cell>
15466 <cell alignment="center" valignment="top" usebox="none">
15467 \begin_inset Text
15468
15469 \begin_layout Plain Layout
15470
15471 \color red
15472 b
15473 \end_layout
15474
15475 \end_inset
15476 </cell>
15477 <cell alignment="center" valignment="top" usebox="none">
15478 \begin_inset Text
15479
15480 \begin_layout Plain Layout
15481
15482 \color red
15483 c
15484 \end_layout
15485
15486 \end_inset
15487 </cell>
15488 </row>
15489 <row>
15490 <cell alignment="center" valignment="top" usebox="none">
15491 \begin_inset Text
15492
15493 \begin_layout Plain Layout
15494
15495 \color yellow
15496 d
15497 \end_layout
15498
15499 \end_inset
15500 </cell>
15501 <cell alignment="center" valignment="top" usebox="none">
15502 \begin_inset Text
15503
15504 \begin_layout Plain Layout
15505
15506 \color blue
15507 e
15508 \end_layout
15509
15510 \end_inset
15511 </cell>
15512 <cell alignment="center" valignment="top" usebox="none">
15513 \begin_inset Text
15514
15515 \begin_layout Plain Layout
15516
15517 \color blue
15518 f
15519 \end_layout
15520
15521 \end_inset
15522 </cell>
15523 </row>
15524 <row>
15525 <cell alignment="center" valignment="top" usebox="none">
15526 \begin_inset Text
15527
15528 \begin_layout Plain Layout
15529
15530 \color yellow
15531 g
15532 \end_layout
15533
15534 \end_inset
15535 </cell>
15536 <cell alignment="center" valignment="top" usebox="none">
15537 \begin_inset Text
15538
15539 \begin_layout Plain Layout
15540
15541 \color blue
15542 h
15543 \end_layout
15544
15545 \end_inset
15546 </cell>
15547 <cell alignment="center" valignment="top" usebox="none">
15548 \begin_inset Text
15549
15550 \begin_layout Plain Layout
15551 \begin_inset ERT
15552 status collapsed
15553
15554 \begin_layout Plain Layout
15555
15556
15557 \backslash
15558 cellcolor{magenta}
15559 \end_layout
15560
15561 \end_inset
15562
15563
15564 \color green
15565 i
15566 \end_layout
15567
15568 \end_inset
15569 </cell>
15570 </row>
15571 </lyxtabular>
15572
15573 \end_inset
15574
15575
15576 \end_layout
15577
15578 \end_inset
15579
15580
15581 \end_layout
15582
15583 \begin_layout Standard
15584 \begin_inset ERT
15585 status collapsed
15586
15587 \begin_layout Plain Layout
15588
15589
15590 \backslash
15591 else
15592 \end_layout
15593
15594 \end_inset
15595
15596
15597 \begin_inset Note Note
15598 status open
15599
15600 \begin_layout Plain Layout
15601 Die folgende Teil wird gedruckt, wenn das LaTeX-Paket 
15602 \series bold
15603 colortbl
15604 \series default
15605  nicht installiert ist:
15606 \end_layout
15607
15608 \end_inset
15609
15610
15611 \end_layout
15612
15613 \begin_layout Standard
15614 Sie müssen das LaTeX-Paket 
15615 \series bold
15616 colortbl
15617 \series default
15618  installiert haben um den Inhalt dieses Abschnitts zu sehen.
15619 \end_layout
15620
15621 \begin_layout Standard
15622 \begin_inset ERT
15623 status collapsed
15624
15625 \begin_layout Plain Layout
15626
15627
15628 \backslash
15629 fi
15630 \end_layout
15631
15632 \end_inset
15633
15634
15635 \end_layout
15636
15637 \begin_layout Subsection
15638 Farbige Linien
15639 \begin_inset Index idx
15640 status collapsed
15641
15642 \begin_layout Plain Layout
15643 farbige !  Tabellenlinien
15644 \end_layout
15645
15646 \end_inset
15647
15648
15649 \end_layout
15650
15651 \begin_layout Standard
15652 Wie in Abschnitt
15653 \begin_inset space ~
15654 \end_inset
15655
15656
15657 \begin_inset CommandInset ref
15658 LatexCommand ref
15659 reference "uab:Liniendicke"
15660
15661 \end_inset
15662
15663  beschrieben, kann die Dicke aller Tabellenlinien mit der Länge 
15664 \series bold
15665
15666 \backslash
15667 arrayrulewidth
15668 \series default
15669  definiert werden.
15670  Für alle Tabellenlinien in diesem Kapitel wird sie auf 1.5
15671 \begin_inset space \thinspace{}
15672 \end_inset
15673
15674 pt gesetzt.
15675 \begin_inset ERT
15676 status collapsed
15677
15678 \begin_layout Plain Layout
15679
15680
15681 \backslash
15682 setlength{
15683 \backslash
15684 arrayrulewidth}{1.5pt}
15685 \end_layout
15686
15687 \end_inset
15688
15689
15690 \end_layout
15691
15692 \begin_layout Standard
15693 Um die vertikalen Linien für dieses Beispiel grün zu färben, wurde im LaTeX-Vors
15694 pann folgendes Spaltenformat entsprechend der Beschreibung in Abschnitt
15695 \begin_inset space ~
15696 \end_inset
15697
15698
15699 \begin_inset CommandInset ref
15700 LatexCommand ref
15701 reference "uab:Angepasste-Zellen-/Spaltenformate"
15702
15703 \end_inset
15704
15705  definiert:
15706 \end_layout
15707
15708 \begin_layout Standard
15709
15710 \series bold
15711
15712 \backslash
15713 newcolumntype{W}{!{
15714 \backslash
15715 color{green}
15716 \backslash
15717 vline}}
15718 \end_layout
15719
15720 \begin_layout Standard
15721 In Tabelle
15722 \begin_inset space ~
15723 \end_inset
15724
15725
15726 \begin_inset CommandInset ref
15727 LatexCommand ref
15728 reference "tab:Tabelle-mit-farbigen-vert"
15729
15730 \end_inset
15731
15732  wurde das LaTeX-Argument 
15733 \series bold
15734 WcW
15735 \series default
15736  für die letzte und 
15737 \series bold
15738 Wc
15739 \series default
15740  für die anderen Spalten benutzt.
15741 \end_layout
15742
15743 \begin_layout Standard
15744 Wenn Sie mehrere Farben wollen, müssen Sie weitere Farbformate definieren.
15745 \end_layout
15746
15747 \begin_layout Standard
15748 \begin_inset Float table
15749 placement h
15750 wide false
15751 sideways false
15752 status open
15753
15754 \begin_layout Plain Layout
15755 \begin_inset Caption
15756
15757 \begin_layout Plain Layout
15758 \begin_inset CommandInset label
15759 LatexCommand label
15760 name "tab:Tabelle-mit-farbigen-vert"
15761
15762 \end_inset
15763
15764 Tabelle mit farbigen vertikalen Linien
15765 \end_layout
15766
15767 \end_inset
15768
15769
15770 \end_layout
15771
15772 \begin_layout Plain Layout
15773 \align center
15774 \begin_inset Tabular
15775 <lyxtabular version="3" rows="3" columns="3">
15776 <features tabularvalignment="middle">
15777 <column alignment="center" valignment="top" width="0" special="Wc">
15778 <column alignment="center" valignment="top" width="0" special="Wc">
15779 <column alignment="center" valignment="top" width="0" special="WcW">
15780 <row>
15781 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15782 \begin_inset Text
15783
15784 \begin_layout Plain Layout
15785 sd
15786 \end_layout
15787
15788 \end_inset
15789 </cell>
15790 <cell alignment="center" valignment="top" topline="true" usebox="none">
15791 \begin_inset Text
15792
15793 \begin_layout Plain Layout
15794
15795 \end_layout
15796
15797 \end_inset
15798 </cell>
15799 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15800 \begin_inset Text
15801
15802 \begin_layout Plain Layout
15803
15804 \end_layout
15805
15806 \end_inset
15807 </cell>
15808 </row>
15809 <row>
15810 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15811 \begin_inset Text
15812
15813 \begin_layout Plain Layout
15814
15815 \end_layout
15816
15817 \end_inset
15818 </cell>
15819 <cell alignment="center" valignment="top" topline="true" usebox="none">
15820 \begin_inset Text
15821
15822 \begin_layout Plain Layout
15823 sd
15824 \end_layout
15825
15826 \end_inset
15827 </cell>
15828 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15829 \begin_inset Text
15830
15831 \begin_layout Plain Layout
15832
15833 \end_layout
15834
15835 \end_inset
15836 </cell>
15837 </row>
15838 <row>
15839 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15840 \begin_inset Text
15841
15842 \begin_layout Plain Layout
15843
15844 \end_layout
15845
15846 \end_inset
15847 </cell>
15848 <cell alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
15849 \begin_inset Text
15850
15851 \begin_layout Plain Layout
15852
15853 \end_layout
15854
15855 \end_inset
15856 </cell>
15857 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15858 \begin_inset Text
15859
15860 \begin_layout Plain Layout
15861 sd
15862 \end_layout
15863
15864 \end_inset
15865 </cell>
15866 </row>
15867 </lyxtabular>
15868
15869 \end_inset
15870
15871
15872 \end_layout
15873
15874 \end_inset
15875
15876
15877 \end_layout
15878
15879 \begin_layout Standard
15880 \begin_inset VSpace bigskip
15881 \end_inset
15882
15883 Um zum Beispiel horizontale Linien rot zu färben wie in Tabelle
15884 \begin_inset space ~
15885 \end_inset
15886
15887
15888 \begin_inset CommandInset ref
15889 LatexCommand ref
15890 reference "tab:Tabelle-mit-farbigen-horiz"
15891
15892 \end_inset
15893
15894 , müssen Sie folgenden Befehl als TeX-Code vor der (Gleitobjekt-)Tabelle
15895  einfügen:
15896 \end_layout
15897
15898 \begin_layout Standard
15899
15900 \series bold
15901
15902 \backslash
15903 let
15904 \backslash
15905 myHlineC
15906 \backslash
15907 hline
15908 \begin_inset Newline newline
15909 \end_inset
15910
15911
15912 \backslash
15913 renewcommand{
15914 \backslash
15915 hline}
15916 \begin_inset Newline newline
15917 \end_inset
15918
15919
15920 \begin_inset Phantom HPhantom
15921 status open
15922
15923 \begin_layout Plain Layout
15924
15925 \series bold
15926 \begin_inset space ~
15927 \end_inset
15928
15929
15930 \end_layout
15931
15932 \end_inset
15933
15934 {
15935 \backslash
15936 arrayrulecolor{red}
15937 \backslash
15938 myHlineC
15939 \backslash
15940 arrayrulecolor{black}}
15941 \end_layout
15942
15943 \begin_layout Standard
15944 \begin_inset ERT
15945 status collapsed
15946
15947 \begin_layout Plain Layout
15948
15949
15950 \backslash
15951 let
15952 \backslash
15953 myHlineC
15954 \backslash
15955 hline
15956 \end_layout
15957
15958 \begin_layout Plain Layout
15959
15960
15961 \backslash
15962 renewcommand{
15963 \backslash
15964 hline}
15965 \end_layout
15966
15967 \begin_layout Plain Layout
15968
15969  {
15970 \backslash
15971 arrayrulecolor{red}
15972 \backslash
15973 myHlineC
15974 \backslash
15975 arrayrulecolor{black}}
15976 \end_layout
15977
15978 \end_inset
15979
15980
15981 \begin_inset Float table
15982 placement h
15983 wide false
15984 sideways false
15985 status open
15986
15987 \begin_layout Plain Layout
15988 \begin_inset Caption
15989
15990 \begin_layout Plain Layout
15991 \begin_inset CommandInset label
15992 LatexCommand label
15993 name "tab:Tabelle-mit-farbigen-horiz"
15994
15995 \end_inset
15996
15997 Tabelle mit farbigen horizontalen Linien
15998 \end_layout
15999
16000 \end_inset
16001
16002
16003 \end_layout
16004
16005 \begin_layout Plain Layout
16006 \align center
16007 \begin_inset Tabular
16008 <lyxtabular version="3" rows="3" columns="3">
16009 <features tabularvalignment="middle">
16010 <column alignment="center" valignment="top" width="0">
16011 <column alignment="center" valignment="top" width="0">
16012 <column alignment="center" valignment="top" width="0">
16013 <row>
16014 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16015 \begin_inset Text
16016
16017 \begin_layout Plain Layout
16018 sd
16019 \end_layout
16020
16021 \end_inset
16022 </cell>
16023 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16024 \begin_inset Text
16025
16026 \begin_layout Plain Layout
16027
16028 \end_layout
16029
16030 \end_inset
16031 </cell>
16032 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16033 \begin_inset Text
16034
16035 \begin_layout Plain Layout
16036
16037 \end_layout
16038
16039 \end_inset
16040 </cell>
16041 </row>
16042 <row>
16043 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16044 \begin_inset Text
16045
16046 \begin_layout Plain Layout
16047
16048 \end_layout
16049
16050 \end_inset
16051 </cell>
16052 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16053 \begin_inset Text
16054
16055 \begin_layout Plain Layout
16056 sd
16057 \end_layout
16058
16059 \end_inset
16060 </cell>
16061 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16062 \begin_inset Text
16063
16064 \begin_layout Plain Layout
16065
16066 \end_layout
16067
16068 \end_inset
16069 </cell>
16070 </row>
16071 <row>
16072 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16073 \begin_inset Text
16074
16075 \begin_layout Plain Layout
16076
16077 \end_layout
16078
16079 \end_inset
16080 </cell>
16081 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16082 \begin_inset Text
16083
16084 \begin_layout Plain Layout
16085
16086 \end_layout
16087
16088 \end_inset
16089 </cell>
16090 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16091 \begin_inset Text
16092
16093 \begin_layout Plain Layout
16094 sd
16095 \end_layout
16096
16097 \end_inset
16098 </cell>
16099 </row>
16100 </lyxtabular>
16101
16102 \end_inset
16103
16104
16105 \end_layout
16106
16107 \end_inset
16108
16109
16110 \end_layout
16111
16112 \begin_layout Standard
16113 Um die schwarze Linienfarbe zurückzubekommen, müssen Sie folgenden Befehl
16114  als TeX-Code hinter der Tabelle einfügen:
16115 \end_layout
16116
16117 \begin_layout Standard
16118
16119 \series bold
16120
16121 \backslash
16122 renewcommand{
16123 \backslash
16124 hline}{
16125 \backslash
16126 myHlineC}
16127 \end_layout
16128
16129 \begin_layout Standard
16130 Tabelle
16131 \begin_inset space ~
16132 \end_inset
16133
16134
16135 \begin_inset CommandInset ref
16136 LatexCommand ref
16137 reference "tab:Table-with-colored"
16138
16139 \end_inset
16140
16141  ist ein Beispiel mit farbigen vertikalen und horizontalen Linien.
16142 \end_layout
16143
16144 \begin_layout Standard
16145 \begin_inset Float table
16146 placement h
16147 wide false
16148 sideways false
16149 status open
16150
16151 \begin_layout Plain Layout
16152 \begin_inset Caption
16153
16154 \begin_layout Plain Layout
16155 \begin_inset CommandInset label
16156 LatexCommand label
16157 name "tab:Table-with-colored"
16158
16159 \end_inset
16160
16161 Tabelle mit farbigen Linien
16162 \end_layout
16163
16164 \end_inset
16165
16166
16167 \end_layout
16168
16169 \begin_layout Plain Layout
16170 \align center
16171 \begin_inset Tabular
16172 <lyxtabular version="3" rows="3" columns="3">
16173 <features tabularvalignment="middle">
16174 <column alignment="center" valignment="top" width="0" special="Wc">
16175 <column alignment="center" valignment="top" width="0" special="Wc">
16176 <column alignment="center" valignment="top" width="0" special="WcW">
16177 <row>
16178 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16179 \begin_inset Text
16180
16181 \begin_layout Plain Layout
16182 sd
16183 \end_layout
16184
16185 \end_inset
16186 </cell>
16187 <cell alignment="center" valignment="top" topline="true" usebox="none">
16188 \begin_inset Text
16189
16190 \begin_layout Plain Layout
16191
16192 \end_layout
16193
16194 \end_inset
16195 </cell>
16196 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16197 \begin_inset Text
16198
16199 \begin_layout Plain Layout
16200
16201 \end_layout
16202
16203 \end_inset
16204 </cell>
16205 </row>
16206 <row>
16207 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16208 \begin_inset Text
16209
16210 \begin_layout Plain Layout
16211
16212 \end_layout
16213
16214 \end_inset
16215 </cell>
16216 <cell alignment="center" valignment="top" topline="true" usebox="none">
16217 \begin_inset Text
16218
16219 \begin_layout Plain Layout
16220 sd
16221 \end_layout
16222
16223 \end_inset
16224 </cell>
16225 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16226 \begin_inset Text
16227
16228 \begin_layout Plain Layout
16229
16230 \end_layout
16231
16232 \end_inset
16233 </cell>
16234 </row>
16235 <row topspace="default">
16236 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16237 \begin_inset Text
16238
16239 \begin_layout Plain Layout
16240
16241 \end_layout
16242
16243 \end_inset
16244 </cell>
16245 <cell alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
16246 \begin_inset Text
16247
16248 \begin_layout Plain Layout
16249
16250 \end_layout
16251
16252 \end_inset
16253 </cell>
16254 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16255 \begin_inset Text
16256
16257 \begin_layout Plain Layout
16258 sd
16259 \end_layout
16260
16261 \end_inset
16262 </cell>
16263 </row>
16264 </lyxtabular>
16265
16266 \end_inset
16267
16268
16269 \end_layout
16270
16271 \end_inset
16272
16273
16274 \end_layout
16275
16276 \begin_layout Standard
16277 \begin_inset ERT
16278 status collapsed
16279
16280 \begin_layout Plain Layout
16281
16282
16283 \backslash
16284 renewcommand{
16285 \backslash
16286 hline}{
16287 \backslash
16288 myHlineC}
16289 \end_layout
16290
16291 \end_inset
16292
16293
16294 \end_layout
16295
16296 \begin_layout Standard
16297 \begin_inset ERT
16298 status collapsed
16299
16300 \begin_layout Plain Layout
16301
16302
16303 \backslash
16304 setlength{
16305 \backslash
16306 arrayrulewidth}{0.4pt}
16307 \end_layout
16308
16309 \end_inset
16310
16311
16312 \begin_inset Note Note
16313 status collapsed
16314
16315 \begin_layout Plain Layout
16316 setzt die Liniendicke wieder auf ihren Standardwert zurück
16317 \end_layout
16318
16319 \end_inset
16320
16321
16322 \end_layout
16323
16324 \begin_layout Section
16325 Tabellen-Anpassung
16326 \begin_inset Index idx
16327 status collapsed
16328
16329 \begin_layout Plain Layout
16330 Tabellen ! Anpassung
16331 \end_layout
16332
16333 \end_inset
16334
16335
16336 \end_layout
16337
16338 \begin_layout Subsection
16339 Zeilenabstand
16340 \begin_inset CommandInset label
16341 LatexCommand label
16342 name "uab:Zeilenabstand"
16343
16344 \end_inset
16345
16346
16347 \begin_inset Index idx
16348 status collapsed
16349
16350 \begin_layout Plain Layout
16351 Tabellen ! Zeilenabstand
16352 \end_layout
16353
16354 \end_inset
16355
16356
16357 \end_layout
16358
16359 \begin_layout Standard
16360 Auf der Karteikarte 
16361 \family sans
16362 Rahmen
16363 \family default
16364  des 
16365 \family sans
16366 Tabellen-Einstellungen
16367 \family default
16368 -Dialogs können Sie 
16369 \family sans
16370 zusätzliche
16371 \begin_inset space ~
16372 \end_inset
16373
16374 Abstände
16375 \family default
16376  einfügen.
16377  Dabei haben Sie drei Möglichkeiten:
16378 \end_layout
16379
16380 \begin_layout Description
16381 Oberhalb
16382 \begin_inset space ~
16383 \end_inset
16384
16385 der
16386 \begin_inset space ~
16387 \end_inset
16388
16389 Zeile fügt oberhalb des Zeileninhalts zusätzlichen Leerraum ein.
16390  Bei einer formalen Tabelle
16391 \begin_inset Foot
16392 status collapsed
16393
16394 \begin_layout Plain Layout
16395 Formale Tabellen wurden in Abschnitt
16396 \begin_inset space ~
16397 \end_inset
16398
16399
16400 \begin_inset CommandInset ref
16401 LatexCommand ref
16402 reference "abs:Formale-Tabellen"
16403
16404 \end_inset
16405
16406  beschrieben.
16407 \end_layout
16408
16409 \end_inset
16410
16411  fügt LyX standardmäßig 0.5
16412 \begin_inset space \thinspace{}
16413 \end_inset
16414
16415 em Leerraum ein.
16416  Bei normalen Tabellen werden die vertikalen Linien leider nicht mit verlängert:
16417 \begin_inset VSpace medskip
16418 \end_inset
16419
16420
16421 \begin_inset Newline newline
16422 \end_inset
16423
16424
16425 \begin_inset space \hspace*{}
16426 \length 0pt
16427 \end_inset
16428
16429
16430 \begin_inset space \hfill{}
16431 \end_inset
16432
16433
16434 \begin_inset Tabular
16435 <lyxtabular version="3" rows="3" columns="1">
16436 <features tabularvalignment="middle">
16437 <column alignment="center" valignment="top" width="0">
16438 <row>
16439 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16440 \begin_inset Text
16441
16442 \begin_layout Plain Layout
16443 A
16444 \end_layout
16445
16446 \end_inset
16447 </cell>
16448 </row>
16449 <row topspace="3mm">
16450 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16451 \begin_inset Text
16452
16453 \begin_layout Plain Layout
16454 3
16455 \begin_inset space \thinspace{}
16456 \end_inset
16457
16458 mm Leerraum oberhalb der Zeile
16459 \end_layout
16460
16461 \end_inset
16462 </cell>
16463 </row>
16464 <row>
16465 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16466 \begin_inset Text
16467
16468 \begin_layout Plain Layout
16469 C
16470 \end_layout
16471
16472 \end_inset
16473 </cell>
16474 </row>
16475 </lyxtabular>
16476
16477 \end_inset
16478
16479
16480 \begin_inset space \hfill{}
16481 \end_inset
16482
16483
16484 \begin_inset space \hspace*{}
16485 \length 0pt
16486 \end_inset
16487
16488
16489 \begin_inset VSpace medskip
16490 \end_inset
16491
16492
16493 \begin_inset Newline newline
16494 \end_inset
16495
16496 Deshalb macht das Einfügen oberhalb der Zeile nur Sinn, wenn Sie keine vertikale
16497 n Linien verwenden.
16498 \end_layout
16499
16500 \begin_layout Description
16501 Unterhalb
16502 \begin_inset space ~
16503 \end_inset
16504
16505 der
16506 \begin_inset space ~
16507 \end_inset
16508
16509 Zeile fügt unterhalb des Zeileninhalts zusätzlichen Leerraum ein.
16510  Bei einer formalen Tabelle fügt LyX standardmäßig 0.5
16511 \begin_inset space \thinspace{}
16512 \end_inset
16513
16514 em Leerraum ein.
16515  Bei normalen Tabellen ist der Standardwert 2
16516 \begin_inset space \thinspace{}
16517 \end_inset
16518
16519 pt.
16520 \end_layout
16521
16522 \begin_layout Description
16523 Zwischen
16524 \begin_inset space ~
16525 \end_inset
16526
16527 den
16528 \begin_inset space ~
16529 \end_inset
16530
16531 Zeilen fügt zwischen zwei Zeilen zusätzlichen Leerraum ein.
16532  Bei einer formalen Tabelle fügt LyX standardmäßig 0.5
16533 \begin_inset space \thinspace{}
16534 \end_inset
16535
16536 em Leerraum ein.
16537  Bei normalen Tabellen werden die vertikalen Linien leider nicht mit verlängert:
16538 \begin_inset VSpace medskip
16539 \end_inset
16540
16541
16542 \begin_inset Newline newline
16543 \end_inset
16544
16545
16546 \begin_inset space \hspace*{}
16547 \length 0pt
16548 \end_inset
16549
16550
16551 \begin_inset space \hfill{}
16552 \end_inset
16553
16554
16555 \begin_inset Tabular
16556 <lyxtabular version="3" rows="3" columns="1">
16557 <features tabularvalignment="middle">
16558 <column alignment="center" valignment="top" width="0">
16559 <row>
16560 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16561 \begin_inset Text
16562
16563 \begin_layout Plain Layout
16564 A
16565 \end_layout
16566
16567 \end_inset
16568 </cell>
16569 </row>
16570 <row interlinespace="3mm">
16571 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16572 \begin_inset Text
16573
16574 \begin_layout Plain Layout
16575 \begin_inset Formula $\downarrow$
16576 \end_inset
16577
16578  3
16579 \begin_inset space \thinspace{}
16580 \end_inset
16581
16582 mm Leerraum zwischen den Zeilen 
16583 \begin_inset Formula $\downarrow$
16584 \end_inset
16585
16586
16587 \end_layout
16588
16589 \end_inset
16590 </cell>
16591 </row>
16592 <row>
16593 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16594 \begin_inset Text
16595
16596 \begin_layout Plain Layout
16597 \begin_inset Formula $\uparrow$
16598 \end_inset
16599
16600  3
16601 \begin_inset space \thinspace{}
16602 \end_inset
16603
16604 mm Leerraum zwischen den Zeilen 
16605 \begin_inset Formula $\uparrow$
16606 \end_inset
16607
16608
16609 \end_layout
16610
16611 \end_inset
16612 </cell>
16613 </row>
16614 </lyxtabular>
16615
16616 \end_inset
16617
16618
16619 \begin_inset space \hfill{}
16620 \end_inset
16621
16622
16623 \begin_inset space \hspace*{}
16624 \length 0pt
16625 \end_inset
16626
16627
16628 \begin_inset VSpace medskip
16629 \end_inset
16630
16631
16632 \begin_inset Newline newline
16633 \end_inset
16634
16635 Deshalb macht das Einfügen oberhalb der Zeile nur Sinn, wenn Sie keine vertikale
16636 n Linien verwenden.
16637 \end_layout
16638
16639 \begin_layout Standard
16640 \begin_inset VSpace bigskip
16641 \end_inset
16642
16643 Wenn Sie die Höhe aller Zellen vergrößern wollen, können Sie das mit folgenden
16644  Befehlen im LaTeX-Vorspann machen:
16645 \end_layout
16646
16647 \begin_layout Standard
16648
16649 \series bold
16650
16651 \backslash
16652 @ifundefined{extrarowheight}
16653 \begin_inset Newline newline
16654 \end_inset
16655
16656
16657 \begin_inset Phantom HPhantom
16658 status open
16659
16660 \begin_layout Plain Layout
16661
16662 \series bold
16663 \begin_inset space ~
16664 \end_inset
16665
16666
16667 \end_layout
16668
16669 \end_inset
16670
16671 {
16672 \backslash
16673 usepackage{array}}{}
16674 \begin_inset Newline newline
16675 \end_inset
16676
16677
16678 \backslash
16679 setlength{
16680 \backslash
16681 extrarowheight}{Höhe}
16682 \end_layout
16683
16684 \begin_layout Standard
16685 Aber das hat den Nachteil, dass die Zelltexte nicht mehr genau vertikal
16686  ausgerichtet sind.
16687  (Das Paket 
16688 \series bold
16689 array
16690 \series default
16691  wird automatisch von LyX geladen, wenn Sie selbst definierte Tabellenformate
16692  verwenden.
16693  Der Befehl 
16694 \series bold
16695
16696 \backslash
16697 @ifundefined
16698 \series default
16699  vermeidet, dass es in diesem Fall doppelt geladen wird.)
16700 \end_layout
16701
16702 \begin_layout Standard
16703 Bei der Verwendung von großen Schriftgrößen, sind die Tabellenlinien oftmals
16704  zu nah an den Buchstaben.
16705  Das kann korrigiert werden, indem man den Befehl 
16706 \series bold
16707
16708 \backslash
16709 strut
16710 \series default
16711  als TeX-Code am Anfang einer Tabellenzeile einfügt.
16712  Tabelle
16713 \begin_inset space ~
16714 \end_inset
16715
16716
16717 \begin_inset CommandInset ref
16718 LatexCommand ref
16719 reference "tab:Vertikale-Ausrichtung-von"
16720
16721 \end_inset
16722
16723  zeigt den Effekt.
16724 \end_layout
16725
16726 \begin_layout Standard
16727 \noindent
16728 \begin_inset Float table
16729 placement h
16730 wide false
16731 sideways false
16732 status open
16733
16734 \begin_layout Plain Layout
16735 \begin_inset Caption
16736
16737 \begin_layout Plain Layout
16738 \begin_inset CommandInset label
16739 LatexCommand label
16740 name "tab:Vertikale-Ausrichtung-von"
16741
16742 \end_inset
16743
16744 Vertikale Ausrichtung von Text mit großen Schriftgrößen.
16745 \end_layout
16746
16747 \end_inset
16748
16749
16750 \end_layout
16751
16752 \begin_layout Plain Layout
16753 \begin_inset space \hfill{}
16754 \end_inset
16755
16756
16757 \begin_inset Float table
16758 wide false
16759 sideways false
16760 status collapsed
16761
16762 \begin_layout Plain Layout
16763 \begin_inset Caption
16764
16765 \begin_layout Plain Layout
16766 Normale Tabelle.
16767 \end_layout
16768
16769 \end_inset
16770
16771
16772 \end_layout
16773
16774 \begin_layout Plain Layout
16775 \noindent
16776 \align center
16777 \begin_inset Tabular
16778 <lyxtabular version="3" rows="6" columns="1">
16779 <features tabularvalignment="middle">
16780 <column alignment="left" valignment="top" width="0">
16781 <row>
16782 <cell alignment="left" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16783 \begin_inset Text
16784
16785 \begin_layout Plain Layout
16786 Normal, g
16787 \end_layout
16788
16789 \end_inset
16790 </cell>
16791 </row>
16792 <row>
16793 <cell alignment="left" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16794 \begin_inset Text
16795
16796 \begin_layout Plain Layout
16797
16798 \size large
16799 Groß, g
16800 \end_layout
16801
16802 \end_inset
16803 </cell>
16804 </row>
16805 <row>
16806 <cell alignment="left" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16807 \begin_inset Text
16808
16809 \begin_layout Plain Layout
16810
16811 \size larger
16812 Größer, g
16813 \end_layout
16814
16815 \end_inset
16816 </cell>
16817 </row>
16818 <row>
16819 <cell alignment="left" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16820 \begin_inset Text
16821
16822 \begin_layout Plain Layout
16823
16824 \size largest
16825 noch Größer, g
16826 \end_layout
16827
16828 \end_inset
16829 </cell>
16830 </row>
16831 <row>
16832 <cell alignment="left" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16833 \begin_inset Text
16834
16835 \begin_layout Plain Layout
16836
16837 \size huge
16838 Riesig
16839 \end_layout
16840
16841 \end_inset
16842 </cell>
16843 </row>
16844 <row>
16845 <cell alignment="left" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16846 \begin_inset Text
16847
16848 \begin_layout Plain Layout
16849
16850 \size giant
16851 Gigantisch
16852 \end_layout
16853
16854 \end_inset
16855 </cell>
16856 </row>
16857 </lyxtabular>
16858
16859 \end_inset
16860
16861
16862 \end_layout
16863
16864 \end_inset
16865
16866
16867 \begin_inset space \hfill{}
16868 \end_inset
16869
16870
16871 \begin_inset Float table
16872 wide false
16873 sideways false
16874 status collapsed
16875
16876 \begin_layout Plain Layout
16877 \begin_inset Caption
16878
16879 \begin_layout Plain Layout
16880 Tabelle bei der der Befehl 
16881 \series bold
16882
16883 \backslash
16884 strut
16885 \series default
16886  verwendet wurde.
16887 \end_layout
16888
16889 \end_inset
16890
16891
16892 \end_layout
16893
16894 \begin_layout Plain Layout
16895 \noindent
16896 \align center
16897 \begin_inset Tabular
16898 <lyxtabular version="3" rows="6" columns="1">
16899 <features tabularvalignment="middle">
16900 <column alignment="left" valignment="top" width="0">
16901 <row>
16902 <cell alignment="left" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16903 \begin_inset Text
16904
16905 \begin_layout Plain Layout
16906 Normal, g
16907 \end_layout
16908
16909 \end_inset
16910 </cell>
16911 </row>
16912 <row>
16913 <cell alignment="left" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16914 \begin_inset Text
16915
16916 \begin_layout Plain Layout
16917
16918 \size large
16919 \begin_inset ERT
16920 status collapsed
16921
16922 \begin_layout Plain Layout
16923
16924
16925 \backslash
16926 strut 
16927 \end_layout
16928
16929 \end_inset
16930
16931 Groß, g
16932 \end_layout
16933
16934 \end_inset
16935 </cell>
16936 </row>
16937 <row>
16938 <cell alignment="left" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16939 \begin_inset Text
16940
16941 \begin_layout Plain Layout
16942
16943 \size larger
16944 \begin_inset ERT
16945 status collapsed
16946
16947 \begin_layout Plain Layout
16948
16949
16950 \backslash
16951 strut 
16952 \end_layout
16953
16954 \end_inset
16955
16956 Größer, g
16957 \end_layout
16958
16959 \end_inset
16960 </cell>
16961 </row>
16962 <row>
16963 <cell alignment="left" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16964 \begin_inset Text
16965
16966 \begin_layout Plain Layout
16967
16968 \size largest
16969 \begin_inset ERT
16970 status collapsed
16971
16972 \begin_layout Plain Layout
16973
16974
16975 \backslash
16976 strut 
16977 \end_layout
16978
16979 \end_inset
16980
16981 noch Größer, g
16982 \end_layout
16983
16984 \end_inset
16985 </cell>
16986 </row>
16987 <row>
16988 <cell alignment="left" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16989 \begin_inset Text
16990
16991 \begin_layout Plain Layout
16992
16993 \size huge
16994 \begin_inset ERT
16995 status collapsed
16996
16997 \begin_layout Plain Layout
16998
16999
17000 \backslash
17001 strut 
17002 \end_layout
17003
17004 \end_inset
17005
17006 Riesig
17007 \end_layout
17008
17009 \end_inset
17010 </cell>
17011 </row>
17012 <row>
17013 <cell alignment="left" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17014 \begin_inset Text
17015
17016 \begin_layout Plain Layout
17017
17018 \size giant
17019 \begin_inset ERT
17020 status collapsed
17021
17022 \begin_layout Plain Layout
17023
17024
17025 \backslash
17026 strut 
17027 \end_layout
17028
17029 \end_inset
17030
17031 Gigantisch
17032 \end_layout
17033
17034 \end_inset
17035 </cell>
17036 </row>
17037 </lyxtabular>
17038
17039 \end_inset
17040
17041
17042 \end_layout
17043
17044 \end_inset
17045
17046
17047 \begin_inset space \hfill{}
17048 \end_inset
17049
17050
17051 \end_layout
17052
17053 \end_inset
17054
17055
17056 \end_layout
17057
17058 \begin_layout Subsection
17059 Besondere Zellenausrichtung
17060 \begin_inset Index idx
17061 status collapsed
17062
17063 \begin_layout Plain Layout
17064 Tabellen ! Zellenausrichtung
17065 \end_layout
17066
17067 \end_inset
17068
17069
17070 \end_layout
17071
17072 \begin_layout Standard
17073 Manchmal sieht es besser aus, wenn Spalten nach besonderen Zeichen ausgerichtet
17074  sind wie zum Beispiel dem Dezimalpunkt wie in Tabelle
17075 \begin_inset space ~
17076 \end_inset
17077
17078
17079 \begin_inset CommandInset ref
17080 LatexCommand ref
17081 reference "tab:Tabellenzellen-sind-auf"
17082
17083 \end_inset
17084
17085 .
17086 \end_layout
17087
17088 \begin_layout Standard
17089 \begin_inset Float table
17090 placement h
17091 wide false
17092 sideways false
17093 status open
17094
17095 \begin_layout Plain Layout
17096 \begin_inset Caption
17097
17098 \begin_layout Plain Layout
17099 \begin_inset CommandInset label
17100 LatexCommand label
17101 name "tab:Tabellenzellen-sind-auf"
17102
17103 \end_inset
17104
17105 Tabellenzellen sind auf den Dezimalpunkt ausgerichtet
17106 \end_layout
17107
17108 \end_inset
17109
17110
17111 \end_layout
17112
17113 \begin_layout Plain Layout
17114 \align center
17115 \begin_inset Tabular
17116 <lyxtabular version="3" rows="4" columns="2">
17117 <features tabularvalignment="middle">
17118 <column alignment="right" valignment="top" width="0">
17119 <column alignment="left" valignment="top" width="0" special="@{}l">
17120 <row>
17121 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" usebox="none">
17122 \begin_inset Text
17123
17124 \begin_layout Plain Layout
17125 Überschrift
17126 \end_layout
17127
17128 \end_inset
17129 </cell>
17130 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17131 \begin_inset Text
17132
17133 \begin_layout Plain Layout
17134
17135 \end_layout
17136
17137 \end_inset
17138 </cell>
17139 </row>
17140 <row>
17141 <cell alignment="center" valignment="top" usebox="none">
17142 \begin_inset Text
17143
17144 \begin_layout Plain Layout
17145 12.
17146 \end_layout
17147
17148 \end_inset
17149 </cell>
17150 <cell alignment="center" valignment="top" usebox="none">
17151 \begin_inset Text
17152
17153 \begin_layout Plain Layout
17154 6
17155 \end_layout
17156
17157 \end_inset
17158 </cell>
17159 </row>
17160 <row>
17161 <cell alignment="center" valignment="top" usebox="none">
17162 \begin_inset Text
17163
17164 \begin_layout Plain Layout
17165 0.
17166 \end_layout
17167
17168 \end_inset
17169 </cell>
17170 <cell alignment="center" valignment="top" usebox="none">
17171 \begin_inset Text
17172
17173 \begin_layout Plain Layout
17174 68
17175 \end_layout
17176
17177 \end_inset
17178 </cell>
17179 </row>
17180 <row>
17181 <cell alignment="center" valignment="top" usebox="none">
17182 \begin_inset Text
17183
17184 \begin_layout Plain Layout
17185 -123.
17186 \end_layout
17187
17188 \end_inset
17189 </cell>
17190 <cell alignment="center" valignment="top" usebox="none">
17191 \begin_inset Text
17192
17193 \begin_layout Plain Layout
17194 0
17195 \end_layout
17196
17197 \end_inset
17198 </cell>
17199 </row>
17200 </lyxtabular>
17201
17202 \end_inset
17203
17204
17205 \end_layout
17206
17207 \end_inset
17208
17209
17210 \end_layout
17211
17212 \begin_layout Standard
17213 Diese Tabelle wurde als 4×2 Tabelle erstellt.
17214  Die Überschrift ist eine zentrierte Mehrfachspalte.
17215  Die erste Spalte ist rechtsbündig ausgerichtet und enthält den Vorkommateil
17216  der Zahlen einschließlich Dezimalpunkt.
17217  Die zweite Spalte ist linksbündig ausgerichtet und enthält den Nachkommateil
17218  der Zahlen.
17219   Um den Raum zwischen den beiden Spalten zu löschen, wurde im 
17220 \family sans
17221 LaTe
17222 \begin_inset ERT
17223 status collapsed
17224
17225 \begin_layout Plain Layout
17226
17227 {}
17228 \end_layout
17229
17230 \end_inset
17231
17232 X-Argument
17233 \family default
17234  für die zweite Spalte folgendes eingefügt:
17235 \end_layout
17236
17237 \begin_layout Standard
17238
17239 \series bold
17240 @{}l
17241 \end_layout
17242
17243 \begin_layout Standard
17244 Tabelle
17245 \begin_inset space ~
17246 \end_inset
17247
17248
17249 \begin_inset CommandInset ref
17250 LatexCommand ref
17251 reference "tab:Verschiedene-Ausrichtungen"
17252
17253 \end_inset
17254
17255  zeigt einige Ausrichtungen.
17256  Für die Ausrichtung der Relationen müssen Sie den 
17257 \family sans
17258 Mittleren
17259 \begin_inset space ~
17260 \end_inset
17261
17262 Abstand
17263 \family default
17264  aus der 
17265 \family sans
17266 Mathe-Werkzeugleiste
17267 \family default
17268  am Anfang der letzten Spalte einfügen, um den gleichen Abstand links und
17269  rechts vom Relationszeichen zu bekommen.
17270 \end_layout
17271
17272 \begin_layout Standard
17273
17274 \color black
17275 \begin_inset Float table
17276 placement h
17277 wide false
17278 sideways false
17279 status open
17280
17281 \begin_layout Plain Layout
17282
17283 \color black
17284 \begin_inset Caption
17285
17286 \begin_layout Plain Layout
17287
17288 \color black
17289 \begin_inset CommandInset label
17290 LatexCommand label
17291 name "tab:Verschiedene-Ausrichtungen"
17292
17293 \end_inset
17294
17295
17296 \color inherit
17297 Verschiedene Ausrichtungen
17298 \end_layout
17299
17300 \end_inset
17301
17302
17303 \end_layout
17304
17305 \begin_layout Plain Layout
17306 \align center
17307 \begin_inset Tabular
17308 <lyxtabular version="3" rows="4" columns="6">
17309 <features tabularvalignment="middle">
17310 <column alignment="right" valignment="top" width="0">
17311 <column alignment="left" valignment="top" width="0" special="@{}l">
17312 <column alignment="right" valignment="top" width="0">
17313 <column alignment="left" valignment="top" width="0" special="@{}l">
17314 <column alignment="right" valignment="top" width="0">
17315 <column alignment="left" valignment="top" width="0" special="@{}l">
17316 <row>
17317 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
17318 \begin_inset Text
17319
17320 \begin_layout Plain Layout
17321 Einheiten
17322 \end_layout
17323
17324 \end_inset
17325 </cell>
17326 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17327 \begin_inset Text
17328
17329 \begin_layout Plain Layout
17330
17331 \end_layout
17332
17333 \end_inset
17334 </cell>
17335 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
17336 \begin_inset Text
17337
17338 \begin_layout Plain Layout
17339 Exponenten
17340 \end_layout
17341
17342 \end_inset
17343 </cell>
17344 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17345 \begin_inset Text
17346
17347 \begin_layout Plain Layout
17348
17349 \end_layout
17350
17351 \end_inset
17352 </cell>
17353 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" usebox="none">
17354 \begin_inset Text
17355
17356 \begin_layout Plain Layout
17357 Relationen
17358 \end_layout
17359
17360 \end_inset
17361 </cell>
17362 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17363 \begin_inset Text
17364
17365 \begin_layout Plain Layout
17366
17367 \end_layout
17368
17369 \end_inset
17370 </cell>
17371 </row>
17372 <row>
17373 <cell alignment="center" valignment="top" usebox="none">
17374 \begin_inset Text
17375
17376 \begin_layout Plain Layout
17377 12×
17378 \end_layout
17379
17380 \end_inset
17381 </cell>
17382 <cell alignment="center" valignment="top" rightline="true" usebox="none">
17383 \begin_inset Text
17384
17385 \begin_layout Plain Layout
17386 24
17387 \begin_inset space \thinspace{}
17388 \end_inset
17389
17390 Flaschen
17391 \end_layout
17392
17393 \end_inset
17394 </cell>
17395 <cell alignment="center" valignment="top" usebox="none">
17396 \begin_inset Text
17397
17398 \begin_layout Plain Layout
17399 \begin_inset Formula $10\cdot$
17400 \end_inset
17401
17402
17403 \end_layout
17404
17405 \end_inset
17406 </cell>
17407 <cell alignment="center" valignment="top" rightline="true" usebox="none">
17408 \begin_inset Text
17409
17410 \begin_layout Plain Layout
17411 \begin_inset Formula $10^{\mbox{-}17}$
17412 \end_inset
17413
17414
17415 \end_layout
17416
17417 \end_inset
17418 </cell>
17419 <cell alignment="center" valignment="top" usebox="none">
17420 \begin_inset Text
17421
17422 \begin_layout Plain Layout
17423 \begin_inset Formula $\Gamma(t)\propto$
17424 \end_inset
17425
17426
17427 \end_layout
17428
17429 \end_inset
17430 </cell>
17431 <cell alignment="center" valignment="top" usebox="none">
17432 \begin_inset Text
17433
17434 \begin_layout Plain Layout
17435 \begin_inset Formula $\:\Upsilon(t)$
17436 \end_inset
17437
17438
17439 \end_layout
17440
17441 \end_inset
17442 </cell>
17443 </row>
17444 <row>
17445 <cell alignment="center" valignment="top" usebox="none">
17446 \begin_inset Text
17447
17448 \begin_layout Plain Layout
17449 1024×
17450 \end_layout
17451
17452 \end_inset
17453 </cell>
17454 <cell alignment="center" valignment="top" rightline="true" usebox="none">
17455 \begin_inset Text
17456
17457 \begin_layout Plain Layout
17458 768
17459 \begin_inset space \thinspace{}
17460 \end_inset
17461
17462 Pixel
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 \begin_inset Formula $5.78\cdot$
17472 \end_inset
17473
17474
17475 \end_layout
17476
17477 \end_inset
17478 </cell>
17479 <cell alignment="center" valignment="top" rightline="true" usebox="none">
17480 \begin_inset Text
17481
17482 \begin_layout Plain Layout
17483 \begin_inset Formula $10^{7}$
17484 \end_inset
17485
17486
17487 \end_layout
17488
17489 \end_inset
17490 </cell>
17491 <cell alignment="center" valignment="top" usebox="none">
17492 \begin_inset Text
17493
17494 \begin_layout Plain Layout
17495 \begin_inset Formula $A\ne$
17496 \end_inset
17497
17498
17499 \end_layout
17500
17501 \end_inset
17502 </cell>
17503 <cell alignment="center" valignment="top" usebox="none">
17504 \begin_inset Text
17505
17506 \begin_layout Plain Layout
17507 \begin_inset Formula $\: B_{\mathrm{red}}$
17508 \end_inset
17509
17510
17511 \end_layout
17512
17513 \end_inset
17514 </cell>
17515 </row>
17516 <row>
17517 <cell alignment="center" valignment="top" usebox="none">
17518 \begin_inset Text
17519
17520 \begin_layout Plain Layout
17521 32×
17522 \end_layout
17523
17524 \end_inset
17525 </cell>
17526 <cell alignment="center" valignment="top" rightline="true" usebox="none">
17527 \begin_inset Text
17528
17529 \begin_layout Plain Layout
17530 6
17531 \begin_inset space \thinspace{}
17532 \end_inset
17533
17534 cm
17535 \end_layout
17536
17537 \end_inset
17538 </cell>
17539 <cell alignment="center" valignment="top" usebox="none">
17540 \begin_inset Text
17541
17542 \begin_layout Plain Layout
17543 -
17544 \begin_inset Formula $33.5\cdot$
17545 \end_inset
17546
17547
17548 \end_layout
17549
17550 \end_inset
17551 </cell>
17552 <cell alignment="center" valignment="top" rightline="true" usebox="none">
17553 \begin_inset Text
17554
17555 \begin_layout Plain Layout
17556 \begin_inset Formula $10^{4}$
17557 \end_inset
17558
17559
17560 \end_layout
17561
17562 \end_inset
17563 </cell>
17564 <cell alignment="center" valignment="top" usebox="none">
17565 \begin_inset Text
17566
17567 \begin_layout Plain Layout
17568 \begin_inset Formula $\sin(\alpha)\ge$
17569 \end_inset
17570
17571
17572 \end_layout
17573
17574 \end_inset
17575 </cell>
17576 <cell alignment="center" valignment="top" usebox="none">
17577 \begin_inset Text
17578
17579 \begin_layout Plain Layout
17580 \begin_inset Formula $\:\sin(\beta)$
17581 \end_inset
17582
17583
17584 \end_layout
17585
17586 \end_inset
17587 </cell>
17588 </row>
17589 </lyxtabular>
17590
17591 \end_inset
17592
17593
17594 \end_layout
17595
17596 \end_inset
17597
17598
17599 \end_layout
17600
17601 \begin_layout Standard
17602 \begin_inset VSpace bigskip
17603 \end_inset
17604
17605 Es gibt auch noch das LaTeX-Paket 
17606 \series bold
17607 dcolumn
17608 \series default
17609 ,
17610 \begin_inset Index idx
17611 status collapsed
17612
17613 \begin_layout Plain Layout
17614 LaTeX-Pakete ! dcolumn
17615 \end_layout
17616
17617 \end_inset
17618
17619  mit dem man Zellen ausrichten kann.
17620  Aber es behandelt den Zelleninhalt als Mathematik und erlaubt keine Formeln
17621  in den Zellen.
17622  Die erste Spalte von Tabelle
17623 \begin_inset space ~
17624 \end_inset
17625
17626
17627 \begin_inset CommandInset ref
17628 LatexCommand ref
17629 reference "tab:Verschiedene-Ausrichtungen"
17630
17631 \end_inset
17632
17633  wird mit 
17634 \series bold
17635 dcolumn
17636 \series default
17637  wie die erste Spalte von Tabelle
17638 \begin_inset space ~
17639 \end_inset
17640
17641
17642 \begin_inset CommandInset ref
17643 LatexCommand ref
17644 reference "tab:Ausrichtung-mit-dem"
17645
17646 \end_inset
17647
17648  aussehen und nur mit ein paar Tricks wie erwartet.
17649  Die Ausrichtung der zweiten und dritten Spalte wie in Tabelle
17650 \begin_inset space ~
17651 \end_inset
17652
17653
17654 \begin_inset CommandInset ref
17655 LatexCommand ref
17656 reference "tab:Verschiedene-Ausrichtungen"
17657
17658 \end_inset
17659
17660  ist mit 
17661 \series bold
17662 dcolumn
17663 \series default
17664  nicht möglich.
17665 \end_layout
17666
17667 \begin_layout Standard
17668 \begin_inset Newpage newpage
17669 \end_inset
17670
17671
17672 \end_layout
17673
17674 \begin_layout Standard
17675 \begin_inset Float table
17676 placement h
17677 wide false
17678 sideways false
17679 status open
17680
17681 \begin_layout Plain Layout
17682 \begin_inset Caption
17683
17684 \begin_layout Plain Layout
17685 \begin_inset CommandInset label
17686 LatexCommand label
17687 name "tab:Ausrichtung-mit-dem"
17688
17689 \end_inset
17690
17691 Ausrichtung mit dem LaTeX-Paket 
17692 \series bold
17693 dcolumn
17694 \series default
17695 .
17696  Bei allen Spalten musste getrickst werden, um die gewünschte Ausgabe zu
17697  bekommen.
17698 \begin_inset Argument
17699 status collapsed
17700
17701 \begin_layout Plain Layout
17702 Ausrichtung mit dem LaTeX-Paket 
17703 \series bold
17704 dcolumn
17705 \end_layout
17706
17707 \end_inset
17708
17709
17710 \end_layout
17711
17712 \end_inset
17713
17714
17715 \end_layout
17716
17717 \begin_layout Plain Layout
17718 \align center
17719 \begin_inset Tabular
17720 <lyxtabular version="3" rows="4" columns="3">
17721 <features tabularvalignment="middle">
17722 <column alignment="center" valignment="top" width="0" special="D{x}{\times}{-1}">
17723 <column alignment="center" valignment="top" width="0" special="D{x}{\times}{4.9}">
17724 <column alignment="center" valignment="top" width="0" special="D{+}{\,}{9.7}">
17725 <row>
17726 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" usebox="none">
17727 \begin_inset Text
17728
17729 \begin_layout Plain Layout
17730 Einheiten
17731 \end_layout
17732
17733 \end_inset
17734 </cell>
17735 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
17736 \begin_inset Text
17737
17738 \begin_layout Plain Layout
17739 Einheiten
17740 \end_layout
17741
17742 \end_inset
17743 </cell>
17744 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
17745 \begin_inset Text
17746
17747 \begin_layout Plain Layout
17748 Einheiten
17749 \end_layout
17750
17751 \end_inset
17752 </cell>
17753 </row>
17754 <row>
17755 <cell alignment="center" valignment="top" rightline="true" usebox="none">
17756 \begin_inset Text
17757
17758 \begin_layout Plain Layout
17759 12x24
17760 \begin_inset space \thinspace{}
17761 \end_inset
17762
17763 Flaschen
17764 \end_layout
17765
17766 \end_inset
17767 </cell>
17768 <cell alignment="center" valignment="top" rightline="true" usebox="none">
17769 \begin_inset Text
17770
17771 \begin_layout Plain Layout
17772 12x24
17773 \begin_inset space \thinspace{}
17774 \end_inset
17775
17776
17777 \begin_inset Formula $\mbox{Flaschen}$
17778 \end_inset
17779
17780
17781 \end_layout
17782
17783 \end_inset
17784 </cell>
17785 <cell alignment="center" valignment="top" usebox="none">
17786 \begin_inset Text
17787
17788 \begin_layout Plain Layout
17789 12
17790 \begin_inset ERT
17791 status collapsed
17792
17793 \begin_layout Plain Layout
17794
17795
17796 \backslash
17797 times 
17798 \end_layout
17799
17800 \end_inset
17801
17802 24+
17803 \begin_inset Formula $\mbox{Flaschen}$
17804 \end_inset
17805
17806
17807 \end_layout
17808
17809 \end_inset
17810 </cell>
17811 </row>
17812 <row>
17813 <cell alignment="center" valignment="top" rightline="true" usebox="none">
17814 \begin_inset Text
17815
17816 \begin_layout Plain Layout
17817 1024x768
17818 \begin_inset space \thinspace{}
17819 \end_inset
17820
17821 Pixel
17822 \end_layout
17823
17824 \end_inset
17825 </cell>
17826 <cell alignment="center" valignment="top" rightline="true" usebox="none">
17827 \begin_inset Text
17828
17829 \begin_layout Plain Layout
17830 1024x768
17831 \begin_inset space \thinspace{}
17832 \end_inset
17833
17834
17835 \begin_inset Formula $\mbox{Pixel}$
17836 \end_inset
17837
17838
17839 \end_layout
17840
17841 \end_inset
17842 </cell>
17843 <cell alignment="center" valignment="top" usebox="none">
17844 \begin_inset Text
17845
17846 \begin_layout Plain Layout
17847 1024
17848 \begin_inset ERT
17849 status collapsed
17850
17851 \begin_layout Plain Layout
17852
17853
17854 \backslash
17855 times 
17856 \end_layout
17857
17858 \end_inset
17859
17860 768+
17861 \begin_inset Formula $\mbox{Pixel}$
17862 \end_inset
17863
17864
17865 \end_layout
17866
17867 \end_inset
17868 </cell>
17869 </row>
17870 <row>
17871 <cell alignment="center" valignment="top" rightline="true" usebox="none">
17872 \begin_inset Text
17873
17874 \begin_layout Plain Layout
17875 32x6
17876 \begin_inset space \thinspace{}
17877 \end_inset
17878
17879 cm
17880 \end_layout
17881
17882 \end_inset
17883 </cell>
17884 <cell alignment="center" valignment="top" rightline="true" usebox="none">
17885 \begin_inset Text
17886
17887 \begin_layout Plain Layout
17888 32x6
17889 \begin_inset space \thinspace{}
17890 \end_inset
17891
17892
17893 \begin_inset Formula $\mbox{cm}$
17894 \end_inset
17895
17896
17897 \end_layout
17898
17899 \end_inset
17900 </cell>
17901 <cell alignment="center" valignment="top" usebox="none">
17902 \begin_inset Text
17903
17904 \begin_layout Plain Layout
17905 32
17906 \begin_inset ERT
17907 status collapsed
17908
17909 \begin_layout Plain Layout
17910
17911
17912 \backslash
17913 times 
17914 \end_layout
17915
17916 \end_inset
17917
17918 6+
17919 \begin_inset Formula $\mbox{cm}$
17920 \end_inset
17921
17922
17923 \end_layout
17924
17925 \end_inset
17926 </cell>
17927 </row>
17928 </lyxtabular>
17929
17930 \end_inset
17931
17932
17933 \end_layout
17934
17935 \end_inset
17936
17937
17938 \end_layout
17939
17940 \begin_layout Subsection
17941 Angepasste Zellen-/Spaltenformate
17942 \begin_inset CommandInset label
17943 LatexCommand label
17944 name "uab:Angepasste-Zellen-/Spaltenformate"
17945
17946 \end_inset
17947
17948
17949 \begin_inset Index idx
17950 status collapsed
17951
17952 \begin_layout Plain Layout
17953 Tabellen ! Spaltenformat
17954 \end_layout
17955
17956 \end_inset
17957
17958
17959 \end_layout
17960
17961 \begin_layout Standard
17962 Wenn man wie in Abschnitt
17963 \begin_inset space ~
17964 \end_inset
17965
17966
17967 \begin_inset CommandInset ref
17968 LatexCommand ref
17969 reference "uab:Mehrfachspalten-Berechnungen"
17970
17971 \end_inset
17972
17973  die gewünschte Breite einer Mehrfachspalte berechnen will, ist das bei
17974  mehreren Tabellen mit Mehrfachspalten sehr lästig.
17975  Um sich das Leben zu erleichtern, können Sie im LaTeX-Vorspann Zellen/Spalten
17976  definieren:
17977 \end_layout
17978
17979 \begin_layout Standard
17980
17981 \series bold
17982
17983 \backslash
17984 newcolumntype{Formatname}[Zahl der Argumente]{Befehle}
17985 \end_layout
17986
17987 \begin_layout Standard
17988 Der Formatname darf nur ein Buchstabe sein, aber nicht 
17989 \emph on
17990 b
17991 \emph default
17992
17993 \emph on
17994 c
17995 \emph default
17996
17997 \emph on
17998 l
17999 \emph default
18000
18001 \emph on
18002 m
18003 \emph default
18004
18005 \emph on
18006 p
18007 \emph default
18008  oder 
18009 \emph on
18010 r
18011 \emph default
18012 , weil diese vordefiniert sind.
18013  Aber alle Buchstaben sind als Großbuchstaben erlaubt.
18014 \end_layout
18015
18016 \begin_layout Standard
18017 \begin_inset VSpace medskip
18018 \end_inset
18019
18020
18021 \end_layout
18022
18023 \begin_layout Standard
18024 Für vertikal und horizontal zentrierte Mehrfachspalten-Zellen mit fester
18025  Breite könnte das Format so aussehen:
18026 \end_layout
18027
18028 \begin_layout Standard
18029
18030 \series bold
18031
18032 \backslash
18033 newcolumntype{M}[1]{>{
18034 \backslash
18035 centering
18036 \backslash
18037 hspace{0pt}}m{#1}}
18038 \end_layout
18039
18040 \begin_layout Standard
18041 wobei 
18042 \series bold
18043
18044 \backslash
18045 hspace{0pt}
18046 \series default
18047  das Problem mit der Silbentrennung des ersten Wortes vermeidet, wie in
18048  Abschnitt
18049 \begin_inset space ~
18050 \end_inset
18051
18052
18053 \begin_inset CommandInset ref
18054 LatexCommand ref
18055 reference "uab:Mehrfache-Zeilen-in"
18056
18057 \end_inset
18058
18059  beschrieben.
18060  Jetzt können Sie mit
18061 \end_layout
18062
18063 \begin_layout Standard
18064
18065 \series bold
18066 M{Breite}
18067 \end_layout
18068
18069 \begin_layout Standard
18070 im 
18071 \family sans
18072 LaTeX-Argument
18073 \family default
18074  im 
18075 \family sans
18076 Tabellen-Einstellungen
18077 \family default
18078 -Dialog eine Mehrfachspalte definieren.
18079 \end_layout
18080
18081 \begin_layout Standard
18082 \begin_inset VSpace bigskip
18083 \end_inset
18084
18085
18086 \end_layout
18087
18088 \begin_layout Standard
18089 Für Zellen, die von einer Mehrfachspalte überspannt werden, können Sie folgendes
18090  Format definieren:
18091 \end_layout
18092
18093 \begin_layout Standard
18094
18095 \series bold
18096
18097 \backslash
18098 newcolumntype{S}[2]{>{
18099 \backslash
18100 centering
18101 \backslash
18102 hspace{0pt}}
18103 \begin_inset Newline newline
18104 \end_inset
18105
18106
18107 \begin_inset Phantom HPhantom
18108 status open
18109
18110 \begin_layout Plain Layout
18111
18112 \series bold
18113
18114 \backslash
18115 newcolumntype
18116 \end_layout
18117
18118 \end_inset
18119
18120 m{(#1+(2
18121 \backslash
18122 tabcolsep+
18123 \backslash
18124 arrayrulewidth)*(1-#2))/#2}}
18125 \end_layout
18126
18127 \begin_layout Standard
18128 Dieses Format benutzt Gleichung
18129 \begin_inset space ~
18130 \end_inset
18131
18132
18133 \begin_inset CommandInset ref
18134 LatexCommand ref
18135 reference "eq:Wgn"
18136
18137 \end_inset
18138
18139 , um die nötige Breite zu berechnen, damit jede überspannte Spalte gleich
18140  breit ist.
18141 \end_layout
18142
18143 \begin_layout Standard
18144 Jetzt können Sie im 
18145 \family sans
18146 LaTeX-Argument
18147 \family default
18148  im 
18149 \family sans
18150 Tabellen-Einstellungen
18151 \family default
18152 -Dialog folgendes einfügen:
18153 \end_layout
18154
18155 \begin_layout Standard
18156
18157 \series bold
18158 S{Mehrfachspalten-Breite}{Zahl der überspannten Spalten}
18159 \end_layout
18160
18161 \begin_layout Standard
18162 \begin_inset VSpace bigskip
18163 \end_inset
18164
18165
18166 \end_layout
18167
18168 \begin_layout Standard
18169 Für farbige Spalten können Sie folgendes einfügen:
18170 \end_layout
18171
18172 \begin_layout Standard
18173
18174 \series bold
18175
18176 \backslash
18177 newcolumntype{K}[1]{>{
18178 \backslash
18179 columncolor{#1}
18180 \backslash
18181 hspace{0pt}}c}
18182 \end_layout
18183
18184 \begin_layout Standard
18185 Das 
18186 \begin_inset Quotes gld
18187 \end_inset
18188
18189 c
18190 \begin_inset Quotes grd
18191 \end_inset
18192
18193  am Ende erzeugt eine Spalte mit flexibler Breite, deren Text horizontal
18194  zentriert ist.
18195  Jetzt können Sie als 
18196 \family sans
18197 LaTeX-Argument
18198 \family default
18199  folgendes einfügen:
18200 \end_layout
18201
18202 \begin_layout Standard
18203
18204 \series bold
18205 K{Farbname}
18206 \end_layout
18207
18208 \begin_layout Standard
18209 \begin_inset VSpace bigskip
18210 \end_inset
18211
18212
18213 \end_layout
18214
18215 \begin_layout Standard
18216 Für Tabelle
18217 \begin_inset space ~
18218 \end_inset
18219
18220
18221 \begin_inset CommandInset ref
18222 LatexCommand ref
18223 reference "tab:Tabelle-mit-benutzerdefinierte"
18224
18225 \end_inset
18226
18227  wurden folgende 
18228 \family sans
18229 LaTeX-Argumente
18230 \family default
18231  benutzt:
18232 \end_layout
18233
18234 \begin_layout Standard
18235
18236 \series bold
18237 M{2.5cm}
18238 \end_layout
18239
18240 \begin_layout Standard
18241 für die erste Spalte und die Mehrfachspalte,
18242 \end_layout
18243
18244 \begin_layout Standard
18245
18246 \series bold
18247 K{red}
18248 \end_layout
18249
18250 \begin_layout Standard
18251 für die letzte Spalte und
18252 \end_layout
18253
18254 \begin_layout Standard
18255
18256 \series bold
18257 S{2.5cm}{2}
18258 \end_layout
18259
18260 \begin_layout Standard
18261 für die Spalten in der zweiten Mehrfachspalte.
18262 \end_layout
18263
18264 \begin_layout Standard
18265 \begin_inset Float table
18266 placement h
18267 wide false
18268 sideways false
18269 status open
18270
18271 \begin_layout Plain Layout
18272 \begin_inset Caption
18273
18274 \begin_layout Plain Layout
18275 \begin_inset CommandInset label
18276 LatexCommand label
18277 name "tab:Tabelle-mit-benutzerdefinierte"
18278
18279 \end_inset
18280
18281 Tabelle mit benutzerdefinierten Formaten
18282 \end_layout
18283
18284 \end_inset
18285
18286
18287 \end_layout
18288
18289 \begin_layout Plain Layout
18290 \align center
18291 \begin_inset Tabular
18292 <lyxtabular version="3" rows="3" columns="4">
18293 <features tabularvalignment="middle">
18294 <column alignment="center" valignment="middle" width="2.5cm" special="M{2.5cm}">
18295 <column alignment="center" valignment="middle" width="0" special="S{2.5cm}{2}">
18296 <column alignment="center" valignment="middle" width="0">
18297 <column alignment="center" valignment="middle" width="0" special="K{red}">
18298 <row>
18299 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18300 \begin_inset Text
18301
18302 \begin_layout Plain Layout
18303 einsehrlangesWort
18304 \end_layout
18305
18306 \end_inset
18307 </cell>
18308 <cell multicolumn="1" alignment="center" valignment="top" topline="true" leftline="true" usebox="none" special="M{2.5cm}">
18309 \begin_inset Text
18310
18311 \begin_layout Plain Layout
18312 Mehrfachspalte mit mehreren Zeilen
18313 \end_layout
18314
18315 \end_inset
18316 </cell>
18317 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18318 \begin_inset Text
18319
18320 \begin_layout Plain Layout
18321
18322 \end_layout
18323
18324 \end_inset
18325 </cell>
18326 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18327 \begin_inset Text
18328
18329 \begin_layout Plain Layout
18330 c
18331 \end_layout
18332
18333 \end_inset
18334 </cell>
18335 </row>
18336 <row>
18337 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18338 \begin_inset Text
18339
18340 \begin_layout Plain Layout
18341 d
18342 \end_layout
18343
18344 \end_inset
18345 </cell>
18346 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18347 \begin_inset Text
18348
18349 \begin_layout Plain Layout
18350 e
18351 \end_layout
18352
18353 \end_inset
18354 </cell>
18355 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18356 \begin_inset Text
18357
18358 \begin_layout Plain Layout
18359 f
18360 \end_layout
18361
18362 \end_inset
18363 </cell>
18364 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18365 \begin_inset Text
18366
18367 \begin_layout Plain Layout
18368 g
18369 \end_layout
18370
18371 \end_inset
18372 </cell>
18373 </row>
18374 <row>
18375 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18376 \begin_inset Text
18377
18378 \begin_layout Plain Layout
18379 h
18380 \end_layout
18381
18382 \end_inset
18383 </cell>
18384 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18385 \begin_inset Text
18386
18387 \begin_layout Plain Layout
18388 i
18389 \end_layout
18390
18391 \end_inset
18392 </cell>
18393 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18394 \begin_inset Text
18395
18396 \begin_layout Plain Layout
18397 j
18398 \end_layout
18399
18400 \end_inset
18401 </cell>
18402 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
18403 \begin_inset Text
18404
18405 \begin_layout Plain Layout
18406 k
18407 \end_layout
18408
18409 \end_inset
18410 </cell>
18411 </row>
18412 </lyxtabular>
18413
18414 \end_inset
18415
18416
18417 \end_layout
18418
18419 \end_inset
18420
18421
18422 \end_layout
18423
18424 \begin_layout Subsection
18425 Liniendicke
18426 \begin_inset CommandInset label
18427 LatexCommand label
18428 name "uab:Liniendicke"
18429
18430 \end_inset
18431
18432
18433 \begin_inset Index idx
18434 status collapsed
18435
18436 \begin_layout Plain Layout
18437 Tabellen  ! Linien ! -dicke
18438 \end_layout
18439
18440 \end_inset
18441
18442
18443 \end_layout
18444
18445 \begin_layout Standard
18446 Die Liniendicke für alle Linien einer Tabelle kann mit 
18447 \series bold
18448
18449 \backslash
18450 arrayrulewidth
18451 \series default
18452  eingestellt werden.
18453  Um eine Liniendicke von 1.5
18454 \begin_inset space \thinspace{}
18455 \end_inset
18456
18457 pt wie in Tabelle
18458 \begin_inset space ~
18459 \end_inset
18460
18461
18462 \begin_inset CommandInset ref
18463 LatexCommand ref
18464 reference "tab:Tabelle-mit-1.5pt-Liniendicke"
18465
18466 \end_inset
18467
18468  zu bekommen, geben Sie den Befehl
18469 \end_layout
18470
18471 \begin_layout Standard
18472
18473 \series bold
18474
18475 \backslash
18476 setlength{
18477 \backslash
18478 arrayrulewidth}{1.5pt}
18479 \end_layout
18480
18481 \begin_layout Standard
18482 als TeX-Code vor der (Gleitobjekt-)Tabelle ein.
18483  Die geänderte Liniendicke gilt für alle folgenden Tabellen.
18484  Mit
18485 \end_layout
18486
18487 \begin_layout Standard
18488
18489 \series bold
18490
18491 \backslash
18492 setlength{
18493 \backslash
18494 arrayrulewidth}{0.4pt}
18495 \end_layout
18496
18497 \begin_layout Standard
18498 bekommen Sie wieder die Standarddicke.
18499 \end_layout
18500
18501 \begin_layout Standard
18502 \begin_inset ERT
18503 status collapsed
18504
18505 \begin_layout Plain Layout
18506
18507
18508 \backslash
18509 setlength{
18510 \backslash
18511 arrayrulewidth}{1.5pt}
18512 \end_layout
18513
18514 \end_inset
18515
18516
18517 \begin_inset Float table
18518 placement H
18519 wide false
18520 sideways false
18521 status open
18522
18523 \begin_layout Plain Layout
18524 \begin_inset Caption
18525
18526 \begin_layout Plain Layout
18527 \begin_inset CommandInset label
18528 LatexCommand label
18529 name "tab:Tabelle-mit-1.5pt-Liniendicke"
18530
18531 \end_inset
18532
18533 Tabelle mit 1.5
18534 \begin_inset space \thinspace{}
18535 \end_inset
18536
18537 pt Liniendicke
18538 \end_layout
18539
18540 \end_inset
18541
18542
18543 \end_layout
18544
18545 \begin_layout Plain Layout
18546 \align center
18547 \begin_inset Tabular
18548 <lyxtabular version="3" rows="3" columns="3">
18549 <features tabularvalignment="middle">
18550 <column alignment="center" valignment="top" width="0">
18551 <column alignment="center" valignment="top" width="0">
18552 <column alignment="center" valignment="top" width="0">
18553 <row>
18554 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18555 \begin_inset Text
18556
18557 \begin_layout Plain Layout
18558 sd
18559 \end_layout
18560
18561 \end_inset
18562 </cell>
18563 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18564 \begin_inset Text
18565
18566 \begin_layout Plain Layout
18567
18568 \end_layout
18569
18570 \end_inset
18571 </cell>
18572 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18573 \begin_inset Text
18574
18575 \begin_layout Plain Layout
18576
18577 \end_layout
18578
18579 \end_inset
18580 </cell>
18581 </row>
18582 <row>
18583 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18584 \begin_inset Text
18585
18586 \begin_layout Plain Layout
18587
18588 \end_layout
18589
18590 \end_inset
18591 </cell>
18592 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18593 \begin_inset Text
18594
18595 \begin_layout Plain Layout
18596 sd
18597 \end_layout
18598
18599 \end_inset
18600 </cell>
18601 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18602 \begin_inset Text
18603
18604 \begin_layout Plain Layout
18605
18606 \end_layout
18607
18608 \end_inset
18609 </cell>
18610 </row>
18611 <row>
18612 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18613 \begin_inset Text
18614
18615 \begin_layout Plain Layout
18616
18617 \end_layout
18618
18619 \end_inset
18620 </cell>
18621 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18622 \begin_inset Text
18623
18624 \begin_layout Plain Layout
18625
18626 \end_layout
18627
18628 \end_inset
18629 </cell>
18630 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
18631 \begin_inset Text
18632
18633 \begin_layout Plain Layout
18634 sd
18635 \end_layout
18636
18637 \end_inset
18638 </cell>
18639 </row>
18640 </lyxtabular>
18641
18642 \end_inset
18643
18644
18645 \end_layout
18646
18647 \end_inset
18648
18649
18650 \begin_inset ERT
18651 status collapsed
18652
18653 \begin_layout Plain Layout
18654
18655
18656 \backslash
18657 setlength{
18658 \backslash
18659 arrayrulewidth}{0.4pt}
18660 \end_layout
18661
18662 \end_inset
18663
18664
18665 \end_layout
18666
18667 \begin_layout Standard
18668 \begin_inset VSpace bigskip
18669 \end_inset
18670
18671 Um eine Liniendicke von 1.5
18672 \begin_inset space \thinspace{}
18673 \end_inset
18674
18675 pt nur für horizontale Linien zu bekommen wie in Tabelle
18676 \begin_inset space ~
18677 \end_inset
18678
18679
18680 \begin_inset CommandInset ref
18681 LatexCommand ref
18682 reference "tab:Tabelle-mit-1.5pt-horiz"
18683
18684 \end_inset
18685
18686 , müssen Sie folgende Befehle als TeX-Code vor der (Gleitobjekt-)Tabelle
18687  einfügen:
18688 \end_layout
18689
18690 \begin_layout Standard
18691
18692 \series bold
18693
18694 \backslash
18695 let
18696 \backslash
18697 myHline
18698 \backslash
18699 hline
18700 \begin_inset Newline newline
18701 \end_inset
18702
18703
18704 \backslash
18705 renewcommand{
18706 \backslash
18707 hline}
18708 \begin_inset Newline newline
18709 \end_inset
18710
18711  {
18712 \backslash
18713 noalign{
18714 \backslash
18715 global
18716 \backslash
18717 arrayrulewidth 1.5pt}
18718 \begin_inset Newline newline
18719 \end_inset
18720
18721  
18722 \backslash
18723 myHline
18724 \backslash
18725 noalign{
18726 \backslash
18727 global
18728 \backslash
18729 arrayrulewidth 0.4pt}}
18730 \end_layout
18731
18732 \begin_layout Standard
18733 Die Standarddicke erhalten Sie mit folgendem Befehl als TeX-Code hinter
18734  der (Gleit\SpecialChar \-
18735 objekt-)Tabelle zurück:
18736 \end_layout
18737
18738 \begin_layout Standard
18739
18740 \series bold
18741
18742 \backslash
18743 renewcommand{
18744 \backslash
18745 hline}{
18746 \backslash
18747 myHline}
18748 \end_layout
18749
18750 \begin_layout Standard
18751 \begin_inset ERT
18752 status collapsed
18753
18754 \begin_layout Plain Layout
18755
18756
18757 \backslash
18758 let
18759 \backslash
18760 myHline
18761 \backslash
18762 hline
18763 \end_layout
18764
18765 \begin_layout Plain Layout
18766
18767
18768 \backslash
18769 renewcommand{
18770 \backslash
18771 hline}
18772 \end_layout
18773
18774 \begin_layout Plain Layout
18775
18776  {
18777 \backslash
18778 noalign{
18779 \backslash
18780 global
18781 \backslash
18782 arrayrulewidth 1.5pt}
18783 \end_layout
18784
18785 \begin_layout Plain Layout
18786
18787   
18788 \backslash
18789 myHline
18790 \backslash
18791 noalign{
18792 \backslash
18793 global
18794 \backslash
18795 arrayrulewidth 0.4pt}}
18796 \end_layout
18797
18798 \end_inset
18799
18800
18801 \begin_inset Float table
18802 placement h
18803 wide false
18804 sideways false
18805 status open
18806
18807 \begin_layout Plain Layout
18808 \begin_inset Caption
18809
18810 \begin_layout Plain Layout
18811 \begin_inset CommandInset label
18812 LatexCommand label
18813 name "tab:Tabelle-mit-1.5pt-horiz"
18814
18815 \end_inset
18816
18817 Tabelle mit 1.5
18818 \begin_inset space \thinspace{}
18819 \end_inset
18820
18821 pt dicken horizontalen Linien
18822 \end_layout
18823
18824 \end_inset
18825
18826
18827 \end_layout
18828
18829 \begin_layout Plain Layout
18830 \align center
18831 \begin_inset Tabular
18832 <lyxtabular version="3" rows="3" columns="3">
18833 <features tabularvalignment="middle">
18834 <column alignment="center" valignment="top" width="0">
18835 <column alignment="center" valignment="top" width="0">
18836 <column alignment="center" valignment="top" width="0">
18837 <row>
18838 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18839 \begin_inset Text
18840
18841 \begin_layout Plain Layout
18842 sd
18843 \end_layout
18844
18845 \end_inset
18846 </cell>
18847 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18848 \begin_inset Text
18849
18850 \begin_layout Plain Layout
18851
18852 \end_layout
18853
18854 \end_inset
18855 </cell>
18856 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18857 \begin_inset Text
18858
18859 \begin_layout Plain Layout
18860
18861 \end_layout
18862
18863 \end_inset
18864 </cell>
18865 </row>
18866 <row>
18867 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18868 \begin_inset Text
18869
18870 \begin_layout Plain Layout
18871
18872 \end_layout
18873
18874 \end_inset
18875 </cell>
18876 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18877 \begin_inset Text
18878
18879 \begin_layout Plain Layout
18880 sd
18881 \end_layout
18882
18883 \end_inset
18884 </cell>
18885 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18886 \begin_inset Text
18887
18888 \begin_layout Plain Layout
18889
18890 \end_layout
18891
18892 \end_inset
18893 </cell>
18894 </row>
18895 <row>
18896 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18897 \begin_inset Text
18898
18899 \begin_layout Plain Layout
18900
18901 \end_layout
18902
18903 \end_inset
18904 </cell>
18905 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18906 \begin_inset Text
18907
18908 \begin_layout Plain Layout
18909
18910 \end_layout
18911
18912 \end_inset
18913 </cell>
18914 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
18915 \begin_inset Text
18916
18917 \begin_layout Plain Layout
18918 sd
18919 \end_layout
18920
18921 \end_inset
18922 </cell>
18923 </row>
18924 </lyxtabular>
18925
18926 \end_inset
18927
18928
18929 \end_layout
18930
18931 \end_inset
18932
18933
18934 \begin_inset ERT
18935 status collapsed
18936
18937 \begin_layout Plain Layout
18938
18939
18940 \backslash
18941 renewcommand{
18942 \backslash
18943 hline}{
18944 \backslash
18945 myHline}
18946 \end_layout
18947
18948 \end_inset
18949
18950
18951 \end_layout
18952
18953 \begin_layout Standard
18954 \begin_inset VSpace bigskip
18955 \end_inset
18956
18957 Um die Liniendicke von 1.5
18958 \begin_inset space \thinspace{}
18959 \end_inset
18960
18961 pt nur für vertikale Linien zu bekommen, müssen Sie im LaTeX-Vorspann folgendes
18962  Spaltenformat entsprechend der Beschreibung in Abschnitt
18963 \begin_inset space ~
18964 \end_inset
18965
18966
18967 \begin_inset CommandInset ref
18968 LatexCommand ref
18969 reference "uab:Angepasste-Zellen-/Spaltenformate"
18970
18971 \end_inset
18972
18973  definieren:
18974 \end_layout
18975
18976 \begin_layout Standard
18977
18978 \series bold
18979
18980 \backslash
18981 newcolumntype{V}{!{
18982 \backslash
18983 vrule width 1.5pt}}
18984 \end_layout
18985
18986 \begin_layout Standard
18987 In Tabelle
18988 \begin_inset space ~
18989 \end_inset
18990
18991
18992 \begin_inset CommandInset ref
18993 LatexCommand ref
18994 reference "tab:Tabelle-mit-1.5pt-vert"
18995
18996 \end_inset
18997
18998  wurde das 
18999 \family sans
19000 LaTe
19001 \begin_inset ERT
19002 status collapsed
19003
19004 \begin_layout Plain Layout
19005
19006 {}
19007 \end_layout
19008
19009 \end_inset
19010
19011 X-Argument
19012 \family default
19013 \series bold
19014  VcV
19015 \series default
19016  für die letzte Spalte und
19017 \series bold
19018  Vc
19019 \series default
19020  für die anderen benutzt.
19021 \end_layout
19022
19023 \begin_layout Standard
19024 \begin_inset Float table
19025 placement H
19026 wide false
19027 sideways false
19028 status open
19029
19030 \begin_layout Plain Layout
19031 \begin_inset Caption
19032
19033 \begin_layout Plain Layout
19034 \begin_inset CommandInset label
19035 LatexCommand label
19036 name "tab:Tabelle-mit-1.5pt-vert"
19037
19038 \end_inset
19039
19040 Tabelle mit 1.5
19041 \begin_inset space \thinspace{}
19042 \end_inset
19043
19044 pt dicken vertikalen Linien
19045 \end_layout
19046
19047 \end_inset
19048
19049
19050 \end_layout
19051
19052 \begin_layout Plain Layout
19053 \align center
19054 \begin_inset Tabular
19055 <lyxtabular version="3" rows="3" columns="3">
19056 <features tabularvalignment="middle">
19057 <column alignment="center" valignment="top" width="0" special="Vc">
19058 <column alignment="center" valignment="top" width="0" special="Vc">
19059 <column alignment="center" valignment="top" width="0" special="VcV">
19060 <row>
19061 <cell alignment="center" valignment="top" topline="true" usebox="none">
19062 \begin_inset Text
19063
19064 \begin_layout Plain Layout
19065 sd
19066 \end_layout
19067
19068 \end_inset
19069 </cell>
19070 <cell alignment="center" valignment="top" topline="true" usebox="none">
19071 \begin_inset Text
19072
19073 \begin_layout Plain Layout
19074
19075 \end_layout
19076
19077 \end_inset
19078 </cell>
19079 <cell alignment="center" valignment="top" topline="true" usebox="none">
19080 \begin_inset Text
19081
19082 \begin_layout Plain Layout
19083
19084 \end_layout
19085
19086 \end_inset
19087 </cell>
19088 </row>
19089 <row>
19090 <cell alignment="center" valignment="top" topline="true" usebox="none">
19091 \begin_inset Text
19092
19093 \begin_layout Plain Layout
19094
19095 \end_layout
19096
19097 \end_inset
19098 </cell>
19099 <cell alignment="center" valignment="top" topline="true" usebox="none">
19100 \begin_inset Text
19101
19102 \begin_layout Plain Layout
19103 sd
19104 \end_layout
19105
19106 \end_inset
19107 </cell>
19108 <cell alignment="center" valignment="top" topline="true" usebox="none">
19109 \begin_inset Text
19110
19111 \begin_layout Plain Layout
19112
19113 \end_layout
19114
19115 \end_inset
19116 </cell>
19117 </row>
19118 <row>
19119 <cell alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
19120 \begin_inset Text
19121
19122 \begin_layout Plain Layout
19123
19124 \end_layout
19125
19126 \end_inset
19127 </cell>
19128 <cell alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
19129 \begin_inset Text
19130
19131 \begin_layout Plain Layout
19132
19133 \end_layout
19134
19135 \end_inset
19136 </cell>
19137 <cell alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
19138 \begin_inset Text
19139
19140 \begin_layout Plain Layout
19141 sd
19142 \end_layout
19143
19144 \end_inset
19145 </cell>
19146 </row>
19147 </lyxtabular>
19148
19149 \end_inset
19150
19151
19152 \end_layout
19153
19154 \end_inset
19155
19156
19157 \end_layout
19158
19159 \begin_layout Subsection
19160 Gestrichelte Linien
19161 \begin_inset Index idx
19162 status collapsed
19163
19164 \begin_layout Plain Layout
19165 Tabellen  ! Linien ! gestrichelte 
19166 \end_layout
19167
19168 \end_inset
19169
19170
19171 \end_layout
19172
19173 \begin_layout Standard
19174 \begin_inset ERT
19175 status collapsed
19176
19177 \begin_layout Plain Layout
19178
19179
19180 \backslash
19181 ifarydshln
19182 \end_layout
19183
19184 \end_inset
19185
19186
19187 \begin_inset Note Note
19188 status open
19189
19190 \begin_layout Plain Layout
19191 Die folgende Teil wird nur gedruckt, wenn das LaTeX-Paket 
19192 \series bold
19193 arydshln
19194 \series default
19195  installiert ist.
19196 \end_layout
19197
19198 \end_inset
19199
19200
19201 \end_layout
19202
19203 \begin_layout Standard
19204 \begin_inset Float table
19205 placement h
19206 wide false
19207 sideways false
19208 status open
19209
19210 \begin_layout Plain Layout
19211 \begin_inset Caption
19212
19213 \begin_layout Plain Layout
19214 \begin_inset CommandInset label
19215 LatexCommand label
19216 name "tab:Tabelle-mit-gestrichelten"
19217
19218 \end_inset
19219
19220 Tabelle mit gestrichelten Linien
19221 \end_layout
19222
19223 \end_inset
19224
19225
19226 \end_layout
19227
19228 \begin_layout Plain Layout
19229 \align center
19230 \begin_inset Tabular
19231 <lyxtabular version="3" rows="5" columns="5">
19232 <features tabularvalignment="middle">
19233 <column alignment="center" valignment="top" width="0">
19234 <column alignment="center" valignment="top" width="0">
19235 <column alignment="center" valignment="top" width="0" special=":c">
19236 <column alignment="center" valignment="top" width="0">
19237 <column alignment="center" valignment="top" width="0">
19238 <row>
19239 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19240 \begin_inset Text
19241
19242 \begin_layout Plain Layout
19243 a
19244 \end_layout
19245
19246 \end_inset
19247 </cell>
19248 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19249 \begin_inset Text
19250
19251 \begin_layout Plain Layout
19252 b
19253 \end_layout
19254
19255 \end_inset
19256 </cell>
19257 <cell alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
19258 \begin_inset Text
19259
19260 \begin_layout Plain Layout
19261 c
19262 \end_layout
19263
19264 \end_inset
19265 </cell>
19266 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19267 \begin_inset Text
19268
19269 \begin_layout Plain Layout
19270 d
19271 \end_layout
19272
19273 \end_inset
19274 </cell>
19275 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19276 \begin_inset Text
19277
19278 \begin_layout Plain Layout
19279 e
19280 \end_layout
19281
19282 \end_inset
19283 </cell>
19284 </row>
19285 <row>
19286 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19287 \begin_inset Text
19288
19289 \begin_layout Plain Layout
19290 f
19291 \end_layout
19292
19293 \end_inset
19294 </cell>
19295 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19296 \begin_inset Text
19297
19298 \begin_layout Plain Layout
19299 g
19300 \end_layout
19301
19302 \end_inset
19303 </cell>
19304 <cell alignment="center" valignment="top" topline="true" usebox="none">
19305 \begin_inset Text
19306
19307 \begin_layout Plain Layout
19308 h
19309 \end_layout
19310
19311 \end_inset
19312 </cell>
19313 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19314 \begin_inset Text
19315
19316 \begin_layout Plain Layout
19317 i
19318 \end_layout
19319
19320 \end_inset
19321 </cell>
19322 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19323 \begin_inset Text
19324
19325 \begin_layout Plain Layout
19326 j
19327 \end_layout
19328
19329 \end_inset
19330 </cell>
19331 </row>
19332 <row>
19333 <cell alignment="center" valignment="top" leftline="true" usebox="none">
19334 \begin_inset Text
19335
19336 \begin_layout Plain Layout
19337 \begin_inset ERT
19338 status collapsed
19339
19340 \begin_layout Plain Layout
19341
19342
19343 \backslash
19344 hdashline 
19345 \end_layout
19346
19347 \end_inset
19348
19349 k
19350 \end_layout
19351
19352 \end_inset
19353 </cell>
19354 <cell alignment="center" valignment="top" leftline="true" usebox="none">
19355 \begin_inset Text
19356
19357 \begin_layout Plain Layout
19358 l
19359 \end_layout
19360
19361 \end_inset
19362 </cell>
19363 <cell alignment="center" valignment="top" usebox="none">
19364 \begin_inset Text
19365
19366 \begin_layout Plain Layout
19367 m
19368 \end_layout
19369
19370 \end_inset
19371 </cell>
19372 <cell alignment="center" valignment="top" leftline="true" usebox="none">
19373 \begin_inset Text
19374
19375 \begin_layout Plain Layout
19376 n
19377 \end_layout
19378
19379 \end_inset
19380 </cell>
19381 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
19382 \begin_inset Text
19383
19384 \begin_layout Plain Layout
19385 o
19386 \end_layout
19387
19388 \end_inset
19389 </cell>
19390 </row>
19391 <row>
19392 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19393 \begin_inset Text
19394
19395 \begin_layout Plain Layout
19396 \begin_inset ERT
19397 status collapsed
19398
19399 \begin_layout Plain Layout
19400
19401
19402 \backslash
19403 cdashline{4-5}
19404 \end_layout
19405
19406 \end_inset
19407
19408 p
19409 \end_layout
19410
19411 \end_inset
19412 </cell>
19413 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19414 \begin_inset Text
19415
19416 \begin_layout Plain Layout
19417 q
19418 \end_layout
19419
19420 \end_inset
19421 </cell>
19422 <cell alignment="center" valignment="top" topline="true" usebox="none" special="c:">
19423 \begin_inset Text
19424
19425 \begin_layout Plain Layout
19426 r
19427 \end_layout
19428
19429 \end_inset
19430 </cell>
19431 <cell multicolumn="1" alignment="center" valignment="top" leftline="true" rightline="true" usebox="none" special="c:">
19432 \begin_inset Text
19433
19434 \begin_layout Plain Layout
19435 s
19436 \end_layout
19437
19438 \end_inset
19439 </cell>
19440 <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19441 \begin_inset Text
19442
19443 \begin_layout Plain Layout
19444
19445 \end_layout
19446
19447 \end_inset
19448 </cell>
19449 </row>
19450 <row>
19451 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19452 \begin_inset Text
19453
19454 \begin_layout Plain Layout
19455 t
19456 \end_layout
19457
19458 \end_inset
19459 </cell>
19460 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19461 \begin_inset Text
19462
19463 \begin_layout Plain Layout
19464 u
19465 \end_layout
19466
19467 \end_inset
19468 </cell>
19469 <cell alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
19470 \begin_inset Text
19471
19472 \begin_layout Plain Layout
19473 v
19474 \end_layout
19475
19476 \end_inset
19477 </cell>
19478 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19479 \begin_inset Text
19480
19481 \begin_layout Plain Layout
19482 w
19483 \end_layout
19484
19485 \end_inset
19486 </cell>
19487 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19488 \begin_inset Text
19489
19490 \begin_layout Plain Layout
19491 x
19492 \end_layout
19493
19494 \end_inset
19495 </cell>
19496 </row>
19497 </lyxtabular>
19498
19499 \end_inset
19500
19501
19502 \end_layout
19503
19504 \end_inset
19505
19506
19507 \end_layout
19508
19509 \begin_layout Standard
19510 LyX unterstützt von sich aus keine gestrichelten Linien, also müssen Sie
19511  TeX-Code benutzen.
19512  Zunächst müssen Sie das LaTeX-Paket 
19513 \series bold
19514 arydshln
19515 \series default
19516
19517 \begin_inset Index idx
19518 status collapsed
19519
19520 \begin_layout Plain Layout
19521 LaTeX-Pakete ! arydshln
19522 \end_layout
19523
19524 \end_inset
19525
19526  im LaTeX-Vorspann laden:
19527 \end_layout
19528
19529 \begin_layout Standard
19530
19531 \series bold
19532
19533 \backslash
19534 usepackage{arydshln}
19535 \end_layout
19536
19537 \begin_layout Standard
19538 Um senkrechte Linien zu stricheln, müssen Sie im 
19539 \family sans
19540 LaTe
19541 \begin_inset ERT
19542 status collapsed
19543
19544 \begin_layout Plain Layout
19545
19546 {}
19547 \end_layout
19548
19549 \end_inset
19550
19551 X-Argument
19552 \family default
19553  des 
19554 \family sans
19555 Tabellen-Einstellungen
19556 \family default
19557 -Dialogs 
19558 \begin_inset Quotes gld
19559 \end_inset
19560
19561 :
19562 \begin_inset Quotes grd
19563 \end_inset
19564
19565 , zusammen mit dem Buchstaben für die horizontale Ausrichtung, eingeben.
19566 \end_layout
19567
19568 \begin_layout Standard
19569 Für eine gestrichelte horizontale Linie müssen Sie den Befehl
19570 \end_layout
19571
19572 \begin_layout Standard
19573
19574 \series bold
19575
19576 \backslash
19577 hdashline
19578 \end_layout
19579
19580 \begin_layout Standard
19581 als TeX-Code als erstes in die erste Zelle einer Zeile einfügen.
19582 \end_layout
19583
19584 \begin_layout Standard
19585 Für gestrichelte horizontale Linien für Mehrfachspalten wird der Befehl
19586 \end_layout
19587
19588 \begin_layout Standard
19589
19590 \series bold
19591
19592 \backslash
19593 cdashline{Anfangsspalte-Endspalte}
19594 \end_layout
19595
19596 \begin_layout Standard
19597 als TeX-Code als erstes in die erste Zelle einer Zeile eingefügt.
19598  Wenn Sie z.
19599 \begin_inset space \thinspace{}
19600 \end_inset
19601
19602 B.
19603  eine Mehrfachspalte über Spalte 2 bis 4 haben und Sie möchten darüber eine
19604  gestrichelte Linie haben, fügen Sie den Befehl
19605 \end_layout
19606
19607 \begin_layout Standard
19608
19609 \series bold
19610
19611 \backslash
19612 cdashline{2-4}
19613 \end_layout
19614
19615 \begin_layout Standard
19616 als erstes Element der ersten Zelle in der Zeile der Mehrfachspalte ein.
19617 \end_layout
19618
19619 \begin_layout Standard
19620 \begin_inset VSpace bigskip
19621 \end_inset
19622
19623
19624 \end_layout
19625
19626 \begin_layout Standard
19627 In Tabelle
19628 \begin_inset space ~
19629 \end_inset
19630
19631
19632 \begin_inset CommandInset ref
19633 LatexCommand ref
19634 reference "tab:Tabelle-mit-gestrichelten"
19635
19636 \end_inset
19637
19638  wurde in der dritten Spalte der Befehl
19639 \series bold
19640  
19641 \series default
19642
19643 \begin_inset Quotes gld
19644 \end_inset
19645
19646
19647 \series bold
19648 :c
19649 \begin_inset Quotes grd
19650 \end_inset
19651
19652
19653 \series default
19654  benutzt.
19655  Der Befehl 
19656 \series bold
19657
19658 \backslash
19659 hdashline
19660 \series default
19661  wurde in die erste Zelle der dritten Zeile eingefügt und der Befehl
19662 \begin_inset Newline newline
19663 \end_inset
19664
19665  
19666 \series bold
19667
19668 \backslash
19669 cdashline{4-5} 
19670 \series default
19671 wurde in die erste Zelle der vierten Zeile eingefügt.
19672 \end_layout
19673
19674 \begin_layout Standard
19675 \begin_inset Note Greyedout
19676 status open
19677
19678 \begin_layout Plain Layout
19679
19680 \series bold
19681 Bemerkung:
19682 \series default
19683  Das LaTeX-Paket 
19684 \series bold
19685 arydshln
19686 \series default
19687  ist nicht kompatibel dem LaTeX-Paket 
19688 \series bold
19689 colortbl
19690 \series default
19691
19692 \begin_inset Index idx
19693 status collapsed
19694
19695 \begin_layout Plain Layout
19696 LaTeX-Pakete ! colortbl
19697 \end_layout
19698
19699 \end_inset
19700
19701 , das für die farbigen Tabellen in Abschnitt
19702 \begin_inset space ~
19703 \end_inset
19704
19705
19706 \begin_inset CommandInset ref
19707 LatexCommand ref
19708 reference "abs:Farbige-Tabellen"
19709
19710 \end_inset
19711
19712  benutzt wurde.
19713  Deswegen können farbige Tabellen keine gestrichelten Linien haben.
19714 \end_layout
19715
19716 \end_inset
19717
19718
19719 \end_layout
19720
19721 \begin_layout Standard
19722 \begin_inset ERT
19723 status collapsed
19724
19725 \begin_layout Plain Layout
19726
19727
19728 \backslash
19729 else
19730 \end_layout
19731
19732 \end_inset
19733
19734
19735 \begin_inset Note Note
19736 status open
19737
19738 \begin_layout Plain Layout
19739 Die folgende Teil wird gedruckt, wenn das LaTeX-Paket 
19740 \series bold
19741 arydshln
19742 \series default
19743  nicht installiert ist:
19744 \end_layout
19745
19746 \end_inset
19747
19748
19749 \end_layout
19750
19751 \begin_layout Standard
19752 Sie müssen das LaTeX-Paket 
19753 \series bold
19754 arydshln
19755 \series default
19756  installiert haben um den Inhalt dieses Abschnitts zu sehen.
19757 \end_layout
19758
19759 \begin_layout Standard
19760 \begin_inset ERT
19761 status collapsed
19762
19763 \begin_layout Plain Layout
19764
19765
19766 \backslash
19767 fi
19768 \end_layout
19769
19770 \end_inset
19771
19772
19773 \end_layout
19774
19775 \begin_layout Chapter
19776 Gleitobjekte
19777 \begin_inset Index idx
19778 status collapsed
19779
19780 \begin_layout Plain Layout
19781 Gleitobjekte
19782 \end_layout
19783
19784 \end_inset
19785
19786
19787 \end_layout
19788
19789 \begin_layout Section
19790 Einleitung
19791 \begin_inset CommandInset label
19792 LatexCommand label
19793 name "abs:Gleitobjekte-Einleitung"
19794
19795 \end_inset
19796
19797
19798 \begin_inset Index idx
19799 status collapsed
19800
19801 \begin_layout Plain Layout
19802 Gleitobjekte ! Einleitung
19803 \end_layout
19804
19805 \end_inset
19806
19807
19808 \end_layout
19809
19810 \begin_layout Standard
19811 Ein Gleitobjekt ist ein Teil eines Dokumentes, das keinen festen Platz hat.
19812  Es kann eine oder zwei Seiten vorwärts oder rückwärts gleiten, wo immer
19813  der beste Platz ist.
19814  
19815 \family sans
19816 Fußnoten
19817 \family default
19818  und 
19819 \family sans
19820 Randnotizen
19821 \family default
19822  sind auch Gleitobjekte, weil sie auf die nächste Seite verschoben werden,
19823  wenn auf ihrer Seite schon zu viele sind.
19824 \end_layout
19825
19826 \begin_layout Standard
19827 Gleitobjekte ermöglichen eine hochwertige Gestaltung.
19828  Abbildungen und Tabellen können gleichmäßig auf Seiten verteilt werden,
19829  um weiße Flächen und Seiten ohne Text zu vermeiden.
19830  Weil das Gleiten oft den Kontext zwischen  Text und Abbildung/Tabelle auf\SpecialChar \textcompwordmark{}
19831 löst,
19832  kann im Text auf ein Gleitobjekt verwiesen werden.
19833  Gleitobjekte sind deshalb nummeriert.
19834  Querverweise werden in Abschnitt
19835 \begin_inset space ~
19836 \end_inset
19837
19838
19839 \begin_inset CommandInset ref
19840 LatexCommand ref
19841 reference "abs:Auf-Gleitobjekte-verweisen"
19842
19843 \end_inset
19844
19845  beschrieben.
19846 \end_layout
19847
19848 \begin_layout Standard
19849 Ein Gleitobjekt wird mit 
19850 \family sans
19851 Einfügen\SpecialChar \menuseparator
19852 Gleitobjekt\SpecialChar \menuseparator
19853 Algorithmus/Abbildung/Ta\SpecialChar \-
19854 belle/Um\SpecialChar \-
19855 flos\SpecialChar \-
19856 se\SpecialChar \-
19857 nes
19858 \begin_inset space ~
19859 \end_inset
19860
19861 Gleitobjekt
19862 \family default
19863  eingefügt.
19864  Für Abbildungen oder Tabellen können Sie auch auf 
19865 \begin_inset Graphics
19866         filename ../../images/float-insert_figure.png
19867         scale 70
19868         scaleBeforeRotation
19869         BoundingBox 0bp 6bp 22bp 22bp
19870
19871 \end_inset
19872
19873  oder 
19874 \begin_inset Graphics
19875         filename ../../images/float-insert_table.png
19876         scale 70
19877         scaleBeforeRotation
19878         BoundingBox 0bp 6bp 22bp 22bp
19879
19880 \end_inset
19881
19882  klicken.
19883  Sie erhalten an der Stelle der Einfügung ein rot beschriftetes graues Kästchen,
19884  das Ihnen sagt, um was für ein Gleitobjekt es sich handelt, und ein rot
19885  umrandetes Kästchen mit einer nummerierten Marke (Algorithmus/Abbildung/Tabelle
19886  #:).
19887  Statt # sehen Sie die von LyX vergebene Nummer.
19888  In das schmale Feld nach der Marke können Sie den Titel schreiben.
19889  Algorithmus, Abbildung oder Tabelle werden ober- oder unterhalb des Titels
19890  eingefügt.
19891  In Abschnitt
19892 \begin_inset space ~
19893 \end_inset
19894
19895
19896 \begin_inset CommandInset ref
19897 LatexCommand ref
19898 reference "abs:Titel-Platzierung"
19899
19900 \end_inset
19901
19902  finden Sie mehr über die Platzierung des Titels.
19903  Wenn Sie auf das Gleitobjekt-Kästchen klicken, wird es geschlossen und
19904  auch wieder geöffnet.
19905  Ein geschlossenes Gleitobjekt-Kästchen sieht so aus: 
19906 \begin_inset Graphics
19907         filename clipart/GleitobjektQt4.png
19908         scale 70
19909         scaleBeforeRotation
19910         BoundingBox 0bp 6bp 128bp 22bp
19911
19912 \end_inset
19913
19914  – ein graues Kästchen mit roter Beschriftung.
19915 \end_layout
19916
19917 \begin_layout Standard
19918 Um mögliche LaTeX-Fehler durch umgebenden Text zu vermeiden, wird empfohlen,
19919  Gleitobjekte in einem eigenen Absatz einzufügen.
19920 \end_layout
19921
19922 \begin_layout Standard
19923 Vorhandene Abbildungen oder Tabellen können Sie in ein Gleitobjekt packen,
19924  indem Sie sie markieren und dann auf 
19925 \begin_inset Graphics
19926         filename ../../images/float-insert_figure.png
19927         scale 70
19928         scaleBeforeRotation
19929         BoundingBox 0bp 6bp 22bp 22bp
19930
19931 \end_inset
19932
19933  oder 
19934 \begin_inset Graphics
19935         filename ../../images/float-insert_table.png
19936         scale 70
19937         scaleBeforeRotation
19938         BoundingBox 0bp 6bp 22bp 22bp
19939
19940 \end_inset
19941
19942  klicken.
19943 \end_layout
19944
19945 \begin_layout Section
19946 Gleitobjekt-Typen
19947 \begin_inset Index idx
19948 status collapsed
19949
19950 \begin_layout Plain Layout
19951 Gleitobjekte ! Typen
19952 \end_layout
19953
19954 \end_inset
19955
19956
19957 \end_layout
19958
19959 \begin_layout Standard
19960 Neben Gleitobjekt-Abbildungen und -Tabellen, die bereits in Abschnitt
19961 \begin_inset space ~
19962 \end_inset
19963
19964
19965 \begin_inset CommandInset ref
19966 LatexCommand ref
19967 reference "abs:Gleitende-Abbildungen"
19968
19969 \end_inset
19970
19971  und 
19972 \begin_inset CommandInset ref
19973 LatexCommand ref
19974 reference "abs:Gleitende-Tabellen"
19975
19976 \end_inset
19977
19978  beschrieben wurden, gibt es Gleitobjekt-Algorithmen und umflossene Gleitobjekte.
19979 \end_layout
19980
19981 \begin_layout Subsection
19982 Gleitobjekt-Algorithmen
19983 \begin_inset Index idx
19984 status collapsed
19985
19986 \begin_layout Plain Layout
19987 Gleitobjekte ! Algorithmen
19988 \end_layout
19989
19990 \end_inset
19991
19992
19993 \begin_inset CommandInset label
19994 LatexCommand label
19995 name "uab:Gleitobjekt-Algorithmen"
19996
19997 \end_inset
19998
19999
20000 \end_layout
20001
20002 \begin_layout Standard
20003 \begin_inset Float algorithm
20004 placement h
20005 wide false
20006 sideways false
20007 status open
20008
20009 \begin_layout Plain Layout
20010 \begin_inset Caption
20011
20012 \begin_layout Plain Layout
20013 \begin_inset CommandInset label
20014 LatexCommand label
20015 name "alg:Ein-Gleitobjekt-Algorithmus"
20016
20017 \end_inset
20018
20019 Ein Gleitobjekt-Algorithmus 
20020 \end_layout
20021
20022 \end_inset
20023
20024
20025 \end_layout
20026
20027 \begin_layout LyX-Code
20028 for I in 1..N loop
20029 \begin_inset Newline newline
20030 \end_inset
20031
20032  Sum:= Sum + A(I); /*Kommentar*/
20033 \begin_inset Newline newline
20034 \end_inset
20035
20036 end loop
20037 \begin_inset VSpace -4mm
20038 \end_inset
20039
20040
20041 \end_layout
20042
20043 \end_inset
20044
20045
20046 \end_layout
20047
20048 \begin_layout Standard
20049 Dieser Typ wird mit 
20050 \family sans
20051 Einfügen\SpecialChar \menuseparator
20052 Gleitobjekt\SpecialChar \menuseparator
20053 Algorithmus
20054 \family default
20055  eingefügt.
20056  Er wird für Programm-Code und Algorithmen-Beschreibungen verwendet und
20057  stellt eine Alternative zu Programm-Code-Listen dar, die in Kapitel
20058 \begin_inset space ~
20059 \end_inset
20060
20061
20062 \begin_inset CommandInset ref
20063 LatexCommand ref
20064 reference "kap:Programm-Code-Listen"
20065
20066 \end_inset
20067
20068 .
20069  Eine mögliche Absatz-Umgebung hier für ist 
20070 \family sans
20071 LyX-Code
20072 \family default
20073 , beschrieben im 
20074 \emph on
20075 Benutzerhandbuch
20076 \emph default
20077 .
20078  In Algorithmus
20079 \begin_inset space ~
20080 \end_inset
20081
20082
20083 \begin_inset CommandInset ref
20084 LatexCommand ref
20085 reference "alg:Ein-Gleitobjekt-Algorithmus"
20086
20087 \end_inset
20088
20089  wurden am Ende -4
20090 \begin_inset space \thinspace{}
20091 \end_inset
20092
20093 mm vertikaler Abstand eingefügt, damit die untere Linie direkt unter der
20094  letzten Zeile gedruckt wird.
20095 \end_layout
20096
20097 \begin_layout Standard
20098 Die Marke 
20099 \emph on
20100 Algorithmus
20101 \emph default
20102  wird nicht automatisch in die druckbare Version übernommen, sondern das
20103  englische Wort 
20104 \emph on
20105 Algorithm
20106 \emph default
20107  verwendet.
20108  Soll
20109 \emph on
20110  Algorithmus
20111 \emph default
20112  dort stehen, müssen Sie folgendes in den LaTeX-Vorspann schreiben: 
20113 \end_layout
20114
20115 \begin_layout Standard
20116
20117 \series bold
20118
20119 \backslash
20120 floatname{algorithm}{Algorithmus}
20121 \end_layout
20122
20123 \begin_layout Standard
20124 Um das Algorithmenverzeichnis einzufügen, kann für Dokumente, die dieselbe
20125  Sprache wie die LyX Menünamen haben, das Menü 
20126 \family sans
20127 Einfügen\SpecialChar \menuseparator
20128 Liste
20129 \begin_inset space \thinspace{}
20130 \end_inset
20131
20132 /
20133 \begin_inset space \thinspace{}
20134 \end_inset
20135
20136 Inhaltsverzeichnis\SpecialChar \menuseparator
20137 Algorithmenverzeichnis
20138 \family default
20139  verwendet werden.
20140  Für Dokumente in anderen Sprachen muss stattdessen dieser Befehl als TeX-Code
20141  eingefügt werden:
20142 \end_layout
20143
20144 \begin_layout Standard
20145
20146 \series bold
20147
20148 \backslash
20149 listof{algorithm}{Algorithmenverzeichnis}
20150 \end_layout
20151
20152 \begin_layout Standard
20153 Gleitobjekt-Algorithmen werden nicht wie Gleitobjekt-Abbildungen oder -Tabellen
20154  nach dem Schema 
20155 \begin_inset Quotes gld
20156 \end_inset
20157
20158 Kapitelnummer.Algorithmusnummer
20159 \begin_inset Quotes grd
20160 \end_inset
20161
20162  nummeriert.
20163  Um das zu erreichen, müssen Sie folgenden Befehl in den LaTeX-Vorspann
20164  einfügen:
20165 \end_layout
20166
20167 \begin_layout Standard
20168
20169 \series bold
20170
20171 \backslash
20172 numberwithin{algorithm}{chapter}
20173 \end_layout
20174
20175 \begin_layout Standard
20176 Um 
20177 \series bold
20178
20179 \backslash
20180 numberwithin
20181 \series default
20182  benutzen zu können, muss in den 
20183 \family sans
20184 Mathe
20185 \begin_inset space ~
20186 \end_inset
20187
20188 Optionen
20189 \family default
20190  der 
20191 \family sans
20192 Dokument-Einstellungen
20193 \family default
20194  
20195 \family sans
20196 AMS
20197 \begin_inset space ~
20198 \end_inset
20199
20200 Mathe
20201 \begin_inset space ~
20202 \end_inset
20203
20204 Paket
20205 \family default
20206
20207 \begin_inset space ~
20208 \end_inset
20209
20210
20211 \family sans
20212 verwenden
20213 \family default
20214  angekreuzt sein.
20215 \end_layout
20216
20217 \begin_layout Subsection
20218 Umflossene Gleitobjekte
20219 \begin_inset Index idx
20220 status collapsed
20221
20222 \begin_layout Plain Layout
20223 Gleitobjekte ! umflossene
20224 \end_layout
20225
20226 \end_inset
20227
20228
20229 \end_layout
20230
20231 \begin_layout Standard
20232 Umflossene Gleitobjekte werden benutzt, um Text um eine Abbildung oder Tabelle
20233  herum fließen zu lassen, wobei der Text nur den Teil der Zeile benutzt,
20234  den die Abbildung bzw.
20235 \begin_inset space ~
20236 \end_inset
20237
20238 Tabelle übrig lässt.
20239  Sie werden über das Menü
20240 \family sans
20241  Einfügen\SpecialChar \menuseparator
20242 Gleitobjekt\SpecialChar \menuseparator
20243 Umflossenes Bild-Gleitobjekt oder Umflossenes Tabellen-Gleit
20244 objekt
20245 \family default
20246  eingefügt, wenn das LaTeX-Paket 
20247 \series bold
20248 wrapfig
20249 \series default
20250
20251 \begin_inset Index idx
20252 status collapsed
20253
20254 \begin_layout Plain Layout
20255 LaTeX-Pakete ! wrapfig
20256 \begin_inset ERT
20257 status collapsed
20258
20259 \begin_layout Plain Layout
20260
20261
20262 \backslash
20263 vspace{4mm}
20264 \end_layout
20265
20266 \end_inset
20267
20268
20269 \end_layout
20270
20271 \end_inset
20272
20273  installiert ist.
20274 \begin_inset Foot
20275 status collapsed
20276
20277 \begin_layout Plain Layout
20278 Wie man ein LaTeX-Paket installiert, wird im Handbuch 
20279 \emph on
20280 LaTeX-Konfiguration
20281 \emph default
20282  beschrieben.
20283 \end_layout
20284
20285 \end_inset
20286
20287  Die Einstellungen des Gleitobjekts können mit einem Rechtsklick auf die
20288  Box des Gleitobjekts geändert werden.
20289  
20290 \begin_inset Wrap figure
20291 lines 0
20292 placement l
20293 overhang 1cm
20294 width "40col%"
20295 status open
20296
20297 \begin_layout Plain Layout
20298 \begin_inset Graphics
20299         filename ../clipart/mobius.eps
20300         width 40col%
20301         scaleBeforeRotation
20302         rotateOrigin center
20303
20304 \end_inset
20305
20306
20307 \end_layout
20308
20309 \begin_layout Plain Layout
20310 \begin_inset Caption
20311
20312 \begin_layout Plain Layout
20313 \begin_inset CommandInset label
20314 LatexCommand label
20315 name "abb:Dies-ist-eine"
20316
20317 \end_inset
20318
20319 Dies ist eine umflossene Gleitobjekt-Abbildung
20320 \end_layout
20321
20322 \end_inset
20323
20324
20325 \end_layout
20326
20327 \end_inset
20328
20329  Obligatorische Einstellungen sind die 
20330 \family sans
20331 Breite
20332 \family default
20333  und 
20334 \family sans
20335 Platzierung
20336 \family default
20337  des Gleitobjekts.
20338  Optional sind der 
20339 \family sans
20340 Überhang 
20341 \family default
20342 der festlegt, wie weit das Gleitobjekt in den Rand des Absatzes
20343 \begin_inset space \thinspace{}
20344 \end_inset
20345
20346 /
20347 \begin_inset space \thinspace{}
20348 \end_inset
20349
20350 der Seite ragt und die 
20351 \family sans
20352 benötigten Zeilen
20353 \family default
20354 , die festlegen wie viele Textzeilen das Gleitobjekt in etwa benötigt.
20355  Die benötigten Zeilen sind oft schwer abzuschätzen, daher sollte man sie
20356  nur nutzen, wenn Probleme mit der Platzierung des Gleitobjekts auftreten.
20357  Des weiteren können Sie entscheiden, ob es LaTeX erlaubt sein soll, das
20358  Gleitobjekt innerhalb des Absatzes oder zu umgebenden Absätzen gleiten
20359  zu lassen.
20360  Abbildung
20361 \begin_inset space ~
20362 \end_inset
20363
20364
20365 \begin_inset CommandInset ref
20366 LatexCommand ref
20367 reference "abb:Dies-ist-eine"
20368
20369 \end_inset
20370
20371  ist zum Beispiel ein umflossenes Bild, das 40
20372 \begin_inset space \thinspace{}
20373 \end_inset
20374
20375 % der Spaltenbreite einnimmt, 1
20376 \begin_inset space \thinspace{}
20377 \end_inset
20378
20379 cm in den Rand ragt und links gesetzt wurde.
20380 \begin_inset Foot
20381 status collapsed
20382
20383 \begin_layout Plain Layout
20384 Die benutzbaren Einheiten werden in Anhang
20385 \begin_inset space ~
20386 \end_inset
20387
20388
20389 \begin_inset CommandInset ref
20390 LatexCommand ref
20391 reference "kap:In-LyX-verfügbare"
20392
20393 \end_inset
20394
20395  beschrieben.
20396 \end_layout
20397
20398 \end_inset
20399
20400
20401 \end_layout
20402
20403 \begin_layout Standard
20404 \begin_inset Note Greyedout
20405 status open
20406
20407 \begin_layout Plain Layout
20408
20409 \series bold
20410 Bemerkung:
20411 \series default
20412  Umflossene Objekte sind fragil! Wenn die Abbildung z.
20413 \begin_inset space \thinspace{}
20414 \end_inset
20415
20416 B.
20417  zu nahe am unteren Seitenrand ist, kann es passieren, dass sie gar nicht
20418  oder über anderen Text gedruckt wird.
20419 \end_layout
20420
20421 \end_inset
20422
20423
20424 \end_layout
20425
20426 \begin_layout Standard
20427 Allgemein gilt:
20428 \end_layout
20429
20430 \begin_layout Itemize
20431 Umflossene Gleitobjekte sollten nicht in Absätze gepackt werden, die auf
20432  der nächsten Seite fortgesetzt werden.
20433  Das bedeutet, dass man sie erst dann einfügen sollte, wenn das Dokument
20434  fast fertig ist und man sehen kann, wo ein Seitenumbruch erfolgen wird.
20435 \end_layout
20436
20437 \begin_layout Itemize
20438 Umflossene Gleitobjekte sollten entweder vor dem Absatz, dessen Text um
20439  sie fließen soll, eingefügt werden oder darin.
20440 \end_layout
20441
20442 \begin_layout Itemize
20443 Umflossene Gleitobjekte in aufeinander folgenden Absätzen können Probleme
20444  bereiten, also achten Sie darauf, dass mindestens ein Textabsatz zwischen
20445  ihnen ist.
20446 \end_layout
20447
20448 \begin_layout Itemize
20449 Umflossene Gleitobjekte sind weder in Abschnitts-Überschriften noch in Tabellen
20450  erlaubt.
20451 \end_layout
20452
20453 \begin_layout Section
20454 Gleitobjekt-Nummerierung
20455 \begin_inset Index idx
20456 status collapsed
20457
20458 \begin_layout Plain Layout
20459 Gleitobjekte ! Nummerierung
20460 \end_layout
20461
20462 \end_inset
20463
20464
20465 \end_layout
20466
20467 \begin_layout Standard
20468 Gleitobjekte werden entweder unabhängig vom Abschnitt, in dem sie sind,
20469  nummeriert oder nach dem Schema 
20470 \begin_inset Quotes gld
20471 \end_inset
20472
20473 Kapitelnummer.Gleitobjektnummer
20474 \begin_inset Quotes grd
20475 \end_inset
20476
20477  oder 
20478 \begin_inset Quotes gld
20479 \end_inset
20480
20481 Abschnittsnummer.Gleitobjektnummer
20482 \begin_inset Quotes grd
20483 \end_inset
20484
20485 .
20486  Das hängt von der Dokumentklasse ab.
20487 \end_layout
20488
20489 \begin_layout Standard
20490 Um das Aussehen der unabhängigen Nummer zu ändern, müssen Sie folgendes
20491  in den LaTeX-Vorspann einfügen:
20492 \end_layout
20493
20494 \begin_layout Standard
20495
20496 \series bold
20497
20498 \backslash
20499 renewcommand{
20500 \backslash
20501 thetable}{
20502 \backslash
20503 roman{table}}
20504 \end_layout
20505
20506 \begin_layout Standard
20507
20508 \series bold
20509
20510 \backslash
20511 thetable
20512 \series default
20513  ist der Befehl, der die Tabellennummer druckt.
20514  Für Abbildungen ist das 
20515 \series bold
20516
20517 \backslash
20518 thefigure
20519 \series default
20520 .
20521  Der Befehl 
20522 \series bold
20523
20524 \backslash
20525 roman
20526 \series default
20527  druckt die Tabellennummer als kleingeschriebene römische Zahlen.
20528 \end_layout
20529
20530 \begin_layout Standard
20531 Um das Nummerierungsschema zum Beispiel auf 
20532 \begin_inset Quotes gld
20533 \end_inset
20534
20535 Unterabschnittsnummer.Num\SpecialChar \-
20536 mer
20537 \begin_inset Quotes grd
20538 \end_inset
20539
20540  zu ändern, setzen Sie folgendes in den LaTeX-Vorspann:
20541 \end_layout
20542
20543 \begin_layout Standard
20544
20545 \series bold
20546
20547 \backslash
20548 numberwithin{table}{subsection}
20549 \end_layout
20550
20551 \begin_layout Standard
20552 Um den Befehl 
20553 \series bold
20554
20555 \backslash
20556 numberwithin
20557 \series default
20558  benutzen zu können, müssen Sie in den 
20559 \family sans
20560 Mathe
20561 \begin_inset space ~
20562 \end_inset
20563
20564 Optionen
20565 \family default
20566  der 
20567 \family sans
20568 Dokument-Einstellungen
20569 \family default
20570  
20571 \family sans
20572 AMS
20573 \begin_inset space ~
20574 \end_inset
20575
20576 Mathe
20577 \begin_inset space ~
20578 \end_inset
20579
20580 Paket
20581 \family default
20582
20583 \begin_inset space ~
20584 \end_inset
20585
20586
20587 \family sans
20588 verwenden
20589 \family default
20590  ankreuzen.
20591 \end_layout
20592
20593 \begin_layout Standard
20594 Sehen Sie sich bitte auch Abschnitt
20595 \begin_inset space ~
20596 \end_inset
20597
20598
20599 \begin_inset CommandInset ref
20600 LatexCommand ref
20601 reference "uab:Fußnoten-Nummerierung"
20602
20603 \end_inset
20604
20605  für Einzelheiten und wichtige Bemerkungen zu Nummerierung-Befehlen an.
20606 \end_layout
20607
20608 \begin_layout Section
20609 Auf Gleitobjekte verweisen
20610 \begin_inset CommandInset label
20611 LatexCommand label
20612 name "abs:Auf-Gleitobjekte-verweisen"
20613
20614 \end_inset
20615
20616
20617 \begin_inset Index idx
20618 status collapsed
20619
20620 \begin_layout Plain Layout
20621 Gleitobjekte ! Querverweise
20622 \end_layout
20623
20624 \end_inset
20625
20626
20627 \begin_inset Index idx
20628 status collapsed
20629
20630 \begin_layout Plain Layout
20631 Querverweise ! auf Gleitobjekte
20632 \end_layout
20633
20634 \end_inset
20635
20636
20637 \end_layout
20638
20639 \begin_layout Standard
20640 Zunächst müssen Sie mit 
20641 \family sans
20642 Einfügen\SpecialChar \menuseparator
20643 Marke
20644 \family default
20645  oder einen Klick auf 
20646 \begin_inset Graphics
20647         filename ../../images/label-insert.png
20648         scale 70
20649         scaleBeforeRotation
20650
20651 \end_inset
20652
20653  eine Marke im Titel einfügen.
20654  Im 
20655 \family sans
20656 Marke
20657 \family default
20658 -Dialog schreiben Sie einen Text in das Feld 
20659 \family sans
20660 Marke
20661 \family default
20662  oder übernehmen den vorgeschlagenen.
20663  Die Marke sieht in LyX dann so aus:
20664 \end_layout
20665
20666 \begin_layout Standard
20667 \begin_inset Graphics
20668         filename clipart/Marke.png
20669         lyxscale 80
20670         scale 50
20671         scaleBeforeRotation
20672         BoundingBox 0bp 6bp 76bp 23bp
20673
20674 \end_inset
20675
20676
20677 \end_layout
20678
20679 \begin_layout Standard
20680 Die Marke wird als Anker und Name für den Querverweis benutzt.
20681  Mit 
20682 \family sans
20683 Einfügen\SpecialChar \menuseparator
20684 Querverweis
20685 \family default
20686  oder einen Klick auf 
20687 \begin_inset Graphics
20688         filename ../../images/dialog-show-new-inset_ref.png
20689         scale 70
20690         scaleBeforeRotation
20691
20692 \end_inset
20693
20694  können Sie dann auf die Marke verweisen.
20695  Als Querverweis wird in LyX ein graues Kästchen wie zum Beispiel dieses
20696  angezeigt:
20697 \end_layout
20698
20699 \begin_layout Standard
20700 \begin_inset Graphics
20701         filename clipart/Querverweis.png
20702         lyxscale 80
20703         scale 50
20704         scaleBeforeRotation
20705         BoundingBox 0bp 6bp 76bp 23bp
20706
20707 \end_inset
20708
20709
20710 \begin_inset Newline newline
20711 \end_inset
20712
20713  Mehr zu Querverweisen finden Sie im 
20714 \emph on
20715 Benutzerhandbuch
20716 \emph default
20717 .
20718 \end_layout
20719
20720 \begin_layout Standard
20721 Es empfiehlt sich, zwischen dem Querverweis-Namen (zum Beispiele Abschnitt)
20722  und dem Querverweis ein geschütztes Leerzeichen einfügen, damit beide nicht
20723  durch einen Zeilenumbruch getrennt werden können.
20724 \end_layout
20725
20726 \begin_layout Standard
20727 Marken können Sie jederzeit durch einen Klick auf ihr Kästchen ändern.
20728  LyX passt die Querverweise automatisch an.
20729 \end_layout
20730
20731 \begin_layout Standard
20732 Ein Klick auf den Schalter 
20733 \family sans
20734 Gehe
20735 \begin_inset space ~
20736 \end_inset
20737
20738 zur
20739 \begin_inset space ~
20740 \end_inset
20741
20742 Marke
20743 \family default
20744  im Querverweis-Fenster stellt den Cursor vor die entsprechende Marke.
20745  Der Text der Schaltfläche heißt jetzt 
20746 \family sans
20747 Gehe
20748 \begin_inset space ~
20749 \end_inset
20750
20751 zurück
20752 \family default
20753  und ein Klick darauf macht genau dies.
20754   Ein Rechts-Klick auf das Querverweis-Kästchen stellt den Cursor vor die
20755  entsprechende Marke, ohne dass das Querverweis-Fenster zusehen ist.
20756  Dann ist auch kein 
20757 \family sans
20758 Gehe
20759 \begin_inset space ~
20760 \end_inset
20761
20762 zurück
20763 \family default
20764  möglich.
20765 \end_layout
20766
20767 \begin_layout Subsection
20768 Querverweis-Formate
20769 \begin_inset CommandInset label
20770 LatexCommand label
20771 name "uab:Querverweis-Formate"
20772
20773 \end_inset
20774
20775
20776 \begin_inset Index idx
20777 status collapsed
20778
20779 \begin_layout Plain Layout
20780 Querverweise ! Formate
20781 \end_layout
20782
20783 \end_inset
20784
20785
20786 \end_layout
20787
20788 \begin_layout Standard
20789 Es gibt sechs verschiedene Querverweisstile:
20790 \end_layout
20791
20792 \begin_layout Description
20793 <Querverweis>: druckt die Nummer der Gleitumgebung, dies ist die Voreinstellung:
20794  
20795 \begin_inset CommandInset ref
20796 LatexCommand ref
20797 reference "abb:Zwei-Teilabbildungen"
20798
20799 \end_inset
20800
20801
20802 \end_layout
20803
20804 \begin_layout Description
20805 (<Querverweis>): druckt die Nummer der Gleitumgebung umgeben von zwei runden
20806  Klammern, dies ist der Stil, wie er normalerweise für Verweise auf Formeln
20807  verwendet wird, speziell wenn der Name 
20808 \begin_inset Quotes gld
20809 \end_inset
20810
20811 Gleichung
20812 \begin_inset Quotes grd
20813 \end_inset
20814
20815  weggelassen wird: 
20816 \begin_inset CommandInset ref
20817 LatexCommand eqref
20818 reference "eq:Wgn"
20819
20820 \end_inset
20821
20822
20823 \end_layout
20824
20825 \begin_layout Description
20826 <Seite>: druckt die Seitennummer: Seite
20827 \begin_inset space ~
20828 \end_inset
20829
20830
20831 \begin_inset CommandInset ref
20832 LatexCommand pageref
20833 reference "abb:Zwei-Teilabbildungen"
20834
20835 \end_inset
20836
20837
20838 \end_layout
20839
20840 \begin_layout Description
20841 auf
20842 \begin_inset space ~
20843 \end_inset
20844
20845 Seite
20846 \begin_inset space ~
20847 \end_inset
20848
20849 <Seite>: druckt den Text 
20850 \begin_inset Quotes gld
20851 \end_inset
20852
20853 auf Seite
20854 \begin_inset Quotes grd
20855 \end_inset
20856
20857  und die Seitennummer: 
20858 \begin_inset CommandInset ref
20859 LatexCommand vpageref
20860 reference "abb:Zwei-Teilabbildungen"
20861
20862 \end_inset
20863
20864
20865 \end_layout
20866
20867 \begin_layout Description
20868 <Querverweis>
20869 \begin_inset space ~
20870 \end_inset
20871
20872 auf
20873 \begin_inset space ~
20874 \end_inset
20875
20876 Seite
20877 \begin_inset space ~
20878 \end_inset
20879
20880 <Seite>: druckt die Nummer der Gleitumgebung, den Text 
20881 \begin_inset Quotes gld
20882 \end_inset
20883
20884 auf Seite
20885 \begin_inset Quotes grd
20886 \end_inset
20887
20888 , und die Seitennummer: 
20889 \begin_inset CommandInset ref
20890 LatexCommand vref
20891 reference "abb:Zwei-Teilabbildungen"
20892
20893 \end_inset
20894
20895
20896 \end_layout
20897
20898 \begin_layout Description
20899 Formatierter
20900 \begin_inset space ~
20901 \end_inset
20902
20903 Querverweis: druckt ein selbst definiertes Querverweisformat
20904 \begin_inset Newline newline
20905 \end_inset
20906
20907
20908 \begin_inset Note Greyedout
20909 status open
20910
20911 \begin_layout Plain Layout
20912
20913 \series bold
20914 Bemerkung:
20915 \series default
20916  Dies ist nur möglich, wenn das LaTeX-Paket 
20917 \series bold
20918 prettyref
20919 \series default
20920
20921 \begin_inset Index idx
20922 status collapsed
20923
20924 \begin_layout Plain Layout
20925 LaTeX-Pakete! prettyref
20926 \end_layout
20927
20928 \end_inset
20929
20930  installiert ist.
20931 \end_layout
20932
20933 \end_inset
20934
20935
20936 \end_layout
20937
20938 \begin_layout Standard
20939
20940 \family sans
20941 <Seite>
20942 \family default
20943  druckt nicht die Seitennummer, wenn sich die referenzierte Marke auf der
20944  vorherigen, der selben oder der nächsten Seite befindet.
20945  Stattdessen wird z.
20946 \begin_inset space \thinspace{}
20947 \end_inset
20948
20949 B.
20950  der Text 
20951 \begin_inset Quotes gld
20952 \end_inset
20953
20954
20955 \family sans
20956 auf dieser Seite
20957 \family default
20958
20959 \begin_inset Quotes grd
20960 \end_inset
20961
20962  gedruckt.
20963  Der Stil 
20964 \family sans
20965 <Querverweis>
20966 \begin_inset space ~
20967 \end_inset
20968
20969 auf
20970 \begin_inset space ~
20971 \end_inset
20972
20973 Seite
20974 \begin_inset space ~
20975 \end_inset
20976
20977 <Seite>
20978 \family default
20979  druckt nichts über die Seite, wenn die referenzierte Marke auf der gleichen
20980  Seite ist.
20981 \end_layout
20982
20983 \begin_layout Standard
20984 Die Nummer und die aktuelle Seite des referenzierten Dokumentteils wird
20985  automatisch von LaTeX berechnet.
20986  Die Stile können im Feld 
20987 \family sans
20988 Format
20989 \family default
20990  des Querverweis-Fensters eingestellt werden, das erscheint, wenn Sie auf
20991  einen Querverweis klicken.
20992 \end_layout
20993
20994 \begin_layout Standard
20995 \begin_inset Note Greyedout
20996 status open
20997
20998 \begin_layout Plain Layout
20999
21000 \series bold
21001 Bemerkung:
21002 \series default
21003  Das LaTeX-Paket 
21004 \series bold
21005 prettyref
21006 \series default
21007
21008 \begin_inset Index idx
21009 status collapsed
21010
21011 \begin_layout Plain Layout
21012 LaTeX-Pakete! prettyref
21013 \end_layout
21014
21015 \end_inset
21016
21017  kennt nicht alle möglichen Marken-Kürzel
21018 \begin_inset Foot
21019 status collapsed
21020
21021 \begin_layout Plain Layout
21022  
21023 \begin_inset Quotes gld
21024 \end_inset
21025
21026 abb:
21027 \begin_inset Quotes grd
21028 \end_inset
21029
21030  ist z.
21031 \begin_inset space \thinspace{}
21032 \end_inset
21033
21034 B.
21035  LyXs Kürzel für Marken in Bildbeschriftungen.
21036 \end_layout
21037
21038 \end_inset
21039
21040  von LyX und ist auch nicht internationalisiert.
21041  Wie man weitere Marken-Kürzel und Übersetzungen hinzufüg, ist in der Dokumentat
21042 ion von 
21043 \series bold
21044 prettyref
21045 \series default
21046  beschrieben 
21047 \begin_inset CommandInset citation
21048 LatexCommand cite
21049 key "prettyref"
21050
21051 \end_inset
21052
21053 .
21054 \end_layout
21055
21056 \end_inset
21057
21058
21059 \end_layout
21060
21061 \begin_layout Subsection
21062 Automatische Querverweisnamen
21063 \begin_inset Index idx
21064 status collapsed
21065
21066 \begin_layout Plain Layout
21067 Querverweise ! Automatische Namen 
21068 \end_layout
21069
21070 \end_inset
21071
21072
21073 \end_layout
21074
21075 \begin_layout Standard
21076 Das LaTeX-Paket 
21077 \series bold
21078 hyperref
21079 \series default
21080
21081 \begin_inset Index idx
21082 status collapsed
21083
21084 \begin_layout Plain Layout
21085 LaTeX-Pakete ! hyperref
21086 \end_layout
21087
21088 \end_inset
21089
21090 , das in den
21091 \family sans
21092  PDF-Eigenschaften
21093 \family default
21094  im 
21095 \family sans
21096 Dokument-Einstellungen
21097 \family default
21098  Dialog aktiviert werden kann, besitzt eine sehr nützliche Funktion, dass
21099  Querverweise den Namen des Gleitobjekts automatisch enthalten (oder Textteile
21100  wie 
21101 \emph on
21102 Abschnitt
21103 \emph default
21104 ).
21105  Sie müssen damit z.
21106 \begin_inset space \thinspace{}
21107 \end_inset
21108
21109 B.
21110  nicht mehr den Namen 
21111 \begin_inset Quotes gld
21112 \end_inset
21113
21114 Abbildung
21115 \begin_inset Quotes grd
21116 \end_inset
21117
21118  vor jeden Querverweis auf eine Abbildung schreiben.
21119  Um diese Funktion benutzen zu können, aktivieren Sie 
21120 \series bold
21121 hyperref
21122 \series default
21123  und fügen diese Zeile in den LaTeX-Vorspann ein:
21124 \end_layout
21125
21126 \begin_layout Standard
21127
21128 \series bold
21129
21130 \backslash
21131 AtBeginDocument{
21132 \backslash
21133 renewcommand{
21134 \backslash
21135 ref}[1]{
21136 \backslash
21137 mbox{
21138 \backslash
21139 autoref{#1}}}}
21140 \end_layout
21141
21142 \begin_layout Standard
21143 Wenn Sie andere Querverweisnamen als die voreingestellten bevorzugen, z.
21144 \begin_inset space \thinspace{}
21145 \end_inset
21146
21147 B.
21148  statt 
21149 \begin_inset Quotes gld
21150 \end_inset
21151
21152 Abschnitt
21153 \begin_inset Quotes grd
21154 \end_inset
21155
21156  den Namen 
21157 \begin_inset Quotes gld
21158 \end_inset
21159
21160 Kap.
21161 \begin_inset space \thinspace{}
21162 \end_inset
21163
21164
21165 \begin_inset Quotes grd
21166 \end_inset
21167
21168 , können Sie den Namen umdefinieren, indem Sie dies zum Vorspann hinzufügen:
21169 \end_layout
21170
21171 \begin_layout Standard
21172
21173 \series bold
21174
21175 \backslash
21176 addto
21177 \backslash
21178 extrasngerman{
21179 \backslash
21180 renewcommand{
21181 \backslash
21182 sectionautorefname}
21183 \begin_inset Newline newline
21184 \end_inset
21185
21186
21187 \begin_inset Phantom HPhantom
21188 status open
21189
21190 \begin_layout Plain Layout
21191
21192 \series bold
21193 \begin_inset space ~
21194 \end_inset
21195
21196
21197 \end_layout
21198
21199 \end_inset
21200
21201 {Kap.
21202 \backslash
21203 negthinspace}}
21204 \end_layout
21205
21206 \begin_layout Standard
21207 Wenn Sie eine andere Dokumentsprache als Englisch benutzen, ersetzen Sie
21208 \begin_inset Newline newline
21209 \end_inset
21210
21211
21212 \series bold
21213
21214 \backslash
21215 extrasngerman
21216 \series default
21217  durch 
21218 \series bold
21219
21220 \backslash
21221 extras***
21222 \series default
21223 , wobei *** der Name der verwendeten Sprache ist.
21224 \end_layout
21225
21226 \begin_layout Standard
21227 Um automatische Namen zu bekommen, jedoch nicht für bestimmte Querverweistypen,
21228  z.
21229 \begin_inset space \thinspace{}
21230 \end_inset
21231
21232 B.
21233  nicht für Gleichungen, benutzen Sie diesen Vorspanncode:
21234 \end_layout
21235
21236 \begin_layout Standard
21237
21238 \series bold
21239
21240 \backslash
21241 newlength{
21242 \backslash
21243 abc}
21244 \begin_inset Newline newline
21245 \end_inset
21246
21247
21248 \backslash
21249 settowidth{
21250 \backslash
21251 abc}{
21252 \backslash
21253 space}
21254 \begin_inset Newline newline
21255 \end_inset
21256
21257
21258 \backslash
21259 addto
21260 \backslash
21261 extrasenglish{
21262 \backslash
21263 renewcommand{
21264 \backslash
21265 equationautorefname}
21266 \begin_inset Newline newline
21267 \end_inset
21268
21269
21270 \begin_inset Phantom HPhantom
21271 status open
21272
21273 \begin_layout Plain Layout
21274
21275 \series bold
21276 \begin_inset space ~
21277 \end_inset
21278
21279
21280 \end_layout
21281
21282 \end_inset
21283
21284 {
21285 \backslash
21286 hspace{-
21287 \backslash
21288 abc}}
21289 \end_layout
21290
21291 \begin_layout Standard
21292 Mehr über dieses Thema finden Sie in der 
21293 \series bold
21294 hyperref
21295 \series default
21296 -Dokumentation 
21297 \begin_inset CommandInset citation
21298 LatexCommand cite
21299 key "hyperref"
21300
21301 \end_inset
21302
21303 .
21304 \end_layout
21305
21306 \begin_layout Standard
21307 \begin_inset Note Greyedout
21308 status open
21309
21310 \begin_layout Plain Layout
21311
21312 \series bold
21313 Bemerkung:
21314 \series default
21315  Automatische Querverweis-Namen können nicht verwendet werden, wenn Sie
21316  als Querverweisstil 
21317 \family sans
21318 Formatierter
21319 \begin_inset space ~
21320 \end_inset
21321
21322 Querverweis
21323 \family default
21324  benutzen, wie in Abschnitt
21325 \begin_inset space ~
21326 \end_inset
21327
21328
21329 \begin_inset CommandInset ref
21330 LatexCommand ref
21331 reference "uab:Querverweis-Formate"
21332
21333 \end_inset
21334
21335  beschrieben.
21336 \end_layout
21337
21338 \end_inset
21339
21340
21341 \end_layout
21342
21343 \begin_layout Standard
21344 Das 
21345 \emph on
21346 Mathe
21347 \emph default
21348  Handbuch ist ein Beispiel wo automatische Querverweisnamen verwendet werden.
21349 \end_layout
21350
21351 \begin_layout Subsection
21352 Querverweis-Position
21353 \begin_inset CommandInset label
21354 LatexCommand label
21355 name "uab:Querverweis-Position"
21356
21357 \end_inset
21358
21359
21360 \begin_inset Index idx
21361 status collapsed
21362
21363 \begin_layout Plain Layout
21364 Querverweise !  Position
21365 \end_layout
21366
21367 \end_inset
21368
21369
21370 \end_layout
21371
21372 \begin_layout Standard
21373 Wenn Sie 
21374 \series bold
21375 hyperref
21376 \series default
21377
21378 \begin_inset Index idx
21379 status collapsed
21380
21381 \begin_layout Plain Layout
21382 LaTeX-Pakete ! hyperref
21383 \end_layout
21384
21385 \end_inset
21386
21387  in den
21388 \family sans
21389  PDF-Eigenschaften
21390 \family default
21391  im 
21392 \family sans
21393 Dokument-Einstellungen
21394 \family default
21395  Dialog benutzen, um in der Ausgabe Querverweise zu verlinken, springt ein
21396  Klick auf den Querverweis für eine Gleitobjekt-Abbildung zur Abbildungsmarke,
21397  und Sie werden das Bild ohne Scrollen nicht sehen.
21398  Das liegt daran, dass der Querverweis-Link an der Marken-Position verankert
21399  ist.
21400  Wenn Sie das  LaTeX-Paket 
21401 \series bold
21402 hypcap
21403 \series default
21404
21405 \begin_inset Index idx
21406 status collapsed
21407
21408 \begin_layout Plain Layout
21409 LaTeX-Pakete ! hypcap
21410 \end_layout
21411
21412 \end_inset
21413
21414 , das Teil des LaTeX-Pakets 
21415 \series bold
21416 oberdiek
21417 \series default
21418
21419 \begin_inset Index idx
21420 status collapsed
21421
21422 \begin_layout Plain Layout
21423 LaTeX-Pakete ! oberdiek
21424 \end_layout
21425
21426 \end_inset
21427
21428  ist, benutzen, wird der Anker am Anfang des Gleitobjekts gesetzt.
21429  Aber natürlich müssen Sie auch hier das LaTeX-Paket 
21430 \series bold
21431 hypcap
21432 \series default
21433  zunächst in den LaTeX-Vorspann laden:
21434 \end_layout
21435
21436 \begin_layout Standard
21437
21438 \series bold
21439
21440 \backslash
21441 usepackage[figure]{hypcap}
21442 \end_layout
21443
21444 \begin_layout Standard
21445 Sie können 
21446 \series bold
21447 hypcap
21448 \series default
21449  auch für alle Gleitobjekte benutzen, aber das wird aus Gründen der Stabilität
21450  nicht empfohlen.
21451  Weitere Informationen finden Sie im
21452 \series bold
21453  hypcap
21454 \series default
21455 -Handbuch 
21456 \begin_inset CommandInset citation
21457 LatexCommand cite
21458 key "hypcap"
21459
21460 \end_inset
21461
21462 .
21463 \end_layout
21464
21465 \begin_layout Standard
21466 \begin_inset Note Greyedout
21467 status open
21468
21469 \begin_layout Plain Layout
21470
21471 \series bold
21472 Bemerkung:
21473 \series default
21474  
21475 \series bold
21476 hypcap
21477 \series medium
21478  hat keinen Einfluss auf Querverweise zu Teilabbildungen.
21479 \end_layout
21480
21481 \end_inset
21482
21483
21484 \end_layout
21485
21486 \begin_layout Section
21487 Gleitobjekt-Platzierung
21488 \begin_inset CommandInset label
21489 LatexCommand label
21490 name "abs:Gleitobjekt-Platzierung"
21491
21492 \end_inset
21493
21494
21495 \begin_inset Index idx
21496 status collapsed
21497
21498 \begin_layout Plain Layout
21499 Gleitobjekte ! Platzierung
21500 \end_layout
21501
21502 \end_inset
21503
21504
21505 \end_layout
21506
21507 \begin_layout Standard
21508 Ein Rechtsklick auf ein Gleitobjekt-Kästchen öffnet den 
21509 \family sans
21510 Gleitobjekt-Einstellungen
21511 \family default
21512 -Dialog, in dem Sie die LaTeX-Optionen für die Gleitobjekt-Platzierung ändern
21513  können.
21514 \begin_inset Newline newline
21515 \end_inset
21516
21517 Die Option 
21518 \family sans
21519 Spalten
21520 \begin_inset space ~
21521 \end_inset
21522
21523 überspannen
21524 \family default
21525  ist nur bei zweispaltigen Dokumenten sinnvoll.
21526  Wenn Sie sie wählen, wird das Gleitobjekt über beide Spalten gesetzt.
21527 \begin_inset Newline newline
21528 \end_inset
21529
21530 Die Option 
21531 \family sans
21532 Seitwärts
21533 \begin_inset space ~
21534 \end_inset
21535
21536 drehen
21537 \family default
21538  ist in Abschnitt 
21539 \begin_inset CommandInset ref
21540 LatexCommand ref
21541 reference "abs:Gedrehte-Gleitobjekte"
21542
21543 \end_inset
21544
21545  beschrieben.
21546 \end_layout
21547
21548 \begin_layout Standard
21549 Sie können eine oder mehrere der folgenden Optionen im Gleitobjekt-Dialog
21550  verwenden, um die Platzierung einzelner Gleitobjekte zu beeinflussen, wenn
21551  Sie die Option 
21552 \family sans
21553 Standard-Platzierung
21554 \begin_inset space ~
21555 \end_inset
21556
21557 verwenden
21558 \family default
21559  nicht verwenden:
21560 \end_layout
21561
21562 \begin_layout Description
21563 Hier
21564 \begin_inset space ~
21565 \end_inset
21566
21567 wenn
21568 \begin_inset space ~
21569 \end_inset
21570
21571 möglich versucht, das Gleitobjekt dort zu platzieren, wo es eingefügt wurde.
21572 \end_layout
21573
21574 \begin_layout Description
21575 Anfang
21576 \begin_inset space ~
21577 \end_inset
21578
21579 der
21580 \begin_inset space ~
21581 \end_inset
21582
21583 Seite
21584 \family sans
21585  
21586 \family default
21587 versucht, das Gleitobjekt am Anfang der aktuellen Seite zu platzieren.
21588  Gleitobjekte, die maximal 70
21589 \begin_inset space \thinspace{}
21590 \end_inset
21591
21592 % einer Seite benötigen, dürfen oben platziert werden.
21593  Dies kann durch die Variable 
21594 \series bold
21595
21596 \backslash
21597 topfraction
21598 \series default
21599  im LaTeX-Vorspann überschrieben werden, zum Beispiel: 
21600 \end_layout
21601
21602 \begin_deeper
21603 \begin_layout Standard
21604
21605 \series bold
21606
21607 \backslash
21608 renewcommand{
21609 \backslash
21610 topfraction}{0.9}
21611 \family typewriter
21612 \series default
21613  
21614 \end_layout
21615
21616 \end_deeper
21617 \begin_layout Description
21618 Ende
21619 \begin_inset space ~
21620 \end_inset
21621
21622 der
21623 \begin_inset space ~
21624 \end_inset
21625
21626 Seite versucht, das Gleitobjekt am Ende der aktuellen Seite zu platzieren.
21627  Gleitobjekte, die maximal 30
21628 \begin_inset space \thinspace{}
21629 \end_inset
21630
21631 % einer Seite benötigen, dürfen unten platziert werden.
21632  Dies kann durch die Variable 
21633 \series bold
21634
21635 \backslash
21636 bottomfraction
21637 \series default
21638  im LaTeX-Vorspann überschrieben werden, zum Beispiel setzt 
21639 \end_layout
21640
21641 \begin_deeper
21642 \begin_layout Standard
21643
21644 \series bold
21645
21646 \backslash
21647 renewcommand{
21648 \backslash
21649 bottomfraction}{0.5}
21650 \end_layout
21651
21652 \begin_layout Standard
21653 die oftmals zu kleine untere Grenze auf 50
21654 \begin_inset space \thinspace{}
21655 \end_inset
21656
21657 %.
21658 \end_layout
21659
21660 \end_deeper
21661 \begin_layout Description
21662 Seite
21663 \begin_inset space ~
21664 \end_inset
21665
21666 mit
21667 \begin_inset space ~
21668 \end_inset
21669
21670 Gleitobjekten versucht, das Gleitobjekt auf einer eigenen Seite zu platzieren.
21671  Nur wenn mehr als 50
21672 \begin_inset space \thinspace{}
21673 \end_inset
21674
21675 % einer Seite von Gleitobjekten belegt wird, wird eine neue Seite für weitere
21676  Gleitobjekte bereitgestellt.
21677  Dies kann durch die Variable 
21678 \series bold
21679
21680 \backslash
21681 floatpagefraction 
21682 \series default
21683 im LaTeX-Vorspann überschrieben werden.
21684 \end_layout
21685
21686 \begin_layout Standard
21687 Die Reihenfolge der obigen Optionen wird 
21688 \emph on
21689 immer
21690 \emph default
21691  von LaTeX verwendet.
21692  Das heißt wenn Sie die Standard-Platzierung verwenden, wird LaTeX zuerst
21693  versuchen 
21694 \family sans
21695 Hier
21696 \begin_inset space \space{}
21697 \end_inset
21698
21699 wenn
21700 \begin_inset space \space{}
21701 \end_inset
21702
21703 möglich
21704 \family default
21705 , dann 
21706 \family sans
21707 Anfang
21708 \begin_inset space ~
21709 \end_inset
21710
21711 der
21712 \begin_inset space ~
21713 \end_inset
21714
21715 Seite
21716 \family default
21717  und dann die anderen Optionen anzuwenden.
21718  Wenn Sie nicht die Standard-Platzierung verwenden, wird LaTeX nur die von
21719  Ihnen gewählten Optionen versuchen anzuwenden, aber immer in derselben
21720  Reihenfolge.
21721  Wenn keine der 4 Platzierungen möglich sind, wird die Prozedur intern wiederhol
21722 t, aber diesmal mit dem Ziel, das Gleitobjekt auf die nächste Seite zu setzen.
21723 \end_layout
21724
21725 \begin_layout Standard
21726 Die Option 
21727 \family sans
21728 Hier,
21729 \begin_inset space ~
21730 \end_inset
21731
21732 auf
21733 \begin_inset space ~
21734 \end_inset
21735
21736 jeden
21737 \begin_inset space ~
21738 \end_inset
21739
21740 Fall
21741 \family default
21742  sollte nur sehr selten benutzt werden und auch nur dann, wenn das Dokument
21743  fast druckreif ist.
21744  Denn mit der Option kann das Objekt nicht mehr 
21745 \emph on
21746 gleiten
21747 \emph default
21748 , wenn Sie das Dokument ändern, und die Gestaltung der Seite wird dadurch
21749  oftmals zerstört.
21750 \end_layout
21751
21752 \begin_layout Standard
21753 Es gibt keine Platzierungsoption für von Text umflossene [Gleit]Objekte,
21754  da diese immer vom Text eines bestimmten Absatzes umgeben sind.
21755 \begin_inset VSpace bigskip
21756 \end_inset
21757
21758
21759 \end_layout
21760
21761 \begin_layout Standard
21762 Manchmal wird ein Gleitobjekt am Seitenanfang platziert, während sein zugehörige
21763 r Abschnitt erst auf der Seitenmitte beginnt, was den Eindruck erweckt,
21764  das Gleitobjekt sei Teil des vorherigen Abschnitts.
21765  Das kann mit dem LaTeX-Befehl
21766 \series bold
21767  
21768 \backslash
21769 suppressfloats
21770 \series default
21771  verhindert werden.
21772  Er unterdrückt eine Gleitobjekt-Platzierung für die Seite, auf der er steht,
21773  und sorgt so dafür, dass ein Gleitobjekt erst nach seiner Abschnitt-Überschrift
21774  gesetzt wird.
21775  Dazu müssen Sie im LaTeX-Vorspann folgende Befehle einfügen:
21776 \end_layout
21777
21778 \begin_layout Standard
21779
21780 \series bold
21781
21782 \backslash
21783 let
21784 \backslash
21785 meinAbschnitt
21786 \backslash
21787 section
21788 \begin_inset Newline newline
21789 \end_inset
21790
21791
21792 \backslash
21793 renewcommand{
21794 \backslash
21795 section}{
21796 \backslash
21797 suppressfloats[t]
21798 \backslash
21799 meinAbschnitt}
21800 \end_layout
21801
21802 \begin_layout Standard
21803 Dasselbe können Sie für alle Überschriften von Kapiteln, Abschnitten und
21804  Unterabschnitten festlegen.
21805  Für kleinere Teile wie Unterunterabschnitte wird es nicht empfohlen, weil
21806  LaTeX Probleme mit einem geeigneten Ort für das Gleitobjekt haben könnte.
21807 \end_layout
21808
21809 \begin_layout Standard
21810 Es gibt auch noch das LaTeX-Paket 
21811 \series bold
21812 flafter
21813 \series default
21814
21815 \begin_inset Index idx
21816 status collapsed
21817
21818 \begin_layout Plain Layout
21819 LaTeX-Pakete ! flafter
21820 \end_layout
21821
21822 \end_inset
21823
21824  das dafür sorgt, dass prinzipiell kein Gleitobjekt vor seiner Definition
21825  gedruckt wird.
21826 \end_layout
21827
21828 \begin_layout Standard
21829 \begin_inset VSpace bigskip
21830 \end_inset
21831
21832 Manchmal möchte man alle Abbildungen und Tabellen am Dokumentende haben.
21833  Dafür gibt es das LaTeX-Paket 
21834 \series bold
21835 endfloat
21836 \series default
21837
21838 \begin_inset Index idx
21839 status collapsed
21840
21841 \begin_layout Plain Layout
21842 LaTeX-Pakete ! endfloat
21843 \end_layout
21844
21845 \end_inset
21846
21847 .
21848  Es druckt alle Gleitobjekt-Abbildungen und -Tabellen in eigenen Abschnitten.
21849  An der ursprünglichen Gleitobjekt-Position werden Sie einen Hinweis wie
21850  
21851 \family sans
21852
21853 \begin_inset Quotes gld
21854 \end_inset
21855
21856 [Abbildung
21857 \begin_inset space ~
21858 \end_inset
21859
21860 3.2 ist ungefähr hier.]
21861 \family default
21862
21863 \begin_inset Quotes grd
21864 \end_inset
21865
21866  finden.
21867  Das 
21868 \series bold
21869 endfloat
21870 \series default
21871 -Paket wird mit folgendem Befehl in den LaTeX-Vorspann eingefügt:
21872 \end_layout
21873
21874 \begin_layout Standard
21875
21876 \series bold
21877
21878 \backslash
21879 usepackage[Optionen]{endfloat}
21880 \end_layout
21881
21882 \begin_layout Standard
21883 Es gibt verschiedene Optionen für die Formatierung der Abbildungen- und
21884  Tabellen-Abschnitte, die Sie in der 
21885 \series bold
21886 endfloat
21887 \series default
21888 -Dokumentation 
21889 \begin_inset CommandInset citation
21890 LatexCommand cite
21891 key "endfloat"
21892
21893 \end_inset
21894
21895  nachlesen können.
21896 \begin_inset Newline newline
21897 \end_inset
21898
21899
21900 \begin_inset Note Greyedout
21901 status open
21902
21903 \begin_layout Plain Layout
21904
21905 \series bold
21906 Bemerkung
21907 \begin_inset space ~
21908 \end_inset
21909
21910 1: endfloat
21911 \series default
21912  übersetzt den Hinweistext nicht automatisch.
21913  Abschnitt
21914 \begin_inset space ~
21915 \end_inset
21916
21917 4 in 
21918 \begin_inset CommandInset citation
21919 LatexCommand cite
21920 key "endfloat"
21921
21922 \end_inset
21923
21924  beschreibt, wie es geht.
21925 \end_layout
21926
21927 \end_inset
21928
21929
21930 \end_layout
21931
21932 \begin_layout Standard
21933 \begin_inset Note Greyedout
21934 status open
21935
21936 \begin_layout Plain Layout
21937
21938 \series bold
21939 Bemerkung
21940 \begin_inset space ~
21941 \end_inset
21942
21943 2: 
21944 \series default
21945 Die aktuelle Version von 
21946 \series bold
21947 endfloat
21948 \series default
21949  hat einen Fehler, wenn die Überschrift ein 
21950 \begin_inset Quotes gld
21951 \end_inset
21952
21953 ß
21954 \begin_inset Quotes grd
21955 \end_inset
21956
21957  enthält.
21958  Sie müssen stattdessen den Befehl 
21959 \series bold
21960
21961 \backslash
21962 ss
21963 \series default
21964  als TeX-Code benutzen.
21965 \end_layout
21966
21967 \end_inset
21968
21969
21970 \end_layout
21971
21972 \begin_layout Standard
21973 \begin_inset VSpace bigskip
21974 \end_inset
21975
21976 Weitere Einzelheiten über Gleitobjekt-Platzierung finden Sie in LaTeX-Büchern
21977  wie 
21978 \begin_inset CommandInset citation
21979 LatexCommand cite
21980 key "latexcompanion,latexguide,lamport,latex-praxisbuch"
21981
21982 \end_inset
21983
21984 .
21985 \end_layout
21986
21987 \begin_layout Section
21988 Gedrehte Gleitobjekte
21989 \begin_inset CommandInset label
21990 LatexCommand label
21991 name "abs:Gedrehte-Gleitobjekte"
21992
21993 \end_inset
21994
21995
21996 \begin_inset Index idx
21997 status collapsed
21998
21999 \begin_layout Plain Layout
22000 Gleitobjekte ! drehen
22001 \end_layout
22002
22003 \end_inset
22004
22005
22006 \end_layout
22007
22008 \begin_layout Standard
22009 Wenn Bilder oder Tabellen breiter als die Seite sind, wollen Sie diese vielleich
22010 t drehen.
22011  Dafür müssen Sie das Gleitobjekt-Kästchen mit der rechten Maustaste anklicken
22012  und die Option 
22013 \family sans
22014 Seitwärts
22015 \begin_inset space ~
22016 \end_inset
22017
22018 drehen
22019 \family default
22020  wählen.
22021 \end_layout
22022
22023 \begin_layout Standard
22024 Gedrehte Gleitobjekte werden immer auf einer neuen Seite (oder Spalte, wenn
22025  sie ein mehrspaltiges Dokument haben) gedruckt.
22026  Sie können mehrere Spalten überspannen, wenn die Option 
22027 \family sans
22028 Spalten
22029 \begin_inset space ~
22030 \end_inset
22031
22032 überspannen
22033 \family default
22034  in den Gleitobjekt Einstellungen gewählt ist.
22035  Gleitobjekte werden immer so gedreht, dass sie vom äußeren Rand her gelesen
22036  werden können.
22037  Um eine Drehrichtung für alle Seiten zu erzwingen, fügen Sie entweder die
22038  Option 
22039 \series bold
22040 figuresleft
22041 \series default
22042  oder 
22043 \series bold
22044 figuresright
22045 \series default
22046  zu den Dokumentklassen-Optionen hinzu.
22047 \end_layout
22048
22049 \begin_layout Standard
22050 Alle anderen Dinge sind wie bei normalen Gleitobjekten.
22051  Tabelle
22052 \begin_inset space ~
22053 \end_inset
22054
22055
22056 \begin_inset CommandInset ref
22057 LatexCommand ref
22058 reference "tab:Gedrehte-Tabelle"
22059
22060 \end_inset
22061
22062  ist ein Beispiel für eine gedrehte Gleitobjekt-Tabelle.
22063 \end_layout
22064
22065 \begin_layout Standard
22066 \begin_inset Note Greyedout
22067 status open
22068
22069 \begin_layout Plain Layout
22070
22071 \series bold
22072 Bemerkung:
22073 \series default
22074  Nicht alle DVI-Betrachter können gedrehte Gleitobjekte anzeigen.
22075 \end_layout
22076
22077 \end_inset
22078
22079
22080 \end_layout
22081
22082 \begin_layout Standard
22083 \begin_inset Float table
22084 wide false
22085 sideways true
22086 status open
22087
22088 \begin_layout Plain Layout
22089 \begin_inset Caption
22090
22091 \begin_layout Plain Layout
22092 \begin_inset CommandInset label
22093 LatexCommand label
22094 name "tab:Gedrehte-Tabelle"
22095
22096 \end_inset
22097
22098 Gedrehte Tabelle
22099 \end_layout
22100
22101 \end_inset
22102
22103
22104 \end_layout
22105
22106 \begin_layout Plain Layout
22107 \align center
22108 \begin_inset Tabular
22109 <lyxtabular version="3" rows="1" columns="5">
22110 <features tabularvalignment="middle">
22111 <column alignment="center" valignment="top" width="0">
22112 <column alignment="center" valignment="top" width="0">
22113 <column alignment="center" valignment="top" width="0">
22114 <column alignment="center" valignment="top" width="0">
22115 <column alignment="center" valignment="top" width="0">
22116 <row>
22117 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22118 \begin_inset Text
22119
22120 \begin_layout Plain Layout
22121 Test
22122 \end_layout
22123
22124 \end_inset
22125 </cell>
22126 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22127 \begin_inset Text
22128
22129 \begin_layout Plain Layout
22130 b
22131 \end_layout
22132
22133 \end_inset
22134 </cell>
22135 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22136 \begin_inset Text
22137
22138 \begin_layout Plain Layout
22139 c
22140 \end_layout
22141
22142 \end_inset
22143 </cell>
22144 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22145 \begin_inset Text
22146
22147 \begin_layout Plain Layout
22148 d
22149 \end_layout
22150
22151 \end_inset
22152 </cell>
22153 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22154 \begin_inset Text
22155
22156 \begin_layout Plain Layout
22157 e
22158 \end_layout
22159
22160 \end_inset
22161 </cell>
22162 </row>
22163 </lyxtabular>
22164
22165 \end_inset
22166
22167
22168 \end_layout
22169
22170 \end_inset
22171
22172
22173 \end_layout
22174
22175 \begin_layout Section
22176 Untergleitobjekte
22177 \begin_inset Index idx
22178 status collapsed
22179
22180 \begin_layout Plain Layout
22181 Gleitobjekte ! Untergleitobjekte
22182 \end_layout
22183
22184 \end_inset
22185
22186
22187 \end_layout
22188
22189 \begin_layout Standard
22190 Untergleitobjekte werden z.
22191 \begin_inset space \thinspace{}
22192 \end_inset
22193
22194 B.
22195  verwendet, wenn eine Abbildung aus mehreren Bildern besteht.
22196  Sie werden erstellt, indem ein Gleitobjekt in ein bestehendes Gleitobjekt
22197  eingefügt wird.
22198  Die Gleitobjekt-Platzierung kann wie bei Absätzen eingestellt werden, siehe
22199  in Tabelle
22200 \begin_inset space ~
22201 \end_inset
22202
22203
22204 \begin_inset CommandInset ref
22205 LatexCommand ref
22206 reference "tab:Untertabellen-nebeneinander"
22207
22208 \end_inset
22209
22210  und 
22211 \begin_inset CommandInset ref
22212 LatexCommand ref
22213 reference "tab:Untertabellen-übereinander"
22214
22215 \end_inset
22216
22217 .
22218 \end_layout
22219
22220 \begin_layout Standard
22221 Untergleitobjekte können wie normale Gleitobjekte referenziert werden: Tabelle
22222 \begin_inset space ~
22223 \end_inset
22224
22225
22226 \begin_inset CommandInset ref
22227 LatexCommand ref
22228 reference "tab:Untertabelle-a"
22229
22230 \end_inset
22231
22232  und 
22233 \begin_inset CommandInset ref
22234 LatexCommand ref
22235 reference "tab:Untertabelle-b"
22236
22237 \end_inset
22238
22239  sind Untertabellen von Tabelle
22240 \begin_inset space ~
22241 \end_inset
22242
22243
22244 \begin_inset CommandInset ref
22245 LatexCommand ref
22246 reference "tab:Untertabellen-nebeneinander"
22247
22248 \end_inset
22249
22250 .
22251 \end_layout
22252
22253 \begin_layout Standard
22254 \begin_inset Float table
22255 wide false
22256 sideways false
22257 status open
22258
22259 \begin_layout Plain Layout
22260 \begin_inset Caption
22261
22262 \begin_layout Plain Layout
22263 \begin_inset CommandInset label
22264 LatexCommand label
22265 name "tab:Untertabellen-nebeneinander"
22266
22267 \end_inset
22268
22269 Zwei Untertabellen nebeneinander.
22270 \end_layout
22271
22272 \end_inset
22273
22274
22275 \end_layout
22276
22277 \begin_layout Plain Layout
22278 \align center
22279 \begin_inset space \hfill{}
22280 \end_inset
22281
22282
22283 \begin_inset Float table
22284 wide false
22285 sideways false
22286 status collapsed
22287
22288 \begin_layout Plain Layout
22289 \begin_inset Caption
22290
22291 \begin_layout Plain Layout
22292 \begin_inset CommandInset label
22293 LatexCommand label
22294 name "tab:Untertabelle-a"
22295
22296 \end_inset
22297
22298 Dies ist Untertabelle a.
22299 \end_layout
22300
22301 \end_inset
22302
22303
22304 \end_layout
22305
22306 \begin_layout Plain Layout
22307 \align center
22308 \begin_inset Tabular
22309 <lyxtabular version="3" rows="1" columns="5">
22310 <features tabularvalignment="middle">
22311 <column alignment="center" valignment="top" width="0">
22312 <column alignment="center" valignment="top" width="0">
22313 <column alignment="center" valignment="top" width="0">
22314 <column alignment="center" valignment="top" width="0">
22315 <column alignment="center" valignment="top" width="0">
22316 <row>
22317 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22318 \begin_inset Text
22319
22320 \begin_layout Plain Layout
22321 Test
22322 \end_layout
22323
22324 \end_inset
22325 </cell>
22326 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22327 \begin_inset Text
22328
22329 \begin_layout Plain Layout
22330 b
22331 \end_layout
22332
22333 \end_inset
22334 </cell>
22335 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22336 \begin_inset Text
22337
22338 \begin_layout Plain Layout
22339 c
22340 \end_layout
22341
22342 \end_inset
22343 </cell>
22344 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22345 \begin_inset Text
22346
22347 \begin_layout Plain Layout
22348 d
22349 \end_layout
22350
22351 \end_inset
22352 </cell>
22353 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22354 \begin_inset Text
22355
22356 \begin_layout Plain Layout
22357 e
22358 \end_layout
22359
22360 \end_inset
22361 </cell>
22362 </row>
22363 </lyxtabular>
22364
22365 \end_inset
22366
22367
22368 \end_layout
22369
22370 \end_inset
22371
22372
22373 \begin_inset space \hfill{}
22374 \end_inset
22375
22376
22377 \begin_inset Float table
22378 wide false
22379 sideways false
22380 status collapsed
22381
22382 \begin_layout Plain Layout
22383 \begin_inset Caption
22384
22385 \begin_layout Plain Layout
22386 \begin_inset CommandInset label
22387 LatexCommand label
22388 name "tab:Untertabelle-b"
22389
22390 \end_inset
22391
22392 Dies ist Untertabelle b.
22393 \end_layout
22394
22395 \end_inset
22396
22397
22398 \end_layout
22399
22400 \begin_layout Plain Layout
22401 \align center
22402 \begin_inset Tabular
22403 <lyxtabular version="3" rows="1" columns="5">
22404 <features tabularvalignment="middle">
22405 <column alignment="center" valignment="top" width="0">
22406 <column alignment="center" valignment="top" width="0">
22407 <column alignment="center" valignment="top" width="0">
22408 <column alignment="center" valignment="top" width="0">
22409 <column alignment="center" valignment="top" width="0">
22410 <row>
22411 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22412 \begin_inset Text
22413
22414 \begin_layout Plain Layout
22415 e
22416 \end_layout
22417
22418 \end_inset
22419 </cell>
22420 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22421 \begin_inset Text
22422
22423 \begin_layout Plain Layout
22424 d
22425 \end_layout
22426
22427 \end_inset
22428 </cell>
22429 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22430 \begin_inset Text
22431
22432 \begin_layout Plain Layout
22433 c
22434 \end_layout
22435
22436 \end_inset
22437 </cell>
22438 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22439 \begin_inset Text
22440
22441 \begin_layout Plain Layout
22442 b
22443 \end_layout
22444
22445 \end_inset
22446 </cell>
22447 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22448 \begin_inset Text
22449
22450 \begin_layout Plain Layout
22451 Test
22452 \end_layout
22453
22454 \end_inset
22455 </cell>
22456 </row>
22457 </lyxtabular>
22458
22459 \end_inset
22460
22461
22462 \end_layout
22463
22464 \end_inset
22465
22466
22467 \begin_inset space \hfill{}
22468 \end_inset
22469
22470
22471 \end_layout
22472
22473 \end_inset
22474
22475
22476 \end_layout
22477
22478 \begin_layout Standard
22479 \begin_inset Float table
22480 wide false
22481 sideways false
22482 status open
22483
22484 \begin_layout Plain Layout
22485 \begin_inset Caption
22486
22487 \begin_layout Plain Layout
22488 \begin_inset CommandInset label
22489 LatexCommand label
22490 name "tab:Untertabellen-übereinander"
22491
22492 \end_inset
22493
22494 Zwei Untertabellen übereinander.
22495  (a) Tabelle mit 4 Zellen, (b) Tabelle mit 5 Zellen.
22496 \end_layout
22497
22498 \end_inset
22499
22500
22501 \end_layout
22502
22503 \begin_layout Plain Layout
22504 \align center
22505 \begin_inset Float table
22506 wide false
22507 sideways false
22508 status collapsed
22509
22510 \begin_layout Plain Layout
22511 \begin_inset Caption
22512
22513 \begin_layout Plain Layout
22514
22515 \end_layout
22516
22517 \end_inset
22518
22519
22520 \end_layout
22521
22522 \begin_layout Plain Layout
22523 \align center
22524 \begin_inset Tabular
22525 <lyxtabular version="3" rows="1" columns="4">
22526 <features tabularvalignment="middle">
22527 <column alignment="center" valignment="top" width="0">
22528 <column alignment="center" valignment="top" width="0">
22529 <column alignment="center" valignment="top" width="0">
22530 <column alignment="center" valignment="top" width="0">
22531 <row>
22532 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22533 \begin_inset Text
22534
22535 \begin_layout Plain Layout
22536 Test
22537 \end_layout
22538
22539 \end_inset
22540 </cell>
22541 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22542 \begin_inset Text
22543
22544 \begin_layout Plain Layout
22545 Test
22546 \end_layout
22547
22548 \end_inset
22549 </cell>
22550 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22551 \begin_inset Text
22552
22553 \begin_layout Plain Layout
22554 Test
22555 \end_layout
22556
22557 \end_inset
22558 </cell>
22559 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22560 \begin_inset Text
22561
22562 \begin_layout Plain Layout
22563 Test
22564 \end_layout
22565
22566 \end_inset
22567 </cell>
22568 </row>
22569 </lyxtabular>
22570
22571 \end_inset
22572
22573
22574 \end_layout
22575
22576 \end_inset
22577
22578
22579 \end_layout
22580
22581 \begin_layout Plain Layout
22582 \align center
22583 \begin_inset Float table
22584 wide false
22585 sideways false
22586 status collapsed
22587
22588 \begin_layout Plain Layout
22589 \begin_inset Caption
22590
22591 \begin_layout Plain Layout
22592
22593 \end_layout
22594
22595 \end_inset
22596
22597
22598 \end_layout
22599
22600 \begin_layout Plain Layout
22601 \align center
22602 \begin_inset Tabular
22603 <lyxtabular version="3" rows="1" columns="5">
22604 <features tabularvalignment="middle">
22605 <column alignment="center" valignment="top" width="0">
22606 <column alignment="center" valignment="top" width="0">
22607 <column alignment="center" valignment="top" width="0">
22608 <column alignment="center" valignment="top" width="0">
22609 <column alignment="center" valignment="top" width="0">
22610 <row>
22611 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22612 \begin_inset Text
22613
22614 \begin_layout Plain Layout
22615 a
22616 \end_layout
22617
22618 \end_inset
22619 </cell>
22620 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22621 \begin_inset Text
22622
22623 \begin_layout Plain Layout
22624 b
22625 \end_layout
22626
22627 \end_inset
22628 </cell>
22629 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22630 \begin_inset Text
22631
22632 \begin_layout Plain Layout
22633 c
22634 \end_layout
22635
22636 \end_inset
22637 </cell>
22638 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22639 \begin_inset Text
22640
22641 \begin_layout Plain Layout
22642 d
22643 \end_layout
22644
22645 \end_inset
22646 </cell>
22647 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22648 \begin_inset Text
22649
22650 \begin_layout Plain Layout
22651 e
22652 \end_layout
22653
22654 \end_inset
22655 </cell>
22656 </row>
22657 </lyxtabular>
22658
22659 \end_inset
22660
22661
22662 \end_layout
22663
22664 \end_inset
22665
22666
22667 \end_layout
22668
22669 \end_inset
22670
22671
22672 \end_layout
22673
22674 \begin_layout Section
22675 Gleitobjekte nebeneinander
22676 \begin_inset Index idx
22677 status collapsed
22678
22679 \begin_layout Plain Layout
22680 Gleitobjekte ! nebeneinander
22681 \end_layout
22682
22683 \end_inset
22684
22685
22686 \end_layout
22687
22688 \begin_layout Standard
22689 Um Gleitobjekte nebeneinander zu setzen wie bei Abbildung
22690 \begin_inset space ~
22691 \end_inset
22692
22693
22694 \begin_inset CommandInset ref
22695 LatexCommand ref
22696 reference "abb:Gleitobjekt-links"
22697
22698 \end_inset
22699
22700  und 
22701 \begin_inset CommandInset ref
22702 LatexCommand ref
22703 reference "abb:Gleitobjekt-rechts"
22704
22705 \end_inset
22706
22707  wird nur 
22708 \emph on
22709 ein
22710 \emph default
22711  Gleitobjekt verwendet.
22712  In dieses werden zwei Minipage Boxen eingefügt.
22713 \begin_inset Foot
22714 status collapsed
22715
22716 \begin_layout Plain Layout
22717 Minipages sind in Abschnitt
22718 \begin_inset space ~
22719 \end_inset
22720
22721
22722 \begin_inset CommandInset ref
22723 LatexCommand ref
22724 reference "abs:Minipage"
22725
22726 \end_inset
22727
22728  erklärt.
22729 \end_layout
22730
22731 \end_inset
22732
22733  Die Breite wird für jede Minipage auf 45
22734 \begin_inset space \thinspace{}
22735 \end_inset
22736
22737 -50
22738 \begin_inset space \thinspace{}
22739 \end_inset
22740
22741 Spalten% und die Box Ausrichtung auf 
22742 \family sans
22743 Unten
22744 \family default
22745  gesetzt.
22746  Die Minipage-Boxen enthalten das Bild und die Beschriftung wie in einem
22747  Gleitobjekt.
22748  Der einzige Unterschied ist, dass die Bildeinheit 
22749 \family sans
22750 Spaltenbreite
22751 \begin_inset space ~
22752 \end_inset
22753
22754 %
22755 \family default
22756  nun bezüglich der Breite der Minipage-Boxen berechnet wird.
22757 \end_layout
22758
22759 \begin_layout Standard
22760 \begin_inset Float figure
22761 wide false
22762 sideways false
22763 status open
22764
22765 \begin_layout Plain Layout
22766 \begin_inset Box Frameless
22767 position "b"
22768 hor_pos "c"
22769 has_inner_box 1
22770 inner_pos "t"
22771 use_parbox 0
22772 use_makebox 0
22773 width "45col%"
22774 special "none"
22775 height "1in"
22776 height_special "totalheight"
22777 status open
22778
22779 \begin_layout Plain Layout
22780 \align center
22781 \begin_inset Graphics
22782         filename ../clipart/mobius.eps
22783         lyxscale 50
22784         width 100col%
22785         scaleBeforeRotation
22786
22787 \end_inset
22788
22789
22790 \end_layout
22791
22792 \begin_layout Plain Layout
22793 \begin_inset Caption
22794
22795 \begin_layout Plain Layout
22796 \begin_inset CommandInset label
22797 LatexCommand label
22798 name "abb:Gleitobjekt-links"
22799
22800 \end_inset
22801
22802 Gleitobjekt auf der linken Seite.
22803 \end_layout
22804
22805 \end_inset
22806
22807
22808 \end_layout
22809
22810 \end_inset
22811
22812
22813 \begin_inset space \hfill{}
22814 \end_inset
22815
22816
22817 \begin_inset Box Frameless
22818 position "b"
22819 hor_pos "c"
22820 has_inner_box 1
22821 inner_pos "t"
22822 use_parbox 0
22823 use_makebox 0
22824 width "45col%"
22825 special "none"
22826 height "1in"
22827 height_special "totalheight"
22828 status open
22829
22830 \begin_layout Plain Layout
22831 \align center
22832 \begin_inset Graphics
22833         filename ../clipart/platypus.eps
22834         lyxscale 50
22835         width 100col%
22836         scaleBeforeRotation
22837
22838 \end_inset
22839
22840
22841 \end_layout
22842
22843 \begin_layout Plain Layout
22844 \begin_inset Caption
22845
22846 \begin_layout Plain Layout
22847 \begin_inset CommandInset label
22848 LatexCommand label
22849 name "abb:Gleitobjekt-rechts"
22850
22851 \end_inset
22852
22853 Gleitobjekt auf der rechten Seite.
22854 \end_layout
22855
22856 \end_inset
22857
22858
22859 \end_layout
22860
22861 \end_inset
22862
22863
22864 \end_layout
22865
22866 \end_inset
22867
22868
22869 \end_layout
22870
22871 \begin_layout Section
22872 Beschriftungs-Formatierung
22873 \begin_inset CommandInset label
22874 LatexCommand label
22875 name "abs:Titel-Formatierung"
22876
22877 \end_inset
22878
22879
22880 \begin_inset Index idx
22881 status collapsed
22882
22883 \begin_layout Plain Layout
22884 Gleitobjekte ! Beschriftung ! Formatierung
22885 \end_layout
22886
22887 \end_inset
22888
22889
22890 \end_layout
22891
22892 \begin_layout Standard
22893
22894 \family sans
22895 Legende
22896 \family default
22897  ist die Standard-Paragraf-Umgebung für Gleitobjekt-Beschriftungen.
22898  In LyX sehen Titel so aus:  
22899 \family sans
22900
22901 \begin_inset Quotes gld
22902 \end_inset
22903
22904 Abbildung xyz:
22905 \family default
22906
22907 \begin_inset Quotes grd
22908 \end_inset
22909
22910 , gefolgt vom Beschriftungstext, wobei 
22911 \family sans
22912 xyz
22913 \family default
22914  die von LyX vergebene Nummer ist.
22915  Standardmäßig werden die Marke und der Beschriftungstext im selben Font
22916  gedruckt.
22917  Dies ist nicht immer brauchbar.
22918 \end_layout
22919
22920 \begin_layout Standard
22921 Um das Standardformat für die Beschriftung zu ändern, müssen Sie das LaTeX-Paket
22922  
22923 \series bold
22924 caption
22925 \series default
22926
22927 \begin_inset Index idx
22928 status collapsed
22929
22930 \begin_layout Plain Layout
22931 LaTeX-Pakete ! caption
22932 \end_layout
22933
22934 \end_inset
22935
22936  in den LaTeX-Vorspann laden:
22937 \end_layout
22938
22939 \begin_layout Standard
22940
22941 \series bold
22942
22943 \backslash
22944 usepackage[Format-Definition]{caption}
22945 \end_layout
22946
22947 \begin_layout Standard
22948 Wenn zum Beispiel Name und Nummer serifenfrei und fett gedruckt werden und
22949  die Beschriftung immer über der Tabelle, müssen Sie folgenden Befehl benutzen:
22950 \end_layout
22951
22952 \begin_layout Standard
22953
22954 \series bold
22955
22956 \backslash
22957 usepackage[labelfont={bf,sf}, tableposition=top]{caption}
22958 \end_layout
22959
22960 \begin_layout Standard
22961 Sie können auch verschiedene Formate für verschiedene Gleitobjekt-Typen
22962  definieren.
22963  Dazu laden Sie das 
22964 \series bold
22965 caption
22966 \series default
22967 -Paket ohne Format-Optionen und definieren die verschiedenen Formate mit
22968  dem Befehl
22969 \end_layout
22970
22971 \begin_layout Standard
22972
22973 \series bold
22974
22975 \backslash
22976 captionsetup[Gleitobjekt-Typ]{Format-Definition}
22977 \end_layout
22978
22979 \begin_layout Standard
22980 Für Abbildung
22981 \begin_inset space ~
22982 \end_inset
22983
22984
22985 \begin_inset CommandInset ref
22986 LatexCommand ref
22987 reference "abb:Langer-Abb-Titel"
22988
22989 \end_inset
22990
22991  und Tabelle
22992 \begin_inset space ~
22993 \end_inset
22994
22995
22996 \begin_inset CommandInset ref
22997 LatexCommand ref
22998 reference "tab:Langer-Tab-Titel"
22999
23000 \end_inset
23001
23002  können die Beschriftungen mit folgenden Befehlen im LaTeX-Vorspann definiert
23003  werden:
23004 \end_layout
23005
23006 \begin_layout Standard
23007
23008 \series bold
23009
23010 \backslash
23011 usepackage[tableposition=top]{caption}
23012 \begin_inset Newline newline
23013 \end_inset
23014
23015
23016 \backslash
23017 captionsetup[figure]{labelfont={tt}, textfont=it, indention=1cm,%
23018 \begin_inset Newline newline
23019 \end_inset
23020
23021
23022 \begin_inset Phantom HPhantom
23023 status open
23024
23025 \begin_layout Plain Layout
23026
23027 \series bold
23028
23029 \backslash
23030 captionsetup[figure]{
23031 \end_layout
23032
23033 \end_inset
23034
23035 labelsep=period}
23036 \begin_inset Newline newline
23037 \end_inset
23038
23039
23040 \backslash
23041 captionsetup[table]{labelfont={bf,sf}}
23042 \end_layout
23043
23044 \begin_layout Standard
23045 \begin_inset Note Greyedout
23046 status open
23047
23048 \begin_layout Plain Layout
23049
23050 \series bold
23051 Bemerkung:
23052 \series default
23053  Die Option 
23054 \series bold
23055 tableposition=top
23056 \series default
23057  hat keine Auswirkung, wenn eine 
23058 \series bold
23059 KOMA-Script
23060 \series default
23061
23062 \begin_inset Index idx
23063 status collapsed
23064
23065 \begin_layout Plain Layout
23066 LaTeX-Pakete ! KOMA-Script
23067 \end_layout
23068
23069 \end_inset
23070
23071 -Dokumentklasse verwendet wird.
23072  Hier muss die Option 
23073 \series bold
23074 tablecaptionabove
23075 \series default
23076  benutzt werden.
23077 \end_layout
23078
23079 \end_inset
23080
23081
23082 \end_layout
23083
23084 \begin_layout Standard
23085 Weitere Informationen über das Paket
23086 \series bold
23087  caption
23088 \series default
23089  finden Sie in seiner Dokumentation 
23090 \begin_inset CommandInset citation
23091 LatexCommand cite
23092 key "caption"
23093
23094 \end_inset
23095
23096 .
23097 \end_layout
23098
23099 \begin_layout Standard
23100 Wenn Sie den Namen von 
23101 \begin_inset Quotes gld
23102 \end_inset
23103
23104 Abbildung
23105 \begin_inset Quotes grd
23106 \end_inset
23107
23108  auf 
23109 \begin_inset Quotes gld
23110 \end_inset
23111
23112 Bild
23113 \begin_inset Quotes grd
23114 \end_inset
23115
23116  ändern wollen, können Sie das mit folgendem Befehl im LaTeX-Vorspann  machen:
23117 \end_layout
23118
23119 \begin_layout Standard
23120
23121 \series bold
23122
23123 \backslash
23124 renewcommand{
23125 \backslash
23126 fnum@figure}{Bild~
23127 \backslash
23128 thefigure}
23129 \end_layout
23130
23131 \begin_layout Standard
23132 wobei 
23133 \series bold
23134
23135 \backslash
23136 thefigure
23137 \series default
23138  die Bildnummer einsetzt und
23139 \series bold
23140  ~
23141 \series default
23142  ein geschütztes Leerzeichen ist.
23143 \end_layout
23144
23145 \begin_layout Standard
23146 \begin_inset VSpace bigskip
23147 \end_inset
23148
23149 Wenn Sie eine 
23150 \series bold
23151 KOMA-Script
23152 \series default
23153
23154 \begin_inset Index idx
23155 status collapsed
23156
23157 \begin_layout Plain Layout
23158 LaTeX-Pakete ! KOMA-Script
23159 \end_layout
23160
23161 \end_inset
23162
23163 -Dokumentklasse (
23164 \family sans
23165 article (KOMA-Script)
23166 \family default
23167
23168 \family sans
23169 book (KOMA-Script)
23170 \family default
23171
23172 \family sans
23173 letter (KOMA-Script)
23174 \family default
23175  oder 
23176 \family sans
23177 report (KOMA-Script)
23178 \family default
23179 ) benutzen, können Sie anstatt des 
23180 \series bold
23181 caption
23182 \series default
23183 -Paketes den eingebauten Befehl 
23184 \series bold
23185
23186 \backslash
23187 setkomafont
23188 \series default
23189  von 
23190 \series bold
23191 KOMA-Script
23192 \series default
23193  benutzen.
23194  Der Befehl
23195 \end_layout
23196
23197 \begin_layout Standard
23198
23199 \series bold
23200
23201 \backslash
23202 setkomafont{captionlabel}{
23203 \backslash
23204 bfseries}
23205 \end_layout
23206
23207 \begin_layout Standard
23208 im LaTeX-Vorspann druckt den Namen fett.
23209 \end_layout
23210
23211 \begin_layout Standard
23212 Weitere Informationen über 
23213 \series bold
23214
23215 \backslash
23216 setkomafont
23217 \series default
23218  finden Sie in der 
23219 \series bold
23220 KOMA-Script
23221 \series default
23222 -Do\SpecialChar \-
23223 ku\SpecialChar \-
23224 men\SpecialChar \-
23225 ta\SpecialChar \-
23226 tion 
23227 \begin_inset CommandInset citation
23228 LatexCommand cite
23229 key "KOMA-Script"
23230
23231 \end_inset
23232
23233 .
23234 \end_layout
23235
23236 \begin_layout Standard
23237 \begin_inset ERT
23238 status collapsed
23239
23240 \begin_layout Plain Layout
23241
23242
23243 \backslash
23244 captionsetup[figure]{labelfont={tt}, textfont=it, indention=1cm, labelsep=period
23245 }
23246 \end_layout
23247
23248 \end_inset
23249
23250
23251 \begin_inset Note Note
23252 status open
23253
23254 \begin_layout Plain Layout
23255 Das Beschriftungsformat wurde nur für dieses Beispiel geändert
23256 \end_layout
23257
23258 \end_inset
23259
23260
23261 \end_layout
23262
23263 \begin_layout Standard
23264 \begin_inset Float figure
23265 placement !p
23266 wide false
23267 sideways false
23268 status open
23269
23270 \begin_layout Plain Layout
23271 \align center
23272 \begin_inset Graphics
23273         filename ../clipart/mobius.eps
23274         lyxscale 50
23275         scale 50
23276         scaleBeforeRotation
23277
23278 \end_inset
23279
23280
23281 \end_layout
23282
23283 \begin_layout Plain Layout
23284 \begin_inset Caption
23285
23286 \begin_layout Plain Layout
23287 \begin_inset CommandInset label
23288 LatexCommand label
23289 name "abb:Langer-Abb-Titel"
23290
23291 \end_inset
23292
23293 Dies ist ein Beispiel einer Beschriftung, die länger als eine Zeile lang
23294  ist, um das andere Beschriftungsformat zu zeigen.
23295  Hier wurde ein selbst definiertes Beschriftungsformat benutzt.
23296 \begin_inset Argument
23297 status collapsed
23298
23299 \begin_layout Plain Layout
23300 Dies ist ein Beispiel einer Beschriftung, die länger als eine Zeile lang
23301  ist.
23302 \end_layout
23303
23304 \end_inset
23305
23306
23307 \end_layout
23308
23309 \end_inset
23310
23311
23312 \end_layout
23313
23314 \end_inset
23315
23316
23317 \end_layout
23318
23319 \begin_layout Standard
23320 \begin_inset ERT
23321 status collapsed
23322
23323 \begin_layout Plain Layout
23324
23325
23326 \backslash
23327 captionsetup[figure]{labelfont={bf,sf}, textfont=rm, indention=0cm, labelsep=col
23328 on}
23329 \end_layout
23330
23331 \end_inset
23332
23333
23334 \end_layout
23335
23336 \begin_layout Standard
23337 \begin_inset Float table
23338 placement !p
23339 wide false
23340 sideways false
23341 status open
23342
23343 \begin_layout Plain Layout
23344 \begin_inset Caption
23345
23346 \begin_layout Plain Layout
23347 \begin_inset CommandInset label
23348 LatexCommand label
23349 name "tab:Langer-Tab-Titel"
23350
23351 \end_inset
23352
23353 Dies ist ein Beispiel einer Beschriftung, die länger als eine Zeile lang
23354  ist, um das andere Beschriftungsformat zu zeigen.
23355  Hier wurde das Standard-Beschriftungsformat dieses Dokuments für Tabellen
23356  benutzt.
23357 \begin_inset Argument
23358 status collapsed
23359
23360 \begin_layout Plain Layout
23361 Dies ist ein Beispiel einer Beschriftung, die länger als eine Zeile lang
23362  ist.
23363 \end_layout
23364
23365 \end_inset
23366
23367
23368 \end_layout
23369
23370 \end_inset
23371
23372
23373 \end_layout
23374
23375 \begin_layout Plain Layout
23376 \align center
23377 \begin_inset Tabular
23378 <lyxtabular version="3" rows="1" columns="5">
23379 <features tabularvalignment="middle">
23380 <column alignment="center" valignment="top" width="0">
23381 <column alignment="center" valignment="top" width="0">
23382 <column alignment="center" valignment="top" width="0">
23383 <column alignment="center" valignment="top" width="0">
23384 <column alignment="center" valignment="top" width="0">
23385 <row>
23386 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23387 \begin_inset Text
23388
23389 \begin_layout Plain Layout
23390 a
23391 \end_layout
23392
23393 \end_inset
23394 </cell>
23395 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23396 \begin_inset Text
23397
23398 \begin_layout Plain Layout
23399 b
23400 \end_layout
23401
23402 \end_inset
23403 </cell>
23404 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23405 \begin_inset Text
23406
23407 \begin_layout Plain Layout
23408 c
23409 \end_layout
23410
23411 \end_inset
23412 </cell>
23413 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23414 \begin_inset Text
23415
23416 \begin_layout Plain Layout
23417 d
23418 \end_layout
23419
23420 \end_inset
23421 </cell>
23422 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23423 \begin_inset Text
23424
23425 \begin_layout Plain Layout
23426 e
23427 \end_layout
23428
23429 \end_inset
23430 </cell>
23431 </row>
23432 </lyxtabular>
23433
23434 \end_inset
23435
23436
23437 \end_layout
23438
23439 \end_inset
23440
23441
23442 \end_layout
23443
23444 \begin_layout Section
23445 Beschriftungs-Platzierung
23446 \begin_inset CommandInset label
23447 LatexCommand label
23448 name "abs:Titel-Platzierung"
23449
23450 \end_inset
23451
23452
23453 \begin_inset Index idx
23454 status collapsed
23455
23456 \begin_layout Plain Layout
23457 Gleitobjekte ! Beschriftung ! Platzierung
23458 \end_layout
23459
23460 \end_inset
23461
23462
23463 \end_layout
23464
23465 \begin_layout Standard
23466 Normalerweise werden die Beschriftungen wie folgt platziert:
23467 \end_layout
23468
23469 \begin_layout Description
23470 Abbildung: darunter
23471 \end_layout
23472
23473 \begin_layout Description
23474 Tabelle: darüber
23475 \end_layout
23476
23477 \begin_layout Standard
23478 LaTeX-Standard-Klassen unterstützen diese Vereinbarung nicht für Tabellen.
23479  Das heißt wenn Sie eine der Dokument-Klassen 
23480 \family sans
23481 article
23482 \family default
23483
23484 \family sans
23485 book
23486 \family default
23487
23488 \family sans
23489 letter
23490 \family default
23491  oder 
23492 \family sans
23493 report
23494 \family default
23495  benutzen, wird zwischen Beschriftung und Tabelle kein Zwischenraum gedruckt.
23496  Um das zu erreichen, müssen Sie beim Lade-Befehl des LaTeX-Pakets 
23497 \series bold
23498 caption
23499 \series default
23500  im LaTeX-Vorspann folgendes schreiben:
23501 \begin_inset Foot
23502 status collapsed
23503
23504 \begin_layout Plain Layout
23505 In Abschnitt
23506 \begin_inset space ~
23507 \end_inset
23508
23509
23510 \begin_inset CommandInset ref
23511 LatexCommand ref
23512 reference "abs:Titel-Formatierung"
23513
23514 \end_inset
23515
23516  steht mehr über das Paket 
23517 \series bold
23518 caption
23519 \series default
23520 .
23521 \end_layout
23522
23523 \end_inset
23524
23525
23526 \end_layout
23527
23528 \begin_layout Standard
23529
23530 \series bold
23531 tableposition=top
23532 \end_layout
23533
23534 \begin_layout Standard
23535 Wenn Sie eine 
23536 \series bold
23537 KOMA-Script
23538 \series default
23539
23540 \begin_inset Index idx
23541 status collapsed
23542
23543 \begin_layout Plain Layout
23544 LaTeX-Pakete ! KOMA-Script
23545 \end_layout
23546
23547 \end_inset
23548
23549 -Dokumentklasse (
23550 \family sans
23551 article (KOMA-Script)
23552 \family default
23553
23554 \family sans
23555 book (KOMA-Script)
23556 \family default
23557
23558 \family sans
23559 letter (KOMA-Script)
23560 \family default
23561  oder 
23562 \family sans
23563 report (KOMA-Script)
23564 \family default
23565 ) benutzen, können Sie alternativ zum 
23566 \series bold
23567 caption
23568 \series default
23569 -Paket die Option 
23570 \series bold
23571 tablecaptionabove
23572 \series default
23573  benutzen.
23574 \end_layout
23575
23576 \begin_layout Standard
23577 \begin_inset VSpace bigskip
23578 \end_inset
23579
23580 Die Beschriftung kann auch neben  der Abbildung oder Tabelle stehen.
23581  Das bewirkt das LaTeX-Paket 
23582 \series bold
23583 sidecap
23584 \series default
23585
23586 \begin_inset Index idx
23587 status collapsed
23588
23589 \begin_layout Plain Layout
23590 LaTeX-Pakete ! sidecap
23591 \end_layout
23592
23593 \end_inset
23594
23595 , das so in den LaTeX-Vorspann geladen wird:
23596 \end_layout
23597
23598 \begin_layout Standard
23599
23600 \series bold
23601
23602 \backslash
23603 usepackage[Option]{sidecap}
23604 \end_layout
23605
23606 \begin_layout Standard
23607 Wenn Sie keine Option setzen, wird die Beschriftung außen gesetzt.
23608  Mit 
23609 \series bold
23610 innercaption
23611 \series default
23612  wird die Beschriftung innen gedruckt.
23613  Um die Beschriftung immer rechts oder links zu erzwingen, benutzen Sie
23614  
23615 \series bold
23616 rightcaption
23617 \series default
23618  oder 
23619 \series bold
23620 leftcaption
23621 \series default
23622 .
23623 \end_layout
23624
23625 \begin_layout Standard
23626 \begin_inset ERT
23627 status collapsed
23628
23629 \begin_layout Plain Layout
23630
23631
23632 \backslash
23633 ifsidecap
23634 \end_layout
23635
23636 \end_inset
23637
23638
23639 \begin_inset Note Note
23640 status open
23641
23642 \begin_layout Plain Layout
23643 Der folgende Abschnitt wird nur gedruckt, wenn das LaTeX-Paket 
23644 \series bold
23645 sidecap
23646 \series default
23647  installiert ist.
23648 \end_layout
23649
23650 \end_inset
23651
23652
23653 \end_layout
23654
23655 \begin_layout Standard
23656 Um die Beschriftung mit LyX seitlich zu drucken, müssen Sie folgende Befehle
23657  in den LaTeX-Vorspann schreiben:
23658 \end_layout
23659
23660 \begin_layout Standard
23661 \noindent
23662 \begin_inset CommandInset line
23663 LatexCommand rule
23664 offset "0.5ex"
23665 width "100line%"
23666 height "1pt"
23667
23668 \end_inset
23669
23670
23671 \end_layout
23672
23673 \begin_layout Standard
23674
23675 \series bold
23676
23677 \backslash
23678 newcommand{
23679 \backslash
23680 TabBesBeg}{%
23681 \begin_inset Newline newline
23682 \end_inset
23683
23684
23685 \begin_inset Phantom HPhantom
23686 status open
23687
23688 \begin_layout Plain Layout
23689
23690 \series bold
23691 \begin_inset space ~
23692 \end_inset
23693
23694
23695 \end_layout
23696
23697 \end_inset
23698
23699
23700 \backslash
23701 let
23702 \backslash
23703 MyTable
23704 \backslash
23705 table
23706 \begin_inset Newline newline
23707 \end_inset
23708
23709
23710 \begin_inset Phantom HPhantom
23711 status open
23712
23713 \begin_layout Plain Layout
23714
23715 \series bold
23716 \begin_inset space ~
23717 \end_inset
23718
23719
23720 \end_layout
23721
23722 \end_inset
23723
23724
23725 \backslash
23726 let
23727 \backslash
23728 MyEndtable
23729 \backslash
23730 endtable
23731 \begin_inset Newline newline
23732 \end_inset
23733
23734
23735 \begin_inset Phantom HPhantom
23736 status open
23737
23738 \begin_layout Plain Layout
23739
23740 \series bold
23741 \begin_inset space ~
23742 \end_inset
23743
23744
23745 \end_layout
23746
23747 \end_inset
23748
23749
23750 \backslash
23751 renewenvironment{table}{
23752 \backslash
23753 begin{SCtable}}{
23754 \backslash
23755 end{SCtable}}}
23756 \end_layout
23757
23758 \begin_layout Standard
23759
23760 \series bold
23761
23762 \backslash
23763 newcommand{
23764 \backslash
23765 TabBesEnd}{%
23766 \begin_inset Newline newline
23767 \end_inset
23768
23769
23770 \begin_inset Phantom HPhantom
23771 status open
23772
23773 \begin_layout Plain Layout
23774
23775 \series bold
23776 \begin_inset space ~
23777 \end_inset
23778
23779
23780 \end_layout
23781
23782 \end_inset
23783
23784
23785 \backslash
23786 let
23787 \backslash
23788 table
23789 \backslash
23790 MyTable
23791 \begin_inset Newline newline
23792 \end_inset
23793
23794
23795 \begin_inset Phantom HPhantom
23796 status open
23797
23798 \begin_layout Plain Layout
23799
23800 \series bold
23801 \begin_inset space ~
23802 \end_inset
23803
23804
23805 \end_layout
23806
23807 \end_inset
23808
23809
23810 \backslash
23811 let
23812 \backslash
23813 endtable
23814 \backslash
23815 MyEndtable
23816 \end_layout
23817
23818 \begin_layout Standard
23819
23820 \series bold
23821
23822 \backslash
23823 newcommand{
23824 \backslash
23825 FigBesBeg}{%
23826 \begin_inset Newline newline
23827 \end_inset
23828
23829
23830 \begin_inset Phantom HPhantom
23831 status open
23832
23833 \begin_layout Plain Layout
23834
23835 \series bold
23836 \begin_inset space ~
23837 \end_inset
23838
23839
23840 \end_layout
23841
23842 \end_inset
23843
23844
23845 \backslash
23846 let
23847 \backslash
23848 MyFigure
23849 \backslash
23850 figure
23851 \begin_inset Newline newline
23852 \end_inset
23853
23854
23855 \begin_inset Phantom HPhantom
23856 status open
23857
23858 \begin_layout Plain Layout
23859
23860 \series bold
23861 \begin_inset space ~
23862 \end_inset
23863
23864
23865 \end_layout
23866
23867 \end_inset
23868
23869
23870 \backslash
23871 let
23872 \backslash
23873 MyEndfigure
23874 \backslash
23875 endfigure
23876 \begin_inset Newline newline
23877 \end_inset
23878
23879
23880 \begin_inset Phantom HPhantom
23881 status open
23882
23883 \begin_layout Plain Layout
23884
23885 \series bold
23886 \begin_inset space ~
23887 \end_inset
23888
23889
23890 \end_layout
23891
23892 \end_inset
23893
23894
23895 \backslash
23896 renewenvironment{figure}{
23897 \backslash
23898 begin{SCfigure}}{
23899 \backslash
23900 end{SCfigure}}}
23901 \end_layout
23902
23903 \begin_layout Standard
23904
23905 \series bold
23906
23907 \backslash
23908 newcommand{
23909 \backslash
23910 FigBesEnd}{%
23911 \begin_inset Newline newline
23912 \end_inset
23913
23914
23915 \begin_inset Phantom HPhantom
23916 status open
23917
23918 \begin_layout Plain Layout
23919
23920 \series bold
23921 \begin_inset space ~
23922 \end_inset
23923
23924
23925 \end_layout
23926
23927 \end_inset
23928
23929
23930 \backslash
23931 let
23932 \backslash
23933 figure
23934 \backslash
23935 MyFigure
23936 \begin_inset Newline newline
23937 \end_inset
23938
23939
23940 \begin_inset Phantom HPhantom
23941 status open
23942
23943 \begin_layout Plain Layout
23944
23945 \series bold
23946 \begin_inset space ~
23947 \end_inset
23948
23949
23950 \end_layout
23951
23952 \end_inset
23953
23954
23955 \backslash
23956 let
23957 \backslash
23958 endfigure
23959 \backslash
23960 MyEndfigure}
23961 \end_layout
23962
23963 \begin_layout Standard
23964 \noindent
23965 \begin_inset CommandInset line
23966 LatexCommand rule
23967 offset "0.5ex"
23968 width "100line%"
23969 height "1pt"
23970
23971 \end_inset
23972
23973
23974 \end_layout
23975
23976 \begin_layout Standard
23977 Mit den Befehlen können Sie die Gleitobjekte so umdefinieren, dass die Beschrift
23978 ungen seitlich gedruckt werden.
23979  Für Gleitobjekt-Abbildungen schreiben Sie dann die Befehle
23980 \end_layout
23981
23982 \begin_layout Standard
23983
23984 \series bold
23985
23986 \backslash
23987 FigBesBeg
23988 \end_layout
23989
23990 \begin_layout Standard
23991 als TeX-Code vor und
23992 \end_layout
23993
23994 \begin_layout Standard
23995
23996 \series bold
23997
23998 \backslash
23999 FigBesEnd
24000 \end_layout
24001
24002 \begin_layout Standard
24003 hinter das Gleitobjekt.
24004  Bei Gleitobjekt-Tabellen heißen die Befehle
24005 \end_layout
24006
24007 \begin_layout Standard
24008
24009 \series bold
24010
24011 \backslash
24012 TabBesBeg
24013 \series default
24014  und 
24015 \series bold
24016
24017 \backslash
24018 TabBesEnd
24019 \series default
24020 .
24021 \end_layout
24022
24023 \begin_layout Standard
24024 Abbildung
24025 \begin_inset space ~
24026 \end_inset
24027
24028
24029 \begin_inset CommandInset ref
24030 LatexCommand ref
24031 reference "abb:Beschriftung-neben"
24032
24033 \end_inset
24034
24035  und Tabelle
24036 \begin_inset space ~
24037 \end_inset
24038
24039
24040 \begin_inset CommandInset ref
24041 LatexCommand ref
24042 reference "tab:cap-beside-tab"
24043
24044 \end_inset
24045
24046  sind Beispiele für seitliche Beschriftungen.
24047 \end_layout
24048
24049 \begin_layout Standard
24050 Sie sehen, dass die Beschriftung bei Gleitobjekt-Tabellen am oberen Rand
24051  der Tabelle gedruckt wird und bei Gleitobjekt-Abbildungen am unteren Rand
24052  der Abbildung.
24053  Das kann man mit dem Befehl
24054 \end_layout
24055
24056 \begin_layout Standard
24057
24058 \series bold
24059
24060 \backslash
24061 sidecaptionvpos{Gleitobjekt-Typ}{Platzierung}
24062 \end_layout
24063
24064 \begin_layout Standard
24065 im LaTeX-Vorspann oder als TeX-Code vor dem Gleitobjekt ändern.
24066  Der Gleitobjekt-Typ ist entweder 
24067 \family sans
24068 figure
24069 \family default
24070  oder 
24071 \family sans
24072 table
24073 \family default
24074 , die
24075 \family sans
24076  
24077 \family default
24078 Platzierung ist 
24079 \family typewriter
24080 t
24081 \family default
24082  für oben, 
24083 \family typewriter
24084 c
24085 \family default
24086  für zentriert oder 
24087 \family typewriter
24088 b
24089 \family default
24090  für unten.
24091  Um die Beschriftung einer Gleitobjekt-Abbildung vertikal zu zentrieren,
24092  lautet der Befehl
24093 \end_layout
24094
24095 \begin_layout Standard
24096
24097 \series bold
24098
24099 \backslash
24100 sidecaptionvpos{figure}{c}
24101 \end_layout
24102
24103 \begin_layout Standard
24104 Das wurde in Abbildung
24105 \begin_inset space ~
24106 \end_inset
24107
24108
24109 \begin_inset CommandInset ref
24110 LatexCommand ref
24111 reference "abb:cap-beside-fig-2"
24112
24113 \end_inset
24114
24115  benutzt.
24116 \end_layout
24117
24118 \begin_layout Standard
24119 \begin_inset VSpace medskip
24120 \end_inset
24121
24122 Weitere Informationen über das Paket
24123 \series bold
24124  sidecap
24125 \series default
24126  finden Sie in seiner Dokumentation 
24127 \begin_inset CommandInset citation
24128 LatexCommand cite
24129 key "sidecap"
24130
24131 \end_inset
24132
24133 .
24134 \end_layout
24135
24136 \begin_layout Standard
24137 \begin_inset Note Greyedout
24138 status open
24139
24140 \begin_layout Plain Layout
24141
24142 \series bold
24143 Bemerkung:
24144 \series default
24145  Das LaTeX-Paket 
24146 \series bold
24147 hypcap
24148 \series default
24149 ,
24150 \begin_inset Index idx
24151 status collapsed
24152
24153 \begin_layout Plain Layout
24154 LaTeX-Pakete ! hypcap
24155 \end_layout
24156
24157 \end_inset
24158
24159  das in Abschnitt
24160 \begin_inset space ~
24161 \end_inset
24162
24163
24164 \begin_inset CommandInset ref
24165 LatexCommand ref
24166 reference "uab:Querverweis-Position"
24167
24168 \end_inset
24169
24170  beschrieben wurde, hat keine Auswirkungen auf Gleitobjekte mit seitlichen
24171  Beschriftungen.
24172 \end_layout
24173
24174 \end_inset
24175
24176
24177 \end_layout
24178
24179 \begin_layout Standard
24180 \begin_inset ERT
24181 status collapsed
24182
24183 \begin_layout Plain Layout
24184
24185
24186 \backslash
24187 FigBesBeg 
24188 \end_layout
24189
24190 \end_inset
24191
24192
24193 \end_layout
24194
24195 \begin_layout Standard
24196 \begin_inset Float figure
24197 wide false
24198 sideways false
24199 status open
24200
24201 \begin_layout Plain Layout
24202 \begin_inset Graphics
24203         filename ../clipart/escher-lsd.eps
24204         scale 75
24205         scaleBeforeRotation
24206
24207 \end_inset
24208
24209
24210 \end_layout
24211
24212 \begin_layout Plain Layout
24213 \begin_inset Caption
24214
24215 \begin_layout Plain Layout
24216 \begin_inset CommandInset label
24217 LatexCommand label
24218 name "abb:Beschriftung-neben"
24219
24220 \end_inset
24221
24222 Dies ist eine Beschriftung neben einer Abbildung.
24223 \end_layout
24224
24225 \end_inset
24226
24227
24228 \end_layout
24229
24230 \end_inset
24231
24232
24233 \end_layout
24234
24235 \begin_layout Standard
24236 \begin_inset ERT
24237 status collapsed
24238
24239 \begin_layout Plain Layout
24240
24241
24242 \backslash
24243 TabBesBeg 
24244 \end_layout
24245
24246 \end_inset
24247
24248
24249 \end_layout
24250
24251 \begin_layout Standard
24252 \begin_inset Float table
24253 wide false
24254 sideways false
24255 status open
24256
24257 \begin_layout Plain Layout
24258 \begin_inset Caption
24259
24260 \begin_layout Plain Layout
24261 \begin_inset CommandInset label
24262 LatexCommand label
24263 name "tab:cap-beside-tab"
24264
24265 \end_inset
24266
24267 Dies ist eine Beschriftung neben einer Tabelle.
24268 \end_layout
24269
24270 \end_inset
24271
24272
24273 \end_layout
24274
24275 \begin_layout Plain Layout
24276 \begin_inset Tabular
24277 <lyxtabular version="3" rows="4" columns="5">
24278 <features tabularvalignment="middle">
24279 <column alignment="center" valignment="top" width="0">
24280 <column alignment="center" valignment="top" width="0">
24281 <column alignment="center" valignment="top" width="0">
24282 <column alignment="center" valignment="top" width="0">
24283 <column alignment="center" valignment="top" width="0">
24284 <row>
24285 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24286 \begin_inset Text
24287
24288 \begin_layout Plain Layout
24289 a
24290 \end_layout
24291
24292 \end_inset
24293 </cell>
24294 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24295 \begin_inset Text
24296
24297 \begin_layout Plain Layout
24298
24299 \end_layout
24300
24301 \end_inset
24302 </cell>
24303 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24304 \begin_inset Text
24305
24306 \begin_layout Plain Layout
24307 b
24308 \end_layout
24309
24310 \end_inset
24311 </cell>
24312 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24313 \begin_inset Text
24314
24315 \begin_layout Plain Layout
24316
24317 \end_layout
24318
24319 \end_inset
24320 </cell>
24321 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24322 \begin_inset Text
24323
24324 \begin_layout Plain Layout
24325 c
24326 \end_layout
24327
24328 \end_inset
24329 </cell>
24330 </row>
24331 <row>
24332 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24333 \begin_inset Text
24334
24335 \begin_layout Plain Layout
24336
24337 \end_layout
24338
24339 \end_inset
24340 </cell>
24341 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24342 \begin_inset Text
24343
24344 \begin_layout Plain Layout
24345 d
24346 \end_layout
24347
24348 \end_inset
24349 </cell>
24350 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24351 \begin_inset Text
24352
24353 \begin_layout Plain Layout
24354
24355 \end_layout
24356
24357 \end_inset
24358 </cell>
24359 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24360 \begin_inset Text
24361
24362 \begin_layout Plain Layout
24363 e
24364 \end_layout
24365
24366 \end_inset
24367 </cell>
24368 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24369 \begin_inset Text
24370
24371 \begin_layout Plain Layout
24372
24373 \end_layout
24374
24375 \end_inset
24376 </cell>
24377 </row>
24378 <row>
24379 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24380 \begin_inset Text
24381
24382 \begin_layout Plain Layout
24383 f
24384 \end_layout
24385
24386 \end_inset
24387 </cell>
24388 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24389 \begin_inset Text
24390
24391 \begin_layout Plain Layout
24392
24393 \end_layout
24394
24395 \end_inset
24396 </cell>
24397 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24398 \begin_inset Text
24399
24400 \begin_layout Plain Layout
24401 g
24402 \end_layout
24403
24404 \end_inset
24405 </cell>
24406 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24407 \begin_inset Text
24408
24409 \begin_layout Plain Layout
24410
24411 \end_layout
24412
24413 \end_inset
24414 </cell>
24415 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24416 \begin_inset Text
24417
24418 \begin_layout Plain Layout
24419 h
24420 \end_layout
24421
24422 \end_inset
24423 </cell>
24424 </row>
24425 <row>
24426 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24427 \begin_inset Text
24428
24429 \begin_layout Plain Layout
24430
24431 \end_layout
24432
24433 \end_inset
24434 </cell>
24435 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24436 \begin_inset Text
24437
24438 \begin_layout Plain Layout
24439 i
24440 \end_layout
24441
24442 \end_inset
24443 </cell>
24444 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24445 \begin_inset Text
24446
24447 \begin_layout Plain Layout
24448
24449 \end_layout
24450
24451 \end_inset
24452 </cell>
24453 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24454 \begin_inset Text
24455
24456 \begin_layout Plain Layout
24457 j
24458 \end_layout
24459
24460 \end_inset
24461 </cell>
24462 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24463 \begin_inset Text
24464
24465 \begin_layout Plain Layout
24466
24467 \end_layout
24468
24469 \end_inset
24470 </cell>
24471 </row>
24472 </lyxtabular>
24473
24474 \end_inset
24475
24476
24477 \end_layout
24478
24479 \end_inset
24480
24481
24482 \end_layout
24483
24484 \begin_layout Standard
24485 \begin_inset ERT
24486 status collapsed
24487
24488 \begin_layout Plain Layout
24489
24490
24491 \backslash
24492 TabBesEnd
24493 \end_layout
24494
24495 \end_inset
24496
24497
24498 \end_layout
24499
24500 \begin_layout Standard
24501 \begin_inset ERT
24502 status collapsed
24503
24504 \begin_layout Plain Layout
24505
24506
24507 \backslash
24508 sidecaptionvpos{figure}{c}
24509 \end_layout
24510
24511 \end_inset
24512
24513
24514 \begin_inset Float figure
24515 wide false
24516 sideways false
24517 status open
24518
24519 \begin_layout Plain Layout
24520 \begin_inset Graphics
24521         filename ../clipart/escher-lsd.eps
24522         scale 75
24523         scaleBeforeRotation
24524
24525 \end_inset
24526
24527
24528 \end_layout
24529
24530 \begin_layout Plain Layout
24531 \begin_inset Caption
24532
24533 \begin_layout Plain Layout
24534 \begin_inset CommandInset label
24535 LatexCommand label
24536 name "abb:cap-beside-fig-2"
24537
24538 \end_inset
24539
24540 Dies ist eine vertikal zentrierte Beschriftung neben einer Abbildung.
24541 \end_layout
24542
24543 \end_inset
24544
24545
24546 \end_layout
24547
24548 \end_inset
24549
24550
24551 \end_layout
24552
24553 \begin_layout Standard
24554 \begin_inset ERT
24555 status collapsed
24556
24557 \begin_layout Plain Layout
24558
24559
24560 \backslash
24561 FigBesEnd
24562 \end_layout
24563
24564 \end_inset
24565
24566
24567 \end_layout
24568
24569 \begin_layout Standard
24570 \begin_inset ERT
24571 status collapsed
24572
24573 \begin_layout Plain Layout
24574
24575
24576 \backslash
24577 else
24578 \end_layout
24579
24580 \end_inset
24581
24582
24583 \begin_inset Note Note
24584 status open
24585
24586 \begin_layout Plain Layout
24587 Der folgende Hinweis wird gedruckt, wenn das LaTeX-Paket 
24588 \series bold
24589 sidecap
24590 \series default
24591  nicht installiert ist:
24592 \end_layout
24593
24594 \end_inset
24595
24596
24597 \end_layout
24598
24599 \begin_layout Standard
24600 Das LaTeX-Paket 
24601 \series bold
24602 sidecap
24603 \series default
24604  muss installiert sein, um den folgenden Abschnitt in der Ausgabe zu sehen.
24605 \end_layout
24606
24607 \begin_layout Standard
24608 \begin_inset ERT
24609 status collapsed
24610
24611 \begin_layout Plain Layout
24612
24613
24614 \backslash
24615 fi
24616 \end_layout
24617
24618 \end_inset
24619
24620
24621 \end_layout
24622
24623 \begin_layout Section
24624 Gleitobjekt-Verzeichnisse
24625 \begin_inset Index idx
24626 status collapsed
24627
24628 \begin_layout Plain Layout
24629 Gleitobjekte ! Verzeichnisse
24630 \end_layout
24631
24632 \end_inset
24633
24634
24635 \end_layout
24636
24637 \begin_layout Standard
24638 Ähnlich wie das Inhaltsverzeichnis gibt es Gleitobjekt-Verzeichnisse.
24639  Sie können mit den Untermenüs von 
24640 \family sans
24641 Einfügen\SpecialChar \menuseparator
24642 Liste
24643 \begin_inset space ~
24644 \end_inset
24645
24646 /
24647 \begin_inset space ~
24648 \end_inset
24649
24650 Inhaltsverzeichnis
24651 \family default
24652  eingefügt werden.
24653 \end_layout
24654
24655 \begin_layout Standard
24656 Die Einträge in diesen Verzeichnissen sind die Beschriftungen der Gleitobjekte
24657  oder ihre Kurztitel, die Gleitobjekt-Nummer und die Seitennummer.
24658 \end_layout
24659
24660 \begin_layout Standard
24661 In diesem Dokument finden Sie außer dem Inhaltsverzeichnis ein Abbildungs-
24662  und ein Tabellen-Verzeichnis.
24663 \end_layout
24664
24665 \begin_layout Chapter
24666 Notizen
24667 \end_layout
24668
24669 \begin_layout Section
24670 LyX-Notizen
24671 \begin_inset Index idx
24672 status collapsed
24673
24674 \begin_layout Plain Layout
24675 Notizen ! LyX-Notizen
24676 \end_layout
24677
24678 \end_inset
24679
24680
24681 \end_layout
24682
24683 \begin_layout Standard
24684 Notizen werden mit einem Klick auf 
24685 \begin_inset Graphics
24686         filename ../../images/note-insert.png
24687         scale 85
24688         scaleBeforeRotation
24689         BoundingBox 0bp 6bp 22bp 22bp
24690
24691 \end_inset
24692
24693  oder 
24694 \family sans
24695 Einfügen\SpecialChar \menuseparator
24696 Notiz
24697 \family default
24698  eingefügt.
24699  Es gibt drei Arten:
24700 \end_layout
24701
24702 \begin_layout Description
24703 LyX-Notiz: Dieser Typ ist für interne Notizen und wird nicht gedruckt.
24704  Eine 
24705 \family sans
24706 LyX-Notiz
24707 \family default
24708  sieht so aus:
24709 \begin_inset Newline newline
24710 \end_inset
24711
24712
24713 \begin_inset Newline newline
24714 \end_inset
24715
24716
24717 \begin_inset Graphics
24718         filename clipart/LyXNotizQt4.png
24719         display false
24720         scale 60
24721         scaleBeforeRotation
24722
24723 \end_inset
24724
24725  
24726 \begin_inset Note Note
24727 status open
24728
24729 \begin_layout Plain Layout
24730 Dies ist Text in einem Notiz-Kästchen, der nicht gedruckt wird.
24731 \end_layout
24732
24733 \end_inset
24734
24735
24736 \end_layout
24737
24738 \begin_layout Description
24739 Kommentar: Diese Notiz wird auch nicht gedruckt, aber sie erscheint als
24740  LaTeX-Kommentar, wenn Sie das Dokument nach LaTeX exportieren (
24741 \family sans
24742 Datei\SpecialChar \menuseparator
24743 Ex\SpecialChar \-
24744 por\SpecialChar \-
24745 tie\SpecialChar \-
24746 ren\SpecialChar \menuseparator
24747 LaTe
24748 \begin_inset ERT
24749 status collapsed
24750
24751 \begin_layout Plain Layout
24752
24753 {}
24754 \end_layout
24755
24756 \end_inset
24757
24758 X (pdflatex) / (normal)
24759 \family default
24760 .
24761  Ein Kommentar sieht so aus:
24762 \begin_inset Newline newline
24763 \end_inset
24764
24765
24766 \begin_inset Newline newline
24767 \end_inset
24768
24769
24770 \begin_inset Graphics
24771         filename clipart/KommentarQt4.png
24772         display false
24773         scale 60
24774         scaleBeforeRotation
24775
24776 \end_inset
24777
24778  
24779 \begin_inset Note Comment
24780 status open
24781
24782 \begin_layout Plain Layout
24783 Dies ist ein Kommentar, der nicht gedruckt, aber exportiert wird.
24784 \end_layout
24785
24786 \end_inset
24787
24788
24789 \end_layout
24790
24791 \begin_layout Description
24792 Grauschrift: Diese Notiz wird grau gedruckt und sieht so aus:
24793 \begin_inset Newline newline
24794 \end_inset
24795
24796
24797 \begin_inset Newline newline
24798 \end_inset
24799
24800
24801 \begin_inset Graphics
24802         filename clipart/GrauschriftNotizQt4.png
24803         display false
24804         scale 60
24805         scaleBeforeRotation
24806
24807 \end_inset
24808
24809
24810 \begin_inset Newline newline
24811 \end_inset
24812
24813
24814 \begin_inset ERT
24815 status collapsed
24816
24817 \begin_layout Plain Layout
24818
24819
24820 \backslash
24821 renewenvironment{lyxgreyedout}
24822 \end_layout
24823
24824 \begin_layout Plain Layout
24825
24826 {
24827 \backslash
24828 textcolor[gray]{0.4}
24829 \backslash
24830 bgroup}{
24831 \backslash
24832 egroup}
24833 \end_layout
24834
24835 \end_inset
24836
24837
24838 \begin_inset Note Greyedout
24839 status open
24840
24841 \begin_layout Plain Layout
24842 Dies ist eine Grauschrift-Notiz mit einer Fußnote.
24843 \begin_inset Foot
24844 status open
24845
24846 \begin_layout Plain Layout
24847 Dies ist eine Fußnote in einer Grauschrift-Notiz.
24848 \end_layout
24849
24850 \end_inset
24851
24852
24853 \end_layout
24854
24855 \end_inset
24856
24857
24858 \begin_inset ERT
24859 status collapsed
24860
24861 \begin_layout Plain Layout
24862
24863
24864 \backslash
24865 renewenvironment{lyxgreyedout}
24866 \end_layout
24867
24868 \begin_layout Plain Layout
24869
24870 {
24871 \backslash
24872 textcolor{blue}
24873 \backslash
24874 bgroup}{
24875 \backslash
24876 egroup}
24877 \end_layout
24878
24879 \end_inset
24880
24881
24882 \begin_inset Note Note
24883 status collapsed
24884
24885 \begin_layout Plain Layout
24886 Die Grauschrift-Notiz wurde auf die ursprüngliche LyX-Definition zurückgesetzt,
24887  weil Grauschriften im LaTeX-Vorspann dieses Dokuments blau definiert wurden.
24888  
24889 \end_layout
24890
24891 \end_inset
24892
24893
24894 \begin_inset Newline newline
24895 \end_inset
24896
24897
24898 \begin_inset Newline newline
24899 \end_inset
24900
24901 Das Beispiel zeigt, dass die erste Zeile von Grauschrift-Notizen eingerückt
24902  wird und dass Grauschrift-Notizen Fußnoten enthalten können.
24903 \end_layout
24904
24905 \begin_layout Standard
24906 \begin_inset VSpace bigskip
24907 \end_inset
24908
24909 Wenn Sie auf den Werkzeugleistenknopf 
24910 \begin_inset Graphics
24911         filename ../../images/note-insert.png
24912         scale 85
24913         scaleBeforeRotation
24914         BoundingBox 0bp 6bp 22bp 22bp
24915
24916 \end_inset
24917
24918  klicken, wird zunächst eine 
24919 \family sans
24920 LyX-Notiz
24921 \family default
24922  eingefügt.
24923  Mit einem Rechts-Klick auf das Notiz-Kästchen können Sie eine der vier
24924  anderen Möglichkeiten auswählen.
24925  Wenn Sie einen vorhandenen Text in eine Notiz verwandeln wollen, markieren
24926  Sie ihn und klicken dann auf den Werkzeugleistenknopf.
24927  Um eine Notiz in Text zu verwandeln, drücken Sie die Backspace-Taste, wenn
24928  der Cursor am Beginn der Notiz ist oder die Entfernen-Taste, wenn der Cursor
24929  am Ende der Notiz ist.
24930 \end_layout
24931
24932 \begin_layout Standard
24933 \begin_inset VSpace bigskip
24934 \end_inset
24935
24936 Die Textfarbe der 
24937 \family sans
24938 Grauschrift
24939 \family default
24940 -Notiz können Sie im LaTeX-Vorspann mit folgendem Befehl ändern:
24941 \end_layout
24942
24943 \begin_layout Standard
24944
24945 \series bold
24946
24947 \backslash
24948 renewenvironment{lyxgreyedout}
24949 \begin_inset Newline newline
24950 \end_inset
24951
24952
24953 \begin_inset Phantom HPhantom
24954 status open
24955
24956 \begin_layout Plain Layout
24957
24958 \series bold
24959 \begin_inset space ~
24960 \end_inset
24961
24962
24963 \end_layout
24964
24965 \end_inset
24966
24967 {
24968 \backslash
24969 textcolor{color}
24970 \backslash
24971 bgroup}{
24972 \backslash
24973 egroup}
24974 \end_layout
24975
24976 \begin_layout Standard
24977 Die verfügbaren Farben und wie man eigene definiert, wurde bereits in Abschnitt
24978 \begin_inset space ~
24979 \end_inset
24980
24981
24982 \begin_inset CommandInset ref
24983 LatexCommand ref
24984 reference "abs:Farbige-Tabellen"
24985
24986 \end_inset
24987
24988  beschrieben.
24989  In diesem Dokument werden die Grauschrift-Notizen blau gedruckt.
24990 \end_layout
24991
24992 \begin_layout Section
24993 Fußnoten
24994 \begin_inset CommandInset label
24995 LatexCommand label
24996 name "abs:Fußnoten"
24997
24998 \end_inset
24999
25000
25001 \begin_inset Index idx
25002 status collapsed
25003
25004 \begin_layout Plain Layout
25005 Notizen ! Fußnoten
25006 \end_layout
25007
25008 \end_inset
25009
25010
25011 \begin_inset Index idx
25012 status collapsed
25013
25014 \begin_layout Plain Layout
25015 Fußnoten
25016 \end_layout
25017
25018 \end_inset
25019
25020
25021 \end_layout
25022
25023 \begin_layout Standard
25024 Zu dem, was bereits im 
25025 \emph on
25026 Benutzerhandbuch
25027 \emph default
25028  über Fußnoten geschrieben wurde, folgen hier noch ein paar Anmerkungen.
25029  Eine Fußnotenbox sieht folgendermaßen aus: 
25030 \begin_inset Graphics
25031         filename clipart/FussnoteQt4.png
25032         scale 80
25033         scaleBeforeRotation
25034
25035 \end_inset
25036
25037
25038 \end_layout
25039
25040 \begin_layout Standard
25041 Hier ist eine Beispielfußnote:
25042 \color black
25043
25044 \begin_inset Foot
25045 status open
25046
25047 \begin_layout Plain Layout
25048 \begin_inset CommandInset label
25049 LatexCommand label
25050 name "fuss:Fußnoten-Beispiel"
25051
25052 \end_inset
25053
25054 Dies ist eine Fußnote.
25055 \end_layout
25056
25057 \end_inset
25058
25059
25060 \color inherit
25061
25062 \begin_inset ERT
25063 status collapsed
25064
25065 \begin_layout Plain Layout
25066
25067
25068 \backslash
25069 newcounter{MyRepeatFoot}
25070 \end_layout
25071
25072 \begin_layout Plain Layout
25073
25074
25075 \backslash
25076 setcounter{MyRepeatFoot}{
25077 \backslash
25078 thefootnote}
25079 \end_layout
25080
25081 \end_inset
25082
25083
25084 \end_layout
25085
25086 \begin_layout Standard
25087 In der druckfertigen Ausgabe erscheint an der Stelle, wo die Fußnote eingefügt
25088  wurde, eine hochgestellte Zahl.
25089  Der Fußnotentext wird am Seitenende gedruckt, wobei die Fußnotennummer
25090  hochgestellt dem Text vorangeht.
25091  Die Fußnotennummern werden von LaTeX berechnet und sind fortlaufend.
25092  Es hängt von der Dokumentklasse ab, ob sie in jedem Kapitel zurückgesetzt
25093  werden.
25094 \end_layout
25095
25096 \begin_layout Standard
25097 Auf Fußnoten kann wie auf andere Gleitobjekte verwiesen werden, wenn in
25098  der Fußnote eine Marke eingefügt wurde.
25099  Dies ist ein Querverweis auf Fußnote
25100 \begin_inset space ~
25101 \end_inset
25102
25103
25104 \begin_inset CommandInset ref
25105 LatexCommand ref
25106 reference "fuss:Fußnoten-Beispiel"
25107
25108 \end_inset
25109
25110 .
25111 \end_layout
25112
25113 \begin_layout Standard
25114 \begin_inset VSpace defskip
25115 \end_inset
25116
25117 Fußnoten in Tabellen werden von LaTeX aus technischen Gründen nicht gedruckt.
25118  Jedoch gibt es eine andere Methode sie zu drucken: Anstatt einer Fußnote
25119  wird der Befehl 
25120 \series bold
25121
25122 \backslash
25123 footnotemark{}
25124 \series default
25125  als TeX-Code eingefügt.
25126  Der Text der Fußnote wird als Argument des TeX-Code-Befehls 
25127 \series bold
25128
25129 \backslash
25130 footnotetext
25131 \series default
25132  nach der Tabelle eingegeben.
25133 \begin_inset Newline newline
25134 \end_inset
25135
25136 Hinter folgender Tabelle wurde als Beispiel dieser Befehl eingegeben:
25137 \end_layout
25138
25139 \begin_layout Standard
25140
25141 \series bold
25142
25143 \backslash
25144 footnotetext{
25145 \series default
25146 Gedruckte Tabellenfußnote.
25147 \series bold
25148 }
25149 \end_layout
25150
25151 \begin_layout Standard
25152 \begin_inset Tabular
25153 <lyxtabular version="3" rows="2" columns="1">
25154 <features tabularvalignment="middle">
25155 <column alignment="center" valignment="top" width="0">
25156 <row>
25157 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25158 \begin_inset Text
25159
25160 \begin_layout Plain Layout
25161 Dies ist ein Beispieltext.
25162 \begin_inset Foot
25163 status open
25164
25165 \begin_layout Plain Layout
25166 Diese Fußnote wird nicht gedruckt!
25167 \end_layout
25168
25169 \end_inset
25170
25171
25172 \end_layout
25173
25174 \end_inset
25175 </cell>
25176 </row>
25177 <row>
25178 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25179 \begin_inset Text
25180
25181 \begin_layout Plain Layout
25182 Dies ist ein Beispieltext.
25183 \begin_inset ERT
25184 status collapsed
25185
25186 \begin_layout Plain Layout
25187
25188
25189 \backslash
25190 footnotemark{}
25191 \end_layout
25192
25193 \end_inset
25194
25195
25196 \end_layout
25197
25198 \end_inset
25199 </cell>
25200 </row>
25201 </lyxtabular>
25202
25203 \end_inset
25204
25205
25206 \begin_inset ERT
25207 status collapsed
25208
25209 \begin_layout Plain Layout
25210
25211
25212 \backslash
25213 footnotetext{
25214 \end_layout
25215
25216 \end_inset
25217
25218 Gedruckte Tabellenfußnote.
25219 \begin_inset ERT
25220 status collapsed
25221
25222 \begin_layout Plain Layout
25223
25224 }
25225 \end_layout
25226
25227 \end_inset
25228
25229
25230 \end_layout
25231
25232 \begin_layout Standard
25233 Fußnoten in langen Tabellen sind in Abschnitt
25234 \begin_inset space ~
25235 \end_inset
25236
25237
25238 \begin_inset CommandInset ref
25239 LatexCommand ref
25240 reference "uab:Fußnoten-in-langen"
25241
25242 \end_inset
25243
25244  beschrieben.
25245 \end_layout
25246
25247 \begin_layout Standard
25248 Fußnoten in Minipage-Boxen werden gedruckt, allerdings innerhalb der Box
25249  und mit einer anderen Nummerierung, da eine Minipage-Box wie eine Seite
25250  innerhalb einer Seite ist.
25251  (Mehr über Minipages ist in Abschnitt
25252 \begin_inset space ~
25253 \end_inset
25254
25255
25256 \begin_inset CommandInset ref
25257 LatexCommand ref
25258 reference "abs:Minipage"
25259
25260 \end_inset
25261
25262  zu finden.) Um eine Fußnote in der Minipage zu erhalten, die am unteren
25263  Seitenrand wie normale Fußnoten gedruckt wird, verenden Sie ebenfalls die
25264  Methode mit 
25265 \series bold
25266
25267 \backslash
25268 footnotemark{}
25269 \series default
25270  und 
25271 \series bold
25272
25273 \backslash
25274 footnotetext
25275 \series default
25276 .
25277 \end_layout
25278
25279 \begin_layout Standard
25280 \begin_inset Box Frameless
25281 position "t"
25282 hor_pos "c"
25283 has_inner_box 1
25284 inner_pos "t"
25285 use_parbox 0
25286 use_makebox 0
25287 width "100col%"
25288 special "none"
25289 height "1in"
25290 height_special "totalheight"
25291 status open
25292
25293 \begin_layout Plain Layout
25294 Dies ist ein Beispieltext.in einer Minipage.
25295 \begin_inset Foot
25296 status open
25297
25298 \begin_layout Plain Layout
25299 Fußnote in einer Minipage.
25300 \end_layout
25301
25302 \end_inset
25303
25304
25305 \end_layout
25306
25307 \begin_layout Plain Layout
25308 Dies ist ein Beispieltext.
25309  in einer Minipage.
25310 \begin_inset ERT
25311 status collapsed
25312
25313 \begin_layout Plain Layout
25314
25315
25316 \backslash
25317 footnotemark{}
25318 \end_layout
25319
25320 \end_inset
25321
25322
25323 \end_layout
25324
25325 \end_inset
25326
25327
25328 \end_layout
25329
25330 \begin_layout Standard
25331 \begin_inset ERT
25332 status collapsed
25333
25334 \begin_layout Plain Layout
25335
25336
25337 \backslash
25338 footnotetext{
25339 \end_layout
25340
25341 \end_inset
25342
25343 Fußnote außerhalb der Minipage.
25344 \begin_inset ERT
25345 status collapsed
25346
25347 \begin_layout Plain Layout
25348
25349 }
25350 \end_layout
25351
25352 \end_inset
25353
25354
25355 \end_layout
25356
25357 \begin_layout Standard
25358 \begin_inset VSpace defskip
25359 \end_inset
25360
25361
25362 \end_layout
25363
25364 \begin_layout Standard
25365 Um auf eine Fußnote mehrere Male zu verweisen, ohne dabei jedes Mal den
25366  Fußnotentext zu drucken, verwenden Sie den TeX-Code-Befehl 
25367 \series bold
25368
25369 \backslash
25370 footnotemark[Nummer]
25371 \series default
25372 .
25373 \begin_inset Newline newline
25374 \end_inset
25375
25376 Weil Sie die Nummer der Fußnote nicht im Voraus wissen können, müssen Sie
25377  sie speichern, nachdem Sie die Fußnote eingefügt haben.
25378  Hinter Fußnote
25379 \begin_inset space ~
25380 \end_inset
25381
25382
25383 \begin_inset CommandInset ref
25384 LatexCommand ref
25385 reference "fuss:Fußnoten-Beispiel"
25386
25387 \end_inset
25388
25389  wurde das mit folgenden TeX-Code-Befehlen gemacht:
25390 \end_layout
25391
25392 \begin_layout Standard
25393
25394 \series bold
25395
25396 \backslash
25397 newcounter{MyRepeatFoot}
25398 \begin_inset Newline newline
25399 \end_inset
25400
25401
25402 \backslash
25403 setcounter{MyRepeatFoot}{
25404 \backslash
25405 thefootnote}
25406 \end_layout
25407
25408 \begin_layout Standard
25409 Die Fußnotenmarke wurde dann mit diesem TeX-Code-Befehl definiert;
25410 \end_layout
25411
25412 \begin_layout Standard
25413
25414 \series bold
25415
25416 \backslash
25417 footnotemark[
25418 \backslash
25419 theMyRepeatFoot]
25420 \end_layout
25421
25422 \begin_layout Standard
25423 Hier ist eine wiederholte Fußnote:
25424 \begin_inset ERT
25425 status collapsed
25426
25427 \begin_layout Plain Layout
25428
25429
25430 \backslash
25431 footnotemark[
25432 \backslash
25433 theMyRepeatFoot]
25434 \end_layout
25435
25436 \end_inset
25437
25438
25439 \end_layout
25440
25441 \begin_layout Standard
25442 Wenn Sie die letzte Fußnote wiederholen wollen, können Sie die Speicherung
25443  der Fußnotennummer weglassen und stattdessen diesen Befehl verwenden:
25444 \end_layout
25445
25446 \begin_layout Standard
25447
25448 \series bold
25449
25450 \backslash
25451 footnotemark[
25452 \backslash
25453 thefootnote]
25454 \end_layout
25455
25456 \begin_layout Standard
25457 Hier ist eine weitere wiederholte Fußnote:
25458 \begin_inset ERT
25459 status collapsed
25460
25461 \begin_layout Plain Layout
25462
25463
25464 \backslash
25465 footnotemark[
25466 \backslash
25467 thefootnote]
25468 \end_layout
25469
25470 \end_inset
25471
25472
25473 \end_layout
25474
25475 \begin_layout Subsection
25476 Fußnoten-Nummerierung
25477 \begin_inset CommandInset label
25478 LatexCommand label
25479 name "uab:Fußnoten-Nummerierung"
25480
25481 \end_inset
25482
25483
25484 \begin_inset Index idx
25485 status collapsed
25486
25487 \begin_layout Plain Layout
25488 Fußnoten ! Nummerierung
25489 \end_layout
25490
25491 \end_inset
25492
25493
25494 \end_layout
25495
25496 \begin_layout Standard
25497 Um Fußnoten nach jedem Abschnitt
25498 \family roman
25499  auf 1 zurückzusetzen, 
25500 \family default
25501 müssen Sie folgenden Befehl in den LaTeX-Vorspann schreiben:
25502 \end_layout
25503
25504 \begin_layout Standard
25505
25506 \series bold
25507
25508 \backslash
25509 @addtoreset{footnote}{section}
25510 \end_layout
25511
25512 \begin_layout Standard
25513 \begin_inset VSpace bigskip
25514 \end_inset
25515
25516 Der folgende Befehl ändert die Fußnoten-Nummerierung auf kleine römische
25517  Zahlen:
25518 \end_layout
25519
25520 \begin_layout Standard
25521
25522 \series bold
25523
25524 \backslash
25525 renewcommand{
25526 \backslash
25527 thefootnote}{
25528 \backslash
25529 roman{footnote}}
25530 \end_layout
25531
25532 \begin_layout Standard
25533 \begin_inset ERT
25534 status collapsed
25535
25536 \begin_layout Plain Layout
25537
25538
25539 \backslash
25540 renewcommand{
25541 \backslash
25542 thefootnote}{
25543 \backslash
25544 roman{footnote}}
25545 \end_layout
25546
25547 \end_inset
25548
25549  Hier ist ein Beispiel für solch eine Fußnote:
25550 \begin_inset Foot
25551 status open
25552
25553 \begin_layout Plain Layout
25554 Dies ist eine Fußnote mit kleinen römischen Zahlen
25555 \end_layout
25556
25557 \end_inset
25558
25559
25560 \end_layout
25561
25562 \begin_layout Standard
25563 Um den Nummerierungsstil auf große römische Zahlen zu ändern, ersetzen Sie
25564  in obigem Befehl 
25565 \series bold
25566
25567 \backslash
25568 roman
25569 \series default
25570  durch 
25571 \series bold
25572
25573 \backslash
25574 Roman
25575 \series default
25576 .
25577  Um Fußnoten mit großen oder kleinen Buchstaben zu 
25578 \begin_inset Quotes gld
25579 \end_inset
25580
25581 nummerieren
25582 \begin_inset Quotes grd
25583 \end_inset
25584
25585 , verwenden Sie die Befehle 
25586 \series bold
25587
25588 \backslash
25589 Alph
25590 \series default
25591  oder 
25592 \series bold
25593
25594 \backslash
25595 alph
25596 \series default
25597 .
25598  Für die 
25599 \begin_inset Quotes gld
25600 \end_inset
25601
25602 Nummerierung
25603 \begin_inset Quotes grd
25604 \end_inset
25605
25606  mit Symbolen steht der Befehl 
25607 \series bold
25608
25609 \backslash
25610 fnsymbol
25611 \series default
25612  zur Verfügung.
25613 \end_layout
25614
25615 \begin_layout Standard
25616 \begin_inset Note Greyedout
25617 status open
25618
25619 \begin_layout Plain Layout
25620
25621 \series bold
25622 Bemerkung 1:
25623 \series default
25624  Mit Buchstaben können höchstens 26 Fußnoten nummeriert werden, weil nur
25625  
25626 \emph on
25627 ein
25628 \emph default
25629  Buchstabe verwendet wird.
25630 \end_layout
25631
25632 \end_inset
25633
25634
25635 \begin_inset Newline newline
25636 \end_inset
25637
25638
25639 \begin_inset Note Greyedout
25640 status open
25641
25642 \begin_layout Plain Layout
25643
25644 \series bold
25645 Bemerkung 2:
25646 \series default
25647  Mit Symbolen können höchstens 9 Fußnoten nummeriert werden.
25648 \end_layout
25649
25650 \end_inset
25651
25652
25653 \end_layout
25654
25655 \begin_layout Standard
25656 Um zur Standard-Nummerierung zurückzukehren, verwenden Sie 
25657 \series bold
25658
25659 \backslash
25660 arabic
25661 \series default
25662  anstelle von 
25663 \series bold
25664
25665 \backslash
25666 roman
25667 \series default
25668  in obigem Befehl.
25669 \begin_inset ERT
25670 status collapsed
25671
25672 \begin_layout Plain Layout
25673
25674
25675 \backslash
25676 renewcommand{
25677 \backslash
25678 thefootnote}{
25679 \backslash
25680 arabic{footnote}}
25681 \end_layout
25682
25683 \end_inset
25684
25685
25686 \end_layout
25687
25688 \begin_layout Standard
25689 \begin_inset VSpace bigskip
25690 \end_inset
25691
25692
25693 \end_layout
25694
25695 \begin_layout Standard
25696 Wenn Sie wollen, dass Fußnoten nach dem Schema 
25697 \begin_inset Quotes gld
25698 \end_inset
25699
25700 Kapitel.Fußnote
25701 \begin_inset Quotes grd
25702 \end_inset
25703
25704  nummeriert werden, müssen Sie folgenden Befehl in den LaTeX-Vorspann schreiben:
25705 \end_layout
25706
25707 \begin_layout Standard
25708
25709 \series bold
25710
25711 \backslash
25712 numberwithin{footnote}{chapter}
25713 \end_layout
25714
25715 \begin_layout Standard
25716 Um 
25717 \series bold
25718
25719 \backslash
25720 numberwithin
25721 \series default
25722  benutzen zu können, muss in den 
25723 \family sans
25724 Mathe
25725 \begin_inset space ~
25726 \end_inset
25727
25728 Optionen
25729 \family default
25730  der 
25731 \family sans
25732 Dokument-Einstellungen
25733 \family default
25734  
25735 \family sans
25736 AMS
25737 \begin_inset space ~
25738 \end_inset
25739
25740 Mathe
25741 \begin_inset space ~
25742 \end_inset
25743
25744 Paket
25745 \family default
25746
25747 \begin_inset space ~
25748 \end_inset
25749
25750
25751 \family sans
25752 verwenden
25753 \family default
25754  angekreuzt sein.
25755 \begin_inset ERT
25756 status collapsed
25757
25758 \begin_layout Plain Layout
25759
25760
25761 \backslash
25762 numberwithin{footnote}{chapter}
25763 \end_layout
25764
25765 \end_inset
25766
25767  Hier ist ein Beispiel für solch eine Fußnote.
25768 \series bold
25769
25770 \begin_inset Foot
25771 status open
25772
25773 \begin_layout Plain Layout
25774 Dies ist eine Fußnote nach dem Schema 
25775 \begin_inset Quotes gld
25776 \end_inset
25777
25778 Kapitel.Fußnote
25779 \begin_inset Quotes grd
25780 \end_inset
25781
25782 .
25783 \end_layout
25784
25785 \end_inset
25786
25787
25788 \series default
25789
25790 \begin_inset ERT
25791 status collapsed
25792
25793 \begin_layout Plain Layout
25794
25795
25796 \backslash
25797 renewcommand{
25798 \backslash
25799 thefootnote}{
25800 \backslash
25801 arabic{footnote}}
25802 \end_layout
25803
25804 \end_inset
25805
25806
25807 \end_layout
25808
25809 \begin_layout Standard
25810 \begin_inset Note Greyedout
25811 status open
25812
25813 \begin_layout Plain Layout
25814
25815 \series bold
25816 Bemerkung:
25817 \series default
25818  
25819 \series bold
25820
25821 \backslash
25822 numberwithin
25823 \series default
25824  verwendet ausschließlich arabische Ziffern für Fußnoten; vorherige Definitionen
25825  werden überschrieben.
25826 \end_layout
25827
25828 \end_inset
25829
25830
25831 \end_layout
25832
25833 \begin_layout Standard
25834 Um also z.
25835 \begin_inset space \thinspace{}
25836 \end_inset
25837
25838 B.
25839  das Schema 
25840 \begin_inset Quotes gld
25841 \end_inset
25842
25843 Kapitel.
25844 \backslash
25845 Roman{footnote}
25846 \begin_inset Quotes grd
25847 \end_inset
25848
25849  zu erhalten, muss dieser Befehl anstelle von 
25850 \series bold
25851
25852 \backslash
25853 numberwithin
25854 \series default
25855  verwendet werden:
25856 \end_layout
25857
25858 \begin_layout Standard
25859
25860 \series bold
25861
25862 \backslash
25863 renewcommand{
25864 \backslash
25865 thefootnote}{
25866 \backslash
25867 thechapter.
25868 \backslash
25869 Roman{footnote}}
25870 \end_layout
25871
25872 \begin_layout Subsection
25873 Fußnoten-Platzierung
25874 \begin_inset Index idx
25875 status collapsed
25876
25877 \begin_layout Plain Layout
25878 Fußnoten ! Platzierung
25879 \end_layout
25880
25881 \end_inset
25882
25883
25884 \end_layout
25885
25886 \begin_layout Standard
25887 Wenn Sie auf einer Seite mehrere Fußnoten haben, werden sie untereinander
25888  ohne Zwischenraum am Ende der Seite gedruckt.
25889  Damit sie besser zu unterscheiden sind, kann man mit folgendem Befehl im
25890  LaTeX-Vorspann 1.5
25891 \begin_inset space \thinspace{}
25892 \end_inset
25893
25894 mm Zwischenraum einfügen:
25895 \end_layout
25896
25897 \begin_layout Standard
25898
25899 \series bold
25900
25901 \backslash
25902 let
25903 \backslash
25904 myFoot
25905 \backslash
25906 footnote
25907 \begin_inset Newline newline
25908 \end_inset
25909
25910
25911 \backslash
25912 renewcommand{
25913 \backslash
25914 footnote}[1]{
25915 \backslash
25916 myFoot{#1
25917 \backslash
25918 vspace{1.5mm}}}
25919 \end_layout
25920
25921 \begin_layout Standard
25922 \begin_inset VSpace bigskip
25923 \end_inset
25924
25925 In einem zweispaltigen Dokument werden die Fußnoten am unteren Rand jeder
25926  Spalte gedruckt, Abbildung
25927 \begin_inset space ~
25928 \end_inset
25929
25930
25931 \begin_inset CommandInset ref
25932 LatexCommand ref
25933 reference "abb:Standard-Fußnoten-Platzierung-in"
25934
25935 \end_inset
25936
25937 .
25938  Wenn die Fußnoten nur unter der rechten Spalte gedruckt werden sollen wie
25939  in Abbildung
25940 \begin_inset space ~
25941 \end_inset
25942
25943
25944 \begin_inset CommandInset ref
25945 LatexCommand ref
25946 reference "abb:Fußnoten-Platzierung-in-einem"
25947
25948 \end_inset
25949
25950 , müssen Sie das LaTeX-Paket 
25951 \series bold
25952 ftnright
25953 \series default
25954
25955 \begin_inset Index idx
25956 status collapsed
25957
25958 \begin_layout Plain Layout
25959 LaTeX-Pakete ! ftnright
25960 \end_layout
25961
25962 \end_inset
25963
25964  mit folgendem Befehl im LaTeX-Vorspann einfügen:
25965 \end_layout
25966
25967 \begin_layout Standard
25968
25969 \series bold
25970
25971 \backslash
25972 usepackage{ftnright}
25973 \end_layout
25974
25975 \begin_layout Standard
25976 \begin_inset Float figure
25977 placement !h
25978 wide false
25979 sideways false
25980 status open
25981
25982 \begin_layout Plain Layout
25983 \begin_inset ERT
25984 status collapsed
25985
25986 \begin_layout Plain Layout
25987
25988
25989 \backslash
25990 framebox{
25991 \end_layout
25992
25993 \end_inset
25994
25995
25996 \begin_inset Graphics
25997         filename ../clipart/without_fntright.pdf
25998         width 100col%
25999         scaleBeforeRotation
26000
26001 \end_inset
26002
26003
26004 \begin_inset ERT
26005 status collapsed
26006
26007 \begin_layout Plain Layout
26008
26009 }
26010 \end_layout
26011
26012 \end_inset
26013
26014
26015 \end_layout
26016
26017 \begin_layout Plain Layout
26018 \begin_inset Caption
26019
26020 \begin_layout Plain Layout
26021 \begin_inset CommandInset label
26022 LatexCommand label
26023 name "abb:Standard-Fußnoten-Platzierung-in"
26024
26025 \end_inset
26026
26027 Standard-Fußnoten-Platzierung in einem zweispaltigen Dokument
26028 \begin_inset Argument
26029 status open
26030
26031 \begin_layout Plain Layout
26032 Standard-Fußnoten-Platzierung in einem zweispaltigen Dokument
26033 \end_layout
26034
26035 \end_inset
26036
26037
26038 \end_layout
26039
26040 \end_inset
26041
26042
26043 \end_layout
26044
26045 \end_inset
26046
26047
26048 \end_layout
26049
26050 \begin_layout Standard
26051 \begin_inset Float figure
26052 placement !h
26053 wide false
26054 sideways false
26055 status open
26056
26057 \begin_layout Plain Layout
26058 \begin_inset ERT
26059 status collapsed
26060
26061 \begin_layout Plain Layout
26062
26063
26064 \backslash
26065 framebox{
26066 \end_layout
26067
26068 \end_inset
26069
26070
26071 \begin_inset Graphics
26072         filename ../clipart/with_fntright.pdf
26073         width 100col%
26074         scaleBeforeRotation
26075
26076 \end_inset
26077
26078
26079 \begin_inset ERT
26080 status collapsed
26081
26082 \begin_layout Plain Layout
26083
26084 }
26085 \end_layout
26086
26087 \end_inset
26088
26089
26090 \end_layout
26091
26092 \begin_layout Plain Layout
26093 \begin_inset Caption
26094
26095 \begin_layout Plain Layout
26096 \begin_inset CommandInset label
26097 LatexCommand label
26098 name "abb:Fußnoten-Platzierung-in-einem"
26099
26100 \end_inset
26101
26102 Fußnoten-Platzierung in einem zweispaltigen Dokument mit dem LaTeX-Paket
26103  
26104 \series bold
26105 ftnright
26106 \series default
26107 .
26108 \begin_inset Argument
26109 status collapsed
26110
26111 \begin_layout Plain Layout
26112 Fußnoten-Platzierung mit 
26113 \family typewriter
26114 ftnright
26115 \end_layout
26116
26117 \end_inset
26118
26119
26120 \end_layout
26121
26122 \end_inset
26123
26124
26125 \end_layout
26126
26127 \end_inset
26128
26129
26130 \end_layout
26131
26132 \begin_layout Standard
26133 \begin_inset VSpace bigskip
26134 \end_inset
26135
26136 In einigen wissenschaftlichen Veröffentlichungen werden alle Fußnoten am
26137  Ende eines Abschnitts in einem eigenen Absatz wie in Abbildung
26138 \begin_inset space ~
26139 \end_inset
26140
26141
26142 \begin_inset CommandInset ref
26143 LatexCommand ref
26144 reference "abb:endnotes"
26145
26146 \end_inset
26147
26148  gedruckt.
26149  Man nennt sie dann 
26150 \begin_inset Quotes gld
26151 \end_inset
26152
26153 Endnoten
26154 \begin_inset Quotes grd
26155 \end_inset
26156
26157 .
26158 \begin_inset Index idx
26159 status collapsed
26160
26161 \begin_layout Plain Layout
26162 Endnoten
26163 \end_layout
26164
26165 \end_inset
26166
26167  Um das zu erreichen, laden Sie im Menü 
26168 \family sans
26169 Dokument\SpecialChar \menuseparator
26170 Einstellungen\SpecialChar \menuseparator
26171 Module 
26172 \family default
26173 das Modul 
26174 \family sans
26175 Fußnote
26176 \begin_inset space ~
26177 \end_inset
26178
26179 als
26180 \begin_inset space ~
26181 \end_inset
26182
26183 Endnote
26184 \family default
26185 .
26186  Um die gesammelten Fußnoten zu drucken, fügen Sie den Befehl
26187 \end_layout
26188
26189 \begin_layout Standard
26190
26191 \series bold
26192
26193 \backslash
26194 theendnotes
26195 \end_layout
26196
26197 \begin_layout Standard
26198 als TeX-Code am Ende des Abschnitts oder Kapitels ein.
26199 \end_layout
26200
26201 \begin_layout Standard
26202 \begin_inset Float figure
26203 wide false
26204 sideways false
26205 status open
26206
26207 \begin_layout Plain Layout
26208 \align center
26209 \begin_inset ERT
26210 status collapsed
26211
26212 \begin_layout Plain Layout
26213
26214
26215 \backslash
26216 framebox{
26217 \end_layout
26218
26219 \end_inset
26220
26221
26222 \begin_inset Graphics
26223         filename ../clipart/endnotes.pdf
26224         scaleBeforeRotation
26225
26226 \end_inset
26227
26228
26229 \begin_inset ERT
26230 status collapsed
26231
26232 \begin_layout Plain Layout
26233
26234 }
26235 \end_layout
26236
26237 \end_inset
26238
26239
26240 \end_layout
26241
26242 \begin_layout Plain Layout
26243 \begin_inset Caption
26244
26245 \begin_layout Plain Layout
26246 \begin_inset CommandInset label
26247 LatexCommand label
26248 name "abb:endnotes"
26249
26250 \end_inset
26251
26252
26253 \series bold
26254 endnotes
26255 \series default
26256  – Die Fußnoten werden am Ende eines Abschnitts in einem eigenen Paragraphen
26257  gedruckt.
26258 \end_layout
26259
26260 \end_inset
26261
26262
26263 \end_layout
26264
26265 \end_inset
26266
26267
26268 \end_layout
26269
26270 \begin_layout Standard
26271 \begin_inset VSpace medskip
26272 \end_inset
26273
26274 Die Absatzüberschrift für die Endnoten wird nicht automatisch in die Dokumentspr
26275 ache übersetzt.
26276  Der folgende Befehl im LaTeX-Vorspann  übersetzt den englischen Namen 
26277 \begin_inset Quotes gld
26278 \end_inset
26279
26280 Notes
26281 \begin_inset Quotes grd
26282 \end_inset
26283
26284  in 
26285 \begin_inset Quotes gld
26286 \end_inset
26287
26288 Anmerkungen
26289 \begin_inset Quotes grd
26290 \end_inset
26291
26292 :
26293 \end_layout
26294
26295 \begin_layout Standard
26296
26297 \series bold
26298
26299 \backslash
26300 renewcommand{
26301 \backslash
26302 notesname}{Anmerkungen}
26303 \end_layout
26304
26305 \begin_layout Standard
26306 \begin_inset VSpace medskip
26307 \end_inset
26308
26309 Wenn Sie in den Befehlen von Abschnitt
26310 \begin_inset space ~
26311 \end_inset
26312
26313
26314 \begin_inset CommandInset ref
26315 LatexCommand ref
26316 reference "uab:Fußnoten-Nummerierung"
26317
26318 \end_inset
26319
26320  
26321 \series bold
26322
26323 \backslash
26324 thefootnote
26325 \series default
26326  durch 
26327 \series bold
26328
26329 \backslash
26330 theendnote
26331 \series default
26332  ersetzen, können Sie die Nummerierung von Endnoten ändern.
26333  Um die Endnoten-Nummern zurückzusetzen, benutzen Sie den Befehl 
26334 \series bold
26335
26336 \backslash
26337 @addtoreset
26338 \series default
26339  wie in Abschnitt
26340 \begin_inset space \space{}
26341 \end_inset
26342
26343
26344 \begin_inset CommandInset ref
26345 LatexCommand ref
26346 reference "uab:Fußnoten-Nummerierung"
26347
26348 \end_inset
26349
26350  beschrieben und ersetzen 
26351 \series bold
26352 footnote
26353 \series default
26354  durch 
26355 \series bold
26356 endnote
26357 \series default
26358 .
26359 \end_layout
26360
26361 \begin_layout Standard
26362 Für Endnoten gibt es den Befehl 
26363 \series bold
26364
26365 \backslash
26366 endnotemark[Nummer]
26367 \series default
26368  analog zum Befehl 
26369 \series bold
26370
26371 \backslash
26372 footnotemark
26373 \series default
26374  der in Abschnitt
26375 \begin_inset space ~
26376 \end_inset
26377
26378
26379 \begin_inset CommandInset ref
26380 LatexCommand ref
26381 reference "abs:Fußnoten"
26382
26383 \end_inset
26384
26385  beschrieben ist.
26386 \end_layout
26387
26388 \begin_layout Standard
26389 \begin_inset VSpace bigskip
26390 \end_inset
26391
26392 Mit dem LaTeX-Paket 
26393 \series bold
26394 footmisc
26395 \series default
26396
26397 \begin_inset Index idx
26398 status collapsed
26399
26400 \begin_layout Plain Layout
26401 LaTeX-Pakete ! footmisc
26402 \end_layout
26403
26404 \end_inset
26405
26406  (
26407 \begin_inset CommandInset citation
26408 LatexCommand cite
26409 key "footmisc"
26410
26411 \end_inset
26412
26413 ) können Sie Fußnoten am Seitenrand drucken und die Textausrichtung ändern.
26414 \end_layout
26415
26416 \begin_layout Standard
26417 In LaTeX-Büchern, 
26418 \begin_inset CommandInset citation
26419 LatexCommand cite
26420 key "latexcompanion,latexguide,lamport,latex-praxisbuch"
26421
26422 \end_inset
26423
26424 , finden Sie weiteres zu Fußnoten.
26425 \end_layout
26426
26427 \begin_layout Section
26428 Randnotizen
26429 \begin_inset Index idx
26430 status collapsed
26431
26432 \begin_layout Plain Layout
26433 Randnotizen
26434 \end_layout
26435
26436 \end_inset
26437
26438
26439 \begin_inset Index idx
26440 status collapsed
26441
26442 \begin_layout Plain Layout
26443 Notizen ! Randnotizen
26444 \end_layout
26445
26446 \end_inset
26447
26448
26449 \end_layout
26450
26451 \begin_layout Standard
26452 Randnotizen sehen in LyX wie Fußnoten aus und verhalten sich auch so.
26453  Sie fügen sie mit einem Klick auf den Schalter 
26454 \begin_inset Graphics
26455         filename ../../images/marginalnote-insert.png
26456         scale 70
26457         scaleBeforeRotation
26458
26459 \end_inset
26460
26461  oder über 
26462 \family sans
26463 Einfügen\SpecialChar \menuseparator
26464 Randnotiz
26465 \family default
26466  ein.
26467  Ein graues Kästchen mit der Aufschrift 
26468 \begin_inset Quotes gld
26469 \end_inset
26470
26471 Rand
26472 \begin_inset Quotes grd
26473 \end_inset
26474
26475  erscheint
26476 \family roman
26477 \series medium
26478 , und dort, wo der Cursor steht, können Sie Text eingeben.
26479 \end_layout
26480
26481 \begin_layout Standard
26482 Hier am Rand sehen Sie eine Randnotiz.
26483  
26484 \begin_inset Marginal
26485 status open
26486
26487 \begin_layout Plain Layout
26488 Dies ist eine Randnotiz.
26489 \end_layout
26490
26491 \end_inset
26492
26493
26494 \end_layout
26495
26496 \begin_layout Standard
26497 In der Druckausgabe von einseitig formatierten Dokumenten werden Randnotizen
26498  am rechten Rand gesetzt, bei doppelseitigen außen – links auf den geraden
26499  Seiten und rechts auf den ungeraden.
26500  Der Text ist rechtsbündig ausgerichtet, wenn die Randnotiz links gedruckt
26501  wird und umgekehrt.
26502  Die erste Zeile einer Randnotiz steht in der Textzeile, in der sie eingefügt
26503  wurde.
26504 \end_layout
26505
26506 \begin_layout Standard
26507 \begin_inset VSpace bigskip
26508 \end_inset
26509
26510 Um eine Randnotiz am inneren Rand zu drucken, fügen Sie den Befehl
26511 \end_layout
26512
26513 \begin_layout Standard
26514
26515 \series bold
26516
26517 \backslash
26518 reversemarginpar
26519 \end_layout
26520
26521 \begin_layout Standard
26522 als TeX-Code vor einer Randnotiz ein.
26523  Das gilt dann für alle folgenden Randnotizen.
26524  
26525 \begin_inset ERT
26526 status collapsed
26527
26528 \begin_layout Plain Layout
26529
26530
26531 \backslash
26532 reversemarginpar 
26533 \end_layout
26534
26535 \end_inset
26536
26537
26538 \begin_inset Marginal
26539 status open
26540
26541 \begin_layout Plain Layout
26542 Hier ist ein Beispiel im inneren Rand.
26543 \end_layout
26544
26545 \end_inset
26546
26547
26548 \begin_inset Newline newline
26549 \end_inset
26550
26551
26552 \begin_inset Note Greyedout
26553 status open
26554
26555 \begin_layout Plain Layout
26556  
26557 \series bold
26558 Achtung:
26559 \series default
26560  Oft ist am inneren Rand nicht genügend Platz, um den Text korrekt zu drucken.
26561 \end_layout
26562
26563 \end_inset
26564
26565
26566 \end_layout
26567
26568 \begin_layout Standard
26569 Um zur Standard-Platzierung zurückzukehren, fügen Sie den Befehl
26570 \end_layout
26571
26572 \begin_layout Standard
26573
26574 \series bold
26575
26576 \backslash
26577 normalmarginpar
26578 \end_layout
26579
26580 \begin_layout Standard
26581 als TeX-Code ein.
26582 \begin_inset ERT
26583 status collapsed
26584
26585 \begin_layout Plain Layout
26586
26587
26588 \backslash
26589 normalmarginpar 
26590 \end_layout
26591
26592 \end_inset
26593
26594
26595 \end_layout
26596
26597 \begin_layout Standard
26598 \begin_inset Note Greyedout
26599 status open
26600
26601 \begin_layout Plain Layout
26602
26603 \series bold
26604 Achtung:
26605 \series default
26606  Der Befehl wird missachtet, wenn er im selben Absatz wie 
26607 \series bold
26608
26609 \backslash
26610 reversemarginpar
26611 \series default
26612  verwendet wird.
26613 \end_layout
26614
26615 \end_inset
26616
26617
26618 \end_layout
26619
26620 \begin_layout Standard
26621 \begin_inset VSpace bigskip
26622 \end_inset
26623
26624
26625 \begin_inset Marginal
26626 status open
26627
26628 \begin_layout Plain Layout
26629
26630 \family roman
26631 \series medium
26632 EinSehrLangesWort am Anfang, das umgebrochen wird.
26633 \end_layout
26634
26635 \end_inset
26636
26637  Ähnlich wie in Abschnitt
26638 \begin_inset space ~
26639 \end_inset
26640
26641
26642 \begin_inset CommandInset ref
26643 LatexCommand ref
26644 reference "uab:Mehrfache-Zeilen-in"
26645
26646 \end_inset
26647
26648  beschrieben können lange Worte nicht umgebrochen werden, wenn sie das erste
26649  Wort der Randnotiz sind.
26650  Um das zu vermeiden, fügen sie 0
26651 \begin_inset space \thinspace{}
26652 \end_inset
26653
26654 pt horizontalen Abstand vor dem Wort ein, so wie hier: 
26655 \begin_inset Marginal
26656 status open
26657
26658 \begin_layout Plain Layout
26659 \begin_inset space \hspace{}
26660 \length 0pt
26661 \end_inset
26662
26663
26664 \family roman
26665 \series medium
26666 EinSehrLangesWort am Anfang, das umgebrochen wird.
26667 \end_layout
26668
26669 \end_inset
26670
26671
26672 \end_layout
26673
26674 \begin_layout Standard
26675 \begin_inset VSpace bigskip
26676 \end_inset
26677
26678
26679 \end_layout
26680
26681 \begin_layout Standard
26682 \begin_inset Note Greyedout
26683 status open
26684
26685 \begin_layout Plain Layout
26686
26687 \series bold
26688 Bemerkung:
26689 \series default
26690  Randnotizen können ohne Tricks nicht in Tabellen, Gleitumgebungen und Fußnoten
26691  verwendet werden.
26692 \end_layout
26693
26694 \end_inset
26695
26696
26697 \end_layout
26698
26699 \begin_layout Standard
26700 \begin_inset VSpace bigskip
26701 \end_inset
26702
26703
26704 \end_layout
26705
26706 \begin_layout Standard
26707 \begin_inset ERT
26708 status collapsed
26709
26710 \begin_layout Plain Layout
26711
26712
26713 \backslash
26714 ifmarginnote
26715 \end_layout
26716
26717 \end_inset
26718
26719
26720 \begin_inset Note Note
26721 status open
26722
26723 \begin_layout Plain Layout
26724 Der folgende Abschnitt wird nur gedruckt, wenn das LaTeX-Paket 
26725 \series bold
26726 marginnote
26727 \series default
26728  installiert ist.
26729 \end_layout
26730
26731 \end_inset
26732
26733
26734 \end_layout
26735
26736 \begin_layout Standard
26737 Diese Einschränkung kann umgangen werden, wenn das LaTeX-Paket 
26738 \series bold
26739 marginnote
26740 \series default
26741
26742 \begin_inset Index idx
26743 status collapsed
26744
26745 \begin_layout Plain Layout
26746 LaTeX-Pakete ! marginnote
26747 \end_layout
26748
26749 \end_inset
26750
26751  verwendet wird.
26752  Wenn Sie diese zwei Zeilen zum LaTeX-Vorspann hinzufügen, wird der Befehl,
26753  der von LyX für Randnotizen verwendet wird, umdefiniert, so dass der Befehl
26754  des Pakets 
26755 \series bold
26756 marginnote
26757 \series default
26758  für Randnotizen verwendet wird:
26759 \end_layout
26760
26761 \begin_layout Standard
26762
26763 \series bold
26764
26765 \backslash
26766 usepackage{marginnote}
26767 \begin_inset Newline newline
26768 \end_inset
26769
26770
26771 \backslash
26772 let
26773 \backslash
26774 marginpar
26775 \backslash
26776 marginnote
26777 \end_layout
26778
26779 \begin_layout Standard
26780 Dies wird auch in diesem Dokument verwendet, denn 
26781 \series bold
26782 marginnote
26783 \series default
26784  hat eine andere nützliche Eigenschaft: Man kann einen vertikalen Versatz
26785  für Randnotizen angeben.
26786  Dies wird oft für ein besseres Seitenformat verwendet, wenn zu viele Randnotize
26787 n zu dicht beieinander sind.
26788  Der Versatz wird in LyX als TeX-Code direkt nach der Randnotiz mit dem
26789  Schema
26790 \end_layout
26791
26792 \begin_layout Standard
26793
26794 \series bold
26795 [Versatz]
26796 \end_layout
26797
26798 \begin_layout Standard
26799 angegeben.
26800  Dabei ist der Versatz eine Länge mit einer der Einheiten, die in Tabelle
26801 \begin_inset space ~
26802 \end_inset
26803
26804
26805 \begin_inset CommandInset ref
26806 LatexCommand ref
26807 reference "tab:Maßeinheiten"
26808
26809 \end_inset
26810
26811  aufgelistet sind.
26812  Ein negativer Wert versetzt die Randnotiz nach oben, ein positiver Wert
26813  nach unten.
26814  Zum Beispiel ist die Randnotiz neben diesem Text um 1.5
26815 \begin_inset space \thinspace{}
26816 \end_inset
26817
26818 cm mit dem TeX-Code-Befehl  
26819 \begin_inset Quotes gld
26820 \end_inset
26821
26822
26823 \series bold
26824 [-1.5cm]
26825 \series default
26826
26827 \begin_inset Quotes grd
26828 \end_inset
26829
26830  nach oben versetzt.
26831 \begin_inset Marginal
26832 status open
26833
26834 \begin_layout Plain Layout
26835 Diese Randnotiz ist 1.5
26836 \begin_inset space \thinspace{}
26837 \end_inset
26838
26839 cm von ihrer Originalposition nach oben versetzt.
26840 \end_layout
26841
26842 \end_inset
26843
26844
26845 \begin_inset ERT
26846 status collapsed
26847
26848 \begin_layout Plain Layout
26849
26850 [-1.5cm]
26851 \end_layout
26852
26853 \end_inset
26854
26855
26856 \end_layout
26857
26858 \begin_layout Standard
26859 \begin_inset VSpace medskip
26860 \end_inset
26861
26862 Mit 
26863 \series bold
26864 marginnote
26865 \series default
26866  können Sie auch die Ausrichtung des Texts in der Randnotiz ändern.
26867  Zum Beispiel setzen die Befehle
26868 \end_layout
26869
26870 \begin_layout Standard
26871
26872 \series bold
26873
26874 \backslash
26875 renewcommand*{
26876 \backslash
26877 raggedleftmarginnote}{
26878 \backslash
26879 centering}
26880 \begin_inset Newline newline
26881 \end_inset
26882
26883
26884 \backslash
26885 renewcommand*{
26886 \backslash
26887 raggedrightmarginnote}{
26888 \backslash
26889 centering}
26890 \end_layout
26891
26892 \begin_layout Standard
26893 die Ausrichtung auf zentriert.
26894  
26895 \series bold
26896
26897 \backslash
26898 raggedleftmarginnote
26899 \series default
26900  bewirkt dabei, dass die Randnotiz auf der linken Seite erscheint.
26901  
26902 \begin_inset ERT
26903 status collapsed
26904
26905 \begin_layout Plain Layout
26906
26907
26908 \backslash
26909 renewcommand*{
26910 \backslash
26911 raggedleftmarginnote}{
26912 \backslash
26913 centering}
26914 \end_layout
26915
26916 \begin_layout Plain Layout
26917
26918
26919 \backslash
26920 renewcommand*{
26921 \backslash
26922 raggedrightmarginnote}{
26923 \backslash
26924 centering}
26925 \end_layout
26926
26927 \end_inset
26928
26929
26930 \begin_inset Marginal
26931 status open
26932
26933 \begin_layout Plain Layout
26934 Der Text dieser Randnotiz ist zentriert ausgerichtet.
26935 \end_layout
26936
26937 \end_inset
26938
26939  Die Voreinstellung ist
26940 \end_layout
26941
26942 \begin_layout Standard
26943
26944 \series bold
26945
26946 \backslash
26947 renewcommand*{
26948 \backslash
26949 raggedleftmarginnote}{
26950 \backslash
26951 raggedleft}
26952 \begin_inset Newline newline
26953 \end_inset
26954
26955
26956 \backslash
26957 renewcommand*{
26958 \backslash
26959 raggedrightmarginnote}{
26960 \backslash
26961 raggedright}
26962 \series default
26963
26964 \begin_inset ERT
26965 status collapsed
26966
26967 \begin_layout Plain Layout
26968
26969
26970 \backslash
26971 renewcommand*{
26972 \backslash
26973 raggedleftmarginnote}{
26974 \backslash
26975 raggedleft}
26976 \end_layout
26977
26978 \begin_layout Plain Layout
26979
26980
26981 \backslash
26982 renewcommand*{
26983 \backslash
26984 raggedrightmarginnote}{
26985 \backslash
26986 raggedright}
26987 \end_layout
26988
26989 \end_inset
26990
26991
26992 \end_layout
26993
26994 \begin_layout Standard
26995 \begin_inset VSpace medskip
26996 \end_inset
26997
26998 Für weitere Fähigkeiten des Pakets 
26999 \series bold
27000 marginnote
27001 \series default
27002  sei auf dessen Dokumentation verwiesen 
27003 \begin_inset CommandInset citation
27004 LatexCommand cite
27005 key "marginnote"
27006
27007 \end_inset
27008
27009 .
27010 \end_layout
27011
27012 \begin_layout Standard
27013 \begin_inset VSpace bigskip
27014 \end_inset
27015
27016 Das Format von Randnotizen kann allgemein durch Änderung ihrer Definition
27017  geändert werden.
27018  Um z.
27019 \begin_inset space \thinspace{}
27020 \end_inset
27021
27022 B.
27023  eine Überschrift für alle Randnotizen mit dem unterstrichenen, serifenlosen
27024  und fettgedruckten Text 
27025 \begin_inset Quotes eld
27026 \end_inset
27027
27028
27029 \family sans
27030 \series bold
27031 \bar under
27032 Achtung!
27033 \family default
27034 \series default
27035 \bar default
27036
27037 \begin_inset Quotes erd
27038 \end_inset
27039
27040  zu erstellen, fügen Sie dies zum LaTeX-Vorspann hinzu:
27041 \end_layout
27042
27043 \begin_layout Standard
27044
27045 \series bold
27046
27047 \backslash
27048 let
27049 \backslash
27050 myMarginpar
27051 \backslash
27052 marginpar
27053 \begin_inset Newline newline
27054 \end_inset
27055
27056
27057 \backslash
27058 renewcommand{
27059 \backslash
27060 marginpar}[1]{
27061 \backslash
27062 myMarginpar{%
27063 \begin_inset Newline newline
27064 \end_inset
27065
27066
27067 \begin_inset Phantom HPhantom
27068 status open
27069
27070 \begin_layout Plain Layout
27071
27072 \series bold
27073 \begin_inset space ~
27074 \end_inset
27075
27076
27077 \end_layout
27078
27079 \end_inset
27080
27081
27082 \backslash
27083 hspace{0pt}
27084 \backslash
27085 textsf{
27086 \backslash
27087 textbf{
27088 \backslash
27089 underbar{Achtung!}}}%
27090 \begin_inset Newline newline
27091 \end_inset
27092
27093
27094 \begin_inset Phantom HPhantom
27095 status open
27096
27097 \begin_layout Plain Layout
27098
27099 \series bold
27100 \begin_inset space ~
27101 \end_inset
27102
27103
27104 \end_layout
27105
27106 \end_inset
27107
27108
27109 \backslash
27110 vspace{1.5mm}
27111 \backslash
27112
27113 \backslash
27114 #1}}
27115 \end_layout
27116
27117 \begin_layout Standard
27118 \begin_inset ERT
27119 status collapsed
27120
27121 \begin_layout Plain Layout
27122
27123
27124 \backslash
27125 let
27126 \backslash
27127 myMarginpar
27128 \backslash
27129 marginpar
27130 \end_layout
27131
27132 \begin_layout Plain Layout
27133
27134
27135 \backslash
27136 renewcommand{
27137 \backslash
27138 marginpar}[1]{
27139 \backslash
27140 myMarginpar{%
27141 \end_layout
27142
27143 \begin_layout Plain Layout
27144
27145    
27146 \backslash
27147 textsf{
27148 \backslash
27149 textbf{
27150 \backslash
27151 underbar{Achtung!}}}%
27152 \end_layout
27153
27154 \begin_layout Plain Layout
27155
27156    
27157 \backslash
27158 vspace{1.5mm}
27159 \backslash
27160
27161 \backslash
27162 #1}}
27163 \end_layout
27164
27165 \end_inset
27166
27167
27168 \begin_inset Marginal
27169 status open
27170
27171 \begin_layout Plain Layout
27172 Dies ist eine Randnotiz mit einer definierten Überschrift.
27173 \end_layout
27174
27175 \end_inset
27176
27177
27178 \begin_inset ERT
27179 status collapsed
27180
27181 \begin_layout Plain Layout
27182
27183 [-1.5cm]
27184 \end_layout
27185
27186 \end_inset
27187
27188
27189 \begin_inset ERT
27190 status collapsed
27191
27192 \begin_layout Plain Layout
27193
27194
27195 \backslash
27196 renewcommand{
27197 \backslash
27198 marginpar}[1]{
27199 \backslash
27200 myMarginpar{#1}}
27201 \end_layout
27202
27203 \end_inset
27204
27205
27206 \begin_inset Note Note
27207 status open
27208
27209 \begin_layout Plain Layout
27210 Das Format wurde nur für dieses Beispiel geändert.
27211 \end_layout
27212
27213 \end_inset
27214
27215
27216 \end_layout
27217
27218 \begin_layout Standard
27219 \begin_inset ERT
27220 status collapsed
27221
27222 \begin_layout Plain Layout
27223
27224
27225 \backslash
27226 else
27227 \end_layout
27228
27229 \end_inset
27230
27231
27232 \begin_inset Note Note
27233 status open
27234
27235 \begin_layout Plain Layout
27236 Der folgende Hinweis wird gedruckt, wenn das LaTeX-Paket 
27237 \series bold
27238 marginnote
27239 \series default
27240  nicht installiert ist:
27241 \end_layout
27242
27243 \end_inset
27244
27245
27246 \end_layout
27247
27248 \begin_layout Standard
27249 Das LaTeX-Paket 
27250 \series bold
27251 marginnote
27252 \series default
27253  muss installiert sein, um den folgenden Abschnitt in der Ausgabe zu sehen.
27254 \end_layout
27255
27256 \begin_layout Standard
27257 \begin_inset ERT
27258 status collapsed
27259
27260 \begin_layout Plain Layout
27261
27262
27263 \backslash
27264 fi
27265 \end_layout
27266
27267 \end_inset
27268
27269
27270 \end_layout
27271
27272 \begin_layout Chapter
27273 Boxen
27274 \end_layout
27275
27276 \begin_layout Section
27277 Einleitung
27278 \begin_inset Index idx
27279 status collapsed
27280
27281 \begin_layout Plain Layout
27282 Boxen ! Einleitung
27283 \end_layout
27284
27285 \end_inset
27286
27287
27288 \end_layout
27289
27290 \begin_layout Standard
27291 Boxen werden benutzt, um einen Textblock zu formatieren.
27292  Sie können benutzt werden, um Dokumente in mehreren Sprachen zu schreiben,
27293  siehe Abschnitt
27294 \begin_inset space ~
27295 \end_inset
27296
27297
27298 \begin_inset CommandInset ref
27299 LatexCommand ref
27300 reference "abs:Minipage"
27301
27302 \end_inset
27303
27304 , um Text zu umrahmen, siehe Abschnitt
27305 \begin_inset space ~
27306 \end_inset
27307
27308
27309 \begin_inset CommandInset ref
27310 LatexCommand ref
27311 reference "uab:Verzierung"
27312
27313 \end_inset
27314
27315 , um Silbentrennung zu verhindern, siehe Abschnitt
27316 \begin_inset space ~
27317 \end_inset
27318
27319
27320 \begin_inset CommandInset ref
27321 LatexCommand ref
27322 reference "abs:Silbentrennung-unterbinden"
27323
27324 \end_inset
27325
27326 , um Text senkrecht auszurichten, siehe Abschnitt
27327 \begin_inset space ~
27328 \end_inset
27329
27330
27331 \begin_inset CommandInset ref
27332 LatexCommand ref
27333 reference "uab:Vertikale-Ausrichtung"
27334
27335 \end_inset
27336
27337  oder um die Hintergrundfarbe von Texten zu setzen, siehe Abschnitt
27338 \begin_inset space ~
27339 \end_inset
27340
27341
27342 \begin_inset CommandInset ref
27343 LatexCommand ref
27344 reference "abs:Farbige-Boxen"
27345
27346 \end_inset
27347
27348 .
27349 \end_layout
27350
27351 \begin_layout Standard
27352 Boxen werden mit 
27353 \family sans
27354 Einfügen\SpecialChar \menuseparator
27355 Box
27356 \family default
27357  oder dem Schalter 
27358 \begin_inset Graphics
27359         filename ../../images/box-insert.png
27360         scale 70
27361         scaleBeforeRotation
27362
27363 \end_inset
27364
27365  eingefügt.
27366  Ein graues Kästchen mit der Aufschrift 
27367 \begin_inset Quotes gld
27368 \end_inset
27369
27370 Box (Minipage)
27371 \begin_inset Quotes grd
27372 \end_inset
27373
27374  erscheint: 
27375 \begin_inset Graphics
27376         filename clipart/StandardBoxQt4.png
27377         scale 85
27378         scaleBeforeRotation
27379
27380 \end_inset
27381
27382  Mit einem Rechts\SpecialChar \-
27383 klick auf das graue Kästchen und der Auswahl von 
27384 \family sans
27385 Einstellungen
27386 \family default
27387  kann der Typ spezifiziert werden.
27388  Das Dialogfenster bietet bei 
27389 \family sans
27390 Innere
27391 \begin_inset space ~
27392 \end_inset
27393
27394 Box
27395 \family default
27396  die Typen 
27397 \family sans
27398 Parbox
27399 \family default
27400  und 
27401 \family sans
27402 Minipage
27403 \family default
27404  an.
27405  
27406 \family sans
27407 Minipage
27408 \family default
27409  ist die Standard-Einstellung für neue Boxen und in Abschnitt
27410 \begin_inset space ~
27411 \end_inset
27412
27413
27414 \begin_inset CommandInset ref
27415 LatexCommand ref
27416 reference "abs:Minipage"
27417
27418 \end_inset
27419
27420  beschrieben, 
27421 \family sans
27422 Parbox
27423 \family default
27424  in Abschnitt
27425 \begin_inset space ~
27426 \end_inset
27427
27428
27429 \begin_inset CommandInset ref
27430 LatexCommand ref
27431 reference "abs:Parbox"
27432
27433 \end_inset
27434
27435 .
27436 \end_layout
27437
27438 \begin_layout Standard
27439 Boxen sind nicht nummeriert, und Sie können deshalb nicht auf sie verweisen
27440  wie auf Gleitobjekte und Fußnoten.
27441 \end_layout
27442
27443 \begin_layout Standard
27444 \begin_inset Note Greyedout
27445 status open
27446
27447 \begin_layout Plain Layout
27448
27449 \series bold
27450 Bemerkung
27451 \begin_inset space ~
27452 \end_inset
27453
27454 1:
27455 \series default
27456  Boxen dürfen in 
27457 \family sans
27458 List-
27459 \family default
27460  oder 
27461 \family sans
27462 Beschreibung-
27463 \family default
27464 Umgebungen nicht verwendet werden.
27465 \end_layout
27466
27467 \end_inset
27468
27469
27470 \end_layout
27471
27472 \begin_layout Standard
27473 \begin_inset Note Greyedout
27474 status open
27475
27476 \begin_layout Plain Layout
27477
27478 \series bold
27479 Bemerkung
27480 \begin_inset space ~
27481 \end_inset
27482
27483 2:
27484 \series default
27485  Boxen ohne 
27486 \family sans
27487 Innere
27488 \begin_inset space ~
27489 \end_inset
27490
27491 Box
27492 \family default
27493  und ohne Rahmen werden in Abschnitt
27494 \begin_inset space ~
27495 \end_inset
27496
27497
27498 \begin_inset CommandInset ref
27499 LatexCommand ref
27500 reference "abs:Silbentrennung-unterbinden"
27501
27502 \end_inset
27503
27504  beschrieben.
27505 \end_layout
27506
27507 \end_inset
27508
27509
27510 \end_layout
27511
27512 \begin_layout Section
27513 Das Box-Einstellungen-Fenster
27514 \begin_inset CommandInset label
27515 LatexCommand label
27516 name "abs:Box-Dialog"
27517
27518 \end_inset
27519
27520
27521 \begin_inset Index idx
27522 status collapsed
27523
27524 \begin_layout Plain Layout
27525 Boxen ! Box-Dialog-Fenster
27526 \end_layout
27527
27528 \end_inset
27529
27530
27531 \end_layout
27532
27533 \begin_layout Subsection
27534 Box-Größe
27535 \begin_inset Index idx
27536 status collapsed
27537
27538 \begin_layout Plain Layout
27539 Boxen ! Größe
27540 \end_layout
27541
27542 \end_inset
27543
27544
27545 \end_layout
27546
27547 \begin_layout Standard
27548 Im 
27549 \family sans
27550 Box-Einstellungen
27551 \family default
27552 -Fenster können Sie die Größe der Box mit 
27553 \family sans
27554 Breite
27555 \family default
27556  und 
27557 \family sans
27558 Höhe 
27559 \family default
27560 festlegen.
27561  Die verfügbaren Einheiten werden in Tabelle
27562 \begin_inset space ~
27563 \end_inset
27564
27565
27566 \begin_inset CommandInset ref
27567 LatexCommand ref
27568 reference "tab:Maßeinheiten"
27569
27570 \end_inset
27571
27572  aufgelistet.
27573  Das Feld
27574 \family sans
27575  Höhe
27576 \family default
27577  bietet die folgenden zusätzlichen Größen:
27578 \end_layout
27579
27580 \begin_layout Description
27581 Tiefe Dies ist die reine Text-
27582 \begin_inset Quotes gld
27583 \end_inset
27584
27585 Höhe
27586 \begin_inset Quotes grd
27587 \end_inset
27588
27589 .
27590  Sie ignoriert die Gesamthöhe, wenn es mehrere Textzeilen gibt:
27591 \begin_inset Newline newline
27592 \end_inset
27593
27594
27595 \begin_inset Newline newline
27596 \end_inset
27597
27598
27599 \begin_inset Newline newline
27600 \end_inset
27601
27602
27603 \begin_inset Box Boxed
27604 position "c"
27605 hor_pos "c"
27606 has_inner_box 1
27607 inner_pos "c"
27608 use_parbox 0
27609 use_makebox 0
27610 width "12col%"
27611 special "none"
27612 height "1in"
27613 height_special "depth"
27614 status collapsed
27615
27616 \begin_layout Plain Layout
27617 \align center
27618 Box-Höhe = 1
27619 \begin_inset space \thinspace{}
27620 \end_inset
27621
27622 Tiefe
27623 \end_layout
27624
27625 \end_inset
27626
27627
27628 \begin_inset Newline newline
27629 \end_inset
27630
27631
27632 \begin_inset Newline newline
27633 \end_inset
27634
27635
27636 \end_layout
27637
27638 \begin_layout Description
27639 Höhe Dies ist die Texthöhe innerhalb der Box.
27640  Der Wert 2 für diese Größe wird die Boxhöhe auf den zweifachen Wert der
27641  Texthöhe setzen: 
27642 \begin_inset Box Boxed
27643 position "c"
27644 hor_pos "c"
27645 has_inner_box 1
27646 inner_pos "c"
27647 use_parbox 0
27648 use_makebox 0
27649 width "20col%"
27650 special "none"
27651 height "2in"
27652 height_special "height"
27653 status collapsed
27654
27655 \begin_layout Plain Layout
27656 \align center
27657 Boxhöhe = 2
27658 \begin_inset space \thinspace{}
27659 \end_inset
27660
27661 Höhe
27662 \end_layout
27663
27664 \end_inset
27665
27666
27667 \end_layout
27668
27669 \begin_layout Description
27670 Gesamthöhe Dies ist Höhe
27671 \begin_inset space \thinspace{}
27672 \end_inset
27673
27674 +
27675 \begin_inset space \thinspace{}
27676 \end_inset
27677
27678 Tiefe: 
27679 \begin_inset Box Boxed
27680 position "c"
27681 hor_pos "c"
27682 has_inner_box 1
27683 inner_pos "c"
27684 use_parbox 0
27685 use_makebox 0
27686 width "20col%"
27687 special "none"
27688 height "1in"
27689 height_special "totalheight"
27690 status collapsed
27691
27692 \begin_layout Plain Layout
27693 \align center
27694 Boxhöhe = 1
27695 \begin_inset space \thinspace{}
27696 \end_inset
27697
27698 Gesamthöhe
27699 \end_layout
27700
27701 \end_inset
27702
27703
27704 \end_layout
27705
27706 \begin_layout Description
27707 Breite Dies setzt Höhe = Breite, das heißt, die Box wird quadratisch: 
27708 \begin_inset Box Boxed
27709 position "c"
27710 hor_pos "c"
27711 has_inner_box 1
27712 inner_pos "c"
27713 use_parbox 0
27714 use_makebox 0
27715 width "12col%"
27716 special "none"
27717 height "1in"
27718 height_special "width"
27719 status collapsed
27720
27721 \begin_layout Plain Layout
27722 \align center
27723 Boxhöhe = 1
27724 \begin_inset space \thinspace{}
27725 \end_inset
27726
27727 Breite
27728 \end_layout
27729
27730 \end_inset
27731
27732
27733 \end_layout
27734
27735 \begin_layout Subsection
27736 Ausrichtung
27737 \begin_inset Index idx
27738 status collapsed
27739
27740 \begin_layout Plain Layout
27741 Boxen ! Ausrichtung
27742 \end_layout
27743
27744 \end_inset
27745
27746
27747 \end_layout
27748
27749 \begin_layout Standard
27750 Wenn Sie eine 
27751 \family sans
27752 Innere
27753 \begin_inset space ~
27754 \end_inset
27755
27756 Box
27757 \family default
27758  gewählt haben, kann die Box mit folgenden Werten für 
27759 \family sans
27760 Box
27761 \family default
27762  senkrecht ausgerichtet werden:
27763 \end_layout
27764
27765 \begin_layout Description
27766 Oben Dies ist ein Beispieltext.
27767  
27768 \begin_inset Box Boxed
27769 position "t"
27770 hor_pos "c"
27771 has_inner_box 1
27772 inner_pos "c"
27773 use_parbox 0
27774 use_makebox 0
27775 width "20col%"
27776 special "none"
27777 height "1in"
27778 height_special "totalheight"
27779 status collapsed
27780
27781 \begin_layout Plain Layout
27782 \align center
27783 Die Ober\SpecialChar \-
27784 kante der Box ist in der Zeile.
27785 \end_layout
27786
27787 \end_inset
27788
27789  Dies ist ein Beispieltext.
27790 \end_layout
27791
27792 \begin_layout Description
27793 Mitte Dies ist ein Beispieltext.
27794  
27795 \begin_inset Box Boxed
27796 position "c"
27797 hor_pos "c"
27798 has_inner_box 1
27799 inner_pos "c"
27800 use_parbox 0
27801 use_makebox 0
27802 width "20col%"
27803 special "none"
27804 height "1in"
27805 height_special "totalheight"
27806 status collapsed
27807
27808 \begin_layout Plain Layout
27809 \align center
27810 Die Mitte der Box ist in der Zeile.
27811 \end_layout
27812
27813 \end_inset
27814
27815  Dies ist ein Beispieltext.
27816 \end_layout
27817
27818 \begin_layout Description
27819 Unten Dies ist ein Beispieltext.
27820  
27821 \begin_inset Box Boxed
27822 position "b"
27823 hor_pos "c"
27824 has_inner_box 1
27825 inner_pos "c"
27826 use_parbox 0
27827 use_makebox 0
27828 width "20col%"
27829 special "none"
27830 height "1in"
27831 height_special "totalheight"
27832 status collapsed
27833
27834 \begin_layout Plain Layout
27835 \align center
27836 Die Unter\SpecialChar \-
27837 kante der Box ist in der Zeile.
27838 \end_layout
27839
27840 \end_inset
27841
27842  Dies ist ein Beispieltext.
27843 \end_layout
27844
27845 \begin_layout Standard
27846 \begin_inset Note Greyedout
27847 status open
27848
27849 \begin_layout Plain Layout
27850
27851 \series bold
27852 Bemerkung:
27853 \series default
27854  Die senkrechte Boxausrichtung kann in der Ausgabe verloren gehen wenn zwei
27855  Boxen in einer Zeile sind und eine Box z.
27856 \begin_inset space \thinspace{}
27857 \end_inset
27858
27859 B.
27860  schattiert ist, die andere aber nicht.
27861 \end_layout
27862
27863 \end_inset
27864
27865
27866 \end_layout
27867
27868 \begin_layout Standard
27869 Eine Box kann mit dem Dialog 
27870 \family sans
27871 Absatz-Einstellungen
27872 \family default
27873  waagerecht ausgerichtet werden, wenn die Box in einem eigenen Absatz steht.
27874 \end_layout
27875
27876 \begin_layout Standard
27877 \begin_inset VSpace bigskip
27878 \end_inset
27879
27880 Wenn Sie eine 
27881 \family sans
27882 Innere
27883 \begin_inset space ~
27884 \end_inset
27885
27886 Box
27887 \family default
27888  gewählt haben, kann der Inhalt der Box mit folgenden Werten für 
27889 \family sans
27890 Inhalt
27891 \family default
27892  senkrecht ausgerichtet werden:
27893 \end_layout
27894
27895 \begin_layout Description
27896 Oben Dies ist ein Beispieltext.
27897  
27898 \begin_inset Box Boxed
27899 position "c"
27900 hor_pos "c"
27901 has_inner_box 1
27902 inner_pos "t"
27903 use_parbox 0
27904 use_makebox 0
27905 width "20col%"
27906 special "none"
27907 height "1.5in"
27908 height_special "totalheight"
27909 status collapsed
27910
27911 \begin_layout Plain Layout
27912 \align center
27913 Der Boxinhalt ist am oberen Boxrand ausgerichtet.
27914 \end_layout
27915
27916 \end_inset
27917
27918  Dies ist ein Beispieltext.
27919 \end_layout
27920
27921 \begin_layout Description
27922 Mitte Dies ist ein Beispieltext.
27923  
27924 \begin_inset Box Boxed
27925 position "c"
27926 hor_pos "c"
27927 has_inner_box 1
27928 inner_pos "c"
27929 use_parbox 0
27930 use_makebox 0
27931 width "20col%"
27932 special "none"
27933 height "1.5in"
27934 height_special "totalheight"
27935 status collapsed
27936
27937 \begin_layout Plain Layout
27938 \align center
27939 Der Boxinhalt ist zentriert ausgerichtet.
27940 \end_layout
27941
27942 \end_inset
27943
27944  Dies ist ein Beispieltext.
27945 \end_layout
27946
27947 \begin_layout Description
27948 Unten Dies ist ein Beispieltext.
27949  
27950 \begin_inset Box Boxed
27951 position "c"
27952 hor_pos "c"
27953 has_inner_box 1
27954 inner_pos "b"
27955 use_parbox 0
27956 use_makebox 0
27957 width "20col%"
27958 special "none"
27959 height "1.5in"
27960 height_special "totalheight"
27961 status collapsed
27962
27963 \begin_layout Plain Layout
27964 \align center
27965 Der Boxinhalt ist am unteren Boxrand ausgerichtet.
27966 \end_layout
27967
27968 \end_inset
27969
27970  Dies ist ein Beispieltext.
27971 \end_layout
27972
27973 \begin_layout Description
27974 Dehnen Dies ist ein Beispieltext.
27975  
27976 \begin_inset Box Boxed
27977 position "c"
27978 hor_pos "c"
27979 has_inner_box 1
27980 inner_pos "s"
27981 use_parbox 0
27982 use_makebox 0
27983 width "20col%"
27984 special "none"
27985 height "1in"
27986 height_special "totalheight"
27987 status collapsed
27988
27989 \begin_layout Plain Layout
27990 \align center
27991 Der Boxinhalt
27992 \end_layout
27993
27994 \begin_layout Plain Layout
27995 \align center
27996 ist über die
27997 \end_layout
27998
27999 \begin_layout Plain Layout
28000 \align center
28001 Boxhöhe
28002 \end_layout
28003
28004 \begin_layout Plain Layout
28005 \align center
28006 gleichmäßig verteilt.
28007 \end_layout
28008
28009 \end_inset
28010
28011  Dies ist ein Beispieltext.
28012 \end_layout
28013
28014 \begin_layout Standard
28015 Das Dehnen funktioniert aber nur, wenn der Boxinhalt aus mehreren Absätzen
28016  besteht.
28017  Im obigen Beispiel ist jede Zeile ein eigener Absatz.
28018 \end_layout
28019
28020 \begin_layout Standard
28021 Ein Boxinhalt kann mit dem Dialog 
28022 \family sans
28023 Absatz-Einstellungen
28024 \family default
28025  waagerecht ausgerichtet werden, wenn Sie eine
28026 \family sans
28027  Innere
28028 \begin_inset space ~
28029 \end_inset
28030
28031 Box
28032 \family default
28033  gewählt haben.
28034 \end_layout
28035
28036 \begin_layout Standard
28037 \align center
28038 \begin_inset Box Boxed
28039 position "c"
28040 hor_pos "c"
28041 has_inner_box 1
28042 inner_pos "s"
28043 use_parbox 0
28044 use_makebox 0
28045 width "30col%"
28046 special "none"
28047 height "1.25in"
28048 height_special "totalheight"
28049 status collapsed
28050
28051 \begin_layout Plain Layout
28052 \align left
28053 Hier ist jede Zeile
28054 \end_layout
28055
28056 \begin_layout Plain Layout
28057 \align center
28058 anders
28059 \end_layout
28060
28061 \begin_layout Plain Layout
28062 \align right
28063 ausgerichtet.
28064 \end_layout
28065
28066 \end_inset
28067
28068
28069 \end_layout
28070
28071 \begin_layout Standard
28072 Wenn Sie keine
28073 \family sans
28074  Innere
28075 \begin_inset space ~
28076 \end_inset
28077
28078 Box
28079 \family default
28080  gewählt haben, können Sie den Boxinhalt waagerecht mit dem 
28081 \family sans
28082 Box-Einstellungen-
28083 \family default
28084 Dialog ausrichten
28085 \end_layout
28086
28087 \begin_layout Standard
28088 \align center
28089 \begin_inset Box Boxed
28090 position "c"
28091 hor_pos "s"
28092 has_inner_box 0
28093 inner_pos "s"
28094 use_parbox 0
28095 use_makebox 0
28096 width "90col%"
28097 special "none"
28098 height "1.25in"
28099 height_special "totalheight"
28100 status collapsed
28101
28102 \begin_layout Plain Layout
28103 \align left
28104 Dieser Boxinhalt wurde horizontal gedehnt.
28105 \end_layout
28106
28107 \end_inset
28108
28109
28110 \end_layout
28111
28112 \begin_layout Subsection
28113 Verzierung
28114 \begin_inset CommandInset label
28115 LatexCommand label
28116 name "uab:Verzierung"
28117
28118 \end_inset
28119
28120
28121 \begin_inset Index idx
28122 status collapsed
28123
28124 \begin_layout Plain Layout
28125 Boxen ! Verzierung
28126 \end_layout
28127
28128 \end_inset
28129
28130
28131 \end_layout
28132
28133 \begin_layout Standard
28134 Im 
28135 \family sans
28136 Box-Einstellungen-
28137 \family default
28138 Dialog können Sie mit der 
28139 \family sans
28140 Verzierung
28141 \family default
28142  den Typ der Box auswählen:
28143 \end_layout
28144
28145 \begin_layout Description
28146 Einfacher
28147 \begin_inset space ~
28148 \end_inset
28149
28150 rechteckiger
28151 \begin_inset space ~
28152 \end_inset
28153
28154 Rahmen Um die Box wird ein rechteckiger Rahmen gezogen.
28155  Die Rahmendicke wird durch 
28156 \series bold
28157
28158 \backslash
28159 fboxrule
28160 \series default
28161  festgelegt.
28162  
28163 \begin_inset Box Boxed
28164 position "c"
28165 hor_pos "c"
28166 has_inner_box 1
28167 inner_pos "c"
28168 use_parbox 0
28169 use_makebox 0
28170 width "21col%"
28171 special "none"
28172 height "1in"
28173 height_special "totalheight"
28174 status collapsed
28175
28176 \begin_layout Plain Layout
28177
28178 \series medium
28179 Rechteckige
28180 \begin_inset space ~
28181 \end_inset
28182
28183 Box
28184 \end_layout
28185
28186 \end_inset
28187
28188
28189 \end_layout
28190
28191 \begin_layout Description
28192 erlaube
28193 \begin_inset space ~
28194 \end_inset
28195
28196 Seitenumbrüche Wenn Sie die Verzierung 
28197 \family sans
28198 Einfacher rechteckiger Rahmen
28199 \family default
28200  und keine innere Box verwenden, können Sie Seitenumbrüche in der Box erlauben.
28201  Beachten Sie, dass im Gegensatz zu anderen gerahmten Boxen, der Rahmen
28202  immer über die gesamte Zeilenbreite gezeichnet wird, die Box ein Absatz
28203  für sich ist und 
28204 \series bold
28205
28206 \backslash
28207 fboxrule
28208 \series default
28209  und 
28210 \series bold
28211
28212 \backslash
28213 fboxsep
28214 \series default
28215  keinen Einfluss auf diesen Box Typ haben.
28216  Die Rahmendicke wird durch 
28217 \series bold
28218
28219 \backslash
28220 FrameRule
28221 \series default
28222  festgelegt.
28223  
28224 \begin_inset Box Framed
28225 position "t"
28226 hor_pos "c"
28227 has_inner_box 0
28228 inner_pos "t"
28229 use_parbox 0
28230 use_makebox 0
28231 width "100col%"
28232 special "none"
28233 height "1in"
28234 height_special "totalheight"
28235 status collapsed
28236
28237 \begin_layout Plain Layout
28238 Box erlaubt Seitenumbruch
28239 \end_layout
28240
28241 \end_inset
28242
28243
28244 \end_layout
28245
28246 \begin_layout Description
28247 Ovaler
28248 \begin_inset space ~
28249 \end_inset
28250
28251 Rahmen,
28252 \begin_inset space ~
28253 \end_inset
28254
28255 dünn zeichnet einen dünnen Rahmen mit abgerundeten Ecken um die Box.
28256  Die Rahmendicke ist 0.4
28257 \begin_inset space \thinspace{}
28258 \end_inset
28259
28260 pt.
28261  
28262 \begin_inset Box ovalbox
28263 position "c"
28264 hor_pos "c"
28265 has_inner_box 1
28266 inner_pos "c"
28267 use_parbox 0
28268 use_makebox 0
28269 width "20col%"
28270 special "none"
28271 height "1in"
28272 height_special "totalheight"
28273 status collapsed
28274
28275 \begin_layout Plain Layout
28276 Ovale
28277 \begin_inset space ~
28278 \end_inset
28279
28280 Box,
28281 \begin_inset space ~
28282 \end_inset
28283
28284 dünn
28285 \end_layout
28286
28287 \end_inset
28288
28289
28290 \end_layout
28291
28292 \begin_layout Description
28293 Ovaler
28294 \begin_inset space ~
28295 \end_inset
28296
28297 Rahmen,
28298 \begin_inset space ~
28299 \end_inset
28300
28301 dick zeichnet einen dickeren Rahmen mit abgerundeten Ecken um die Box.
28302  Die Rahmendicke ist 0.8
28303 \begin_inset space \thinspace{}
28304 \end_inset
28305
28306 pt.
28307  
28308 \begin_inset Box Ovalbox
28309 position "c"
28310 hor_pos "c"
28311 has_inner_box 1
28312 inner_pos "c"
28313 use_parbox 0
28314 use_makebox 0
28315 width "20col%"
28316 special "none"
28317 height "1in"
28318 height_special "totalheight"
28319 status collapsed
28320
28321 \begin_layout Plain Layout
28322 Ovale
28323 \begin_inset space ~
28324 \end_inset
28325
28326 Box,
28327 \begin_inset space ~
28328 \end_inset
28329
28330 dick
28331 \end_layout
28332
28333 \end_inset
28334
28335
28336 \end_layout
28337
28338 \begin_layout Description
28339 Schlagschatten zeichnet einen Rahmen mit Schatten um die Box.
28340  Die Rahmendicke wird durch 
28341 \series bold
28342
28343 \backslash
28344 fboxrule
28345 \series default
28346  festgelegt, der Schatten ist 4
28347 \begin_inset space \thinspace{}
28348 \end_inset
28349
28350 pt breit.
28351 \begin_inset Newline newline
28352 \end_inset
28353
28354
28355 \begin_inset Box Shadowbox
28356 position "c"
28357 hor_pos "c"
28358 has_inner_box 1
28359 inner_pos "c"
28360 use_parbox 0
28361 use_makebox 0
28362 width "20col%"
28363 special "none"
28364 height "1in"
28365 height_special "totalheight"
28366 status collapsed
28367
28368 \begin_layout Plain Layout
28369 Schattierte
28370 \begin_inset space ~
28371 \end_inset
28372
28373 Box
28374 \end_layout
28375
28376 \end_inset
28377
28378
28379 \end_layout
28380
28381 \begin_layout Description
28382 Schattierter
28383 \begin_inset space ~
28384 \end_inset
28385
28386 Hintergrund zeichnet eine Box mit roter Hintergrundfarbe.
28387  Im Gegensatz zu farbigen Boxen
28388 \begin_inset Foot
28389 status collapsed
28390
28391 \begin_layout Plain Layout
28392 siehe Abschnitt
28393 \begin_inset space ~
28394 \end_inset
28395
28396
28397 \begin_inset CommandInset ref
28398 LatexCommand ref
28399 reference "abs:Farbige-Boxen"
28400
28401 \end_inset
28402
28403
28404 \end_layout
28405
28406 \end_inset
28407
28408  wird der Hintergrund immer über die gesamte Zeilenbreite gedruckt, und
28409  die Box ist ein Absatz für sich.
28410  
28411 \begin_inset Box Shaded
28412 position "t"
28413 hor_pos "c"
28414 has_inner_box 0
28415 inner_pos "t"
28416 use_parbox 0
28417 use_makebox 0
28418 width "50col%"
28419 special "none"
28420 height "1in"
28421 height_special "totalheight"
28422 status collapsed
28423
28424 \begin_layout Plain Layout
28425 Schattierter Hintergrund Box
28426 \end_layout
28427
28428 \end_inset
28429
28430
28431 \end_layout
28432
28433 \begin_layout Description
28434 Doppelter
28435 \begin_inset space ~
28436 \end_inset
28437
28438 rechteckiger
28439 \begin_inset space ~
28440 \end_inset
28441
28442 Rahmen zeichnet einen doppelten Rahmen um die Box.
28443  Der innere Rahmen ist 0.75
28444 \begin_inset space \thinspace{}
28445 \end_inset
28446
28447
28448 \series bold
28449
28450 \backslash
28451 fboxrule
28452 \series default
28453  breit, der äußere 1.5
28454 \begin_inset space \thinspace{}
28455 \end_inset
28456
28457
28458 \series bold
28459
28460 \backslash
28461 fboxrule
28462 \series default
28463 , der Zwischenraum 1.5
28464 \begin_inset space \thinspace{}
28465 \end_inset
28466
28467
28468 \series bold
28469
28470 \backslash
28471 fboxrule
28472 \series default
28473
28474 \begin_inset space \thinspace{}
28475 \end_inset
28476
28477 +
28478 \begin_inset space \thinspace{}
28479 \end_inset
28480
28481 0.5
28482 \begin_inset space \thinspace{}
28483 \end_inset
28484
28485 pt.
28486  
28487 \begin_inset Box Doublebox
28488 position "c"
28489 hor_pos "c"
28490 has_inner_box 1
28491 inner_pos "c"
28492 use_parbox 0
28493 use_makebox 0
28494 width "20col%"
28495 special "none"
28496 height "1in"
28497 height_special "totalheight"
28498 status collapsed
28499
28500 \begin_layout Plain Layout
28501 Doppelt
28502 \begin_inset space ~
28503 \end_inset
28504
28505 gerahmte
28506 \begin_inset space ~
28507 \end_inset
28508
28509 Box
28510 \end_layout
28511
28512 \end_inset
28513
28514
28515 \end_layout
28516
28517 \begin_layout Standard
28518 \begin_inset VSpace bigskip
28519 \end_inset
28520
28521 Die Aufschrift der Box in LyX ändert sich mit der gewählten Verzierung.
28522  Um alle Verzierungen verwenden zu können, muss das LaTeX-Paket 
28523 \series bold
28524 fancybox
28525 \series default
28526
28527 \begin_inset Index idx
28528 status collapsed
28529
28530 \begin_layout Plain Layout
28531 LaTeX-Pakete ! fancybox
28532 \end_layout
28533
28534 \end_inset
28535
28536  installiert sein.
28537 \end_layout
28538
28539 \begin_layout Section
28540 Box-Anpassung
28541 \begin_inset Index idx
28542 status collapsed
28543
28544 \begin_layout Plain Layout
28545 Boxen ! Anpassung
28546 \end_layout
28547
28548 \end_inset
28549
28550
28551 \end_layout
28552
28553 \begin_layout Standard
28554 Der Standardwert für 
28555 \series bold
28556
28557 \backslash
28558 fboxrule
28559 \series default
28560  ist 0.4
28561 \begin_inset space \thinspace{}
28562 \end_inset
28563
28564 pt.
28565  Mit dem folgenden TeX-Code-Befehl kann er auf 2
28566 \begin_inset space \thinspace{}
28567 \end_inset
28568
28569 pt gesetzt werden:
28570 \end_layout
28571
28572 \begin_layout Standard
28573
28574 \series bold
28575
28576 \backslash
28577 setlength{
28578 \backslash
28579 fboxrule}{2pt}
28580 \end_layout
28581
28582 \begin_layout Standard
28583 \begin_inset ERT
28584 status collapsed
28585
28586 \begin_layout Plain Layout
28587
28588
28589 \backslash
28590 setlength{
28591 \backslash
28592 fboxrule}{2pt}
28593 \end_layout
28594
28595 \end_inset
28596
28597
28598 \begin_inset Box Boxed
28599 position "c"
28600 hor_pos "c"
28601 has_inner_box 1
28602 inner_pos "c"
28603 use_parbox 0
28604 use_makebox 0
28605 width "30col%"
28606 special "none"
28607 height "1in"
28608 height_special "totalheight"
28609 status open
28610
28611 \begin_layout Plain Layout
28612 \align center
28613 Rechteckige Box mit einer Rahmenbreite von 2
28614 \begin_inset space \thinspace{}
28615 \end_inset
28616
28617 pt
28618 \end_layout
28619
28620 \end_inset
28621
28622
28623 \begin_inset ERT
28624 status collapsed
28625
28626 \begin_layout Plain Layout
28627
28628
28629 \backslash
28630 setlength{
28631 \backslash
28632 fboxrule}{0.4pt}
28633 \end_layout
28634
28635 \end_inset
28636
28637
28638 \begin_inset VSpace bigskip
28639 \end_inset
28640
28641
28642 \end_layout
28643
28644 \begin_layout Standard
28645 Der Abstand zwischen dem Rahmen und dem Inhalt ist standardmäßig 3
28646 \begin_inset space \thinspace{}
28647 \end_inset
28648
28649 pt.
28650  Sie können das ändern, indem Sie den Wert von 
28651 \series bold
28652
28653 \backslash
28654 fboxsep
28655 \series default
28656  mit einem TeX-Code-Befehl ändern:
28657 \end_layout
28658
28659 \begin_layout Standard
28660
28661 \series bold
28662
28663 \backslash
28664 setlength{
28665 \backslash
28666 fboxsep}{10pt}
28667 \end_layout
28668
28669 \begin_layout Standard
28670 setzt den Wert auf 10
28671 \begin_inset space \thinspace{}
28672 \end_inset
28673
28674 pt, wie in der folgenden Box:
28675 \end_layout
28676
28677 \begin_layout Standard
28678 \begin_inset ERT
28679 status collapsed
28680
28681 \begin_layout Plain Layout
28682
28683
28684 \backslash
28685 setlength{
28686 \backslash
28687 fboxsep}{10pt}
28688 \end_layout
28689
28690 \end_inset
28691
28692
28693 \begin_inset Box Boxed
28694 position "c"
28695 hor_pos "c"
28696 has_inner_box 1
28697 inner_pos "c"
28698 use_parbox 0
28699 use_makebox 0
28700 width "25col%"
28701 special "none"
28702 height "1in"
28703 height_special "totalheight"
28704 status open
28705
28706 \begin_layout Plain Layout
28707 \align center
28708 Rechteckige Box mit 
28709 \series bold
28710
28711 \backslash
28712 fboxsep
28713 \series default
28714
28715 \begin_inset space \thinspace{}
28716 \end_inset
28717
28718 =
28719 \begin_inset space \thinspace{}
28720 \end_inset
28721
28722 10
28723 \begin_inset space \thinspace{}
28724 \end_inset
28725
28726 pt
28727 \end_layout
28728
28729 \end_inset
28730
28731
28732 \begin_inset ERT
28733 status collapsed
28734
28735 \begin_layout Plain Layout
28736
28737
28738 \backslash
28739 setlength{
28740 \backslash
28741 fboxsep}{3pt}
28742 \end_layout
28743
28744 \end_inset
28745
28746
28747 \end_layout
28748
28749 \begin_layout Standard
28750 \noindent
28751 \begin_inset VSpace bigskip
28752 \end_inset
28753
28754 Der Durchmesser der abgerundeten Ecken kann mit 
28755 \series bold
28756
28757 \backslash
28758 cornersize
28759 \series default
28760  gesetzt werden.
28761  Der TeX-Code-Befehl
28762 \end_layout
28763
28764 \begin_layout Standard
28765
28766 \series bold
28767
28768 \backslash
28769 cornersize*{1cm}
28770 \end_layout
28771
28772 \begin_layout Standard
28773 setzt den Durchmesser auf 1
28774 \begin_inset space \thinspace{}
28775 \end_inset
28776
28777 cm.
28778  Der TeX-Code-Befehl
28779 \end_layout
28780
28781 \begin_layout Standard
28782
28783 \series bold
28784
28785 \backslash
28786 cornersize{num}
28787 \end_layout
28788
28789 \begin_layout Standard
28790 setzt den Durchmesser auf 
28791 \family sans
28792 num
28793 \begin_inset space \thinspace{}
28794 \end_inset
28795
28796 ×
28797 \begin_inset space \thinspace{}
28798 \end_inset
28799
28800 Minimum(Breite der Box, Höhe der Box)
28801 \family default
28802 .
28803  Der Standardwert ist 
28804 \series bold
28805
28806 \backslash
28807 cornersize{0.5}
28808 \series default
28809 .
28810 \end_layout
28811
28812 \begin_layout Standard
28813 \begin_inset ERT
28814 status collapsed
28815
28816 \begin_layout Plain Layout
28817
28818
28819 \backslash
28820 cornersize*{1.5cm}
28821 \end_layout
28822
28823 \end_inset
28824
28825
28826 \begin_inset Box Ovalbox
28827 position "c"
28828 hor_pos "c"
28829 has_inner_box 1
28830 inner_pos "c"
28831 use_parbox 0
28832 use_makebox 0
28833 width "30col%"
28834 special "none"
28835 height "1in"
28836 height_special "totalheight"
28837 status open
28838
28839 \begin_layout Plain Layout
28840 \align center
28841 Ovale Box, dicker Rand, mit 
28842 \series bold
28843
28844 \backslash
28845 cornersize
28846 \series default
28847
28848 \begin_inset space \thinspace{}
28849 \end_inset
28850
28851 =
28852 \begin_inset space \thinspace{}
28853 \end_inset
28854
28855 1.5
28856 \begin_inset space \thinspace{}
28857 \end_inset
28858
28859 cm
28860 \end_layout
28861
28862 \end_inset
28863
28864
28865 \begin_inset ERT
28866 status collapsed
28867
28868 \begin_layout Plain Layout
28869
28870
28871 \backslash
28872 cornersize{0.5}
28873 \end_layout
28874
28875 \end_inset
28876
28877
28878 \end_layout
28879
28880 \begin_layout Standard
28881 \begin_inset VSpace bigskip
28882 \end_inset
28883
28884 Die Breite des Schattens wird mit 
28885 \series bold
28886
28887 \backslash
28888 shadowsize
28889 \series default
28890  festgelegt.
28891  Mit dem TeX-Code-Befehl
28892 \end_layout
28893
28894 \begin_layout Standard
28895
28896 \series bold
28897
28898 \backslash
28899 setlength{
28900 \backslash
28901 shadowsize}{2pt}
28902 \end_layout
28903
28904 \begin_layout Standard
28905 wird er für die folgende Box auf 2
28906 \begin_inset space \thinspace{}
28907 \end_inset
28908
28909 pt festgelegt.
28910 \end_layout
28911
28912 \begin_layout Standard
28913 \begin_inset ERT
28914 status collapsed
28915
28916 \begin_layout Plain Layout
28917
28918
28919 \backslash
28920 setlength{
28921 \backslash
28922 shadowsize}{2pt}
28923 \end_layout
28924
28925 \end_inset
28926
28927
28928 \begin_inset Box Shadowbox
28929 position "c"
28930 hor_pos "c"
28931 has_inner_box 1
28932 inner_pos "c"
28933 use_parbox 0
28934 use_makebox 0
28935 width "25col%"
28936 special "none"
28937 height "1in"
28938 height_special "totalheight"
28939 status open
28940
28941 \begin_layout Plain Layout
28942 \align center
28943 Schattierte Box mit 
28944 \series bold
28945
28946 \backslash
28947 shadowsize
28948 \series default
28949
28950 \begin_inset space \thinspace{}
28951 \end_inset
28952
28953 =
28954 \begin_inset space \thinspace{}
28955 \end_inset
28956
28957 2
28958 \begin_inset space \thinspace{}
28959 \end_inset
28960
28961 pt
28962 \end_layout
28963
28964 \end_inset
28965
28966
28967 \begin_inset ERT
28968 status collapsed
28969
28970 \begin_layout Plain Layout
28971
28972
28973 \backslash
28974 setlength{
28975 \backslash
28976 shadowsize}{4pt}
28977 \end_layout
28978
28979 \end_inset
28980
28981
28982 \end_layout
28983
28984 \begin_layout Standard
28985 \begin_inset VSpace bigskip
28986 \end_inset
28987
28988 Der Standardwert für 
28989 \series bold
28990
28991 \backslash
28992 FrameRule
28993 \series default
28994  ist 0.4
28995 \begin_inset space \thinspace{}
28996 \end_inset
28997
28998 pt.
28999  Der Standard-Abstand zwischen Rahmen und Text ist 9
29000 \begin_inset space \thinspace{}
29001 \end_inset
29002
29003 pt und kann mit dem Wert für 
29004 \series bold
29005
29006 \backslash
29007 FrameSep
29008 \series default
29009  geändert werden.
29010  Als Beispiel wurden die die Rahmeneinstellungen der folgenden Box mit diesen
29011  TeX-Code Befehlen geändert:
29012 \end_layout
29013
29014 \begin_layout Standard
29015
29016 \series bold
29017
29018 \backslash
29019 setlength{
29020 \backslash
29021 FrameRule}{5pt}
29022 \begin_inset Newline newline
29023 \end_inset
29024
29025
29026 \backslash
29027 setlength{
29028 \backslash
29029 FrameSep}{0.5cm}
29030 \end_layout
29031
29032 \begin_layout Standard
29033 \begin_inset ERT
29034 status collapsed
29035
29036 \begin_layout Plain Layout
29037
29038
29039 \backslash
29040 setlength{
29041 \backslash
29042 FrameRule}{5pt}
29043 \end_layout
29044
29045 \begin_layout Plain Layout
29046
29047
29048 \backslash
29049 setlength{
29050 \backslash
29051 FrameSep}{0.5cm}
29052 \end_layout
29053
29054 \end_inset
29055
29056
29057 \begin_inset Box Framed
29058 position "t"
29059 hor_pos "c"
29060 has_inner_box 0
29061 inner_pos "t"
29062 use_parbox 0
29063 use_makebox 0
29064 width "100col%"
29065 special "none"
29066 height "1in"
29067 height_special "totalheight"
29068 status open
29069
29070 \begin_layout Plain Layout
29071 Dies ist Text in einer 
29072 \family sans
29073 Seitenumbruch erlaubt
29074 \family default
29075  Box.
29076 \end_layout
29077
29078 \end_inset
29079
29080
29081 \begin_inset ERT
29082 status collapsed
29083
29084 \begin_layout Plain Layout
29085
29086
29087 \backslash
29088 setlength{
29089 \backslash
29090 FrameRule}{0.4pt}
29091 \end_layout
29092
29093 \begin_layout Plain Layout
29094
29095
29096 \backslash
29097 setlength{
29098 \backslash
29099 FrameSep}{9pt}
29100 \end_layout
29101
29102 \end_inset
29103
29104
29105 \end_layout
29106
29107 \begin_layout Standard
29108 \begin_inset VSpace bigskip
29109 \end_inset
29110
29111 Für Boxen mit 
29112 \family sans
29113 schattiertem Hintergrund
29114 \family default
29115  beträgt der Abstand zwischen Rand und Text 3
29116 \begin_inset space \thinspace{}
29117 \end_inset
29118
29119 pt und kann mit 
29120 \series bold
29121
29122 \backslash
29123 fboxsep
29124 \series default
29125  geändert werden.
29126  Die Standard-Hintergrundfarbe ist rot und kann entweder lokal mit dem Befehl
29127  
29128 \series bold
29129
29130 \backslash
29131 definecolor{shadecolor}
29132 \series default
29133  oder global über das Menü 
29134 \family sans
29135 Werkzeuge\SpecialChar \menuseparator
29136 Einstellungen\SpecialChar \menuseparator
29137 Farben\SpecialChar \menuseparator
29138 Schattierte
29139 \begin_inset space ~
29140 \end_inset
29141
29142 Box
29143 \family default
29144  geändert werden.
29145  Das Schema des 
29146 \series bold
29147
29148 \backslash
29149 definecolor
29150 \series default
29151  Befehls ist  in Abschnitt
29152 \begin_inset space ~
29153 \end_inset
29154
29155
29156 \begin_inset CommandInset ref
29157 LatexCommand ref
29158 reference "abs:Farbige-Tabellen"
29159
29160 \end_inset
29161
29162  erklärt.
29163 \begin_inset Foot
29164 status collapsed
29165
29166 \begin_layout Plain Layout
29167 Beachten Sie, dass 
29168 \series bold
29169
29170 \backslash
29171 definecolor
29172 \series default
29173  das LaTeX-Paket 
29174 \series bold
29175 color
29176 \series default
29177  im LaTeX-Vorspann benötigt, siehe Abschnitt
29178 \begin_inset space ~
29179 \end_inset
29180
29181
29182 \begin_inset CommandInset ref
29183 LatexCommand ref
29184 reference "abs:Farbige-Boxen"
29185
29186 \end_inset
29187
29188 .
29189 \end_layout
29190
29191 \end_inset
29192
29193  Für das nächste Beispiel wurden folgender TeX-Code verwendet:
29194 \end_layout
29195
29196 \begin_layout Standard
29197
29198 \series bold
29199
29200 \backslash
29201 setlength{
29202 \backslash
29203 fboxsep}{0.5cm}
29204 \begin_inset Newline newline
29205 \end_inset
29206
29207
29208 \backslash
29209 definecolor{shadecolor}{cmyk}{0.5,0,1,0.5}
29210 \end_layout
29211
29212 \begin_layout Standard
29213 \begin_inset ERT
29214 status collapsed
29215
29216 \begin_layout Plain Layout
29217
29218
29219 \backslash
29220 setlength{
29221 \backslash
29222 fboxsep}{0.5cm}
29223 \end_layout
29224
29225 \begin_layout Plain Layout
29226
29227
29228 \backslash
29229 definecolor{shadecolor}{cmyk}{0.5,0,1,0.5}
29230 \end_layout
29231
29232 \end_inset
29233
29234
29235 \begin_inset Box Shaded
29236 position "t"
29237 hor_pos "c"
29238 has_inner_box 0
29239 inner_pos "t"
29240 use_parbox 0
29241 use_makebox 0
29242 width "100col%"
29243 special "none"
29244 height "1in"
29245 height_special "totalheight"
29246 status open
29247
29248 \begin_layout Plain Layout
29249
29250 \color yellow
29251 Dies ist gelber Text in einer 
29252 \family sans
29253 schattierten Hintergrund
29254 \begin_inset space ~
29255 \end_inset
29256
29257
29258 \family default
29259 Box auf dunkelgrünem Hintergrund.
29260 \end_layout
29261
29262 \end_inset
29263
29264
29265 \begin_inset ERT
29266 status collapsed
29267
29268 \begin_layout Plain Layout
29269
29270
29271 \backslash
29272 setlength{
29273 \backslash
29274 fboxsep}{3pt}
29275 \end_layout
29276
29277 \begin_layout Plain Layout
29278
29279
29280 \backslash
29281 definecolor{shadecolor}{rgb}{1,0,0}
29282 \end_layout
29283
29284 \end_inset
29285
29286
29287 \end_layout
29288
29289 \begin_layout Standard
29290 \begin_inset VSpace bigskip
29291 \end_inset
29292
29293 Geänderte Längen und Breiten gelten für alle Boxen, die auf den Befehl folgen,
29294  der sie ändert.
29295 \end_layout
29296
29297 \begin_layout Section
29298 Minipage
29299 \begin_inset CommandInset label
29300 LatexCommand label
29301 name "abs:Minipage"
29302
29303 \end_inset
29304
29305
29306 \begin_inset Index idx
29307 status collapsed
29308
29309 \begin_layout Plain Layout
29310 Boxen ! Minipage
29311 \end_layout
29312
29313 \end_inset
29314
29315
29316 \end_layout
29317
29318 \begin_layout Standard
29319 Minipages werden von LaTeX wie Seiten auf einer Seite behandelt und können
29320  deshalb unter anderem eigene Fußnoten haben.
29321 \end_layout
29322
29323 \begin_layout Standard
29324 Minipages sind nützlich, wenn Sie Dokumente in mehreren Sprachen schreiben.
29325 \end_layout
29326
29327 \begin_layout Standard
29328 Es folgt ein Beispiel mit zwei nebeneinander gedruckten Minipages.
29329  Ihre Breite ist 45 Spaltenbreite
29330 \begin_inset space ~
29331 \end_inset
29332
29333 %, und sie sind durch einen 
29334 \family sans
29335 HFill
29336 \family default
29337  getrennt (
29338 \family sans
29339 Einfügen\SpecialChar \menuseparator
29340 Formatierung\SpecialChar \menuseparator
29341 Horizontaler
29342 \begin_inset space \space{}
29343 \end_inset
29344
29345 Abstand\SpecialChar \menuseparator
29346 Abstand\SpecialChar \menuseparator
29347 Variabler
29348 \begin_inset space ~
29349 \end_inset
29350
29351 horiz.
29352 \begin_inset space ~
29353 \end_inset
29354
29355 Abstand
29356 \family default
29357 ).
29358 \begin_inset Newpage newpage
29359 \end_inset
29360
29361
29362 \end_layout
29363
29364 \begin_layout Standard
29365 \noindent
29366 \begin_inset Box Frameless
29367 position "t"
29368 hor_pos "c"
29369 has_inner_box 1
29370 inner_pos "c"
29371 use_parbox 0
29372 use_makebox 0
29373 width "45col%"
29374 special "none"
29375 height "1in"
29376 height_special "totalheight"
29377 status open
29378
29379 \begin_layout Plain Layout
29380 Dies ist ein deutscher Text.
29381  Dies ist ein deutscher Text.
29382  Dies ist ein deutscher Text.
29383  Dies ist ein deutscher Text.
29384  Dies ist ein deutscher Text.
29385  Dies ist ein deutscher Text.
29386  Dies ist ein deutscher Text.
29387  Dies ist ein deutscher Text.
29388  Dies ist ein deutscher Text.
29389  Dies ist ein deutscher Text.
29390  Dies ist ein deutscher Text.
29391  Dies ist ein deutscher Text.
29392  Dies ist ein deutscher Text
29393 \begin_inset Foot
29394 status open
29395
29396 \begin_layout Plain Layout
29397 Dies ist eine deutsche Fußnote.
29398 \end_layout
29399
29400 \end_inset
29401
29402 .
29403  Dies ist ein deutscher Text.
29404  Dies ist ein deutscher Text.
29405 \end_layout
29406
29407 \end_inset
29408
29409
29410 \begin_inset space \hfill{}
29411 \end_inset
29412
29413
29414 \begin_inset Box Frameless
29415 position "t"
29416 hor_pos "c"
29417 has_inner_box 1
29418 inner_pos "c"
29419 use_parbox 0
29420 use_makebox 0
29421 width "45col%"
29422 special "none"
29423 height "1in"
29424 height_special "totalheight"
29425 status open
29426
29427 \begin_layout Plain Layout
29428
29429 \lang english
29430 This is an English Text.
29431  This is an English Text.
29432  This is an English Text.
29433  This is an English Text.
29434  This is an English Text.
29435  This is an English Text.
29436  This is an English Text.
29437  This is an English Text.
29438  This is an English Text.
29439  This is an English Text.
29440  This is an English Text.
29441  This is an English Text.
29442  This is an English Text.
29443  This is an English Text.
29444  This is an English Text.
29445  This is an English Text.
29446 \begin_inset Foot
29447 status collapsed
29448
29449 \begin_layout Plain Layout
29450
29451 \lang english
29452 This is an English footnote.
29453 \end_layout
29454
29455 \end_inset
29456
29457  This is an English Text.
29458  
29459 \end_layout
29460
29461 \end_inset
29462
29463
29464 \end_layout
29465
29466 \begin_layout Standard
29467 \begin_inset VSpace bigskip
29468 \end_inset
29469
29470 Innerhalb von Minipages werden die Absatz-Einstellungen des Dokuments ignoriert.
29471  Das bedeutet, dass zwischen Absätzen kein Leerraum eingefügt wird oder
29472  Absätze nicht eingerückt werden, obwohl Sie das in 
29473 \family sans
29474 Dokument
29475 \family default
29476 \SpecialChar \menuseparator
29477
29478 \family sans
29479 Einstellun\SpecialChar \-
29480 gen\SpecialChar \menuseparator
29481 Textformat
29482 \family default
29483  festgelegt haben.
29484  Wenn Sie es trotzdem wollen, müssen Sie es manuell machen.
29485  Eine Standardeinrückung zum Beispiel erreichen Sie mit dem TeX-Code 
29486 \series bold
29487
29488 \backslash
29489 hspace*{1em}
29490 \series default
29491 .
29492 \end_layout
29493
29494 \begin_layout Standard
29495 Minipages können auch benutzt werden, um Textteilen eine andere Hintergrundfarbe
29496  zu verpassen, siehe Abschnitt
29497 \begin_inset space ~
29498 \end_inset
29499
29500
29501 \begin_inset CommandInset ref
29502 LatexCommand ref
29503 reference "uab:Farbe-für-Absätze"
29504
29505 \end_inset
29506
29507 .
29508 \end_layout
29509
29510 \begin_layout Standard
29511 \begin_inset Note Greyedout
29512 status open
29513
29514 \begin_layout Plain Layout
29515
29516 \series bold
29517 Bemerkung:
29518 \series default
29519  In Minipages sind keine Gleitobjekte oder Randnotizen erlaubt, aber Minipages
29520  können in Tabellen, Gleitobjekten und anderen Boxen benutzt werden.
29521 \end_layout
29522
29523 \end_inset
29524
29525
29526 \end_layout
29527
29528 \begin_layout Section
29529 Parbox
29530 \begin_inset CommandInset label
29531 LatexCommand label
29532 name "abs:Parbox"
29533
29534 \end_inset
29535
29536
29537 \begin_inset Index idx
29538 status collapsed
29539
29540 \begin_layout Plain Layout
29541 Boxen ! Parbox
29542 \end_layout
29543
29544 \end_inset
29545
29546
29547 \end_layout
29548
29549 \begin_layout Standard
29550 Parbox ist eine Abkürzung für 
29551 \begin_inset Quotes gld
29552 \end_inset
29553
29554 paragraph box
29555 \begin_inset Quotes grd
29556 \end_inset
29557
29558 , was Absatzbox bedeutet.
29559  Weil Parbox ein LaTeX-Befehl ist, Minipage aber eine LaTeX-Umgebung, besitzen
29560  Parboxen einige Einschränkungen.
29561  Zum Beispiel werden keine Fußnoten, die in einer Parbox definiert werden,
29562  gedruckt:
29563 \end_layout
29564
29565 \begin_layout Standard
29566 \align center
29567 \begin_inset Box Frameless
29568 position "t"
29569 hor_pos "c"
29570 has_inner_box 1
29571 inner_pos "t"
29572 use_parbox 1
29573 use_makebox 0
29574 width "33col%"
29575 special "none"
29576 height "1in"
29577 height_special "totalheight"
29578 status collapsed
29579
29580 \begin_layout Plain Layout
29581 Dies ist Text in einer Parbox.
29582  Dies ist Text in einer Parbox.
29583 \end_layout
29584
29585 \begin_layout Plain Layout
29586 Diese Fußnote wird nicht gedruckt:
29587 \begin_inset Foot
29588 status collapsed
29589
29590 \begin_layout Plain Layout
29591 Diese Fußnote ist in einer Parbox und wird deshalb nicht gedruckt.
29592 \end_layout
29593
29594 \end_inset
29595
29596
29597 \end_layout
29598
29599 \end_inset
29600
29601
29602 \end_layout
29603
29604 \begin_layout Standard
29605 Und außerdem dürfen Parboxen keine Textausrichtungen, Listen, Aufzählungen
29606  und Theoreme enthalten.
29607 \end_layout
29608
29609 \begin_layout Section
29610 Boxen für Worte und Buchstaben
29611 \begin_inset Index idx
29612 status collapsed
29613
29614 \begin_layout Plain Layout
29615 Boxen ! für Buchstaben
29616 \end_layout
29617
29618 \end_inset
29619
29620
29621 \end_layout
29622
29623 \begin_layout Subsection
29624 Silbentrennung unterbinden 
29625 \begin_inset CommandInset label
29626 LatexCommand label
29627 name "abs:Silbentrennung-unterbinden"
29628
29629 \end_inset
29630
29631
29632 \begin_inset Index idx
29633 status collapsed
29634
29635 \begin_layout Plain Layout
29636 Boxen ! zur Vermeidung von Silbentrennung
29637 \end_layout
29638
29639 \end_inset
29640
29641
29642 \end_layout
29643
29644 \begin_layout Standard
29645 Sie können eine spezielle Box benutzen, um Silbentrennungen zu unterbinden.
29646 \begin_inset Newline newline
29647 \end_inset
29648
29649 Hier ist ein Beispiel: 
29650 \end_layout
29651
29652 \begin_layout Standard
29653 In dieser Zeile wird ein sehr langes Wort getrennt, nämlich 
29654 \begin_inset Quotes gld
29655 \end_inset
29656
29657 einsehrsehrsehrlangeswort
29658 \begin_inset Quotes grd
29659 \end_inset
29660
29661 .
29662 \end_layout
29663
29664 \begin_layout Standard
29665 Um das zu verhindern, fügen Sie vor dem Wort, das nicht getrennt werden
29666  soll, den TeX-Code
29667 \end_layout
29668
29669 \begin_layout Standard
29670
29671 \series bold
29672
29673 \backslash
29674 mbox{
29675 \end_layout
29676
29677 \begin_layout Standard
29678 ein.
29679  Hinter dem Wort fügen Sie 
29680 \series bold
29681
29682 \begin_inset Quotes gld
29683 \end_inset
29684
29685 }
29686 \series default
29687
29688 \begin_inset Quotes grd
29689 \end_inset
29690
29691  als TeX-Code ein.
29692  Hier ist das Ergebnis:
29693 \end_layout
29694
29695 \begin_layout Standard
29696 In dieser Zeile wird ein sehr langes Wort NICHT getrennt, nämlich 
29697 \begin_inset ERT
29698 status collapsed
29699
29700 \begin_layout Plain Layout
29701
29702
29703 \backslash
29704 mbox{
29705 \end_layout
29706
29707 \end_inset
29708
29709
29710 \begin_inset Quotes gld
29711 \end_inset
29712
29713 einsehrsehrsehrlangeswort
29714 \begin_inset Quotes grd
29715 \end_inset
29716
29717
29718 \begin_inset ERT
29719 status collapsed
29720
29721 \begin_layout Plain Layout
29722
29723 }
29724 \end_layout
29725
29726 \end_inset
29727
29728 .
29729 \end_layout
29730
29731 \begin_layout Standard
29732 Alternativ dazu kann man auch den Befehl 
29733 \begin_inset Quotes gld
29734 \end_inset
29735
29736
29737 \series bold
29738
29739 \backslash
29740 -
29741 \series default
29742
29743 \begin_inset Quotes grd
29744 \end_inset
29745
29746  als TeX-Code direkt vor das Wort setzen:
29747 \end_layout
29748
29749 \begin_layout Standard
29750 In dieser Zeile wird ein sehr langes Wort NICHT getrennt, nämlich 
29751 \begin_inset Quotes gld
29752 \end_inset
29753
29754
29755 \begin_inset ERT
29756 status collapsed
29757
29758 \begin_layout Plain Layout
29759
29760
29761 \backslash
29762 -
29763 \end_layout
29764
29765 \end_inset
29766
29767 einsehrsehrsehrlangeswort
29768 \begin_inset Quotes grd
29769 \end_inset
29770
29771 .
29772 \end_layout
29773
29774 \begin_layout Standard
29775 Natürlich ragt das Wort jetzt in den Seitenrand hinein.
29776  Wenn Sie das nicht wollen, müssen Sie einen manuellen Zeilenumbruch (
29777 \series bold
29778 Strg-Eingabe
29779 \series default
29780 ) einfügen: 
29781 \end_layout
29782
29783 \begin_layout Standard
29784 In dieser Zeile wird ein sehr langes Wort NICHT getrennt, nämlich
29785 \begin_inset Newline newline
29786 \end_inset
29787
29788
29789 \begin_inset ERT
29790 status collapsed
29791
29792 \begin_layout Plain Layout
29793
29794
29795 \backslash
29796 mbox{
29797 \end_layout
29798
29799 \end_inset
29800
29801
29802 \begin_inset Quotes gld
29803 \end_inset
29804
29805 einsehrsehrsehrlangeswort
29806 \begin_inset Quotes grd
29807 \end_inset
29808
29809
29810 \begin_inset ERT
29811 status collapsed
29812
29813 \begin_layout Plain Layout
29814
29815 }
29816 \end_layout
29817
29818 \end_inset
29819
29820 .
29821 \end_layout
29822
29823 \begin_layout Subsection
29824 Vertikale Ausrichtung
29825 \begin_inset CommandInset label
29826 LatexCommand label
29827 name "uab:Vertikale-Ausrichtung"
29828
29829 \end_inset
29830
29831
29832 \begin_inset Index idx
29833 status collapsed
29834
29835 \begin_layout Plain Layout
29836 Boxen ! für Vertikale Ausrichtung
29837 \end_layout
29838
29839 \end_inset
29840
29841
29842 \begin_inset Index idx
29843 status collapsed
29844
29845 \begin_layout Plain Layout
29846 Boxen ! raisebox
29847 \end_layout
29848
29849 \end_inset
29850
29851
29852 \end_layout
29853
29854 \begin_layout Standard
29855 Mit dem LaTeX-Befehl 
29856 \series bold
29857
29858 \backslash
29859 raisebox
29860 \series default
29861  können Sie Worte, Buchstaben oder andere Boxen vertikal bezüglich des umgebende
29862 n Textes ausrichten.
29863  
29864 \series bold
29865
29866 \backslash
29867 raisebox
29868 \series default
29869  wird folgendermaßen benutzt:
29870 \end_layout
29871
29872 \begin_layout Standard
29873
29874 \series bold
29875
29876 \backslash
29877 raisebox{Verschiebung}[oben][unten]{Text}
29878 \end_layout
29879
29880 \begin_layout Standard
29881 Positive Werte für Verschiebung
29882 \series bold
29883  
29884 \series default
29885 verschieben die Box nach oben, negative nach unten.
29886  Die beiden optionalen Parameter 
29887 \family typewriter
29888 oben
29889 \family default
29890  und 
29891 \family typewriter
29892 unten
29893 \family default
29894  legen fest, wie weit die Box mit dem Text über oder unter die Grundlinie
29895  hinausgeht, wenn sie nicht verschoben ist.
29896 \end_layout
29897
29898 \begin_layout Standard
29899 Um zum Beispiel das Wort 
29900 \begin_inset Quotes gld
29901 \end_inset
29902
29903 provokant
29904 \begin_inset Quotes grd
29905 \end_inset
29906
29907  mit seinem 
29908 \begin_inset Quotes gld
29909 \end_inset
29910
29911 niedrigsten
29912 \begin_inset Quotes grd
29913 \end_inset
29914
29915  Buchstaben 
29916 \begin_inset Quotes gld
29917 \end_inset
29918
29919 p
29920 \begin_inset Quotes grd
29921 \end_inset
29922
29923  an der Grundlinie auszurichten, müssen Sie den TeX-Code-Befehl
29924 \end_layout
29925
29926 \begin_layout Standard
29927
29928 \series bold
29929
29930 \backslash
29931 raisebox{
29932 \backslash
29933 depth}{
29934 \end_layout
29935
29936 \begin_layout Standard
29937 vor dem Wort einfügen und 
29938 \begin_inset Quotes gld
29939 \end_inset
29940
29941
29942 \series bold
29943 }
29944 \series default
29945
29946 \begin_inset Quotes grd
29947 \end_inset
29948
29949  als TeX-Code dahinter:
29950 \end_layout
29951
29952 \begin_layout Standard
29953 Dies ist eine Zeile, in der das Wort 
29954 \begin_inset ERT
29955 status collapsed
29956
29957 \begin_layout Plain Layout
29958
29959
29960 \backslash
29961 raisebox{
29962 \backslash
29963 depth}{
29964 \end_layout
29965
29966 \end_inset
29967
29968
29969 \begin_inset Quotes gld
29970 \end_inset
29971
29972 provokant
29973 \begin_inset Quotes grd
29974 \end_inset
29975
29976
29977 \begin_inset ERT
29978 status collapsed
29979
29980 \begin_layout Plain Layout
29981
29982 }
29983 \end_layout
29984
29985 \end_inset
29986
29987  nach oben verschoben wurde.
29988 \end_layout
29989
29990 \begin_layout Standard
29991 \begin_inset VSpace bigskip
29992 \end_inset
29993
29994 Wenn Sie Buchstaben nach oben oder unten verschieben, wird der Zeilenabstand
29995  gedehnt:
29996 \end_layout
29997
29998 \begin_layout Standard
29999 Dies ist eine Zeile, in der das Wort 
30000 \begin_inset ERT
30001 status collapsed
30002
30003 \begin_layout Plain Layout
30004
30005
30006 \backslash
30007 raisebox{-
30008 \backslash
30009 depth}{
30010 \end_layout
30011
30012 \end_inset
30013
30014
30015 \begin_inset Quotes gld
30016 \end_inset
30017
30018 provokant
30019 \begin_inset Quotes grd
30020 \end_inset
30021
30022
30023 \begin_inset ERT
30024 status collapsed
30025
30026 \begin_layout Plain Layout
30027
30028 }
30029 \end_layout
30030
30031 \end_inset
30032
30033  nach unten verschoben wurde.
30034 \end_layout
30035
30036 \begin_layout Standard
30037 Dies ist eine Zeile, in der das Wort 
30038 \begin_inset ERT
30039 status collapsed
30040
30041 \begin_layout Plain Layout
30042
30043
30044 \backslash
30045 raisebox{0.5cm}{
30046 \end_layout
30047
30048 \end_inset
30049
30050
30051 \begin_inset Quotes gld
30052 \end_inset
30053
30054 testen
30055 \begin_inset Quotes grd
30056 \end_inset
30057
30058
30059 \begin_inset ERT
30060 status collapsed
30061
30062 \begin_layout Plain Layout
30063
30064 }
30065 \end_layout
30066
30067 \end_inset
30068
30069  um 0.5
30070 \begin_inset space \thinspace{}
30071 \end_inset
30072
30073 cm nach oben verschoben wurde.
30074 \end_layout
30075
30076 \begin_layout Standard
30077 Wenn Sie die Dehnung nicht wollen, können Sie die Boxhöhe auf 0 setzen:
30078 \end_layout
30079
30080 \begin_layout Standard
30081
30082 \series bold
30083
30084 \backslash
30085 raisebox{-
30086 \backslash
30087 depth}[0pt]{
30088 \end_layout
30089
30090 \begin_layout Standard
30091 Dies ist eine Zeile, in der das Wort 
30092 \begin_inset ERT
30093 status collapsed
30094
30095 \begin_layout Plain Layout
30096
30097
30098 \backslash
30099 raisebox{-
30100 \backslash
30101 depth}[0pt]{
30102 \end_layout
30103
30104 \end_inset
30105
30106
30107 \begin_inset Quotes gld
30108 \end_inset
30109
30110 provokant
30111 \begin_inset Quotes grd
30112 \end_inset
30113
30114
30115 \begin_inset ERT
30116 status collapsed
30117
30118 \begin_layout Plain Layout
30119
30120 }
30121 \end_layout
30122
30123 \end_inset
30124
30125  nach unten verschoben wurde.
30126 \end_layout
30127
30128 \begin_layout Standard
30129 Dies ist eine Zeile, in der das Wort 
30130 \begin_inset ERT
30131 status collapsed
30132
30133 \begin_layout Plain Layout
30134
30135
30136 \backslash
30137 raisebox{0.5cm}[0pt]{
30138 \end_layout
30139
30140 \end_inset
30141
30142
30143 \begin_inset Quotes gld
30144 \end_inset
30145
30146 testen
30147 \begin_inset Quotes grd
30148 \end_inset
30149
30150
30151 \begin_inset ERT
30152 status collapsed
30153
30154 \begin_layout Plain Layout
30155
30156 }
30157 \end_layout
30158
30159 \end_inset
30160
30161  um 0.5
30162 \begin_inset space \thinspace{}
30163 \end_inset
30164
30165 cm nach oben verschoben wurde.
30166  Jetzt überschneiden sich die verschobenen Worte.
30167 \end_layout
30168
30169 \begin_layout Section
30170 Farbige Boxen
30171 \begin_inset CommandInset label
30172 LatexCommand label
30173 name "abs:Farbige-Boxen"
30174
30175 \end_inset
30176
30177
30178 \begin_inset Index idx
30179 status collapsed
30180
30181 \begin_layout Plain Layout
30182 Boxen ! farbige
30183 \end_layout
30184
30185 \end_inset
30186
30187
30188 \end_layout
30189
30190 \begin_layout Subsection
30191 Text-Hintergrundfarbe
30192 \begin_inset Index idx
30193 status collapsed
30194
30195 \begin_layout Plain Layout
30196 Farbe ! für Text-Hintergrund
30197 \end_layout
30198
30199 \end_inset
30200
30201
30202 \end_layout
30203
30204 \begin_layout Standard
30205 Um einen Text mit einer Hintergrundfarbe zu versehen, muss der Text in einer
30206  so genannten 
30207 \begin_inset Quotes gld
30208 \end_inset
30209
30210 colorbox
30211 \begin_inset Quotes grd
30212 \end_inset
30213
30214  stehen.
30215  Dafür muss das LaTeX-Paket 
30216 \series bold
30217 color
30218 \series default
30219
30220 \begin_inset Index idx
30221 status collapsed
30222
30223 \begin_layout Plain Layout
30224 LaTeX-Pakete ! color
30225 \end_layout
30226
30227 \end_inset
30228
30229  im LaTeX-Vorspann mit folgendem Befehl geladen werden:
30230 \end_layout
30231
30232 \begin_layout Standard
30233
30234 \series bold
30235
30236 \backslash
30237 @ifundefined{textcolor}
30238 \begin_inset Newline newline
30239 \end_inset
30240
30241
30242 \begin_inset Phantom HPhantom
30243 status open
30244
30245 \begin_layout Plain Layout
30246
30247 \series bold
30248 \begin_inset space ~
30249 \end_inset
30250
30251
30252 \end_layout
30253
30254 \end_inset
30255
30256 {
30257 \backslash
30258 usepackage{color}}{}
30259 \end_layout
30260
30261 \begin_layout Standard
30262 Wenn Sie Text einfärben, lädt LyX das Paket 
30263 \series bold
30264 color
30265 \series default
30266  automatisch.
30267 \begin_inset Foot
30268 status collapsed
30269
30270 \begin_layout Plain Layout
30271 Der Befehl 
30272 \series bold
30273
30274 \backslash
30275 @ifundefined
30276 \series default
30277  vermeidet, dass es in diesem Fall doppelt geladen wird.
30278 \end_layout
30279
30280 \end_inset
30281
30282
30283 \end_layout
30284
30285 \begin_layout Standard
30286 \begin_inset VSpace medskip
30287 \end_inset
30288
30289 Colorboxen werden mit dem Befehl 
30290 \series bold
30291
30292 \backslash
30293 colorbox
30294 \series default
30295  erzeugt:
30296 \end_layout
30297
30298 \begin_layout Standard
30299
30300 \series bold
30301
30302 \backslash
30303 colorbox{Farbe}{Boxinhalt}
30304 \end_layout
30305
30306 \begin_layout Standard
30307 Der Boxinhalt kann auch eine Box sein, und Colorboxen können in anderen
30308  Boxen sein.
30309 \end_layout
30310
30311 \begin_layout Standard
30312 Die folgenden Farben sind vordefiniert:
30313 \family sans
30314  schwarz
30315 \family default
30316
30317 \family sans
30318 wei
30319 \family default
30320 ß, 
30321 \family sans
30322 rot
30323 \family default
30324 \series bold
30325 ,
30326 \series default
30327  
30328 \family sans
30329 grün
30330 \family default
30331
30332 \family sans
30333 blau
30334 \family default
30335
30336 \family sans
30337 türkis
30338 \family default
30339
30340 \family sans
30341 purpurrot
30342 \family default
30343  und 
30344 \family sans
30345 gelb
30346 \family default
30347 .
30348 \end_layout
30349
30350 \begin_layout Standard
30351 Sie können auch Ihre eigenen Farben definieren, wie in Abschnitt
30352 \begin_inset space ~
30353 \end_inset
30354
30355
30356 \begin_inset CommandInset ref
30357 LatexCommand ref
30358 reference "abs:Farbige-Tabellen"
30359
30360 \end_inset
30361
30362  beschrieben.
30363 \end_layout
30364
30365 \begin_layout Standard
30366 Um zum Beispiel ein Wort auf einem roten Hintergrund zu drucken, fügen sie
30367  den TeX-Code-Befehl
30368 \end_layout
30369
30370 \begin_layout Standard
30371
30372 \series bold
30373
30374 \backslash
30375 colorbox{red}{
30376 \end_layout
30377
30378 \begin_layout Standard
30379 vor dem Wort ein.
30380  Hinter dem Wort fügen Sie 
30381 \series bold
30382
30383 \begin_inset Quotes gld
30384 \end_inset
30385
30386 }
30387 \series default
30388
30389 \begin_inset Quotes grd
30390 \end_inset
30391
30392  als TeX-Code ein.
30393  Hier ist das Ergebnis:
30394 \end_layout
30395
30396 \begin_layout Standard
30397 In dieser Zeile hat 
30398 \begin_inset ERT
30399 status collapsed
30400
30401 \begin_layout Plain Layout
30402
30403
30404 \backslash
30405 colorbox{red}{
30406 \end_layout
30407
30408 \end_inset
30409
30410 Achtung!
30411 \begin_inset ERT
30412 status collapsed
30413
30414 \begin_layout Plain Layout
30415
30416 }
30417 \end_layout
30418
30419 \end_inset
30420
30421  einen roten Hintergrund.
30422 \end_layout
30423
30424 \begin_layout Standard
30425 \begin_inset VSpace bigskip
30426 \end_inset
30427
30428 Wenn der Rahmen der Box eine andere Farbe haben soll, können Sie den Befehl
30429  
30430 \series bold
30431
30432 \backslash
30433 fcolorbox
30434 \series default
30435  verwenden:
30436 \end_layout
30437
30438 \begin_layout Standard
30439
30440 \series bold
30441
30442 \backslash
30443 fcolorbox{Rahmenfarbe}{Boxfarbe}{Boxinhalt}
30444 \end_layout
30445
30446 \begin_layout Standard
30447
30448 \series bold
30449
30450 \backslash
30451 fcolorbox
30452 \series default
30453  ist eine Erweiterung von 
30454 \series bold
30455
30456 \backslash
30457 colorbox
30458 \series default
30459 .
30460  Die Rahmendicke und der Abstand zwischen Rahmen und Boxinhalt können mit
30461  
30462 \series bold
30463
30464 \backslash
30465 fboxrule
30466 \series default
30467  und 
30468 \series bold
30469
30470 \backslash
30471 fboxsep
30472 \series default
30473  gesteuert werden, wie in Abschnitt
30474 \begin_inset space ~
30475 \end_inset
30476
30477
30478 \begin_inset CommandInset ref
30479 LatexCommand ref
30480 reference "uab:Verzierung"
30481
30482 \end_inset
30483
30484  beschrieben.
30485 \end_layout
30486
30487 \begin_layout Standard
30488 Für das folgende Beispiel wurde der Befehl
30489 \end_layout
30490
30491 \begin_layout Standard
30492
30493 \series bold
30494
30495 \backslash
30496 fcolorbox{cyan}{magenta}{
30497 \end_layout
30498
30499 \begin_layout Standard
30500 benutzt.
30501  Hier wurden die Rahmendicke und der Abstand auf 1
30502 \begin_inset space \thinspace{}
30503 \end_inset
30504
30505 mm gesetzt:
30506 \begin_inset Newline newline
30507 \end_inset
30508
30509
30510 \begin_inset ERT
30511 status collapsed
30512
30513 \begin_layout Plain Layout
30514
30515
30516 \backslash
30517 fboxrule 1mm 
30518 \backslash
30519 fboxsep 1mm
30520 \end_layout
30521
30522 \end_inset
30523
30524
30525 \begin_inset ERT
30526 status collapsed
30527
30528 \begin_layout Plain Layout
30529
30530
30531 \backslash
30532 fcolorbox{cyan}{green}{
30533 \end_layout
30534
30535 \end_inset
30536
30537 Dies ist Text in einer farbigen, gerahmten Box.
30538 \begin_inset ERT
30539 status collapsed
30540
30541 \begin_layout Plain Layout
30542
30543 }
30544 \end_layout
30545
30546 \end_inset
30547
30548
30549 \end_layout
30550
30551 \begin_layout Standard
30552 \begin_inset VSpace bigskip
30553 \end_inset
30554
30555 Natürlich gibt es auch farbigen Text in einer Colorbox:
30556 \begin_inset Newline newline
30557 \end_inset
30558
30559
30560 \begin_inset ERT
30561 status collapsed
30562
30563 \begin_layout Plain Layout
30564
30565
30566 \backslash
30567 fcolorbox{cyan}{green}{
30568 \end_layout
30569
30570 \end_inset
30571
30572
30573 \color yellow
30574 Dies ist farbiger Text in einer farbigen, gerahmten Box.
30575 \color none
30576
30577 \begin_inset ERT
30578 status collapsed
30579
30580 \begin_layout Plain Layout
30581
30582 }
30583 \end_layout
30584
30585 \end_inset
30586
30587
30588 \begin_inset ERT
30589 status collapsed
30590
30591 \begin_layout Plain Layout
30592
30593
30594 \backslash
30595 fboxrule 0.4pt 
30596 \backslash
30597 fboxsep 3pt
30598 \end_layout
30599
30600 \end_inset
30601
30602
30603 \end_layout
30604
30605 \begin_layout Standard
30606 \begin_inset VSpace bigskip
30607 \end_inset
30608
30609
30610 \end_layout
30611
30612 \begin_layout Standard
30613 \begin_inset Note Greyedout
30614 status open
30615
30616 \begin_layout Plain Layout
30617 \noindent
30618
30619 \series bold
30620 Bemerkung:
30621 \series default
30622  Text in Colorboxen kann nicht umgebrochen werden.
30623  Für Text mit mehreren Zeilen müssen Sie eine Box in einer Colorbox benutzen,
30624  wie im folgenden beschrieben.
30625 \end_layout
30626
30627 \end_inset
30628
30629
30630 \end_layout
30631
30632 \begin_layout Subsection
30633 Farbe für Absätze
30634 \begin_inset CommandInset label
30635 LatexCommand label
30636 name "uab:Farbe-für-Absätze"
30637
30638 \end_inset
30639
30640
30641 \begin_inset Index idx
30642 status collapsed
30643
30644 \begin_layout Plain Layout
30645 Farbe ! für Absätze
30646 \end_layout
30647
30648 \end_inset
30649
30650
30651 \end_layout
30652
30653 \begin_layout Standard
30654 Um die Hintergrundfarbe für mehr als eine Textzeile zu setzen, müssen Sie
30655  den Text in eine Minipage stellen.
30656  Vor der Minipage fügen Sie den TeX-Code-Befehl
30657 \end_layout
30658
30659 \begin_layout Standard
30660
30661 \series bold
30662
30663 \backslash
30664 colorbox{color}{
30665 \end_layout
30666
30667 \begin_layout Standard
30668 ein.
30669  Hinter der Minipage fügen Sie 
30670 \series bold
30671
30672 \begin_inset Quotes gld
30673 \end_inset
30674
30675 }
30676 \series default
30677
30678 \begin_inset Quotes grd
30679 \end_inset
30680
30681  als TeX-Code ein.
30682 \end_layout
30683
30684 \begin_layout Standard
30685 \begin_inset ERT
30686 status collapsed
30687
30688 \begin_layout Plain Layout
30689
30690
30691 \backslash
30692 colorbox{hellgrau}{
30693 \end_layout
30694
30695 \end_inset
30696
30697
30698 \begin_inset Box Frameless
30699 position "t"
30700 hor_pos "c"
30701 has_inner_box 1
30702 inner_pos "t"
30703 use_parbox 0
30704 use_makebox 0
30705 width "100col%"
30706 special "none"
30707 height "1in"
30708 height_special "totalheight"
30709 status collapsed
30710
30711 \begin_layout Plain Layout
30712 Dies ist Text mit einer Hintergrundfarbe.
30713  Dies ist Text mit einer Hintergrundfarbe.
30714 \end_layout
30715
30716 \begin_layout Plain Layout
30717 Der Text kann Fußnoten
30718 \begin_inset Foot
30719 status open
30720
30721 \begin_layout Plain Layout
30722 Eine weitere Fußnote
30723 \end_layout
30724
30725 \end_inset
30726
30727  und Tabellen und Abbildungen enthalten.
30728 \end_layout
30729
30730 \begin_layout Plain Layout
30731 \align center
30732 \begin_inset Tabular
30733 <lyxtabular version="3" rows="3" columns="3">
30734 <features tabularvalignment="middle">
30735 <column alignment="center" valignment="top" width="0">
30736 <column alignment="center" valignment="top" width="0">
30737 <column alignment="center" valignment="top" width="0">
30738 <row>
30739 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
30740 \begin_inset Text
30741
30742 \begin_layout Plain Layout
30743 a
30744 \end_layout
30745
30746 \end_inset
30747 </cell>
30748 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
30749 \begin_inset Text
30750
30751 \begin_layout Plain Layout
30752 !
30753 \end_layout
30754
30755 \end_inset
30756 </cell>
30757 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
30758 \begin_inset Text
30759
30760 \begin_layout Plain Layout
30761 3
30762 \end_layout
30763
30764 \end_inset
30765 </cell>
30766 </row>
30767 <row>
30768 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
30769 \begin_inset Text
30770
30771 \begin_layout Plain Layout
30772 <
30773 \end_layout
30774
30775 \end_inset
30776 </cell>
30777 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
30778 \begin_inset Text
30779
30780 \begin_layout Plain Layout
30781 b2
30782 \begin_inset Quotes erd
30783 \end_inset
30784
30785 |
30786 \end_layout
30787
30788 \end_inset
30789 </cell>
30790 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
30791 \begin_inset Text
30792
30793 \begin_layout Plain Layout
30794 >
30795 \end_layout
30796
30797 \end_inset
30798 </cell>
30799 </row>
30800 <row>
30801 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
30802 \begin_inset Text
30803
30804 \begin_layout Plain Layout
30805 1
30806 \end_layout
30807
30808 \end_inset
30809 </cell>
30810 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
30811 \begin_inset Text
30812
30813 \begin_layout Plain Layout
30814 §
30815 \end_layout
30816
30817 \end_inset
30818 </cell>
30819 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
30820 \begin_inset Text
30821
30822 \begin_layout Plain Layout
30823 c
30824 \end_layout
30825
30826 \end_inset
30827 </cell>
30828 </row>
30829 </lyxtabular>
30830
30831 \end_inset
30832
30833
30834 \end_layout
30835
30836 \end_inset
30837
30838
30839 \begin_inset ERT
30840 status collapsed
30841
30842 \begin_layout Plain Layout
30843
30844 }
30845 \end_layout
30846
30847 \end_inset
30848
30849
30850 \end_layout
30851
30852 \begin_layout Section
30853 Rotierte und skalierte Boxen
30854 \end_layout
30855
30856 \begin_layout Standard
30857 Um die Befehle dieses Abschnitts nutzen zu können, muss das Paket 
30858 \series bold
30859 graphicx
30860 \series default
30861
30862 \begin_inset Index idx
30863 status collapsed
30864
30865 \begin_layout Plain Layout
30866 LaTeX-Pakete ! graphicx
30867 \end_layout
30868
30869 \end_inset
30870
30871  im LaTeX-Vorspann mit folgendem Befehl geladen werden:
30872 \end_layout
30873
30874 \begin_layout Standard
30875
30876 \series bold
30877
30878 \backslash
30879 @ifundefined{rotatebox}
30880 \begin_inset Newline newline
30881 \end_inset
30882
30883
30884 \begin_inset Phantom HPhantom
30885 status open
30886
30887 \begin_layout Plain Layout
30888
30889 \series bold
30890 \begin_inset space ~
30891 \end_inset
30892
30893
30894 \end_layout
30895
30896 \end_inset
30897
30898 {
30899 \backslash
30900 usepackage{graphicx}}{}
30901 \end_layout
30902
30903 \begin_layout Standard
30904 \begin_inset Note Greyedout
30905 status open
30906
30907 \begin_layout Plain Layout
30908
30909 \series bold
30910 Bemerkung:
30911 \series default
30912  Die meisten DVI-Programme können keine rotierten oder skalierten Texte
30913  darstellen.
30914  In der PDF- oder PostScript-Ausgabe wird aber alles korrekt angezeigt.
30915 \end_layout
30916
30917 \end_inset
30918
30919
30920 \end_layout
30921
30922 \begin_layout Standard
30923 \begin_inset Note Greyedout
30924 status open
30925
30926 \begin_layout Plain Layout
30927
30928 \series bold
30929 Bemerkung:
30930 \series default
30931  Gleitobjekte dürfen nicht in eine rotierte oder skalierte Box gesetzt werden.
30932 \end_layout
30933
30934 \end_inset
30935
30936
30937 \end_layout
30938
30939 \begin_layout Subsection
30940 Rotierte Boxen
30941 \begin_inset Index idx
30942 status collapsed
30943
30944 \begin_layout Plain Layout
30945 Boxen ! rotierte
30946 \end_layout
30947
30948 \end_inset
30949
30950
30951 \begin_inset Index idx
30952 status collapsed
30953
30954 \begin_layout Plain Layout
30955 Rotiertes Material
30956 \end_layout
30957
30958 \end_inset
30959
30960
30961 \begin_inset Index idx
30962 status collapsed
30963
30964 \begin_layout Plain Layout
30965 Abbildungen ! rotierte
30966 \end_layout
30967
30968 \end_inset
30969
30970
30971 \begin_inset Index idx
30972 status collapsed
30973
30974 \begin_layout Plain Layout
30975 Tabellen ! rotierte
30976 \end_layout
30977
30978 \end_inset
30979
30980
30981 \end_layout
30982
30983 \begin_layout Standard
30984 Um Text zu drehen, verwendet man den Befehl 
30985 \series bold
30986
30987 \backslash
30988 rotatebox
30989 \series default
30990  im TeX-Code nach folgendem Schema:
30991 \end_layout
30992
30993 \begin_layout Standard
30994
30995 \series bold
30996
30997 \backslash
30998 rotatebox[Drehpunkt]{Winkel}{Boxinhalt}
30999 \end_layout
31000
31001 \begin_layout Standard
31002 Der Drehpunkt wird mit 
31003 \series bold
31004 origin=Position
31005 \series default
31006  angegeben.
31007  Folgende Positionen sind möglich: 
31008 \emph on
31009 c
31010 \emph default
31011  (mittig), 
31012 \emph on
31013 l
31014 \emph default
31015  (links), 
31016 \emph on
31017 r
31018 \emph default
31019  (rechts), 
31020 \emph on
31021 b
31022 \emph default
31023  (unten), 
31024 \emph on
31025 t
31026 \emph default
31027  (oben), sowie sinnvolle Kombinationen aus den vier Grundpositionen.
31028  Z.
31029 \begin_inset space \thinspace{}
31030 \end_inset
31031
31032 B.
31033  bedeutet 
31034 \emph on
31035 lt
31036 \emph default
31037 , dass sich der Drehpunkt links oben befindet.
31038  Wird kein Drehpunkt angegeben, wird die Position 
31039 \emph on
31040 l
31041 \emph default
31042  verwendet.
31043  Winkel gibt den Drehwinkel in Grad an und darf auch negativ sein.
31044  Gedreht wird gegen den Uhrzeigersinn.
31045 \end_layout
31046
31047 \begin_layout Standard
31048 Im folgenden Beispiel wurde vor dem Text der Befehl 
31049 \series bold
31050
31051 \backslash
31052 rotatebox[origin=c]{60}{
31053 \series default
31054  im TeX-Modus eingegeben.
31055  Nach dem Text wurde die schließende Klammer 
31056 \series bold
31057 }
31058 \series default
31059  wiederum im TeX-Modus eingegeben.
31060 \end_layout
31061
31062 \begin_layout Standard
31063 Dies ist eine Zeile 
31064 \begin_inset ERT
31065 status collapsed
31066
31067 \begin_layout Plain Layout
31068
31069
31070 \backslash
31071 rotatebox[origin=c]{60}{
31072 \end_layout
31073
31074 \end_inset
31075
31076 mit rotiertem
31077 \begin_inset ERT
31078 status collapsed
31079
31080 \begin_layout Plain Layout
31081
31082 }
31083 \end_layout
31084
31085 \end_inset
31086
31087  Text.
31088 \end_layout
31089
31090 \begin_layout Standard
31091 Der Boxinhalt kann auch eine andere Box oder eine eingebettete Formel sein:
31092 \end_layout
31093
31094 \begin_layout Standard
31095 Dies ist eine Zeile 
31096 \begin_inset ERT
31097 status collapsed
31098
31099 \begin_layout Plain Layout
31100
31101
31102 \backslash
31103 rotatebox[origin=r]{-60}{
31104 \end_layout
31105
31106 \end_inset
31107
31108
31109 \begin_inset Box Doublebox
31110 position "c"
31111 hor_pos "c"
31112 has_inner_box 0
31113 inner_pos "c"
31114 use_parbox 0
31115 use_makebox 0
31116 width "1in"
31117 special "width"
31118 height "1in"
31119 height_special "totalheight"
31120 status collapsed
31121
31122 \begin_layout Plain Layout
31123 mit rotiertem
31124 \end_layout
31125
31126 \end_inset
31127
31128
31129 \begin_inset ERT
31130 status collapsed
31131
31132 \begin_layout Plain Layout
31133
31134 }
31135 \end_layout
31136
31137 \end_inset
31138
31139  umrandeten Text 
31140 \begin_inset ERT
31141 status collapsed
31142
31143 \begin_layout Plain Layout
31144
31145
31146 \backslash
31147 rotatebox[origin=lb]{60}{
31148 \end_layout
31149
31150 \end_inset
31151
31152
31153 \begin_inset Formula $\int A\,\mathrm{d}x=B$
31154 \end_inset
31155
31156
31157 \begin_inset ERT
31158 status collapsed
31159
31160 \begin_layout Plain Layout
31161
31162 }
31163 \end_layout
31164
31165 \end_inset
31166
31167  und einer Formel.
31168 \end_layout
31169
31170 \begin_layout Standard
31171 Oder ein Bild oder Tabelle:
31172 \end_layout
31173
31174 \begin_layout Standard
31175 Dies ist eine Zeile 
31176 \begin_inset ERT
31177 status collapsed
31178
31179 \begin_layout Plain Layout
31180
31181
31182 \backslash
31183 rotatebox[origin=lb]{90}{
31184 \end_layout
31185
31186 \end_inset
31187
31188
31189 \begin_inset Graphics
31190         filename ../clipart/platypus.eps
31191         lyxscale 50
31192         width 25col%
31193
31194 \end_inset
31195
31196
31197 \begin_inset ERT
31198 status collapsed
31199
31200 \begin_layout Plain Layout
31201
31202 }
31203 \end_layout
31204
31205 \end_inset
31206
31207  mit einem rotierten Bild 
31208 \begin_inset ERT
31209 status collapsed
31210
31211 \begin_layout Plain Layout
31212
31213
31214 \backslash
31215 rotatebox[origin=l]{-90}{
31216 \end_layout
31217
31218 \end_inset
31219
31220
31221 \begin_inset Tabular
31222 <lyxtabular version="3" rows="2" columns="2">
31223 <features tabularvalignment="middle">
31224 <column alignment="center" valignment="top" width="0">
31225 <column alignment="center" valignment="top" width="0">
31226 <row>
31227 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
31228 \begin_inset Text
31229
31230 \begin_layout Plain Layout
31231 q
31232 \end_layout
31233
31234 \end_inset
31235 </cell>
31236 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
31237 \begin_inset Text
31238
31239 \begin_layout Plain Layout
31240 w
31241 \end_layout
31242
31243 \end_inset
31244 </cell>
31245 </row>
31246 <row>
31247 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
31248 \begin_inset Text
31249
31250 \begin_layout Plain Layout
31251 e
31252 \end_layout
31253
31254 \end_inset
31255 </cell>
31256 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
31257 \begin_inset Text
31258
31259 \begin_layout Plain Layout
31260 r
31261 \end_layout
31262
31263 \end_inset
31264 </cell>
31265 </row>
31266 </lyxtabular>
31267
31268 \end_inset
31269
31270
31271 \begin_inset ERT
31272 status collapsed
31273
31274 \begin_layout Plain Layout
31275
31276 }
31277 \end_layout
31278
31279 \end_inset
31280
31281  und Tabelle.
31282 \end_layout
31283
31284 \begin_layout Subsection
31285 Skalierte Boxen
31286 \begin_inset Index idx
31287 status collapsed
31288
31289 \begin_layout Plain Layout
31290 Boxen ! skalierte
31291 \end_layout
31292
31293 \end_inset
31294
31295
31296 \begin_inset Index idx
31297 status collapsed
31298
31299 \begin_layout Plain Layout
31300 Skaliertes Material
31301 \end_layout
31302
31303 \end_inset
31304
31305
31306 \begin_inset Index idx
31307 status collapsed
31308
31309 \begin_layout Plain Layout
31310 Abbildungen ! skalierte
31311 \end_layout
31312
31313 \end_inset
31314
31315
31316 \begin_inset Index idx
31317 status collapsed
31318
31319 \begin_layout Plain Layout
31320 Tabellen ! skalierte
31321 \end_layout
31322
31323 \end_inset
31324
31325
31326 \end_layout
31327
31328 \begin_layout Standard
31329 Um Text zu skalieren, kann man die Befehle 
31330 \series bold
31331
31332 \backslash
31333 scalebox
31334 \series default
31335  und 
31336 \series bold
31337
31338 \backslash
31339 resizebox
31340 \series default
31341  im TeX-Modus verwenden.
31342 \end_layout
31343
31344 \begin_layout Standard
31345
31346 \series bold
31347
31348 \backslash
31349 scalebox
31350 \series default
31351  wird nach folgendem Schema verwendet:
31352 \end_layout
31353
31354 \begin_layout Standard
31355
31356 \series bold
31357
31358 \backslash
31359 scalebox{horizontal}[vertikal]{Boxinhalt}
31360 \end_layout
31361
31362 \begin_layout Standard
31363 Horizontal und vertikal geben die jeweiligen Skalierungsfaktoren an.
31364  Wird kein vertikaler Skalierungsfaktor angegeben, wird dafür der horizontale
31365  verwendet.
31366 \end_layout
31367
31368 \begin_layout Standard
31369 Z.
31370 \begin_inset space \thinspace{}
31371 \end_inset
31372
31373 B.
31374  ergibt der Befehl 
31375 \series bold
31376
31377 \backslash
31378 scalebox{2}{Hallo}
31379 \series default
31380  ein im Vergleich zur Dokumentschriftgröße doppelt so großes 
31381 \begin_inset ERT
31382 status collapsed
31383
31384 \begin_layout Plain Layout
31385
31386
31387 \backslash
31388 scalebox{2}{
31389 \end_layout
31390
31391 \end_inset
31392
31393 Hallo
31394 \begin_inset ERT
31395 status collapsed
31396
31397 \begin_layout Plain Layout
31398
31399 }
31400 \end_layout
31401
31402 \end_inset
31403
31404 .
31405 \end_layout
31406
31407 \begin_layout Standard
31408
31409 \series bold
31410
31411 \backslash
31412 scalebox{2}[1]{Hallo}
31413 \series default
31414  verzerrt hingegen das 
31415 \begin_inset ERT
31416 status collapsed
31417
31418 \begin_layout Plain Layout
31419
31420
31421 \backslash
31422 scalebox{2}[1]{
31423 \end_layout
31424
31425 \end_inset
31426
31427 Hallo
31428 \begin_inset ERT
31429 status collapsed
31430
31431 \begin_layout Plain Layout
31432
31433 }
31434 \end_layout
31435
31436 \end_inset
31437
31438 .
31439 \end_layout
31440
31441 \begin_layout Standard
31442 Die Skalierungsfaktoren dürfen auch negativ sein.
31443  In diesem Fall wird der Boxinhalt gespiegelt.
31444 \end_layout
31445
31446 \begin_layout Standard
31447 Daher lässt sich mit dem Befehl 
31448 \series bold
31449
31450 \backslash
31451 scalebox{-1}[1]{Hallo}
31452 \series default
31453  Spiegelschrift erstellen: 
31454 \begin_inset ERT
31455 status collapsed
31456
31457 \begin_layout Plain Layout
31458
31459
31460 \backslash
31461 scalebox{-1}[1]{
31462 \end_layout
31463
31464 \end_inset
31465
31466 Hallo
31467 \begin_inset ERT
31468 status collapsed
31469
31470 \begin_layout Plain Layout
31471
31472 }
31473 \end_layout
31474
31475 \end_inset
31476
31477
31478 \end_layout
31479
31480 \begin_layout Standard
31481
31482 \series bold
31483
31484 \backslash
31485 scalebox{1}[-1]{Hallo}
31486 \series default
31487  spiegelt das 
31488 \begin_inset ERT
31489 status collapsed
31490
31491 \begin_layout Plain Layout
31492
31493
31494 \backslash
31495 scalebox{1}[-1]{
31496 \end_layout
31497
31498 \end_inset
31499
31500 Hallo
31501 \begin_inset ERT
31502 status collapsed
31503
31504 \begin_layout Plain Layout
31505
31506 }
31507 \end_layout
31508
31509 \end_inset
31510
31511  an der Grundlinie.
31512 \end_layout
31513
31514 \begin_layout Standard
31515 Zu 
31516 \series bold
31517
31518 \backslash
31519 scalebox{-1}[1]{Boxinhalt}
31520 \series default
31521  gibt es den äquivalenten Befehl
31522 \begin_inset Newline newline
31523 \end_inset
31524
31525
31526 \series bold
31527
31528 \backslash
31529 reflectbox{Boxinhalt}
31530 \series default
31531 .
31532 \end_layout
31533
31534 \begin_layout Standard
31535 \begin_inset VSpace bigskip
31536 \end_inset
31537
31538
31539 \series bold
31540
31541 \backslash
31542 resizebox
31543 \series default
31544  verwendet man, um den Boxinhalt auf eine bestimmte Höhe oder Breite zu
31545  skalieren.
31546  Das Befehlsschema ist folgendes:
31547 \end_layout
31548
31549 \begin_layout Standard
31550
31551 \series bold
31552
31553 \backslash
31554 resizebox{Breite}{Höhe}{Boxinhalt}
31555 \end_layout
31556
31557 \begin_layout Standard
31558 Gibt man für eines der beiden Argumente ein Ausrufezeichen 
31559 \series bold
31560 !
31561 \series default
31562  ein, wird die Größe so gewählt, dass das Seitenverhältnis der Box beibehalten
31563  wird.
31564 \end_layout
31565
31566 \begin_layout Standard
31567 Der Befehl 
31568 \series bold
31569
31570 \backslash
31571 resizebox{2cm}{1cm}{Hallo}
31572 \series default
31573  ergibt: 
31574 \begin_inset ERT
31575 status collapsed
31576
31577 \begin_layout Plain Layout
31578
31579
31580 \backslash
31581 resizebox{2cm}{1cm}{
31582 \end_layout
31583
31584 \end_inset
31585
31586 Hallo
31587 \begin_inset ERT
31588 status collapsed
31589
31590 \begin_layout Plain Layout
31591
31592 }
31593 \end_layout
31594
31595 \end_inset
31596
31597
31598 \begin_inset Newline newline
31599 \end_inset
31600
31601 Der Befehl 
31602 \series bold
31603
31604 \backslash
31605 resizebox{2cm}{!}{Hallo}
31606 \series default
31607  ergibt: 
31608 \begin_inset ERT
31609 status collapsed
31610
31611 \begin_layout Plain Layout
31612
31613
31614 \backslash
31615 resizebox{2cm}{!}{
31616 \end_layout
31617
31618 \end_inset
31619
31620 Hallo
31621 \begin_inset ERT
31622 status collapsed
31623
31624 \begin_layout Plain Layout
31625
31626 }
31627 \end_layout
31628
31629 \end_inset
31630
31631
31632 \end_layout
31633
31634 \begin_layout Standard
31635 \begin_inset VSpace bigskip
31636 \end_inset
31637
31638
31639 \begin_inset Note Greyedout
31640 status open
31641
31642 \begin_layout Plain Layout
31643
31644 \series bold
31645 Bemerkung:
31646 \series default
31647  Wurde in Argumenten von 
31648 \series bold
31649
31650 \backslash
31651 scalebox
31652 \series default
31653  oder 
31654 \series bold
31655
31656 \backslash
31657 resizebox
31658 \series default
31659  eine Null angegeben, entstehen beim Exportieren zwar keine LaTeX-Fehler,
31660  die erzeugten Dateien können jedoch nicht oder nur teilweise angezeigt
31661  werden.
31662 \end_layout
31663
31664 \end_inset
31665
31666
31667 \end_layout
31668
31669 \begin_layout Standard
31670 \begin_inset VSpace bigskip
31671 \end_inset
31672
31673
31674 \end_layout
31675
31676 \begin_layout Standard
31677 Alle Boxen können beliebig miteinander kombiniert werden.
31678  So ergibt z.
31679 \begin_inset space \thinspace{}
31680 \end_inset
31681
31682 B.
31683  der Befehl
31684 \begin_inset Newline newline
31685 \end_inset
31686
31687
31688 \series bold
31689
31690 \backslash
31691 rotatebox[origin=c]{-45}{
31692 \backslash
31693 resizebox{2cm}{!}{
31694 \backslash
31695 reflectbox{Hallo}}}
31696 \series default
31697 :
31698 \end_layout
31699
31700 \begin_layout Standard
31701 \align center
31702 \begin_inset ERT
31703 status collapsed
31704
31705 \begin_layout Plain Layout
31706
31707
31708 \backslash
31709 rotatebox[origin=c]{-45}{
31710 \backslash
31711 resizebox{2cm}{!}{
31712 \backslash
31713 reflectbox{
31714 \end_layout
31715
31716 \end_inset
31717
31718 Hallo
31719 \begin_inset ERT
31720 status collapsed
31721
31722 \begin_layout Plain Layout
31723
31724 }}}
31725 \end_layout
31726
31727 \end_inset
31728
31729
31730 \end_layout
31731
31732 \begin_layout Standard
31733 \noindent
31734 Bilder, Tabellen und eingebettete Formeln sind als Boxinhalt erlaubt:
31735 \end_layout
31736
31737 \begin_layout Standard
31738 \align center
31739 \begin_inset ERT
31740 status collapsed
31741
31742 \begin_layout Plain Layout
31743
31744
31745 \backslash
31746 rotatebox[origin=c]{-30}{
31747 \backslash
31748 resizebox{2cm}{!}{
31749 \backslash
31750 reflectbox{
31751 \end_layout
31752
31753 \end_inset
31754
31755
31756 \begin_inset Graphics
31757         filename ../clipart/platypus.eps
31758         lyxscale 50
31759         width 25col%
31760
31761 \end_inset
31762
31763
31764 \begin_inset ERT
31765 status collapsed
31766
31767 \begin_layout Plain Layout
31768
31769 }}}
31770 \end_layout
31771
31772 \end_inset
31773
31774
31775 \begin_inset ERT
31776 status collapsed
31777
31778 \begin_layout Plain Layout
31779
31780
31781 \backslash
31782 rotatebox[origin=c]{-45}{
31783 \backslash
31784 resizebox{2cm}{!}{
31785 \backslash
31786 reflectbox{
31787 \end_layout
31788
31789 \end_inset
31790
31791
31792 \begin_inset Tabular
31793 <lyxtabular version="3" rows="2" columns="2">
31794 <features tabularvalignment="middle">
31795 <column alignment="center" valignment="top" width="0">
31796 <column alignment="center" valignment="top" width="0">
31797 <row>
31798 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
31799 \begin_inset Text
31800
31801 \begin_layout Plain Layout
31802 q
31803 \end_layout
31804
31805 \end_inset
31806 </cell>
31807 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
31808 \begin_inset Text
31809
31810 \begin_layout Plain Layout
31811 w
31812 \end_layout
31813
31814 \end_inset
31815 </cell>
31816 </row>
31817 <row>
31818 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
31819 \begin_inset Text
31820
31821 \begin_layout Plain Layout
31822 e
31823 \end_layout
31824
31825 \end_inset
31826 </cell>
31827 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
31828 \begin_inset Text
31829
31830 \begin_layout Plain Layout
31831 r
31832 \end_layout
31833
31834 \end_inset
31835 </cell>
31836 </row>
31837 </lyxtabular>
31838
31839 \end_inset
31840
31841
31842 \begin_inset ERT
31843 status collapsed
31844
31845 \begin_layout Plain Layout
31846
31847 }}}
31848 \end_layout
31849
31850 \end_inset
31851
31852
31853 \begin_inset ERT
31854 status collapsed
31855
31856 \begin_layout Plain Layout
31857
31858
31859 \backslash
31860 rotatebox[origin=c]{-45}{
31861 \backslash
31862 resizebox{2cm}{!}{
31863 \backslash
31864 reflectbox{
31865 \end_layout
31866
31867 \end_inset
31868
31869
31870 \begin_inset Formula $\int A\,\mathrm{d}x=B$
31871 \end_inset
31872
31873
31874 \begin_inset ERT
31875 status collapsed
31876
31877 \begin_layout Plain Layout
31878
31879 }}}
31880 \end_layout
31881
31882 \end_inset
31883
31884
31885 \end_layout
31886
31887 \begin_layout Standard
31888 Hat man den globalen Formelstil 
31889 \series bold
31890 fleqn
31891 \series default
31892
31893 \begin_inset Foot
31894 status collapsed
31895
31896 \begin_layout Plain Layout
31897 Wenn 
31898 \begin_inset Quotes gld
31899 \end_inset
31900
31901 fleqn
31902 \begin_inset Quotes grd
31903 \end_inset
31904
31905  zu den Dokumentklassen-Optionen hinzugefügt wurde.
31906 \end_layout
31907
31908 \end_inset
31909
31910  gewählt, kann man auch abgesetzte Formeln skalieren.
31911 \end_layout
31912
31913 \begin_layout Chapter
31914 Externe Dateien
31915 \begin_inset Index idx
31916 status collapsed
31917
31918 \begin_layout Plain Layout
31919 Dateien ! externe
31920 \end_layout
31921
31922 \end_inset
31923
31924
31925 \end_layout
31926
31927 \begin_layout Standard
31928 Mit 
31929 \family sans
31930 Einfügen\SpecialChar \menuseparator
31931 Datei
31932 \family default
31933  können Sie fremdes Material in Ihr Dokument einsetzen.
31934  Das kann folgendes sein:
31935 \end_layout
31936
31937 \begin_layout Description
31938 LyX-Dokument Der Inhalt eines anderen LyX-Dokuments wird direkt in Ihr Dokument
31939  eingefügt.
31940 \end_layout
31941
31942 \begin_layout Description
31943 Einfacher
31944 \begin_inset space ~
31945 \end_inset
31946
31947 Text Ein Text-Dokument; jede Textzeile wird als eigener Absatz in Ihr Dokument
31948  eingefügt.
31949 \end_layout
31950
31951 \begin_layout Description
31952 Einfacher
31953 \begin_inset space ~
31954 \end_inset
31955
31956 Text,
31957 \begin_inset space ~
31958 \end_inset
31959
31960 Zeilen
31961 \begin_inset space ~
31962 \end_inset
31963
31964 verbinden Ein Text-Dokument; Zeilen werden so eingefügt, wie sie sind.
31965  Leerzeilen trennen die Absätze.
31966 \end_layout
31967
31968 \begin_layout Description
31969 Externes
31970 \begin_inset space ~
31971 \end_inset
31972
31973 Material Dateien in verschiedenen Formaten.
31974 \end_layout
31975
31976 \begin_layout Description
31977 Unterdokument LyX- oder LaTeX-Dokumente.
31978 \end_layout
31979
31980 \begin_layout Section
31981 Externes Material
31982 \begin_inset Index idx
31983 status collapsed
31984
31985 \begin_layout Plain Layout
31986 Externes Material
31987 \end_layout
31988
31989 \end_inset
31990
31991
31992 \end_layout
31993
31994 \begin_layout Standard
31995 Mit 
31996 \family sans
31997 Einfügen\SpecialChar \menuseparator
31998 Datei\SpecialChar \menuseparator
31999  Externes Material
32000 \family default
32001  können Sie Dateien in Ihr Dokument einfügen, ohne sie vorher in ein Format
32002  konvertieren zu müssen, das vom Ausgabeprogramm verstanden werden kann,
32003  weil LyX sich darum kümmert.
32004  Das ist ähnlich wie bei Bildern, die in verschiedenen Formaten in LyX-Dokumente
32005  eingefügt werden können.
32006  Wenn die Grafikvorschau in den LyX-Einstellungen unter
32007 \family sans
32008  Aussehen
32009 \begin_inset space ~
32010 \end_inset
32011
32012 &
32013 \begin_inset space ~
32014 \end_inset
32015
32016 Handhabung\SpecialChar \menuseparator
32017 Grafik
32018 \family default
32019 , werden die externen Materialtypen Dia und Xfig direkt in LyX angezeigt.
32020 \end_layout
32021
32022 \begin_layout Standard
32023 Zur Zeit können Sie folgende Dateitypen (
32024 \family sans
32025 Vorlagen
32026 \family default
32027 ) benutzen:
32028 \end_layout
32029
32030 \begin_layout Description
32031 Schachdiagramm unterstützt Schachdiagramme, die mit dem Programm 
32032 \series bold
32033
32034 \begin_inset CommandInset href
32035 LatexCommand href
32036 name "XBoard"
32037 target "http://en.wikipedia.org/wiki/XBoard"
32038
32039 \end_inset
32040
32041
32042 \series default
32043  erzeugt wurden.
32044 \end_layout
32045
32046 \begin_layout Description
32047 Datum fügt ein Datum mit dem Format 
32048 \emph on
32049 Tag-Monat-Jahr
32050 \emph default
32051  ein.
32052  Hier ist ein Beispiel: 
32053 \begin_inset External
32054         template Date
32055         filename .
32056
32057 \end_inset
32058
32059
32060 \begin_inset space ~
32061 \end_inset
32062
32063
32064 \begin_inset Note Note
32065 status open
32066
32067 \begin_layout Plain Layout
32068
32069 \lang english
32070 Remove the protected space when bug 4398 is fixed!
32071 \end_layout
32072
32073 \end_inset
32074
32075
32076 \begin_inset Newline newline
32077 \end_inset
32078
32079 Das Datum ist in LyX nicht zu sehen, nur in der Druckausgabe.
32080  Es gibt noch zwei andere Möglichkeiten, ein Datum einzufügen: Über das
32081  Menü 
32082 \family sans
32083 Einfügen\SpecialChar \menuseparator
32084 Datum
32085 \family default
32086  und mit dem LaTeX-Befehl 
32087 \series bold
32088
32089 \backslash
32090 today
32091 \series default
32092 .
32093  Die verschiedenen Methoden werden in Tabelle
32094 \begin_inset space ~
32095 \end_inset
32096
32097
32098 \begin_inset CommandInset ref
32099 LatexCommand ref
32100 reference "tab:Vergleich-der-Datums-Eingaben"
32101
32102 \end_inset
32103
32104  verglichen.
32105 \end_layout
32106
32107 \begin_layout Description
32108 Dia unterstützt Diagramme, die mit dem Programm 
32109 \series bold
32110
32111 \begin_inset CommandInset href
32112 LatexCommand href
32113 name "Dia"
32114 target "http://en.wikipedia.org/wiki/Dia_(software)"
32115
32116 \end_inset
32117
32118
32119 \series default
32120  erzeugt wurden.
32121 \end_layout
32122
32123 \begin_layout Description
32124 LilyPond Mit dieser Vorlage können Sie Noten mit dem Programm 
32125 \series bold
32126
32127 \begin_inset CommandInset href
32128 LatexCommand href
32129 name "LilyPond"
32130 target "http://en.wikipedia.org/wiki/LilyPond"
32131
32132 \end_inset
32133
32134
32135 \series default
32136  schreiben.
32137 \end_layout
32138
32139 \begin_layout Description
32140 PDFPages Mit dieser Vorlage können Sie PDF-Dokumente in ihr Dokument einfügen.
32141  Um bestimmte oder alle Seiten eines PDFs einzufügen, benutzen Sie die 
32142 \emph on
32143 pages
32144 \emph default
32145  Option im Feld 
32146 \family sans
32147 Option
32148 \family default
32149  in der Karteikarte 
32150 \family sans
32151 LaTeX- und LyX-Optionen
32152 \family default
32153  entsprechend der Vorlagenbeschreibung im Dialog.
32154  Wenn keine 
32155 \emph on
32156 pages
32157 \emph default
32158  Option gegeben ist, wird nur die erste Seite des PDFs eingefügt.
32159 \end_layout
32160
32161 \begin_layout Description
32162 Rastergrafik Diese Vorlage kann für Bitmap-Bilder benutzt werden.
32163  Fast alle bekannten Bildformate werden unterstützt.
32164  Die Bilddateien können im Dialogfenster 
32165 \family sans
32166 Externes
32167 \begin_inset space ~
32168 \end_inset
32169
32170 Material
32171 \family default
32172  genauso behandelt werden wie die mit dem normalen 
32173 \family sans
32174 Grafik
32175 \family default
32176 -Dialog eingefügten, siehe Abschnitt
32177 \begin_inset space ~
32178 \end_inset
32179
32180
32181 \begin_inset CommandInset ref
32182 LatexCommand ref
32183 reference "abs:Grafik-Dialog"
32184
32185 \end_inset
32186
32187 .
32188  Der Unterschied ist, dass nur Rasterbilder erlaubt sind, das heißt PDF-
32189  und EPS-Bilder werden nicht unterstützt.
32190 \end_layout
32191
32192 \begin_layout Description
32193 XFig Diese Vorlage unterstützt Bilder, die mit dem Programm 
32194 \series bold
32195
32196 \begin_inset CommandInset href
32197 LatexCommand href
32198 name "Xfig"
32199 target "http://en.wikipedia.org/wiki/Xfig"
32200
32201 \end_inset
32202
32203
32204 \series default
32205  erzeugt wurden.
32206 \end_layout
32207
32208 \begin_layout Standard
32209 \begin_inset Float table
32210 placement h
32211 wide false
32212 sideways false
32213 status open
32214
32215 \begin_layout Plain Layout
32216 \begin_inset Caption
32217
32218 \begin_layout Plain Layout
32219 \begin_inset CommandInset label
32220 LatexCommand label
32221 name "tab:Vergleich-der-Datums-Eingaben"
32222
32223 \end_inset
32224
32225 Vergleich der Datums-Eingaben
32226 \end_layout
32227
32228 \end_inset
32229
32230
32231 \end_layout
32232
32233 \begin_layout Plain Layout
32234 \align center
32235 \begin_inset Tabular
32236 <lyxtabular version="3" rows="4" columns="4">
32237 <features tabularvalignment="middle">
32238 <column alignment="center" valignment="top" width="0">
32239 <column alignment="center" valignment="top" width="0">
32240 <column alignment="center" valignment="top" width="0">
32241 <column alignment="center" valignment="top" width="0">
32242 <row>
32243 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
32244 \begin_inset Text
32245
32246 \begin_layout Plain Layout
32247 Dokumentformat
32248 \end_layout
32249
32250 \end_inset
32251 </cell>
32252 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
32253 \begin_inset Text
32254
32255 \begin_layout Plain Layout
32256
32257 \family sans
32258 Externes Material\SpecialChar \menuseparator
32259 Datum
32260 \end_layout
32261
32262 \end_inset
32263 </cell>
32264 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
32265 \begin_inset Text
32266
32267 \begin_layout Plain Layout
32268
32269 \family sans
32270 Einfügen\SpecialChar \menuseparator
32271 Datum
32272 \end_layout
32273
32274 \end_inset
32275 </cell>
32276 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
32277 \begin_inset Text
32278
32279 \begin_layout Plain Layout
32280 Befehl 
32281 \series bold
32282
32283 \backslash
32284 today
32285 \end_layout
32286
32287 \end_inset
32288 </cell>
32289 </row>
32290 <row>
32291 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
32292 \begin_inset Text
32293
32294 \begin_layout Plain Layout
32295 LyX
32296 \end_layout
32297
32298 \end_inset
32299 </cell>
32300 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
32301 \begin_inset Text
32302
32303 \begin_layout Plain Layout
32304 als Box
32305 \end_layout
32306
32307 \end_inset
32308 </cell>
32309 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
32310 \begin_inset Text
32311
32312 \begin_layout Plain Layout
32313 als Datum
32314 \end_layout
32315
32316 \end_inset
32317 </cell>
32318 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
32319 \begin_inset Text
32320
32321 \begin_layout Plain Layout
32322 als TeX-Code
32323 \end_layout
32324
32325 \end_inset
32326 </cell>
32327 </row>
32328 <row>
32329 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
32330 \begin_inset Text
32331
32332 \begin_layout Plain Layout
32333 LaTeX
32334 \end_layout
32335
32336 \end_inset
32337 </cell>
32338 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
32339 \begin_inset Text
32340
32341 \begin_layout Plain Layout
32342 als Datum
32343 \end_layout
32344
32345 \end_inset
32346 </cell>
32347 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
32348 \begin_inset Text
32349
32350 \begin_layout Plain Layout
32351 als Datum
32352 \end_layout
32353
32354 \end_inset
32355 </cell>
32356 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
32357 \begin_inset Text
32358
32359 \begin_layout Plain Layout
32360 als Befehl
32361 \end_layout
32362
32363 \end_inset
32364 </cell>
32365 </row>
32366 <row>
32367 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
32368 \begin_inset Text
32369
32370 \begin_layout Plain Layout
32371 DVI, PDF, PS
32372 \end_layout
32373
32374 \end_inset
32375 </cell>
32376 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
32377 \begin_inset Text
32378
32379 \begin_layout Plain Layout
32380 als Datum
32381 \end_layout
32382
32383 \end_inset
32384 </cell>
32385 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
32386 \begin_inset Text
32387
32388 \begin_layout Plain Layout
32389 als Datum
32390 \end_layout
32391
32392 \end_inset
32393 </cell>
32394 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
32395 \begin_inset Text
32396
32397 \begin_layout Plain Layout
32398 als Datum
32399 \end_layout
32400
32401 \end_inset
32402 </cell>
32403 </row>
32404 </lyxtabular>
32405
32406 \end_inset
32407
32408
32409 \end_layout
32410
32411 \end_inset
32412
32413
32414 \end_layout
32415
32416 \begin_layout Standard
32417 Wenn Sie im Dialogfenster
32418 \family sans
32419  Externes
32420 \begin_inset space ~
32421 \end_inset
32422
32423 Material 
32424 \family default
32425 in der Karteikarte
32426 \family sans
32427  Datei
32428 \family default
32429  die Option 
32430 \family sans
32431 Entwurf
32432 \family default
32433  benutzen, wird nur der Pfad der ausgewählten Datei in der Ausgabe erscheinen.
32434 \begin_inset Newline newline
32435 \end_inset
32436
32437 LyX kann externes Material entweder als Box wie hier: 
32438 \begin_inset Graphics
32439         filename clipart/ExternesMaterialQt4.png
32440         scale 85
32441         scaleBeforeRotation
32442
32443 \end_inset
32444
32445  oder als Bild darstellen.
32446  Das hängt davon ab, ob Sie im Dialog
32447 \family sans
32448  
32449 \family default
32450 in der Karteikarte 
32451 \family sans
32452 LaTeX- und LyX-Optionen
32453 \family default
32454  die Option 
32455 \family sans
32456 In
32457 \begin_inset space ~
32458 \end_inset
32459
32460 LyX
32461 \begin_inset space ~
32462 \end_inset
32463
32464 anzeigen
32465 \family default
32466  gewählt haben oder nicht.
32467 \end_layout
32468
32469 \begin_layout Standard
32470 Im LyX-Handbuch 
32471 \family sans
32472 \emph on
32473 Anpassung
32474 \family default
32475 \emph default
32476  wird erklärt, wie Sie eigenen Vorlagen erzeugen können.
32477 \end_layout
32478
32479 \begin_layout Section
32480 Unterdokumente
32481 \begin_inset CommandInset label
32482 LatexCommand label
32483 name "abs:Unterdokumente"
32484
32485 \end_inset
32486
32487
32488 \begin_inset Index idx
32489 status collapsed
32490
32491 \begin_layout Plain Layout
32492 Unterdokument
32493 \end_layout
32494
32495 \end_inset
32496
32497
32498 \end_layout
32499
32500 \begin_layout Standard
32501 Unterdokumente benutzt man bei größeren Dokumenten, die aus mehreren Kapiteln
32502  oder Abschnitten bestehen.
32503  Für die Pflege ist das oft hilfreich und manchmal auch gefordert.
32504  Ein Hauptdokument fügt dann die einzelnen Unterdokumente zusammen.
32505  Ein Unterdokument übernimmt und benutzt Inhalte seines Hauptdokuments,
32506  z.
32507 \begin_inset space \thinspace{}
32508 \end_inset
32509
32510 B.
32511  den LaTeX-Vorspann, das Literaturverzeichnis und Querverweismarken.
32512 \end_layout
32513
32514 \begin_layout Standard
32515 Um Unterdokumente bearbeiten zu können ohne ihr Hauptdokument öffnen zu
32516  müssen, geben Sie im Unterdokument im Menü
32517 \family sans
32518  Dokument\SpecialChar \menuseparator
32519 Einstellungen\SpecialChar \menuseparator
32520 Dokumentklasse
32521 \family default
32522  das Hauptdokument an.
32523  Dieses wird dann von LyX im Hintergrund benutzt, wenn Sie das Unterdokument
32524  bearbeiten.
32525 \end_layout
32526
32527 \begin_layout Standard
32528 Unterdokumente werden in LyX als Box angezeigt: 
32529 \begin_inset Graphics
32530         filename clipart/UnterdokumentQt4.png
32531         scale 85
32532         scaleBeforeRotation
32533
32534 \end_inset
32535
32536  Sie werden über
32537 \family sans
32538  Einfügen\SpecialChar \menuseparator
32539 Datei\SpecialChar \menuseparator
32540 Unterdokument
32541 \family default
32542  eingebunden, was das Dialogfenster
32543 \family sans
32544  Unterdokument
32545 \family default
32546  öffnet.
32547  Für 
32548 \family sans
32549 die Art
32550 \begin_inset space ~
32551 \end_inset
32552
32553 der
32554 \begin_inset space ~
32555 \end_inset
32556
32557 Einbindung
32558 \family default
32559  gibt es dort vier Möglichkeiten:
32560 \end_layout
32561
32562 \begin_layout Description
32563 Include Sie können LyX- und LaTeX-Dokumente einbinden.
32564  Wenn Sie im Dialogfenster
32565 \family sans
32566  Unterdokument
32567 \family default
32568  auf 
32569 \family sans
32570 Öffnen
32571 \family default
32572  klicken, wird das eingebundene Dokument in einem eigenen Unterfenster geöffnet,
32573  und Sie können es editieren.
32574 \begin_inset Newline newline
32575 \end_inset
32576
32577
32578 \end_layout
32579
32580 \begin_layout Standard
32581 Hier wird ein Unterdokument
32582 \family sans
32583  
32584 \family default
32585 per 
32586 \family sans
32587 Include
32588 \family default
32589  eingebunden: 
32590 \begin_inset CommandInset include
32591 LatexCommand include
32592 filename "DummyDocument1.lyx"
32593
32594 \end_inset
32595
32596 Die Abschnittsnummerierung enthält alle Abschnitte der eingebundenen Dateien
32597  in der Reihenfolge, in der sie ins Hauptdokument eingebunden werden.
32598  Das obige Beispiel besitzt einen Unterabschnitt mit der Nummer dieses Abschnitt
32599 s.
32600  Auf Marken eingebundener Dokumente kann verwiesen werden: siehe Unterabschnitt
32601 \begin_inset space ~
32602 \end_inset
32603
32604
32605 \begin_inset CommandInset ref
32606 LatexCommand ref
32607 reference "uab:Externer-Unterabschnitt-1"
32608
32609 \end_inset
32610
32611 .
32612 \end_layout
32613
32614 \begin_layout Standard
32615 Der LaTeX-Vorspann des Unterdokuments wird ignoriert, nur der des Hauptdokuments
32616  wird benutzt.
32617  Zweige in Unterdokumenten werden vom Hauptdokument ignoriert, wenn das
32618  Hauptdokument nicht auch einen Zweig mit dem selben Namen besitzt.
32619  Unterdokumente, die per 
32620 \family sans
32621 Include
32622 \family default
32623  eingebunden werden, beginnen in der Druckausgabe auf einer neuen Seite
32624  und enden mit einem Seitenumbruch.
32625 \end_layout
32626
32627 \begin_layout Standard
32628 Wenn Sie nur an einem Kapitel eines großen Dokuments arbeiten und Zeit sparen
32629  wollen, können Sie eingefügte Dateien in einen Zweig setzen.
32630 \begin_inset Foot
32631 status collapsed
32632
32633 \begin_layout Plain Layout
32634 Zweige sind im Kapitel 
32635 \emph on
32636 Zweige
32637 \emph default
32638  des LyX 
32639 \emph on
32640 Benutzerhandbuchs
32641 \emph default
32642  erklärt.
32643 \end_layout
32644
32645 \end_inset
32646
32647  Durch das de/aktivieren der Zweige können Sie festlegen, welche eingefügte
32648  Dateien in der Ausgabe erscheinen.
32649 \end_layout
32650
32651 \begin_layout Standard
32652 \begin_inset Note Greyedout
32653 status open
32654
32655 \begin_layout Plain Layout
32656
32657 \series bold
32658 Achtung:
32659 \series default
32660  Aufgrund eines Fehlers in LyX kann der LaTeX-Befehl 
32661 \series bold
32662
32663 \backslash
32664 includeonly
32665 \series default
32666  momentan nicht als Alternative benutzt werden um festzulegen, welche eingefügte
32667  Dateien in der Ausgabe erscheinen.
32668 \end_layout
32669
32670 \end_inset
32671
32672
32673 \end_layout
32674
32675 \begin_layout Standard
32676 \begin_inset Note Greyedout
32677 status open
32678
32679 \begin_layout Plain Layout
32680
32681 \series bold
32682 Bemerkung:
32683 \series default
32684  Wenn Sie eine LyX- oder LaTeX-Datei eingebunden haben, werden Sie beim
32685  Export oder der Druckvorschau gewarnt, wenn das Unterdokument eine andere
32686  Dokumentklasse als das Hauptdokument benutzt, weil das zu unvorhersehbaren
32687  Ergebnissen führen wird.
32688 \end_layout
32689
32690 \end_inset
32691
32692
32693 \end_layout
32694
32695 \begin_layout Description
32696 Input Diese Methode ist 
32697 \family sans
32698 Include
32699 \family default
32700  sehr ähnlich mit folgenden Unterschieden:
32701 \end_layout
32702
32703 \begin_deeper
32704 \begin_layout Itemize
32705 Unterdokumente, die per 
32706 \family sans
32707 Input
32708 \family default
32709  eingebunden werden, beginnen in der Druckausgabe NICHT auf einer neuen
32710  Seite und enden NICHT mit einem Seitenumbruch.
32711 \end_layout
32712
32713 \begin_layout Itemize
32714 Unterdokumente, die per 
32715 \family sans
32716 Input
32717 \family default
32718  eingebunden werden, können in LyX angesehen werden, wenn im Dialogfenster
32719 \family sans
32720  Unterdokument Vorschau
32721 \begin_inset space ~
32722 \end_inset
32723
32724 anzeigen
32725 \family default
32726  angekreuzt wurde und in den LyX-Einstellungen unter
32727 \family sans
32728  Aussehen
32729 \begin_inset space ~
32730 \end_inset
32731
32732 &
32733 \begin_inset space ~
32734 \end_inset
32735
32736 Handhabung\SpecialChar \menuseparator
32737 Grafik\SpecialChar \menuseparator
32738 Sofortige
32739 \begin_inset space ~
32740 \end_inset
32741
32742 Vorschau
32743 \family default
32744  auf 
32745 \family sans
32746 An
32747 \family default
32748  gesetzt wurde.
32749  Allerdings wirken sich Änderungen erst bei einem erneuten Laden des Dokuments
32750  aus.
32751 \end_layout
32752
32753 \begin_layout Itemize
32754 Der LaTeX-Befehl 
32755 \series bold
32756
32757 \backslash
32758 includeonly
32759 \series default
32760  kann nicht benutzt werden.
32761 \end_layout
32762
32763 \end_deeper
32764 \begin_layout Standard
32765 Hier ist ein Unterdokument, das mit
32766 \family sans
32767  Input
32768 \family default
32769  eingebunden wurde: 
32770 \begin_inset CommandInset include
32771 LatexCommand input
32772 filename "DummyDocument2.lyx"
32773
32774 \end_inset
32775
32776 .
32777 \end_layout
32778
32779 \begin_layout Description
32780 Unformatiert Mit dieser Methode kann jede Textdatei eingebunden werden.
32781   In der Druckvorschau wird für den Text der Stil 
32782 \family typewriter
32783 Schreibmaschine
32784 \family default
32785  verwendet.
32786  Zeilenumbrüche erfolgen nur dort, wo das Unterdokument welche besitzt.
32787  Wenn Sie im Dialogfenster
32788 \family sans
32789  Unterdokument Leerzeichen
32790 \begin_inset space ~
32791 \end_inset
32792
32793 bei
32794 \begin_inset space ~
32795 \end_inset
32796
32797 der
32798 \begin_inset space ~
32799 \end_inset
32800
32801 Ausgabe
32802 \begin_inset space ~
32803 \end_inset
32804
32805 kennzeichnen 
32806 \family default
32807 ankreuzen, wird in der Druckvorschau das Zeichen 
32808 \begin_inset Quotes gld
32809 \end_inset
32810
32811
32812 \begin_inset ERT
32813 status collapsed
32814
32815 \begin_layout Plain Layout
32816
32817
32818 \backslash
32819 textvisiblespace 
32820 \end_layout
32821
32822 \end_inset
32823
32824
32825 \begin_inset Quotes grd
32826 \end_inset
32827
32828  für jedes Leerzeichen eingefügt.
32829 \begin_inset Newline newline
32830 \end_inset
32831
32832 Im Gegensatz zu 
32833 \family sans
32834 Einfügen\SpecialChar \menuseparator
32835 Datei\SpecialChar \menuseparator
32836 Einfacher
32837 \begin_inset space ~
32838 \end_inset
32839
32840 Text
32841 \family default
32842  wird bei 
32843 \family sans
32844 Unformatiert
32845 \family default
32846  der Dateiinhalt in LyX nicht dargestellt.
32847 \end_layout
32848
32849 \begin_layout Standard
32850 Hier ist ein Unterdokument, das mit
32851 \family sans
32852  Unformatiert
32853 \family default
32854  eingebunden wurde: 
32855 \begin_inset CommandInset include
32856 LatexCommand verbatiminput
32857 filename "DummyTextDocument.txt"
32858
32859 \end_inset
32860
32861
32862 \begin_inset VSpace bigskip
32863 \end_inset
32864
32865 Hier ist ein Unterdokument, das mit
32866 \family sans
32867  Unformatiert
32868 \family default
32869  eingebunden wurde und
32870 \family sans
32871  Leerzeichen
32872 \begin_inset space ~
32873 \end_inset
32874
32875 bei
32876 \begin_inset space ~
32877 \end_inset
32878
32879 der
32880 \begin_inset space ~
32881 \end_inset
32882
32883 Ausgabe
32884 \begin_inset space ~
32885 \end_inset
32886
32887 kennzeichnen
32888 \family default
32889  angekreuzt hat: 
32890 \begin_inset CommandInset include
32891 LatexCommand verbatiminput*
32892 filename "DummyTextDocument.txt"
32893
32894 \end_inset
32895
32896
32897 \end_layout
32898
32899 \begin_layout Standard
32900 \begin_inset VSpace bigskip
32901 \end_inset
32902
32903
32904 \end_layout
32905
32906 \begin_layout Standard
32907 \begin_inset Note Greyedout
32908 status open
32909
32910 \begin_layout Plain Layout
32911
32912 \series bold
32913 Bemerkung:
32914 \series default
32915  Wie man an den obigen Beispielen sieht, wird der Text von Dokumenten, die
32916  
32917 \family sans
32918 Unformatiert
32919 \family default
32920  eingebunden werden, am Zeilenende nicht umgebrochen.
32921 \end_layout
32922
32923 \end_inset
32924
32925
32926 \end_layout
32927
32928 \begin_layout Description
32929 Listing Dieser Typ wird in Kapitel
32930 \begin_inset space ~
32931 \end_inset
32932
32933
32934 \begin_inset CommandInset ref
32935 LatexCommand ref
32936 reference "kap:Programm-Code-Listen"
32937
32938 \end_inset
32939
32940  beschrieben.
32941 \end_layout
32942
32943 \begin_layout Standard
32944 \begin_inset Note Greyedout
32945 status open
32946
32947 \begin_layout Plain Layout
32948
32949 \series bold
32950 Bemerkung:
32951 \series default
32952  Wenn Sie ein Unterdokument auf zwei verschiedene Arten einbinden, kann
32953  das zu LaTeX-Problemen führen.
32954 \end_layout
32955
32956 \end_inset
32957
32958
32959 \end_layout
32960
32961 \begin_layout Chapter
32962 Programm-Code-Listen
32963 \begin_inset CommandInset label
32964 LatexCommand label
32965 name "kap:Programm-Code-Listen"
32966
32967 \end_inset
32968
32969
32970 \begin_inset Index idx
32971 status collapsed
32972
32973 \begin_layout Plain Layout
32974 Listen
32975 \end_layout
32976
32977 \end_inset
32978
32979
32980 \begin_inset Index idx
32981 status collapsed
32982
32983 \begin_layout Plain Layout
32984 Programm-Code
32985 \end_layout
32986
32987 \end_inset
32988
32989
32990 \end_layout
32991
32992 \begin_layout Standard
32993 Um Programm-Code-Listen einzufügen und zu drucken, können Sie 
32994 \family sans
32995 Einfügen\SpecialChar \menuseparator
32996 Pro\SpecialChar \-
32997 grammlisting
32998 \family default
32999  verwenden.
33000  Das LaTeX-Paket 
33001 \series bold
33002 listings
33003 \series default
33004
33005 \begin_inset Index idx
33006 status collapsed
33007
33008 \begin_layout Plain Layout
33009 LaTeX-Pakete ! listings
33010 \end_layout
33011
33012 \end_inset
33013
33014  kann Programm-Code auf vielfältige und flexible Weise in Ihr Dokument einfügen.
33015 \end_layout
33016
33017 \begin_layout Standard
33018 Ein Rechtsklick auf ein Listing öffnet das Kontextmenü, in dem Sie das Ausgabefo
33019 rmat der Programm-Code-Liste festlegen.
33020 \end_layout
33021
33022 \begin_layout Standard
33023 Standardmäßig fängt ein Listing mit einem neuen Absatz an.
33024  Die Platzierungsoption 
33025 \family sans
33026 Eingebettetes
33027 \begin_inset space ~
33028 \end_inset
33029
33030 Listing
33031 \family default
33032  druckt das Listing in der Zeile wie hier: 
33033 \begin_inset listings
33034 lstparams "language={C++}"
33035 inline true
33036 status open
33037
33038 \begin_layout Plain Layout
33039
33040 int a=5;
33041 \end_layout
33042
33043 \end_inset
33044
33045
33046 \begin_inset Newline newline
33047 \end_inset
33048
33049 Die Option 
33050 \family sans
33051 Gleitobjekt
33052 \family default
33053  erzeugt ein Listing-Gleitobjekt, dessen 
33054 \family sans
33055 Platzierung 
33056 \family default
33057 Sie mit 
33058 \family sans
33059 h
33060 \family default
33061
33062 \family sans
33063 t
33064 \family default
33065
33066 \family sans
33067 b
33068 \family default
33069  und 
33070 \family sans
33071 p
33072 \family default
33073 , analog zu den in Abschnitt
33074 \begin_inset space ~
33075 \end_inset
33076
33077
33078 \begin_inset CommandInset ref
33079 LatexCommand ref
33080 reference "abs:Gleitobjekt-Platzierung"
33081
33082 \end_inset
33083
33084  beschriebenen Platzierungsoptionen festlegen können.
33085  Die Platzierungsoptionen können gemischt werden und werden dabei direkt
33086  hintereinander angegeben, z.
33087 \begin_inset space \thinspace{}
33088 \end_inset
33089
33090 B.
33091  
33092 \begin_inset Quotes gld
33093 \end_inset
33094
33095
33096 \family sans
33097 htbp
33098 \family default
33099
33100 \begin_inset Quotes grd
33101 \end_inset
33102
33103 .
33104  Die Option 
33105 \begin_inset Quotes gld
33106 \end_inset
33107
33108 h
33109 \begin_inset Quotes grd
33110 \end_inset
33111
33112  hat manchmal keinen Effekt, aber sie muss nicht verwendet werden, da auch
33113  nicht gleitende Listen Beschriftungen haben und referenziert werden können.
33114 \end_layout
33115
33116 \begin_layout Standard
33117 Sie können Listings mit Marken versehen, um auf Sie wie auf andere Gleitobjekte
33118  zu verweisen: Listing
33119 \begin_inset space ~
33120 \end_inset
33121
33122
33123 \begin_inset CommandInset ref
33124 LatexCommand ref
33125 reference "lst:Gleitendes-Programm-Listing"
33126
33127 \end_inset
33128
33129 .
33130 \end_layout
33131
33132 \begin_layout Standard
33133 \begin_inset listings
33134 lstparams "language=Python"
33135 inline false
33136 status open
33137
33138 \begin_layout Plain Layout
33139
33140 \begin_inset Caption
33141
33142 \begin_layout Plain Layout
33143 \begin_inset CommandInset label
33144 LatexCommand label
33145 name "lst:Gleitendes-Programm-Listing"
33146
33147 \end_inset
33148
33149 Gleitendes Programm-Listing
33150 \end_layout
33151
33152 \end_inset
33153
33154 # Gleitendes Programm-Listing
33155 \end_layout
33156
33157 \begin_layout Plain Layout
33158
33159 def func(param):
33160 \end_layout
33161
33162 \begin_layout Plain Layout
33163
33164     'Dies ist eine Python-Funktion'
33165 \end_layout
33166
33167 \begin_layout Plain Layout
33168
33169     pass
33170 \end_layout
33171
33172 \end_inset
33173
33174
33175 \end_layout
33176
33177 \begin_layout Standard
33178 Wenn Sie eine Programmiersprache gewählt haben, werden die Schlüsselworte
33179  der Sprache erkannt und besonders gedruckt, wie 
33180 \emph on
33181 #
33182 \emph default
33183
33184 \emph on
33185 def
33186 \emph default
33187  und 
33188 \emph on
33189 pass
33190 \emph default
33191  in Listing
33192 \begin_inset space ~
33193 \end_inset
33194
33195
33196 \begin_inset CommandInset ref
33197 LatexCommand ref
33198 reference "lst:Gleitendes-Programm-Listing"
33199
33200 \end_inset
33201
33202 .
33203 \end_layout
33204
33205 \begin_layout Standard
33206 \begin_inset Note Greyedout
33207 status open
33208
33209 \begin_layout Plain Layout
33210
33211 \series bold
33212 Bemerkung:
33213 \series default
33214  Wenn sie keine fettgedruckten Schlüsselwörter im Schriftstil 
33215 \family typewriter
33216 Schreib\SpecialChar \-
33217 maschine
33218 \family default
33219  erhalten, enthält die von Ihnen verwendete Schrift in diesem Stil wahrscheinlic
33220 h keine fett gedruckten Buchstaben.
33221  Wählen Sie in diesem Fall eine andere Schrift im Menü 
33222 \family sans
33223 Dokument\SpecialChar \menuseparator
33224 Einstellungen\SpecialChar \menuseparator
33225 Schriften
33226 \family default
33227 .
33228  (Die Schriften 
33229 \emph on
33230 LuxiMono, BeraMono
33231 \emph default
33232  und 
33233 \emph on
33234 Courier
33235 \emph default
33236  enthalten fett gedruckte Buchstaben.)
33237 \end_layout
33238
33239 \end_inset
33240
33241
33242 \end_layout
33243
33244 \begin_layout Standard
33245 Im Abschnitt 
33246 \family sans
33247 Zeilennummerierung
33248 \family default
33249  des Programmlisting Einstellungsdialogs können Sie den Stil der Zeilennummerier
33250 ung festlegen, zum Beispiel, ob die Nummerierung links oder rechts gedruckt,
33251  jede wievielte Zeile nummeriert werden soll und die 
33252 \family sans
33253 Schriftgröße
33254 \family default
33255  der Nummerierung.
33256 \end_layout
33257
33258 \begin_layout Standard
33259 Im Abschnitt 
33260 \family sans
33261 Bereich
33262 \family default
33263  legen Sie fest, welche Zeilen ausgedruckt werden sollen.
33264  Im Abschnitt 
33265 \family sans
33266 Stil
33267 \family default
33268  legen Sie fest, wie die Liste ausgedruckt werden soll.
33269  Die Option 
33270 \family sans
33271 Erweiterte
33272 \begin_inset space ~
33273 \end_inset
33274
33275 Zeichentabelle
33276 \family default
33277  sollte verwendet werden, wenn nationale Zeichen wie Umlaute benutzt werden.
33278 \end_layout
33279
33280 \begin_layout Standard
33281 Hier ist ein Beispiel mit der Nummerierung links, Schrittweite 
33282 \begin_inset Quotes gld
33283 \end_inset
33284
33285 3
33286 \begin_inset Quotes grd
33287 \end_inset
33288
33289 , Sprache 
33290 \begin_inset Quotes gld
33291 \end_inset
33292
33293 Python
33294 \begin_inset Quotes grd
33295 \end_inset
33296
33297 , Optionen 
33298 \begin_inset Quotes gld
33299 \end_inset
33300
33301 Erweiterte Zeichentabelle
33302 \begin_inset Quotes grd
33303 \end_inset
33304
33305  und 
33306 \begin_inset Quotes gld
33307 \end_inset
33308
33309 Leerzeichen als Symbol
33310 \begin_inset Quotes grd
33311 \end_inset
33312
33313  und Bereich Zeilen 3
33314 \begin_inset space \thinspace{}
33315 \end_inset
33316
33317 -
33318 \begin_inset space \thinspace{}
33319 \end_inset
33320
33321 8:
33322 \end_layout
33323
33324 \begin_layout Standard
33325 \begin_inset listings
33326 lstparams "extendedchars=true,firstline=3,float,language=Python,lastline=8,numbers=left,numberstyle={\footnotesize},showspaces=true,stepnumber=3"
33327 inline false
33328 status open
33329
33330 \begin_layout Plain Layout
33331
33332 def func(param):
33333 \end_layout
33334
33335 \begin_layout Plain Layout
33336
33337     'Dies ist eine Python-Funktion'
33338 \end_layout
33339
33340 \begin_layout Plain Layout
33341
33342     pass
33343 \end_layout
33344
33345 \begin_layout Plain Layout
33346
33347 def func(param):
33348 \end_layout
33349
33350 \begin_layout Plain Layout
33351
33352 'Sonderzeichen: Tschüß'
33353 \end_layout
33354
33355 \begin_layout Plain Layout
33356
33357 pass
33358 \end_layout
33359
33360 \begin_layout Plain Layout
33361
33362 def func(param):
33363 \end_layout
33364
33365 \begin_layout Plain Layout
33366
33367 'Dies ist eine Python-Funktion'
33368 \end_layout
33369
33370 \begin_layout Plain Layout
33371
33372 pass
33373 \end_layout
33374
33375 \end_inset
33376
33377
33378 \end_layout
33379
33380 \begin_layout Standard
33381 Wenn Ihr Listing Tabulatoren verwendet, können Sie im Feld 
33382 \family sans
33383 Tabulatorgröße
33384 \family default
33385  die Anzahl der Zeichen festlegen, die ein Tabulator überspannen soll.
33386 \end_layout
33387
33388 \begin_layout Standard
33389 \noindent
33390 \begin_inset Note Greyedout
33391 status open
33392
33393 \begin_layout Plain Layout
33394
33395 \series bold
33396 Bemerkung:
33397 \series default
33398  Wegen eines Fehlers im 
33399 \series bold
33400 listings
33401 \series default
33402 -Paket wird die Zeilennummerierung um eine Zeile durch vorhergehende Listen
33403  verschoben.
33404  Das ist der Grund, warum die Zeilen 2 und 5 und nicht 3 und 6 in obigem
33405  Listing nummeriert werden.
33406 \end_layout
33407
33408 \end_inset
33409
33410
33411 \end_layout
33412
33413 \begin_layout Standard
33414 \begin_inset VSpace bigskip
33415 \end_inset
33416
33417
33418 \end_layout
33419
33420 \begin_layout Standard
33421 \noindent
33422 Es ist auch möglich, Zeilen einer Datei als Listing zu drucken.
33423  Das machen Sie mit
33424 \family sans
33425  Einfügen\SpecialChar \menuseparator
33426 Datei\SpecialChar \menuseparator
33427 Unterdokument
33428 \family default
33429  und der 
33430 \family sans
33431 Art
33432 \begin_inset space ~
33433 \end_inset
33434
33435 der
33436 \begin_inset space ~
33437 \end_inset
33438
33439 Einbindung
33440 \family default
33441  
33442 \family sans
33443 Listing
33444 \family default
33445 .
33446 \begin_inset Foot
33447 status collapsed
33448
33449 \begin_layout Plain Layout
33450 Die anderen Arten der Einbindung von Unterdokumenten werden in Abschnitt
33451 \begin_inset space ~
33452 \end_inset
33453
33454
33455 \begin_inset CommandInset ref
33456 LatexCommand ref
33457 reference "abs:Unterdokumente"
33458
33459 \end_inset
33460
33461  beschrieben.
33462 \end_layout
33463
33464 \end_inset
33465
33466  Im Dialogfenster
33467 \family sans
33468  Unterdokument
33469 \family default
33470  können Sie die Listing-Parameter unter 
33471 \family sans
33472 Weitere
33473 \begin_inset space ~
33474 \end_inset
33475
33476 Parameter
33477 \family default
33478  eingeben.
33479  Wenn Sie dort ein Fragezeichen 
33480 \begin_inset Quotes gld
33481 \end_inset
33482
33483 ?
33484 \begin_inset Quotes grd
33485 \end_inset
33486
33487  eingeben, wird Ihnen links davon eine Liste aller möglichen Parameter eingeblen
33488 det.
33489 \end_layout
33490
33491 \begin_layout Standard
33492 Um auf ein Unterdokument-Listing verweisen zu können, schreiben Sie einen
33493  Text ins Feld 
33494 \family sans
33495 Marke
33496 \family default
33497 , auf die dann wie üblich verwiesen werden kann.
33498 \end_layout
33499
33500 \begin_layout Standard
33501 Listing
33502 \begin_inset space ~
33503 \end_inset
33504
33505
33506 \begin_inset CommandInset ref
33507 LatexCommand ref
33508 reference "lst:Datei-Listing"
33509
33510 \end_inset
33511
33512  ist ein Beispiel für ein Unterdokument-Listing, bei dem die Zeilen 10
33513 \begin_inset space \thinspace{}
33514 \end_inset
33515
33516 -
33517 \begin_inset space \thinspace{}
33518 \end_inset
33519
33520 15 gedruckt werden.
33521 \end_layout
33522
33523 \begin_layout Standard
33524 \begin_inset CommandInset include
33525 LatexCommand lstinputlisting
33526 filename "EmbeddedObjects.lyx"
33527 lstparams "breaklines=true,caption={Zeilen 10 - 15 dieser LyX-Datei},extendedchars=true,firstline=10,label={lst:Datei-Listing},language={[LaTeX]TeX},lastline=15"
33528
33529 \end_inset
33530
33531
33532 \end_layout
33533
33534 \begin_layout Standard
33535 \begin_inset VSpace bigskip
33536 \end_inset
33537
33538
33539 \end_layout
33540
33541 \begin_layout Standard
33542 \noindent
33543 Dokumentweite Listing-Eigenschaften können in
33544 \family sans
33545  Dokument\SpecialChar \menuseparator
33546 Einstellungen\SpecialChar \menuseparator
33547 Textformat\SpecialChar \menuseparator
33548 Listing-Einstellungen
33549 \family default
33550  festgelegt werden.
33551  Auch dort bekommt man durch Eingabe eines Fragezeichens 
33552 \begin_inset Quotes gld
33553 \end_inset
33554
33555 ?
33556 \begin_inset Quotes grd
33557 \end_inset
33558
33559  links davon eine Liste aller möglichen Parameter.
33560 \end_layout
33561
33562 \begin_layout Standard
33563 Weitere Informationen über das 
33564 \series bold
33565 listings
33566 \series default
33567 -Paket finden Sie in 
33568 \begin_inset CommandInset citation
33569 LatexCommand cite
33570 key "listings"
33571
33572 \end_inset
33573
33574 .
33575 \begin_inset Newpage newpage
33576 \end_inset
33577
33578
33579 \end_layout
33580
33581 \begin_layout Chapter
33582 \start_of_appendix
33583 In LyX verfügbare Maßeinheiten
33584 \begin_inset CommandInset label
33585 LatexCommand label
33586 name "kap:In-LyX-verfügbare"
33587
33588 \end_inset
33589
33590
33591 \begin_inset Index idx
33592 status collapsed
33593
33594 \begin_layout Plain Layout
33595 Einheiten
33596 \end_layout
33597
33598 \end_inset
33599
33600
33601 \end_layout
33602
33603 \begin_layout Standard
33604 Um die in diesem Handbuch verwendeten Maßeinheiten zu verstehen, erläutert
33605  Tabelle
33606 \begin_inset space ~
33607 \end_inset
33608
33609
33610 \begin_inset CommandInset ref
33611 LatexCommand ref
33612 reference "tab:Maßeinheiten"
33613
33614 \end_inset
33615
33616  alle in LyX verfügbaren Maßeinheiten.
33617 \end_layout
33618
33619 \begin_layout Standard
33620 \begin_inset Float table
33621 placement h
33622 wide false
33623 sideways false
33624 status open
33625
33626 \begin_layout Plain Layout
33627 \begin_inset Caption
33628
33629 \begin_layout Plain Layout
33630 \begin_inset CommandInset label
33631 LatexCommand label
33632 name "tab:Maßeinheiten"
33633
33634 \end_inset
33635
33636 Maßeinheiten
33637 \end_layout
33638
33639 \end_inset
33640
33641
33642 \end_layout
33643
33644 \begin_layout Plain Layout
33645 \begin_inset VSpace medskip
33646 \end_inset
33647
33648
33649 \end_layout
33650
33651 \begin_layout Plain Layout
33652 \align center
33653 \begin_inset Tabular
33654 <lyxtabular version="3" rows="20" columns="2">
33655 <features tabularvalignment="middle">
33656 <column alignment="center" valignment="top" width="0">
33657 <column alignment="center" valignment="top" width="0">
33658 <row>
33659 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
33660 \begin_inset Text
33661
33662 \begin_layout Plain Layout
33663
33664 \series bold
33665 Maßeinheit
33666 \end_layout
33667
33668 \end_inset
33669 </cell>
33670 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
33671 \begin_inset Text
33672
33673 \begin_layout Plain Layout
33674
33675 \series bold
33676 Name/Beschreibung
33677 \end_layout
33678
33679 \end_inset
33680 </cell>
33681 </row>
33682 <row>
33683 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33684 \begin_inset Text
33685
33686 \begin_layout Plain Layout
33687 mm
33688 \end_layout
33689
33690 \end_inset
33691 </cell>
33692 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33693 \begin_inset Text
33694
33695 \begin_layout Plain Layout
33696 Millimeter
33697 \end_layout
33698
33699 \end_inset
33700 </cell>
33701 </row>
33702 <row>
33703 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33704 \begin_inset Text
33705
33706 \begin_layout Plain Layout
33707 cm
33708 \end_layout
33709
33710 \end_inset
33711 </cell>
33712 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33713 \begin_inset Text
33714
33715 \begin_layout Plain Layout
33716 Zentimeter
33717 \end_layout
33718
33719 \end_inset
33720 </cell>
33721 </row>
33722 <row>
33723 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33724 \begin_inset Text
33725
33726 \begin_layout Plain Layout
33727 in
33728 \end_layout
33729
33730 \end_inset
33731 </cell>
33732 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33733 \begin_inset Text
33734
33735 \begin_layout Plain Layout
33736 Zoll (1
33737 \begin_inset space \thinspace{}
33738 \end_inset
33739
33740 in = 2.54
33741 \begin_inset space \thinspace{}
33742 \end_inset
33743
33744 cm
33745 \end_layout
33746
33747 \end_inset
33748 </cell>
33749 </row>
33750 <row>
33751 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33752 \begin_inset Text
33753
33754 \begin_layout Plain Layout
33755 pt
33756 \end_layout
33757
33758 \end_inset
33759 </cell>
33760 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33761 \begin_inset Text
33762
33763 \begin_layout Plain Layout
33764 Punkt (72.27
33765 \begin_inset space \thinspace{}
33766 \end_inset
33767
33768 pt = 1
33769 \begin_inset space \thinspace{}
33770 \end_inset
33771
33772 in)
33773 \end_layout
33774
33775 \end_inset
33776 </cell>
33777 </row>
33778 <row>
33779 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33780 \begin_inset Text
33781
33782 \begin_layout Plain Layout
33783 pc
33784 \end_layout
33785
33786 \end_inset
33787 </cell>
33788 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33789 \begin_inset Text
33790
33791 \begin_layout Plain Layout
33792 Pica (1
33793 \begin_inset space \thinspace{}
33794 \end_inset
33795
33796 pc = 12
33797 \begin_inset space \thinspace{}
33798 \end_inset
33799
33800 pt)
33801 \end_layout
33802
33803 \end_inset
33804 </cell>
33805 </row>
33806 <row>
33807 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33808 \begin_inset Text
33809
33810 \begin_layout Plain Layout
33811 sp
33812 \end_layout
33813
33814 \end_inset
33815 </cell>
33816 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33817 \begin_inset Text
33818
33819 \begin_layout Plain Layout
33820 skalierter Punkt (65536
33821 \begin_inset space \thinspace{}
33822 \end_inset
33823
33824 sp = 1
33825 \begin_inset space \thinspace{}
33826 \end_inset
33827
33828 pt)
33829 \end_layout
33830
33831 \end_inset
33832 </cell>
33833 </row>
33834 <row>
33835 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33836 \begin_inset Text
33837
33838 \begin_layout Plain Layout
33839 bp
33840 \end_layout
33841
33842 \end_inset
33843 </cell>
33844 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33845 \begin_inset Text
33846
33847 \begin_layout Plain Layout
33848 großer Punkt (72
33849 \begin_inset space \thinspace{}
33850 \end_inset
33851
33852 bp = 1
33853 \begin_inset space \thinspace{}
33854 \end_inset
33855
33856 in)
33857 \end_layout
33858
33859 \end_inset
33860 </cell>
33861 </row>
33862 <row>
33863 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33864 \begin_inset Text
33865
33866 \begin_layout Plain Layout
33867 dd
33868 \end_layout
33869
33870 \end_inset
33871 </cell>
33872 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33873 \begin_inset Text
33874
33875 \begin_layout Plain Layout
33876 Didot (1
33877 \begin_inset space \thinspace{}
33878 \end_inset
33879
33880 dd 
33881 \begin_inset Formula $\approx$
33882 \end_inset
33883
33884  0,376
33885 \begin_inset space \thinspace{}
33886 \end_inset
33887
33888 mm)
33889 \end_layout
33890
33891 \end_inset
33892 </cell>
33893 </row>
33894 <row>
33895 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33896 \begin_inset Text
33897
33898 \begin_layout Plain Layout
33899 cc
33900 \end_layout
33901
33902 \end_inset
33903 </cell>
33904 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33905 \begin_inset Text
33906
33907 \begin_layout Plain Layout
33908 Cicero (1
33909 \begin_inset space \thinspace{}
33910 \end_inset
33911
33912 cc = 12
33913 \begin_inset space \thinspace{}
33914 \end_inset
33915
33916 dd)
33917 \end_layout
33918
33919 \end_inset
33920 </cell>
33921 </row>
33922 <row>
33923 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33924 \begin_inset Text
33925
33926 \begin_layout Plain Layout
33927 Skalierung%
33928 \end_layout
33929
33930 \end_inset
33931 </cell>
33932 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33933 \begin_inset Text
33934
33935 \begin_layout Plain Layout
33936 % der originalen Bildbreite
33937 \end_layout
33938
33939 \end_inset
33940 </cell>
33941 </row>
33942 <row>
33943 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33944 \begin_inset Text
33945
33946 \begin_layout Plain Layout
33947 Textbreite %
33948 \end_layout
33949
33950 \end_inset
33951 </cell>
33952 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33953 \begin_inset Text
33954
33955 \begin_layout Plain Layout
33956 % der Textbreite
33957 \end_layout
33958
33959 \end_inset
33960 </cell>
33961 </row>
33962 <row>
33963 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33964 \begin_inset Text
33965
33966 \begin_layout Plain Layout
33967 Spaltenbreite %
33968 \end_layout
33969
33970 \end_inset
33971 </cell>
33972 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33973 \begin_inset Text
33974
33975 \begin_layout Plain Layout
33976 % der Spaltenbreite
33977 \end_layout
33978
33979 \end_inset
33980 </cell>
33981 </row>
33982 <row>
33983 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33984 \begin_inset Text
33985
33986 \begin_layout Plain Layout
33987 Seitenbreite %
33988 \end_layout
33989
33990 \end_inset
33991 </cell>
33992 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33993 \begin_inset Text
33994
33995 \begin_layout Plain Layout
33996 % der Seitenbreite
33997 \end_layout
33998
33999 \end_inset
34000 </cell>
34001 </row>
34002 <row>
34003 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
34004 \begin_inset Text
34005
34006 \begin_layout Plain Layout
34007 Zeilenbreite %
34008 \end_layout
34009
34010 \end_inset
34011 </cell>
34012 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
34013 \begin_inset Text
34014
34015 \begin_layout Plain Layout
34016 % der Zeilenbreite
34017 \end_layout
34018
34019 \end_inset
34020 </cell>
34021 </row>
34022 <row>
34023 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
34024 \begin_inset Text
34025
34026 \begin_layout Plain Layout
34027 Texthöhe %
34028 \end_layout
34029
34030 \end_inset
34031 </cell>
34032 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
34033 \begin_inset Text
34034
34035 \begin_layout Plain Layout
34036 % der Texthöhe
34037 \end_layout
34038
34039 \end_inset
34040 </cell>
34041 </row>
34042 <row>
34043 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
34044 \begin_inset Text
34045
34046 \begin_layout Plain Layout
34047 Seitenhöhe %
34048 \end_layout
34049
34050 \end_inset
34051 </cell>
34052 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
34053 \begin_inset Text
34054
34055 \begin_layout Plain Layout
34056 % der Seitenhöhe
34057 \end_layout
34058
34059 \end_inset
34060 </cell>
34061 </row>
34062 <row>
34063 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
34064 \begin_inset Text
34065
34066 \begin_layout Plain Layout
34067 ex
34068 \end_layout
34069
34070 \end_inset
34071 </cell>
34072 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
34073 \begin_inset Text
34074
34075 \begin_layout Plain Layout
34076 Die Höhe des Buchstabens 
34077 \emph on
34078 x
34079 \emph default
34080  im aktiven Zeichensatz
34081 \end_layout
34082
34083 \end_inset
34084 </cell>
34085 </row>
34086 <row>
34087 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
34088 \begin_inset Text
34089
34090 \begin_layout Plain Layout
34091 em
34092 \end_layout
34093
34094 \end_inset
34095 </cell>
34096 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
34097 \begin_inset Text
34098
34099 \begin_layout Plain Layout
34100 Die Breite des Buchstabens 
34101 \emph on
34102 M
34103 \emph default
34104  im aktiven Zeichensatz
34105 \end_layout
34106
34107 \end_inset
34108 </cell>
34109 </row>
34110 <row>
34111 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
34112 \begin_inset Text
34113
34114 \begin_layout Plain Layout
34115 mu
34116 \end_layout
34117
34118 \end_inset
34119 </cell>
34120 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
34121 \begin_inset Text
34122
34123 \begin_layout Plain Layout
34124 mathematische  Maßeinheit
34125 \series bold
34126  
34127 \series default
34128 (1
34129 \begin_inset space \thinspace{}
34130 \end_inset
34131
34132 mu = 1/18
34133 \begin_inset space \thinspace{}
34134 \end_inset
34135
34136 em)
34137 \end_layout
34138
34139 \end_inset
34140 </cell>
34141 </row>
34142 </lyxtabular>
34143
34144 \end_inset
34145
34146
34147 \end_layout
34148
34149 \end_inset
34150
34151
34152 \end_layout
34153
34154 \begin_layout Chapter
34155 Ausgabedatei-Formate mit Grafiken
34156 \begin_inset CommandInset label
34157 LatexCommand label
34158 name "kap:Ausgabedatei-Formate"
34159
34160 \end_inset
34161
34162
34163 \end_layout
34164
34165 \begin_layout Section
34166 DVI
34167 \begin_inset Index idx
34168 status collapsed
34169
34170 \begin_layout Plain Layout
34171 Dateiformat! DVI
34172 \end_layout
34173
34174 \end_inset
34175
34176
34177 \begin_inset Index idx
34178 status collapsed
34179
34180 \begin_layout Plain Layout
34181 DVI
34182 \end_layout
34183
34184 \end_inset
34185
34186
34187 \end_layout
34188
34189 \begin_layout Standard
34190 Dieser Dateityp hat die Erweiterung 
34191 \begin_inset Quotes gld
34192 \end_inset
34193
34194
34195 \family typewriter
34196 .dvi
34197 \family default
34198
34199 \begin_inset Quotes grd
34200 \end_inset
34201
34202  und wird 
34203 \begin_inset Quotes gld
34204 \end_inset
34205
34206 device independent
34207 \begin_inset Quotes grd
34208 \end_inset
34209
34210  genannt, weil er vollkommen portierbar ist.
34211  Ohne Konvertierung kann er auf jedem Rechner benutzt werden, der einen
34212  dvi-Betrachter installiert hat.
34213  DVI-Dateien werden für schnelle Vorschauen und Vorstufen für andere Ausgabeform
34214 ate wie PostScript benutzt.
34215 \end_layout
34216
34217 \begin_layout Standard
34218 \begin_inset Note Greyedout
34219 status open
34220
34221 \begin_layout Plain Layout
34222
34223 \series bold
34224 Bemerkung:
34225 \series default
34226  DVI-Dateien enthalten keine Bilder, denn diese sind nur verlinkt.
34227 \end_layout
34228
34229 \end_inset
34230
34231
34232 \end_layout
34233
34234 \begin_layout Standard
34235 Also vergessen Sie nicht, die Bilder mitzunehmen, wenn Sie Ihre DVI-Datei
34236  auf einen anderen Computer kopieren.
34237  Diese Eigenschaft kann Ihren Computer verlangsamen, wenn Sie die DVI-Datei
34238  betrachten, weil der dvi-Betrachter die Bilder im Hintergrund konvertieren
34239  muss, um sie sichtbar zu machen, wenn Sie in der DVI-Datei
34240 \family typewriter
34241  
34242 \family default
34243 blättern.
34244
34245 \family typewriter
34246  
34247 \family default
34248 Außerdem zeigen manche DVI-Betrachter nicht alles (richtig) an.
34249  Bei Dokumenten mit vielen Bildern empfehlen wir daher das PDF-Format.
34250  
34251 \end_layout
34252
34253 \begin_layout Standard
34254 Sie können Ihr Dokument als DVI über das Menü 
34255 \family sans
34256 Datei\SpecialChar \menuseparator
34257 Exportieren\SpecialChar \menuseparator
34258 DVI
34259 \family default
34260  exportieren.
34261  Sie können eine Vorschau Ihres Dokument als DVI über das Menü 
34262 \family sans
34263 Ansicht
34264 \family default
34265  oder den Werkzeugleistenknopf 
34266 \begin_inset Graphics
34267         filename ../../images/buffer-view_dvi.png
34268         scale 70
34269         scaleBeforeRotation
34270         BoundingBox 0bp 0bp 20bp 20bp
34271
34272 \end_inset
34273
34274  anschauen.
34275 \end_layout
34276
34277 \begin_layout Section
34278 PostScript
34279 \begin_inset CommandInset label
34280 LatexCommand label
34281 name "abs:PostScript"
34282
34283 \end_inset
34284
34285
34286 \begin_inset Index idx
34287 status collapsed
34288
34289 \begin_layout Plain Layout
34290 Dateiformat  ! PostScript
34291 \end_layout
34292
34293 \end_inset
34294
34295
34296 \begin_inset Index idx
34297 status collapsed
34298
34299 \begin_layout Plain Layout
34300 PostScript
34301 \end_layout
34302
34303 \end_inset
34304
34305
34306 \end_layout
34307
34308 \begin_layout Standard
34309 Dieser Dateityp hat die Erweiterung 
34310 \begin_inset Quotes gld
34311 \end_inset
34312
34313
34314 \family typewriter
34315 .ps
34316 \family default
34317
34318 \begin_inset Quotes grd
34319 \end_inset
34320
34321 .
34322  PostScript wurde von der Firma
34323 \family typewriter
34324  Adobe
34325 \family default
34326  als Druckersprache entwickelt.
34327  Die Datei enthält deshalb Druckbefehle.
34328  PostScript kann als 
34329 \begin_inset Quotes gld
34330 \end_inset
34331
34332 Programmiersprache
34333 \begin_inset Quotes grd
34334 \end_inset
34335
34336  angesehen werden.
34337  Man kann mit ihr rechnen und Diagramme und Bilder zeichnen
34338 \begin_inset Foot
34339 status collapsed
34340
34341 \begin_layout Plain Layout
34342 Wenn Sie mehr darüber wissen wollen, sollten Sie sich die Dokumentation
34343  von
34344 \series bold
34345  PSTricks
34346 \series default
34347  
34348 \begin_inset CommandInset citation
34349 LatexCommand cite
34350 key "pstricks"
34351
34352 \end_inset
34353
34354  oder 
34355 \begin_inset CommandInset citation
34356 LatexCommand cite
34357 key "latex-praxisbuch"
34358
34359 \end_inset
34360
34361  ansehen.
34362 \end_layout
34363
34364 \end_inset
34365
34366 .
34367  Wegen dieser Möglichkeiten sind PostScript-Dateien oft größer als PDF-Dateien.
34368 \end_layout
34369
34370 \begin_layout Standard
34371 PostScript kann nur Bilder im Format EPS
34372 \begin_inset Index idx
34373 status collapsed
34374
34375 \begin_layout Plain Layout
34376 EPS
34377 \end_layout
34378
34379 \end_inset
34380
34381  (Encapsulated PostScript, Datei-Er\SpecialChar \-
34382 wei\SpecialChar \-
34383 ter\SpecialChar \-
34384 ung 
34385 \begin_inset Quotes gld
34386 \end_inset
34387
34388
34389 \family typewriter
34390 .eps
34391 \family default
34392
34393 \begin_inset Quotes grd
34394 \end_inset
34395
34396 ) enthalten.
34397  Weil LyX die Verwendung jedes bekannten Bildformats erlaubt, muss es diese
34398  intern nach EPS konvertieren.
34399  Dies wird bei vielen Bildern in einem Dokument den Arbeitsfluss drastisch
34400  verlangsamen.
34401  Wenn Sie also PostScript benutzen wollen, sollten Sie Ihre Bilder vorher
34402  konvertieren und direkt als EPS einfügen.
34403 \end_layout
34404
34405 \begin_layout Standard
34406 Sie können Ihr Dokument als PostScript über das Menü 
34407 \family sans
34408 Datei\SpecialChar \menuseparator
34409 Exportieren\SpecialChar \menuseparator
34410 Post\SpecialChar \-
34411 Script
34412 \family default
34413  exportieren.
34414  Sie können eine Vorschau Ihres Dokument als PostScript über das Menü 
34415 \family sans
34416 Ansicht
34417 \family default
34418  oder den Werkzeugleistenknopf 
34419 \begin_inset Graphics
34420         filename ../../images/buffer-view_ps.png
34421         scale 70
34422         scaleBeforeRotation
34423
34424 \end_inset
34425
34426  anschauen.
34427 \end_layout
34428
34429 \begin_layout Section
34430 PDF
34431 \begin_inset Index idx
34432 status collapsed
34433
34434 \begin_layout Plain Layout
34435 Dateiformat! PDF
34436 \end_layout
34437
34438 \end_inset
34439
34440
34441 \begin_inset Index idx
34442 status collapsed
34443
34444 \begin_layout Plain Layout
34445 PDF
34446 \end_layout
34447
34448 \end_inset
34449
34450
34451 \end_layout
34452
34453 \begin_layout Standard
34454 Dieser Dateityp hat die Erweiterung 
34455 \begin_inset Quotes gld
34456 \end_inset
34457
34458
34459 \family typewriter
34460 .pdf
34461 \family default
34462
34463 \begin_inset Quotes grd
34464 \end_inset
34465
34466 .
34467  Das
34468 \emph on
34469  
34470 \emph default
34471
34472 \begin_inset Quotes gld
34473 \end_inset
34474
34475 Portable Document Format
34476 \begin_inset Quotes grd
34477 \end_inset
34478
34479  (PDF) wurde auch von der Firma 
34480 \family typewriter
34481 Adobe
34482 \family default
34483  als Derivat von PostScript entwickelt.
34484  Es ist komprimierter und benutzt weniger Befehle als PostScript.
34485  Wie der Begriff 
34486 \begin_inset Quotes gld
34487 \end_inset
34488
34489 portable
34490 \begin_inset Quotes grd
34491 \end_inset
34492
34493  (übertragbar) vermuten lässt, kann eine PDF-Datei auf jeden Rechner übertragen
34494  werden, und der Ausdruck sieht immer gleich aus.
34495 \end_layout
34496
34497 \begin_layout Standard
34498 PDF kann Bilder im eigenen PDF-Format, im Format 
34499 \begin_inset Quotes gld
34500 \end_inset
34501
34502 Joint Photographic Experts Group
34503 \begin_inset Quotes grd
34504 \end_inset
34505
34506  (JPEG
34507 \begin_inset Index idx
34508 status collapsed
34509
34510 \begin_layout Plain Layout
34511 JPG, JPEG
34512 \end_layout
34513
34514 \end_inset
34515
34516 , Datei-Erweiterung 
34517 \begin_inset Quotes gld
34518 \end_inset
34519
34520
34521 \family typewriter
34522 .jpg
34523 \family default
34524
34525 \begin_inset Quotes grd
34526 \end_inset
34527
34528  oder 
34529 \begin_inset Quotes gld
34530 \end_inset
34531
34532
34533 \family typewriter
34534 .jpeg
34535 \family default
34536
34537 \begin_inset Quotes grd
34538 \end_inset
34539
34540 ) und im Format 
34541 \begin_inset Quotes gld
34542 \end_inset
34543
34544 Portable Network Graphics
34545 \begin_inset Quotes grd
34546 \end_inset
34547
34548  (PNG
34549 \begin_inset Index idx
34550 status collapsed
34551
34552 \begin_layout Plain Layout
34553 PNG
34554 \end_layout
34555
34556 \end_inset
34557
34558 , Datei-Erweiterung 
34559 \begin_inset Quotes gld
34560 \end_inset
34561
34562
34563 \family typewriter
34564 .png
34565 \family default
34566
34567 \begin_inset Quotes grd
34568 \end_inset
34569
34570 ) enthalten.
34571  Trotzdem können Sie jedes bekannte Bildformat benutzen, weil LyX es für
34572  Sie konvertieren wird.
34573  Die Konvertierungen werden Ihren Arbeitsfluss verlangsamen, weswegen empfohlen
34574  wird, eines der drei erwähnten Bildformate zu benutzen.
34575 \end_layout
34576
34577 \begin_layout Standard
34578 PDF-Dateien können Sie über 
34579 \family sans
34580 Datei\SpecialChar \menuseparator
34581 Exportieren
34582 \family default
34583  auf drei Arten erzeugen:
34584 \end_layout
34585
34586 \begin_layout Description
34587 PDF
34588 \begin_inset space ~
34589 \end_inset
34590
34591 (ps2pdf) benutzt das Programm
34592 \family typewriter
34593  ps2pdf
34594 \family default
34595 , das eine PDF-Datei aus einer Post\SpecialChar \-
34596 Script®-Version Ihres Dokument erstellt.
34597  Die PostScript-Version wird mit dem Programm 
34598 \family typewriter
34599 dvips
34600 \family default
34601  aus einer DVI-Version erstellt.
34602  Es werden also drei Konvertierungen verwendet.
34603 \end_layout
34604
34605 \begin_layout Description
34606 PDF
34607 \begin_inset space ~
34608 \end_inset
34609
34610 (dvipdfm) benutzt das Programm 
34611 \family typewriter
34612 dvipdfm
34613 \family default
34614 , das Ihr Dokument im ersten Schritt nach DVI und in einem zweiten nach
34615  PDF konvertiert.
34616 \end_layout
34617
34618 \begin_layout Description
34619 PDF
34620 \begin_inset space ~
34621 \end_inset
34622
34623 (pdflatex) benutzt das Programm
34624 \family typewriter
34625  pdftex
34626 \family default
34627 , das Ihr Dokument direkt nach PDF konvertiert.
34628 \end_layout
34629
34630 \begin_layout Standard
34631
34632 \family sans
34633 PDF
34634 \begin_inset space ~
34635 \end_inset
34636
34637 (pdflatex)
34638 \family default
34639  wird empfohlen, weil
34640 \family typewriter
34641  pdftex
34642 \family default
34643  alle Funktionen der aktuellen PDF-Versionen unterstützt, schnell ist und
34644  ohne Probleme arbeitet.
34645  Das Programm 
34646 \family typewriter
34647 dvi\SpecialChar \-
34648 pdfm
34649 \family default
34650  wird nicht weiterentwickelt und ist deshalb nicht sehr aktuell.
34651 \end_layout
34652
34653 \begin_layout Standard
34654 Sie können Ihr Dokument als PDF über das Menü 
34655 \family sans
34656 Datei\SpecialChar \menuseparator
34657 Exportieren\SpecialChar \menuseparator
34658 PDF
34659 \family default
34660  exportieren.
34661  Sie können eine Vorschau Ihres Dokument als PDF über das Menü 
34662 \family sans
34663 Ansicht
34664 \family default
34665  oder den Werkzeugleistenknopf 
34666 \begin_inset Graphics
34667         filename ../../images/buffer-view_pdf2.png
34668         scale 70
34669         scaleBeforeRotation
34670         BoundingBox 0bp 0bp 20bp 20bp
34671
34672 \end_inset
34673
34674  anschauen 
34675 \family sans
34676 (
34677 \family default
34678 der 
34679 \family sans
34680 PDF
34681 \begin_inset space ~
34682 \end_inset
34683
34684 (pdflatex)
34685 \family default
34686  verwendet).
34687 \end_layout
34688
34689 \begin_layout Chapter
34690 Erklärung der Gleichung
34691 \begin_inset space ~
34692 \end_inset
34693
34694
34695 \begin_inset CommandInset ref
34696 LatexCommand eqref
34697 reference "eq:Wgn"
34698
34699 \end_inset
34700
34701
34702 \begin_inset CommandInset label
34703 LatexCommand label
34704 name "kap:Exläuterung-einer-Gleichung"
34705
34706 \end_inset
34707
34708
34709 \end_layout
34710
34711 \begin_layout Standard
34712 Die Gesamtbreite von
34713 \emph on
34714  n
34715 \emph default
34716  Tabellenzellen 
34717 \begin_inset Formula $W_{\mathrm{tot\, n}}$
34718 \end_inset
34719
34720  kann wie folgt berechnet werden:
34721 \end_layout
34722
34723 \begin_layout Standard
34724 \begin_inset Formula \begin{equation}
34725 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}
34726
34727 \end_inset
34728
34729
34730 \end_layout
34731
34732 \begin_layout Standard
34733 Dabei ist 
34734 \begin_inset Formula $W_{g\, n}$
34735 \end_inset
34736
34737  die Breite jeder Zelle.
34738
34739 \series bold
34740  
34741 \backslash
34742 tabcolsep
34743 \series default
34744  ist die LaTeX-Länge zwischen dem Zellentext und der Zellgrenze mit dem
34745  Standardwert 6
34746 \begin_inset space \thinspace{}
34747 \end_inset
34748
34749 pt.
34750  
34751 \series bold
34752
34753 \backslash
34754 arrayrulewidth
34755 \series default
34756  ist die Dicke der Zellgrenze mit dem Standardwert 0.4
34757 \begin_inset space \thinspace{}
34758 \end_inset
34759
34760 pt.
34761 \end_layout
34762
34763 \begin_layout Standard
34764 Nach Gleichung
34765 \begin_inset space ~
34766 \end_inset
34767
34768
34769 \begin_inset CommandInset ref
34770 LatexCommand ref
34771 reference "eq:Wtot_n"
34772
34773 \end_inset
34774
34775  ist die Gesamtbreite einer Mehrfachspalte, 
34776 \begin_inset Formula $W_{\mathrm{tot\, mult}}$
34777 \end_inset
34778
34779 ,
34780 \end_layout
34781
34782 \begin_layout Standard
34783 \begin_inset Formula \begin{equation}
34784 W_{\mathrm{tot\, mult}}=W_{g\,\mathrm{mult}}+2\cdot\backslash\mbox{tabcolsep}+2\cdot\backslash\mbox{arrayrulewidth}\label{eq:Wtot_mult}\end{equation}
34785
34786 \end_inset
34787
34788
34789 \end_layout
34790
34791 \begin_layout Standard
34792 Setzt man die Gleichungen
34793 \begin_inset space ~
34794 \end_inset
34795
34796
34797 \begin_inset CommandInset ref
34798 LatexCommand ref
34799 reference "eq:Wtot_n"
34800
34801 \end_inset
34802
34803  und 
34804 \begin_inset CommandInset ref
34805 LatexCommand ref
34806 reference "eq:Wtot_mult"
34807
34808 \end_inset
34809
34810  gleich, kann man die benötigte Breite 
34811 \begin_inset Formula $W_{g\, n}$
34812 \end_inset
34813
34814 , wenn 
34815 \emph on
34816 n
34817 \emph default
34818  Spalten überspannt sind, so dass jede Spalte eine Gesamtbreite 
34819 \begin_inset Formula $W_{\mathrm{tot\, mult}}/n$
34820 \end_inset
34821
34822  hat, berechnen:
34823 \end_layout
34824
34825 \begin_layout Standard
34826 \begin_inset Formula \begin{equation}
34827 W_{g\, n}=(W_{g\,\mathrm{mult}}+(1-n)\cdot(2\cdot\backslash\mbox{tabcolsep}+\backslash\mbox{arrayrulewidth}))/n\end{equation}
34828
34829 \end_inset
34830
34831
34832 \end_layout
34833
34834 \begin_layout Bibliography
34835 \labelwidthstring Literaturverzeichnis
34836 \begin_inset CommandInset bibitem
34837 LatexCommand bibitem
34838 key "latexcompanion"
34839
34840 \end_inset
34841
34842 Frank Mittelbach and Michel Goossens: 
34843 \emph on
34844 The LaTeX Companion Second Edition.
34845
34846 \emph default
34847  Addison-Wesley, 2004
34848 \end_layout
34849
34850 \begin_layout Bibliography
34851 \labelwidthstring Literaturverzeichnis
34852 \begin_inset CommandInset bibitem
34853 LatexCommand bibitem
34854 key "latexguide"
34855
34856 \end_inset
34857
34858 Helmut Kopka and Patrick W.
34859  Daly: 
34860 \emph on
34861 A Guide to LaTeX Fourth Edition.
34862
34863 \emph default
34864  Addison-Wesley, 2003
34865 \end_layout
34866
34867 \begin_layout Bibliography
34868 \labelwidthstring Literaturverzeichnis
34869 \begin_inset CommandInset bibitem
34870 LatexCommand bibitem
34871 key "lamport"
34872
34873 \end_inset
34874
34875 Leslie Lamport: 
34876 \emph on
34877 LaTeX: A Document Preparation System.
34878
34879 \emph default
34880  Addison-Wesley, second edition, 1994
34881 \end_layout
34882
34883 \begin_layout Bibliography
34884 \labelwidthstring Literaturverzeichnis
34885 \begin_inset CommandInset bibitem
34886 LatexCommand bibitem
34887 key "latex-praxisbuch"
34888
34889 \end_inset
34890
34891 Niedermair, Elke & Michael: 
34892 \emph on
34893 LaTeX-Praxisbuch
34894 \emph default
34895 , Franzis-Verlag, 2004
34896 \end_layout
34897
34898 \begin_layout Bibliography
34899 \labelwidthstring Literaturverzeichnis
34900 \begin_inset CommandInset bibitem
34901 LatexCommand bibitem
34902 key "booktabs"
34903
34904 \end_inset
34905
34906 Dokumentation des LaTeX-Pakets 
34907 \series bold
34908
34909 \begin_inset CommandInset href
34910 LatexCommand href
34911 name "booktabs"
34912 target "ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/booktabs/booktabs.pdf"
34913
34914 \end_inset
34915
34916
34917 \series default
34918
34919 \begin_inset Index idx
34920 status collapsed
34921
34922 \begin_layout Plain Layout
34923 LaTeX-Pakete ! booktabs
34924 \end_layout
34925
34926 \end_inset
34927
34928
34929 \end_layout
34930
34931 \begin_layout Bibliography
34932 \labelwidthstring Literaturverzeichnis
34933 \begin_inset CommandInset bibitem
34934 LatexCommand bibitem
34935 key "caption"
34936
34937 \end_inset
34938
34939 Dokumentation des LaTeX-Pakets 
34940 \series bold
34941
34942 \begin_inset CommandInset href
34943 LatexCommand href
34944 name "caption"
34945 target "ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/caption/caption-deu.pdf"
34946
34947 \end_inset
34948
34949
34950 \series default
34951
34952 \begin_inset Index idx
34953 status collapsed
34954
34955 \begin_layout Plain Layout
34956 LaTeX-Pakete ! caption
34957 \end_layout
34958
34959 \end_inset
34960
34961
34962 \end_layout
34963
34964 \begin_layout Bibliography
34965 \labelwidthstring Literaturverzeichnis
34966 \begin_inset CommandInset bibitem
34967 LatexCommand bibitem
34968 key "endfloat"
34969
34970 \end_inset
34971
34972 Dokumentation des LaTeX-Pakets 
34973 \series bold
34974
34975 \begin_inset CommandInset href
34976 LatexCommand href
34977 name "endfloat"
34978 target "ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/endfloat/endfloat.pdf"
34979
34980 \end_inset
34981
34982
34983 \series default
34984
34985 \begin_inset Index idx
34986 status collapsed
34987
34988 \begin_layout Plain Layout
34989 LaTeX-Pakete ! endfloat
34990 \end_layout
34991
34992 \end_inset
34993
34994
34995 \end_layout
34996
34997 \begin_layout Bibliography
34998 \labelwidthstring Literaturverzeichnis
34999 \begin_inset CommandInset bibitem
35000 LatexCommand bibitem
35001 key "wrapfig"
35002
35003 \end_inset
35004
35005 Dokumentation des LaTeX-Pakets 
35006 \series bold
35007
35008 \begin_inset CommandInset href
35009 LatexCommand href
35010 name "wrapfig"
35011 target "ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/wrapfig/wrapfig.sty"
35012
35013 \end_inset
35014
35015
35016 \series default
35017
35018 \begin_inset Index idx
35019 status collapsed
35020
35021 \begin_layout Plain Layout
35022 LaTeX-Pakete ! wrapfig
35023 \begin_inset ERT
35024 status collapsed
35025
35026 \begin_layout Plain Layout
35027
35028
35029 \backslash
35030 vspace{4mm}
35031 \end_layout
35032
35033 \end_inset
35034
35035
35036 \end_layout
35037
35038 \end_inset
35039
35040
35041 \end_layout
35042
35043 \begin_layout Bibliography
35044 \labelwidthstring Literaturverzeichnis
35045 \begin_inset CommandInset bibitem
35046 LatexCommand bibitem
35047 key "footmisc"
35048
35049 \end_inset
35050
35051 Dokumentation des LaTeX-Pakets 
35052 \series bold
35053
35054 \begin_inset CommandInset href
35055 LatexCommand href
35056 name "footmisc"
35057 target "ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/footmisc/footmisc.pdf"
35058
35059 \end_inset
35060
35061
35062 \series default
35063
35064 \begin_inset Index idx
35065 status collapsed
35066
35067 \begin_layout Plain Layout
35068 LaTeX-Pakete ! footmisc
35069 \end_layout
35070
35071 \end_inset
35072
35073
35074 \end_layout
35075
35076 \begin_layout Bibliography
35077 \labelwidthstring Literaturverzeichnis
35078 \begin_inset CommandInset bibitem
35079 LatexCommand bibitem
35080 key "hypcap"
35081
35082 \end_inset
35083
35084 Dokumentation des LaTeX-Pakets 
35085 \series bold
35086
35087 \begin_inset CommandInset href
35088 LatexCommand href
35089 name "hypcap"
35090 target "http://www.ctan.org/tex-archive/macros/latex/contrib/oberdiek/hypcap.pdf"
35091
35092 \end_inset
35093
35094
35095 \series default
35096
35097 \begin_inset Index idx
35098 status collapsed
35099
35100 \begin_layout Plain Layout
35101 LaTeX-Pakete ! hypcap
35102 \end_layout
35103
35104 \end_inset
35105
35106
35107 \end_layout
35108
35109 \begin_layout Bibliography
35110 \labelwidthstring Literaturverzeichnis
35111 \begin_inset CommandInset bibitem
35112 LatexCommand bibitem
35113 key "hyperref"
35114
35115 \end_inset
35116
35117 Dokumentation des LaTeX-Pakets 
35118 \series bold
35119
35120 \begin_inset CommandInset href
35121 LatexCommand href
35122 name "hyperref"
35123 target "ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/hyperref/hyperref.pdf"
35124
35125 \end_inset
35126
35127
35128 \series default
35129
35130 \begin_inset Index idx
35131 status collapsed
35132
35133 \begin_layout Plain Layout
35134 LaTeX-Pakete ! hyperref
35135 \end_layout
35136
35137 \end_inset
35138
35139
35140 \end_layout
35141
35142 \begin_layout Bibliography
35143 \labelwidthstring Literaturverzeichnis
35144 \begin_inset CommandInset bibitem
35145 LatexCommand bibitem
35146 key "KOMA-Script"
35147
35148 \end_inset
35149
35150 Dokumentation des LaTeX-Pakets 
35151 \series bold
35152
35153 \begin_inset CommandInset href
35154 LatexCommand href
35155 name "KOMA-Script"
35156 target "ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/koma-script/scrguide.pdf"
35157
35158 \end_inset
35159
35160
35161 \series default
35162
35163 \begin_inset Index idx
35164 status collapsed
35165
35166 \begin_layout Plain Layout
35167 LaTeX-Pakete ! KOMA-Script
35168 \end_layout
35169
35170 \end_inset
35171
35172
35173 \end_layout
35174
35175 \begin_layout Bibliography
35176 \labelwidthstring Literaturverzeichnis
35177 \begin_inset CommandInset bibitem
35178 LatexCommand bibitem
35179 key "listings"
35180
35181 \end_inset
35182
35183 Dokumentation des LaTeX-Pakets 
35184 \series bold
35185
35186 \begin_inset CommandInset href
35187 LatexCommand href
35188 name "listings"
35189 target "ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/listings/listings.pdf"
35190
35191 \end_inset
35192
35193
35194 \series default
35195
35196 \begin_inset Index idx
35197 status collapsed
35198
35199 \begin_layout Plain Layout
35200 LaTeX-Pakete ! listings
35201 \end_layout
35202
35203 \end_inset
35204
35205
35206 \end_layout
35207
35208 \begin_layout Bibliography
35209 \labelwidthstring Literaturverzeichnis
35210 \begin_inset CommandInset bibitem
35211 LatexCommand bibitem
35212 key "marginnote"
35213
35214 \end_inset
35215
35216 Dokumentation des LaTeX-Pakets 
35217 \series bold
35218
35219 \begin_inset CommandInset href
35220 LatexCommand href
35221 name "marginnote"
35222 target "ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/marginnote/marginnote.pdf"
35223
35224 \end_inset
35225
35226
35227 \series default
35228
35229 \begin_inset Index idx
35230 status collapsed
35231
35232 \begin_layout Plain Layout
35233 LaTeX-Pakete ! marginnote
35234 \end_layout
35235
35236 \end_inset
35237
35238
35239 \end_layout
35240
35241 \begin_layout Bibliography
35242 \labelwidthstring Literaturverzeichnis
35243 \begin_inset CommandInset bibitem
35244 LatexCommand bibitem
35245 key "pstricks"
35246
35247 \end_inset
35248
35249 Webseite des LaTeX-Pakets 
35250 \series bold
35251
35252 \begin_inset CommandInset href
35253 LatexCommand href
35254 name "PSTricks"
35255 target "http://tug.org/PSTricks/"
35256
35257 \end_inset
35258
35259
35260 \series default
35261
35262 \begin_inset Index idx
35263 status collapsed
35264
35265 \begin_layout Plain Layout
35266 LaTeX-Pakete ! pstricks
35267 \end_layout
35268
35269 \end_inset
35270
35271
35272 \end_layout
35273
35274 \begin_layout Bibliography
35275 \labelwidthstring Literaturverzeichnis
35276 \begin_inset CommandInset bibitem
35277 LatexCommand bibitem
35278 key "sidecap"
35279
35280 \end_inset
35281
35282 Dokumentation des LaTeX-Pakets 
35283 \series bold
35284
35285 \begin_inset CommandInset href
35286 LatexCommand href
35287 name "sidecap"
35288 target "ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/sidecap/sidecap.pdf"
35289
35290 \end_inset
35291
35292
35293 \series default
35294
35295 \begin_inset Index idx
35296 status collapsed
35297
35298 \begin_layout Plain Layout
35299 LaTeX-Pakete ! sidecap
35300 \end_layout
35301
35302 \end_inset
35303
35304
35305 \end_layout
35306
35307 \begin_layout Bibliography
35308 \labelwidthstring Literaturverzeichnis
35309 \begin_inset CommandInset bibitem
35310 LatexCommand bibitem
35311 key "prettyref"
35312
35313 \end_inset
35314
35315 Dokumentation des LaTeX-Pakets 
35316 \series bold
35317
35318 \begin_inset CommandInset href
35319 LatexCommand href
35320 name "prettyref"
35321 target "http://www.ctan.org/tex-archive/macros/latex/contrib/prettyref/prettyref.pdf"
35322
35323 \end_inset
35324
35325
35326 \series default
35327
35328 \begin_inset Index idx
35329 status collapsed
35330
35331 \begin_layout Plain Layout
35332 LaTeX-Pakete ! prettyref
35333 \end_layout
35334
35335 \end_inset
35336
35337
35338 \end_layout
35339
35340 \begin_layout Bibliography
35341 \labelwidthstring Literaturverzeichnis
35342 \begin_inset CommandInset bibitem
35343 LatexCommand bibitem
35344 key "NewInLyX16"
35345
35346 \end_inset
35347
35348
35349 \begin_inset CommandInset href
35350 LatexCommand href
35351 name "Wiki-Seite"
35352 target "http://wiki.lyx.org/LyX/NewInLyX16"
35353
35354 \end_inset
35355
35356  über neue Funktionen in 
35357 \family sans
35358 LyX 1.6.0
35359 \family default
35360 .
35361 \end_layout
35362
35363 \begin_layout Standard
35364 \begin_inset CommandInset index_print
35365 LatexCommand printindex
35366 type "idx"
35367
35368 \end_inset
35369
35370
35371 \end_layout
35372
35373 \begin_layout Standard
35374 \begin_inset FloatList figure
35375
35376 \end_inset
35377
35378
35379 \end_layout
35380
35381 \begin_layout Standard
35382 \begin_inset FloatList table
35383
35384 \end_inset
35385
35386
35387 \end_layout
35388
35389 \begin_layout Standard
35390 \begin_inset ERT
35391 status open
35392
35393 \begin_layout Plain Layout
35394
35395
35396 \backslash
35397 listof{algorithm}{Algorithmenverzeichnis}
35398 \end_layout
35399
35400 \end_inset
35401
35402
35403 \begin_inset Note Note
35404 status collapsed
35405
35406 \begin_layout Plain Layout
35407 siehe Abschnitt
35408 \begin_inset space ~
35409 \end_inset
35410
35411
35412 \begin_inset CommandInset ref
35413 LatexCommand ref
35414 reference "uab:Gleitobjekt-Algorithmen"
35415
35416 \end_inset
35417
35418  für eine Beschreibung
35419 \end_layout
35420
35421 \end_inset
35422
35423
35424 \end_layout
35425
35426 \end_body
35427 \end_document