]> git.lyx.org Git - lyx.git/blob - lib/doc/de/Math.lyx
Math.lyx: describe LaTeX-comment inset
[lyx.git] / lib / doc / de / Math.lyx
1 #LyX 2.1 created this file. For more info see http://www.lyx.org/
2 \lyxformat 474
3 \begin_document
4 \begin_header
5 \textclass scrartcl
6 \begin_preamble
7 % DO NOT ALTER THIS PREAMBLE!!!
8 %
9 % This preamble is designed to ensure that the file prints
10 % out as advertised. If you mess with this preamble,
11 % parts of this document may not print out as expected.  If you
12 % have problems LaTeXing this file, please contact 
13 % the documentation team
14 % email: lyx-docs@lists.lyx.org
15
16 % if pdflatex is used
17 \usepackage{ifpdf}
18 \ifpdf
19
20 % set fonts for nicer pdf view
21 \IfFileExists{lmodern.sty}
22  {\usepackage{lmodern}}{}
23
24 \fi % end if pdflatex is used
25
26 % Folgendes Problem lösen:
27 % Besteht die Kapitelnummer aus zu vielen Ziffern, wird  die
28 % Kapitelüberschrift im Inhaltsverzeichnis direkt an oder über
29 % die Kapitelnummer geschrieben.
30 % Als Lösung wird mehr Platz zwischen Nummer und
31 % Überschrift eingefügt.
32 \renewcommand{\l@subsection}{\@dottedtocline{2}{1.5em}{2.8em}}
33 \renewcommand{\l@subsubsection}{\@dottedtocline{3}{4.3em}{3.6em}}
34
35 % Linkfläche für Querverweise vergrößern und automatisch benennen,
36 \AtBeginDocument{\renewcommand{\ref}[1]{\mbox{\autoref{#1}}}}
37 \addto\extrasngerman{%
38  \renewcommand*{\equationautorefname}[1]{}%
39  \renewcommand{\sectionautorefname}{Kap.\negthinspace}%
40  \renewcommand{\subsectionautorefname}{Kap.\negthinspace}%
41  \renewcommand{\subsubsectionautorefname}{Kap.\negthinspace}%
42 }
43
44 % Makros damit Pakete nicht doppelt geladen werden.
45 % siehe erste Fußnote in Kap. 9.3
46 \@ifundefined{textcolor}{\usepackage{color}}{}
47
48 % Die Seiten des Inhaltsverzeichnisses werden römisch numeriert,
49 % ein PDF-Lesezeichen für das Inhaltsverzeichnis wird hinzugefügt
50 \pagenumbering{roman}
51 \let\myTOC\tableofcontents
52 \renewcommand{\tableofcontents}{%
53  \vspace{1cm}
54  \pdfbookmark[1]{\contentsname}{}
55  \myTOC
56  \cleardoublepage
57  \pagenumbering{arabic}}
58
59 % Damit die Fußnoten einen zusätzlichen vertikalen Abstand von 1,5 mm haben,
60 \let\myFoot\footnote
61 \renewcommand{\footnote}[1]{\myFoot{#1\vspace{1.5mm}}}
62
63 % provides caption formatting
64 \setkomafont{captionlabel}{\bfseries}
65
66 % enables calculation of values
67 \usepackage{calc}
68
69 % für Mehrfachzeilen, benutzt in Kap. 24.7
70 \usepackage{multicol}
71
72 % benutzt in Kap. 19.4
73 \usepackage{remreset}
74
75 % für das Fourier-Transformationssymbol
76 \usepackage{mathrsfs}
77
78 % Farbdefinition aus Kap. 9.3
79 \definecolor{dunkelgruen}{cmyk}{0.5, 0, 1, 0.5}
80
81 % Operatoren deklarieren (siehe Kap. 10.4 und 15.2)
82 \DeclareMathOperator*{\Raute}{\blacklozenge}
83 \DeclareMathOperator{\sgn}{sgn}
84
85 % Beispielbefehle aus Kap. 20.1 
86 \newcommand{\gr}{\Longrightarrow}
87 \newcommand{\us}[1]{\underline{#1}}
88 \newcommand{\fb}[3]{\framebox#1#2{$#3$}}
89 \newcommand{\cb}[3][white]{\fcolorbox{#2}{#1}{$#3$}}
90 \newcommand{\fracS}[3][]{\genfrac{}{}{#1}{}{#2}{#3}}
91
92 % Beispielmakro aus Kap. 19.4
93 %\def\tagform@#1{\maketag@@@{|#1|}}
94
95 % Damit der Index einen anderen Namen erhält.
96 \addto\captionsngerman
97 {\renewcommand{\indexname}
98 {Stichwort- und Befehlsverzeichnis}}
99
100
101 % ------------------------------------
102 % used to check for needed LaTeX packages
103 \usepackage{ifthen}
104
105 % testen ob das Paket undertilde installiert ist
106 % wird benutzt für den Befehl \utilde
107 \newboolean{undertilde}
108 \IfFileExists{undertilde.sty}
109  {\usepackage{undertilde}
110   \setboolean{undertilde}{true}}
111  {\setboolean{undertilde}{false}}
112
113 % testen ob das Paket eurosym installiert ist
114 % wird benutzt für das Euro-Symbol
115 \newboolean{eurosym}
116 \IfFileExists{eurosym.sty}
117  {\usepackage[gennarrow]{eurosym}
118   \setboolean{eurosym}{true}}
119  {\setboolean{eurosym}{false}}
120
121 % testen ob Paket braket installiert ist
122 % benötigt für physikalische Vektoren
123 \newboolean{braket}
124 \IfFileExists{braket.sty}
125  {\usepackage{braket}
126   \setboolean{braket}{true}}
127  {\setboolean{braket}{false}}
128
129 % testen ob Paket cancel installiert ist
130 \newboolean{cancel}
131 \IfFileExists{cancel.sty}
132  {\usepackage{cancel}
133   \setboolean{cancel}{true}}
134  {\setboolean{cancel}{false}}
135
136 % testen ob Paket upgreek installiert ist
137 \newboolean{upgreek}
138 \IfFileExists{upgreek.sty}
139  {\usepackage{upgreek}
140   \setboolean{upgreek}{true}}
141  {\setboolean{upgreek}{false}}
142
143 % benötigt für Kommas in Formeln, siehe Kap. 22.3
144 \IfFileExists{icomma.sty}
145  {\usepackage{icomma}}{}
146 \end_preamble
147 \options bibliography=totoc,index=totoc,BCOR7.5mm,titlepage,captions=tableheading
148 \use_default_options false
149 \maintain_unincluded_children false
150 \language ngerman
151 \language_package default
152 \inputencoding auto
153 \fontencoding global
154 \font_roman default
155 \font_sans default
156 \font_typewriter default
157 \font_math auto
158 \font_default_family default
159 \use_non_tex_fonts false
160 \font_sc false
161 \font_osf false
162 \font_sf_scale 100
163 \font_tt_scale 100
164 \graphics default
165 \default_output_format default
166 \output_sync 0
167 \bibtex_command default
168 \index_command default
169 \paperfontsize 12
170 \spacing single
171 \use_hyperref true
172 \pdf_title "LyXs Mathehandbuch"
173 \pdf_author "LyX Team, Uwe Stöhr"
174 \pdf_subject "LyX-Dokumentation der Mathefunktionen"
175 \pdf_keywords "LyX, Mathed"
176 \pdf_bookmarks true
177 \pdf_bookmarksnumbered true
178 \pdf_bookmarksopen true
179 \pdf_bookmarksopenlevel 1
180 \pdf_breaklinks false
181 \pdf_pdfborder false
182 \pdf_colorlinks true
183 \pdf_backref false
184 \pdf_pdfusetitle false
185 \pdf_quoted_options "linkcolor=black, citecolor=black, urlcolor=blue, filecolor=blue, pdfpagelayout=OneColumn, pdfnewwindow=true, pdfstartview=XYZ, plainpages=false"
186 \papersize a4paper
187 \use_geometry false
188 \use_package amsmath 2
189 \use_package amssymb 2
190 \use_package cancel 0
191 \use_package esint 1
192 \use_package mathdots 1
193 \use_package mathtools 2
194 \use_package mhchem 1
195 \use_package stackrel 0
196 \use_package stmaryrd 0
197 \use_package undertilde 0
198 \cite_engine basic
199 \cite_engine_type default
200 \biblio_style plain
201 \use_bibtopic false
202 \use_indices false
203 \paperorientation portrait
204 \suppress_date false
205 \justification true
206 \use_refstyle 0
207 \notefontcolor #0000ff
208 \index Stichwortverzeichnis
209 \shortcut idx
210 \color #008000
211 \end_index
212 \secnumdepth 4
213 \tocdepth 3
214 \paragraph_separation skip
215 \defskip medskip
216 \quotes_language german
217 \papercolumns 1
218 \papersides 2
219 \paperpagestyle plain
220 \bullet 1 0 6 -1
221 \bullet 2 2 35 -1
222 \bullet 3 2 7 -1
223 \tracking_changes false
224 \output_changes false
225 \html_math_output 0
226 \html_css_as_file 0
227 \html_be_strict false
228 \end_header
229
230 \begin_body
231
232 \begin_layout Title
233 LyXs detailliertes Mathe Handbuch
234 \end_layout
235
236 \begin_layout Author
237 vom LyX Team
238 \begin_inset Foot
239 status collapsed
240
241 \begin_layout Plain Layout
242 \noindent
243 Für Anmerkungen oder Korrekturen senden sie bitte eine Email an LyXs Dokumentati
244 ons-Liste: 
245 \family typewriter
246
247 \begin_inset CommandInset href
248 LatexCommand href
249 name "lyx-docs@lists.lyx.org"
250 target "lyx-docs@lists.lyx.org?subject=LyXs Mathehandbuch"
251
252 \end_inset
253
254
255 \end_layout
256
257 \end_inset
258
259
260 \begin_inset Note Note
261 status collapsed
262
263 \begin_layout Plain Layout
264 Verfasser: Uwe Stöhr
265 \end_layout
266
267 \end_inset
268
269
270 \begin_inset Newline newline
271 \end_inset
272
273
274 \begin_inset Newline newline
275 \end_inset
276
277
278 \family sans
279 Version 2.1.x
280 \end_layout
281
282 \begin_layout Standard
283 \begin_inset CommandInset toc
284 LatexCommand tableofcontents
285
286 \end_inset
287
288
289 \end_layout
290
291 \begin_layout Standard
292 \begin_inset Note Note
293 status open
294
295 \begin_layout Plain Layout
296 Um diese Datei als PDF, PS oder DVI zu exportieren, sollten die LaTeX-Pakete
297  
298 \series bold
299 braket, cancel, eurosym, mathdots, mathtools, mhchem, undertilde
300 \series default
301  und 
302 \series bold
303 was
304 \series default
305  installiert sein.
306  Wenn diese nicht installiert sind, kann das Dokument zwar exportiert werden,
307  die Abschnitte in denen die Pakete benötigt werden, erscheinen dann aber
308  nicht im Ausdruck.
309  Eine Ausnahme ist 
310 \series bold
311 mhchem
312 \series default
313 ; wenn es nicht installiert ist, kann dieses Dokument nicht exportiert werden.
314 \end_layout
315
316 \begin_layout Plain Layout
317 Die neueste PDF-Version dieses Dokuments ist hier zu finden:
318 \begin_inset Newline newline
319 \end_inset
320
321
322 \series bold
323 http://wiki.lyx.org/LyX/DocumentationDevelopment#Math
324 \end_layout
325
326 \end_inset
327
328
329 \end_layout
330
331 \begin_layout Standard
332 \begin_inset Newpage newpage
333 \end_inset
334
335
336 \end_layout
337
338 \begin_layout Section
339 Einleitung
340 \end_layout
341
342 \begin_layout Standard
343 Dieses Dokument ist eine Zusammenstellung und Erläuterung der wichtigsten
344  LaTeX-Befehle für mathematische Zeichen und Konstruktionen.
345  Die Erläuterungen sind speziell auf die Benutzung der Befehle mit LyX zugeschni
346 tten.
347  Das setzt voraus, dass bereits das Kapitel 
348 \family typewriter
349 Mathematische
350 \family default
351  
352 \family typewriter
353 Formeln
354 \family default
355  des Benutzerhandbuchs gelesen worden ist.
356 \end_layout
357
358 \begin_layout Standard
359 Die meisten Zeichen und viele Konstruktionen sind auch über das Menü 
360 \family sans
361 Einfügen
362 \series bold
363 \SpecialChar \menuseparator
364
365 \series default
366 Mathe
367 \family default
368  oder die 
369 \family sans
370 Mathe-Werkzeugleiste
371 \family default
372  aufrufbar.
373  Wer viele Formeln zu schreiben hat, wird jedoch feststellen, dass man mit
374  den LaTeX-Befehlen viel schneller eine Formel setzen kann.
375  Daher wird in diesem Handbuch der Fokus auf Befehle gesetzt wobei entsprechende
376  Werkzeugleistenknöpfe, falls vorhanden, erwähnt werden.
377 \end_layout
378
379 \begin_layout Standard
380 Sofern nicht anders angegeben, sind Befehle nur in der Formel-Umgebung von
381  LyX verfügbar.
382  Um alle Befehle nutzen zu können, muss die Option 
383 \family sans
384 AMS-Mathe-Paket verwenden
385 \family default
386  im Menü 
387 \family sans
388 Dokument\SpecialChar \menuseparator
389 Einstellungen\SpecialChar \menuseparator
390 Mathe Optionen
391 \family default
392  aktiviert sein.
393 \begin_inset Foot
394 status collapsed
395
396 \begin_layout Plain Layout
397 Die 
398 \family sans
399 Option
400 \family default
401  
402 \family sans
403 AMS-Mathe-Paket automatisch verwenden
404 \family default
405  verwendet 
406 \begin_inset ERT
407 status collapsed
408
409 \begin_layout Plain Layout
410
411
412 \backslash
413 AmS 
414 \end_layout
415
416 \end_inset
417
418 -Mathe nur wenn im Dokument mathematische Konstrukte gefunden wurden die
419  LyX unterstützt.
420 \end_layout
421
422 \end_inset
423
424
425 \end_layout
426
427 \begin_layout Standard
428 Es wird in diesem Dokument der Übersichtlichkeit halber auf die Auf\SpecialChar \textcompwordmark{}
429 listung
430  aller 
431 \begin_inset ERT
432 status collapsed
433
434 \begin_layout Plain Layout
435
436
437 \backslash
438 AmS 
439 \end_layout
440
441 \end_inset
442
443 -Mathe Befehle
444 \begin_inset Foot
445 status collapsed
446
447 \begin_layout Plain Layout
448 Eine Liste mit allen 
449 \begin_inset ERT
450 status collapsed
451
452 \begin_layout Plain Layout
453
454
455 \backslash
456 AmS
457 \end_layout
458
459 \end_inset
460
461 -Mathe Befehlen findet sich in der Datei 
462 \family sans
463
464 \begin_inset CommandInset href
465 LatexCommand href
466 name "amsguide.ps"
467 target "ftp://ftp.ams.org/pub/tex/doc/amstex/amsguide.pdf"
468
469 \end_inset
470
471
472 \family default
473 , die Teil jeder LaTeX-Standardinstallation ist.
474 \end_layout
475
476 \end_inset
477
478  verzichtet.
479 \end_layout
480
481 \begin_layout Section
482 Allgemeine Hinweise
483 \end_layout
484
485 \begin_layout Standard
486 Um eine in einer Textzeile eingebettete Formel
487 \begin_inset Index idx
488 status collapsed
489
490 \begin_layout Plain Layout
491 Formel ! eingebettete
492 \end_layout
493
494 \end_inset
495
496  zu erstellen, drückt man 
497 \family sans
498 Strg+M
499 \family default
500  oder den Werkzeugleistenknopf 
501 \begin_inset Info
502 type  "icon"
503 arg   "math-mode"
504 \end_inset
505
506 .
507 \begin_inset Newline newline
508 \end_inset
509
510 Um eine abgesetzte Formel
511 \begin_inset Index idx
512 status collapsed
513
514 \begin_layout Plain Layout
515 Formel ! abgesetzte
516 \end_layout
517
518 \end_inset
519
520  zu erstellen, drückt man 
521 \family sans
522 Strg+Shift+M
523 \family default
524 .
525 \end_layout
526
527 \begin_layout Standard
528 Um eine abgesetzte Formel in eine eingebettete umzuwandeln, setzt man den
529  Cursor in die Formel und drückt 
530 \family sans
531 Strg+Shift+M
532 \family default
533  oder benutzt das Menü 
534 \family sans
535 Bearbeiten\SpecialChar \menuseparator
536 Mathe\SpecialChar \menuseparator
537
538 \begin_inset Newline linebreak
539 \end_inset
540
541 Formelart ändern
542 \family default
543 .
544  Auf die selbe Weise lässt sich eine eingebettete in eine abgesetzte Formel
545  umwandeln.
546 \end_layout
547
548 \begin_layout Standard
549 Um Teile einer eingebetteten Formel in der Größe einer abgesetzten darzustellen,
550  gibt man in die Formel den Befehl 
551 \series bold
552
553 \backslash
554 displaystyle
555 \series default
556
557 \begin_inset Index idx
558 status collapsed
559
560 \begin_layout Plain Layout
561 Befehle ! D ! 
562 \backslash
563 displaystyle
564 \end_layout
565
566 \end_inset
567
568  ein.
569  Es erscheint ein neues blaues Kästchen, in das dann der Formelteil eingegeben
570  wird.
571 \end_layout
572
573 \begin_layout Standard
574 In einer Tabelle dürfen nur eingebettete Formeln verwendet werden.
575 \end_layout
576
577 \begin_layout Standard
578 Die 
579 \family sans
580 Mathe-Werkzeugleiste
581 \family default
582  kann über das Menü 
583 \family sans
584 Ansicht\SpecialChar \menuseparator
585 Werkzeugleisten
586 \family default
587  eingeblendet werden.
588  Wenn dort auf 
589 \begin_inset Quotes eld
590 \end_inset
591
592 Mathe
593 \begin_inset Quotes erd
594 \end_inset
595
596  geklickt wird, wird die Werkzeugleiste permanent am unteren Rand eingeblendet;
597  diese Einstellung wird durch ein Häkchen im Menü 
598 \family sans
599 Werkzeugleisten
600 \family default
601  angezeigt.
602  Wenn nun im Menü 
603 \family sans
604 Werkzeugleisten
605 \family default
606  nochmal auf 
607 \begin_inset Quotes eld
608 \end_inset
609
610 Mathe
611 \begin_inset Quotes erd
612 \end_inset
613
614  geklickt wird, wird die Werkzeugleiste nur angezeigt, wenn sich der Cursor
615  in einer Formel befindet; diese Einstellung wird durch die Umbenennung
616  des Menüeintrags von 
617 \begin_inset Quotes eld
618 \end_inset
619
620 Mathe
621 \begin_inset Quotes erd
622 \end_inset
623
624  zu 
625 \begin_inset Quotes eld
626 \end_inset
627
628 Mathe
629 \begin_inset space ~
630 \end_inset
631
632 (automatisch)
633 \begin_inset Quotes erd
634 \end_inset
635
636  angezeigt.
637 \end_layout
638
639 \begin_layout Standard
640 In den TeX-Modus
641 \begin_inset Index idx
642 status collapsed
643
644 \begin_layout Plain Layout
645 T@TeX-Modus
646 \end_layout
647
648 \end_inset
649
650  gelangt man über den Werkzeugleistenknopf 
651 \begin_inset Info
652 type  "icon"
653 arg   "ert-insert"
654 \end_inset
655
656  oder das Menü 
657 \family sans
658 Einfügen\SpecialChar \menuseparator
659 Te
660 \begin_inset ERT
661 status collapsed
662
663 \begin_layout Plain Layout
664
665 {}
666 \end_layout
667
668 \end_inset
669
670 X
671 \begin_inset space ~
672 \end_inset
673
674 Code
675 \family default
676  (Tastenkürzel 
677 \family sans
678 Strg+L
679 \family default
680 ).
681 \begin_inset Note Note
682 status collapsed
683
684 \begin_layout Plain Layout
685 In LyX gibt es drei 
686 \begin_inset Quotes gld
687 \end_inset
688
689 Eigennamen
690 \begin_inset Quotes grd
691 \end_inset
692
693 , die im Ausdruck mit hoch bzw.
694 \begin_inset space \space{}
695 \end_inset
696
697 tief gestellten Großbuchstaben erscheinen: TeX, LaTeX und LyX
698 \end_layout
699
700 \begin_layout Plain Layout
701 Um zu verhindern, dass diese Wörter als Eigennamen erkannt werden, fügt
702  man ein TeX-Klammerpaar ein.
703 \end_layout
704
705 \end_inset
706
707
708 \end_layout
709
710 \begin_layout Standard
711 In den LaTeX-Vorspann
712 \begin_inset Index idx
713 status collapsed
714
715 \begin_layout Plain Layout
716 L@LaTeX-Vorspann
717 \end_layout
718
719 \end_inset
720
721  gelangt man über das Menü 
722 \family sans
723 Dokument\SpecialChar \menuseparator
724 Einstellungen\SpecialChar \menuseparator
725 LaT
726 \begin_inset ERT
727 status collapsed
728
729 \begin_layout Plain Layout
730
731 {}
732 \end_layout
733
734 \end_inset
735
736 eX-Vorspann
737 \family default
738 .
739 \end_layout
740
741 \begin_layout Standard
742 Zur nachträglichen Bearbeitung von Matrizen, Fallunterscheidungen und mehrzeilig
743 en Formeln kann man die Menüs 
744 \family sans
745 Bearbeiten\SpecialChar \menuseparator
746 Mathe
747 \family default
748  und 
749 \family sans
750 Bearbeiten\SpecialChar \menuseparator
751 Zeilen
752 \begin_inset space \thinspace{}
753 \end_inset
754
755 &
756 \begin_inset space \thinspace{}
757 \end_inset
758
759 Spalten
760 \family default
761  oder die 
762 \family sans
763 Tabellen-Werkzeugleiste
764 \family default
765  verwenden.
766  Beim Vertauschen von Zeilen und Spalten mit Hilfe dieses Menüs wird immer
767  die Spalte bzw.
768 \begin_inset space \space{}
769 \end_inset
770
771 Zeile, in der der Cursor steht, mit der rechts daneben stehenden Spalte
772  bzw.
773 \begin_inset space \space{}
774 \end_inset
775
776 darunter liegenden Zeile vertauscht.
777  Befindet sich der Cursor in der letzten Spalte bzw.
778 \begin_inset space \space{}
779 \end_inset
780
781 Zeile, wird mit der links daneben stehenden Spalte bzw.
782 \begin_inset space \space{}
783 \end_inset
784
785 darüber liegenden Zeile vertauscht.
786 \end_layout
787
788 \begin_layout Standard
789 Zum Schreiben von Text in einer Formel
790 \begin_inset Foot
791 status collapsed
792
793 \begin_layout Plain Layout
794 Bei mehrzeiligen Formeln wird der Befehl 
795 \series bold
796
797 \backslash
798 intertext
799 \series default
800  verwendet, siehe 
801 \begin_inset CommandInset ref
802 LatexCommand ref
803 reference "sub:Text-in-mehrzeiligen"
804
805 \end_inset
806
807 .
808 \end_layout
809
810 \end_inset
811
812  verwendet man den 
813 \emph on
814 mathematischen Textmodus
815 \emph default
816
817 \begin_inset Index idx
818 status collapsed
819
820 \begin_layout Plain Layout
821 Text ! in Formeln
822 \end_layout
823
824 \end_inset
825
826
827 \begin_inset Index idx
828 status collapsed
829
830 \begin_layout Plain Layout
831 Mathematischer Textmodus
832 \end_layout
833
834 \end_inset
835
836 , in den man mit dem Tastenkürzel 
837 \family sans
838 Alt+M
839 \begin_inset space ~
840 \end_inset
841
842 M
843 \family default
844  oder durch Eingabe des Befehls 
845 \series bold
846
847 \backslash
848 text
849 \begin_inset Index idx
850 status collapsed
851
852 \begin_layout Plain Layout
853 Befehle ! T ! 
854 \backslash
855 text
856 \end_layout
857
858 \end_inset
859
860
861 \series default
862  gelangt.
863  Der Text erscheint in LyX schwarz und lässt sich dadurch gut vom Rest der
864  Formel unterscheiden.
865  Im fertigen Dokument erscheint mathematischer Text im Gegensatz zu allen
866  anderen Zeichen einer Formel nicht kursiv.
867 \end_layout
868
869 \begin_layout Subsection*
870 Befehlsschema
871 \end_layout
872
873 \begin_layout Standard
874 Die meisten LaTeX-Befehle für mathematische Konstruktionen besitzen folgendes
875  Schema:
876 \end_layout
877
878 \begin_layout Standard
879
880 \series bold
881
882 \backslash
883 Befehlsname[optionales
884 \series default
885  
886 \series bold
887 Argument]{anzugebendes
888 \series default
889  
890 \series bold
891 Argument}
892 \end_layout
893
894 \begin_layout Standard
895 Ein Befehl muss immer mit einem Backslash 
896 \begin_inset Quotes gld
897 \end_inset
898
899
900 \series bold
901
902 \backslash
903
904 \series default
905
906 \begin_inset Quotes grd
907 \end_inset
908
909  beginnen.
910  Möchte man ein optionales Argument nicht angeben, müssen auch die zugehörigen
911  eckigen Klammern weggelassen werden.
912  Die geschweiften Klammern werden in diesem Dokument als TeX-Klammern
913 \begin_inset Index idx
914 status collapsed
915
916 \begin_layout Plain Layout
917 T@TeX-Klammern
918 \end_layout
919
920 \end_inset
921
922  bezeichnet.
923  Hängt man in einer Formel an Befehlsnamen eine linke geschweifte Klammer
924  an, erzeugt LyX automatisch eine TeX-Klammer.
925  Ansonsten werden sie in Formeln mit dem Befehl 
926 \series bold
927
928 \backslash
929 {
930 \series default
931  erzeugt.
932  TeX-Klammern erscheinen in LyX rot, im Gegensatz zu normalen geschweiften
933  Klammern, die blau erscheinen.
934  Im TeX-Modus sind für TeX-Klammern keine Befehle notwendig.
935  TeX-Klammern erscheinen nicht im Ausdruck.
936 \end_layout
937
938 \begin_layout Standard
939 Werden Befehle ohne Argumente, wie z.
940 \begin_inset space \thinspace{}
941 \end_inset
942
943 B.
944  Symbolbefehle, im TeX-Modus eingegeben, muss auf den Befehl 
945 \emph on
946 immer
947 \emph default
948  ein Leerzeichen folgen um ihn zu beenden.
949  Dieses Leerzeichen erscheint nicht im Ausdruck.
950  Soll das Leerzeichen auch im Ausdruck erscheinen, muss auf den Befehl im
951  normalen Text ein geschütztes Leerzeichen folgen.
952 \end_layout
953
954 \begin_layout Standard
955 Ein geschütztes Leerzeichen gibt man mit 
956 \family sans
957 Strg+Leertaste
958 \family default
959  ein.
960 \end_layout
961
962 \begin_layout Subsection*
963 Zeichenerklärung
964 \end_layout
965
966 \begin_layout Itemize
967 Das Symbol 
968 \begin_inset space \textvisiblespace{}
969 \end_inset
970
971  steht für ein einzugebendes Leerzeichen.
972 \end_layout
973
974 \begin_layout Itemize
975 Ein Pfeil wie z.
976 \begin_inset space \thinspace{}
977 \end_inset
978
979 B.
980  
981 \begin_inset Formula $\to$
982 \end_inset
983
984  steht für den Druck der jeweiligen Pfeiltaste auf der Tastatur.
985  Die 
986 \family sans
987 Tabulator
988 \family default
989 -Taste kann oft anstelle von 
990 \begin_inset Formula $\to$
991 \end_inset
992
993  und 
994 \begin_inset Formula $\downarrow$
995 \end_inset
996
997  benutzt werden und 
998 \family sans
999 Umschalt+Tabulator
1000 \family default
1001  anstelle von 
1002 \begin_inset Formula $\leftarrow$
1003 \end_inset
1004
1005  und 
1006 \begin_inset Formula $\uparrow$
1007 \end_inset
1008
1009 .
1010 \end_layout
1011
1012 \begin_layout Subsection*
1013 Verfügbare Einheiten
1014 \end_layout
1015
1016 \begin_layout Standard
1017 \align center
1018 \begin_inset Float table
1019 placement H
1020 wide false
1021 sideways false
1022 status open
1023
1024 \begin_layout Plain Layout
1025 \align center
1026 \begin_inset Caption Standard
1027
1028 \begin_layout Plain Layout
1029 \begin_inset CommandInset label
1030 LatexCommand label
1031 name "tab:Verfügbare-Einheiten"
1032
1033 \end_inset
1034
1035 Verfügbare Einheiten
1036 \end_layout
1037
1038 \end_inset
1039
1040
1041 \end_layout
1042
1043 \begin_layout Plain Layout
1044 \align center
1045 \begin_inset Tabular
1046 <lyxtabular version="3" rows="13" columns="2">
1047 <features rotate="0" tabularvalignment="middle">
1048 <column alignment="center" valignment="top">
1049 <column alignment="center" valignment="top">
1050 <row>
1051 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1052 \begin_inset Text
1053
1054 \begin_layout Plain Layout
1055 Einheit
1056 \end_layout
1057
1058 \end_inset
1059 </cell>
1060 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1061 \begin_inset Text
1062
1063 \begin_layout Plain Layout
1064 Name / Beschreibung
1065 \end_layout
1066
1067 \end_inset
1068 </cell>
1069 </row>
1070 <row>
1071 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1072 \begin_inset Text
1073
1074 \begin_layout Plain Layout
1075 mm
1076 \end_layout
1077
1078 \end_inset
1079 </cell>
1080 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1081 \begin_inset Text
1082
1083 \begin_layout Plain Layout
1084 Millimeter
1085 \end_layout
1086
1087 \end_inset
1088 </cell>
1089 </row>
1090 <row>
1091 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1092 \begin_inset Text
1093
1094 \begin_layout Plain Layout
1095 cm
1096 \end_layout
1097
1098 \end_inset
1099 </cell>
1100 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1101 \begin_inset Text
1102
1103 \begin_layout Plain Layout
1104 Zentimeter
1105 \end_layout
1106
1107 \end_inset
1108 </cell>
1109 </row>
1110 <row>
1111 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1112 \begin_inset Text
1113
1114 \begin_layout Plain Layout
1115 in
1116 \end_layout
1117
1118 \end_inset
1119 </cell>
1120 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1121 \begin_inset Text
1122
1123 \begin_layout Plain Layout
1124 Inch / Zoll (1
1125 \begin_inset space \thinspace{}
1126 \end_inset
1127
1128 in = 2,54
1129 \begin_inset space \thinspace{}
1130 \end_inset
1131
1132 cm)
1133 \end_layout
1134
1135 \end_inset
1136 </cell>
1137 </row>
1138 <row>
1139 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1140 \begin_inset Text
1141
1142 \begin_layout Plain Layout
1143 pt
1144 \end_layout
1145
1146 \end_inset
1147 </cell>
1148 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1149 \begin_inset Text
1150
1151 \begin_layout Plain Layout
1152 Punkt (72,27
1153 \begin_inset space \thinspace{}
1154 \end_inset
1155
1156 pt = 1
1157 \begin_inset space \thinspace{}
1158 \end_inset
1159
1160 in)
1161 \end_layout
1162
1163 \end_inset
1164 </cell>
1165 </row>
1166 <row>
1167 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1168 \begin_inset Text
1169
1170 \begin_layout Plain Layout
1171 pc
1172 \end_layout
1173
1174 \end_inset
1175 </cell>
1176 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1177 \begin_inset Text
1178
1179 \begin_layout Plain Layout
1180 Pica (1
1181 \begin_inset space \thinspace{}
1182 \end_inset
1183
1184 pc = 12
1185 \begin_inset space \thinspace{}
1186 \end_inset
1187
1188 pt)
1189 \end_layout
1190
1191 \end_inset
1192 </cell>
1193 </row>
1194 <row>
1195 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1196 \begin_inset Text
1197
1198 \begin_layout Plain Layout
1199 sp
1200 \end_layout
1201
1202 \end_inset
1203 </cell>
1204 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1205 \begin_inset Text
1206
1207 \begin_layout Plain Layout
1208 skalierter Punkt(65536
1209 \begin_inset space \thinspace{}
1210 \end_inset
1211
1212 sp = 1
1213 \begin_inset space \thinspace{}
1214 \end_inset
1215
1216 pt)
1217 \end_layout
1218
1219 \end_inset
1220 </cell>
1221 </row>
1222 <row>
1223 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1224 \begin_inset Text
1225
1226 \begin_layout Plain Layout
1227 bp
1228 \end_layout
1229
1230 \end_inset
1231 </cell>
1232 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1233 \begin_inset Text
1234
1235 \begin_layout Plain Layout
1236 großer Punkt (72
1237 \begin_inset space \thinspace{}
1238 \end_inset
1239
1240 bp = 1
1241 \begin_inset space \thinspace{}
1242 \end_inset
1243
1244 in)
1245 \end_layout
1246
1247 \end_inset
1248 </cell>
1249 </row>
1250 <row>
1251 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1252 \begin_inset Text
1253
1254 \begin_layout Plain Layout
1255 dd
1256 \end_layout
1257
1258 \end_inset
1259 </cell>
1260 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1261 \begin_inset Text
1262
1263 \begin_layout Plain Layout
1264 Didot (1
1265 \begin_inset space \thinspace{}
1266 \end_inset
1267
1268 dd 
1269 \begin_inset Formula $\approx$
1270 \end_inset
1271
1272  0,376
1273 \begin_inset space \thinspace{}
1274 \end_inset
1275
1276 mm)
1277 \end_layout
1278
1279 \end_inset
1280 </cell>
1281 </row>
1282 <row>
1283 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1284 \begin_inset Text
1285
1286 \begin_layout Plain Layout
1287 cc
1288 \end_layout
1289
1290 \end_inset
1291 </cell>
1292 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1293 \begin_inset Text
1294
1295 \begin_layout Plain Layout
1296 Cicero (1
1297 \begin_inset space \thinspace{}
1298 \end_inset
1299
1300 cc = 12
1301 \begin_inset space \thinspace{}
1302 \end_inset
1303
1304 dd)
1305 \end_layout
1306
1307 \end_inset
1308 </cell>
1309 </row>
1310 <row>
1311 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1312 \begin_inset Text
1313
1314 \begin_layout Plain Layout
1315 ex
1316 \end_layout
1317
1318 \end_inset
1319 </cell>
1320 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1321 \begin_inset Text
1322
1323 \begin_layout Plain Layout
1324 Höhe des Buchstabens 
1325 \emph on
1326 x
1327 \emph default
1328  in der aktuellen Schrift
1329 \end_layout
1330
1331 \end_inset
1332 </cell>
1333 </row>
1334 <row>
1335 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1336 \begin_inset Text
1337
1338 \begin_layout Plain Layout
1339 em
1340 \end_layout
1341
1342 \end_inset
1343 </cell>
1344 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1345 \begin_inset Text
1346
1347 \begin_layout Plain Layout
1348 Breite des Buchstabens 
1349 \emph on
1350 M
1351 \emph default
1352  in der aktuellen Schrift
1353 \end_layout
1354
1355 \end_inset
1356 </cell>
1357 </row>
1358 <row>
1359 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1360 \begin_inset Text
1361
1362 \begin_layout Plain Layout
1363 mu
1364 \end_layout
1365
1366 \end_inset
1367 </cell>
1368 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1369 \begin_inset Text
1370
1371 \begin_layout Plain Layout
1372 Mathe-Einheit (1
1373 \begin_inset space \thinspace{}
1374 \end_inset
1375
1376 mu = 
1377 \begin_inset Formula $\nicefrac{1}{18}$
1378 \end_inset
1379
1380
1381 \begin_inset space \thinspace{}
1382 \end_inset
1383
1384 em)
1385 \end_layout
1386
1387 \end_inset
1388 </cell>
1389 </row>
1390 </lyxtabular>
1391
1392 \end_inset
1393
1394
1395 \end_layout
1396
1397 \end_inset
1398
1399
1400 \end_layout
1401
1402 \begin_layout Standard
1403 \begin_inset Newpage newpage
1404 \end_inset
1405
1406
1407 \end_layout
1408
1409 \begin_layout Section
1410 Grundlegende Funktionen
1411 \end_layout
1412
1413 \begin_layout Subsection
1414 Exponenten
1415 \begin_inset Index idx
1416 status collapsed
1417
1418 \begin_layout Plain Layout
1419 Exponenten
1420 \end_layout
1421
1422 \end_inset
1423
1424  und Indizes
1425 \begin_inset Index idx
1426 status collapsed
1427
1428 \begin_layout Plain Layout
1429 Indizes
1430 \end_layout
1431
1432 \end_inset
1433
1434
1435 \begin_inset Index idx
1436 status collapsed
1437
1438 \begin_layout Plain Layout
1439 Hochstellen|see
1440 \begin_inset ERT
1441 status collapsed
1442
1443 \begin_layout Plain Layout
1444
1445 {
1446 \end_layout
1447
1448 \end_inset
1449
1450 Exponenten
1451 \begin_inset ERT
1452 status collapsed
1453
1454 \begin_layout Plain Layout
1455
1456 }
1457 \end_layout
1458
1459 \end_inset
1460
1461
1462 \end_layout
1463
1464 \end_inset
1465
1466
1467 \begin_inset Index idx
1468 status collapsed
1469
1470 \begin_layout Plain Layout
1471 Tiefstellen|see
1472 \begin_inset ERT
1473 status collapsed
1474
1475 \begin_layout Plain Layout
1476
1477 {
1478 \end_layout
1479
1480 \end_inset
1481
1482 Indizes
1483 \begin_inset ERT
1484 status collapsed
1485
1486 \begin_layout Plain Layout
1487
1488 }
1489 \end_layout
1490
1491 \end_inset
1492
1493
1494 \end_layout
1495
1496 \end_inset
1497
1498
1499 \end_layout
1500
1501 \begin_layout Standard
1502 Indizes werden mit dem Unterstrich _ oder mit dem Mathe-Werkzeugleistenknopf
1503  
1504 \begin_inset Info
1505 type  "icon"
1506 arg   "math-subscript"
1507 \end_inset
1508
1509 , Exponenten mit dem Zirkumflexzeichen ^ oder mit dem Mathe-Werkzeugleistenknopf
1510  
1511 \begin_inset Info
1512 type  "icon"
1513 arg   "math-superscript"
1514 \end_inset
1515
1516  erzeugt.
1517 \end_layout
1518
1519 \begin_layout Standard
1520 \align center
1521 \begin_inset Tabular
1522 <lyxtabular version="3" rows="4" columns="2">
1523 <features rotate="0" tabularvalignment="middle">
1524 <column alignment="center" valignment="top" width="0pt">
1525 <column alignment="center" valignment="top" width="0pt">
1526 <row>
1527 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1528 \begin_inset Text
1529
1530 \begin_layout Plain Layout
1531 Befehl
1532 \end_layout
1533
1534 \end_inset
1535 </cell>
1536 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1537 \begin_inset Text
1538
1539 \begin_layout Plain Layout
1540 Ergebnis
1541 \begin_inset Note Note
1542 status collapsed
1543
1544 \begin_layout Plain Layout
1545
1546 \series bold
1547
1548 \backslash
1549 raisebox
1550 \series default
1551  dient nur als Abstandhalter.
1552 \end_layout
1553
1554 \end_inset
1555
1556
1557 \end_layout
1558
1559 \end_inset
1560 </cell>
1561 </row>
1562 <row>
1563 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1564 \begin_inset Text
1565
1566 \begin_layout Plain Layout
1567 B_V
1568 \end_layout
1569
1570 \end_inset
1571 </cell>
1572 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1573 \begin_inset Text
1574
1575 \begin_layout Plain Layout
1576 \begin_inset Formula $B_{V}$
1577 \end_inset
1578
1579
1580 \end_layout
1581
1582 \end_inset
1583 </cell>
1584 </row>
1585 <row>
1586 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1587 \begin_inset Text
1588
1589 \begin_layout Plain Layout
1590 B^V
1591 \end_layout
1592
1593 \end_inset
1594 </cell>
1595 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1596 \begin_inset Text
1597
1598 \begin_layout Plain Layout
1599 \begin_inset Formula $\raisebox{5mm}{}B^{V}$
1600 \end_inset
1601
1602
1603 \end_layout
1604
1605 \end_inset
1606 </cell>
1607 </row>
1608 <row>
1609 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1610 \begin_inset Text
1611
1612 \begin_layout Plain Layout
1613 B^
1614 \begin_inset space \textvisiblespace{}
1615 \end_inset
1616
1617 A
1618 \end_layout
1619
1620 \end_inset
1621 </cell>
1622 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1623 \begin_inset Text
1624
1625 \begin_layout Plain Layout
1626 \begin_inset Formula $\raisebox{5mm}{}B^{A}$
1627 \end_inset
1628
1629
1630 \end_layout
1631
1632 \end_inset
1633 </cell>
1634 </row>
1635 </lyxtabular>
1636
1637 \end_inset
1638
1639
1640 \end_layout
1641
1642 \begin_layout Standard
1643 Da der Zirkumflex ein Akzent ist, werden Selbstlaute akzentuiert statt hochgeste
1644 llt
1645 \begin_inset Foot
1646 status collapsed
1647
1648 \begin_layout Plain Layout
1649 Je nach Tastatureinstellung werden auch andere Buchstaben akzentuiert.
1650 \end_layout
1651
1652 \end_inset
1653
1654 .
1655  Um in diesem Fall Exponenten zu erzeugen, muss nach dem Zirkumflex ein
1656  Leerzeichen eingegeben werden, siehe letztes Beispiel.
1657 \end_layout
1658
1659 \begin_layout Subsection
1660 Brüche
1661 \begin_inset CommandInset label
1662 LatexCommand label
1663 name "sub:Brüche"
1664
1665 \end_inset
1666
1667
1668 \begin_inset Index idx
1669 status collapsed
1670
1671 \begin_layout Plain Layout
1672 Brüche
1673 \end_layout
1674
1675 \end_inset
1676
1677
1678 \end_layout
1679
1680 \begin_layout Standard
1681 Brüche werden mit dem Befehl 
1682 \series bold
1683
1684 \backslash
1685 frac
1686 \series default
1687
1688 \begin_inset Index idx
1689 status collapsed
1690
1691 \begin_layout Plain Layout
1692 Befehle ! F ! 
1693 \backslash
1694 frac
1695 \end_layout
1696
1697 \end_inset
1698
1699  oder mit dem Mathe-Werkzeugleistenknopf 
1700 \begin_inset Info
1701 type  "icon"
1702 arg   "math-insert \\frac"
1703 \end_inset
1704
1705  erstellt.
1706  Die Zeichengröße wird automatisch angepasst, je nachdem, ob sich der Bruch
1707  in einer eingebetteten oder abgesetzten Formel befindet.
1708  Mit dem Mathe-Werkzeugleistenknopf 
1709 \begin_inset Info
1710 type  "icon"
1711 arg   "math-insert \\frac-square"
1712 \end_inset
1713
1714  können verschieden Bruchtypen gewählt werden.
1715 \end_layout
1716
1717 \begin_layout Standard
1718 Mit dem Befehl 
1719 \series bold
1720
1721 \backslash
1722 dfrac
1723 \series default
1724
1725 \begin_inset Index idx
1726 status collapsed
1727
1728 \begin_layout Plain Layout
1729 Befehle ! D ! 
1730 \backslash
1731 dfrac
1732 \end_layout
1733
1734 \end_inset
1735
1736  kann man einen Bruch erzeugen, der immer in der Größe einer abgesetzten
1737  Formel erscheint.
1738  Mit 
1739 \series bold
1740
1741 \backslash
1742 tfrac
1743 \series default
1744
1745 \begin_inset Index idx
1746 status collapsed
1747
1748 \begin_layout Plain Layout
1749 Befehle ! T ! 
1750 \backslash
1751 tfrac
1752 \end_layout
1753
1754 \end_inset
1755
1756  erscheint der Bruch immer in der Größe einer eingebetteten Formel.
1757  Ein Beispiel:
1758 \end_layout
1759
1760 \begin_layout Standard
1761 Eine Zeile mit dem Bruch 
1762 \begin_inset Formula $\frac{1}{2}$
1763 \end_inset
1764
1765 , der mit dem Befehl 
1766 \series bold
1767
1768 \backslash
1769 frac
1770 \series default
1771  erstellt wurde.
1772 \end_layout
1773
1774 \begin_layout Standard
1775 Eine Zeile mit dem Bruch 
1776 \begin_inset Formula $\dfrac{1}{2}$
1777 \end_inset
1778
1779 , der mit dem Befehl 
1780 \series bold
1781
1782 \backslash
1783 dfrac
1784 \series default
1785  erstellt wurde.
1786 \end_layout
1787
1788 \begin_layout Standard
1789 \align center
1790 \begin_inset Tabular
1791 <lyxtabular version="3" rows="4" columns="2">
1792 <features rotate="0" tabularvalignment="middle">
1793 <column alignment="center" valignment="top" width="0pt">
1794 <column alignment="center" valignment="top" width="0pt">
1795 <row>
1796 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1797 \begin_inset Text
1798
1799 \begin_layout Plain Layout
1800 Befehl
1801 \end_layout
1802
1803 \end_inset
1804 </cell>
1805 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1806 \begin_inset Text
1807
1808 \begin_layout Plain Layout
1809 Ergebnis
1810 \begin_inset Note Note
1811 status collapsed
1812
1813 \begin_layout Plain Layout
1814
1815 \series bold
1816
1817 \backslash
1818 raisebox
1819 \series default
1820  dient nur als Abstandhalter.
1821 \end_layout
1822
1823 \end_inset
1824
1825
1826 \end_layout
1827
1828 \end_inset
1829 </cell>
1830 </row>
1831 <row>
1832 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1833 \begin_inset Text
1834
1835 \begin_layout Plain Layout
1836
1837 \backslash
1838 frac
1839 \begin_inset space \textvisiblespace{}
1840 \end_inset
1841
1842 A
1843 \begin_inset Formula $\downarrow$
1844 \end_inset
1845
1846 B
1847 \end_layout
1848
1849 \end_inset
1850 </cell>
1851 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1852 \begin_inset Text
1853
1854 \begin_layout Plain Layout
1855 \begin_inset Formula $\raisebox{4.5mm}{}\frac{A}{B}\raisebox{-2.5mm}{}$
1856 \end_inset
1857
1858
1859 \end_layout
1860
1861 \end_inset
1862 </cell>
1863 </row>
1864 <row>
1865 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1866 \begin_inset Text
1867
1868 \begin_layout Plain Layout
1869
1870 \backslash
1871 dfrac
1872 \begin_inset space \textvisiblespace{}
1873 \end_inset
1874
1875 A
1876 \begin_inset Formula $\downarrow$
1877 \end_inset
1878
1879 B
1880 \end_layout
1881
1882 \end_inset
1883 </cell>
1884 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1885 \begin_inset Text
1886
1887 \begin_layout Plain Layout
1888 \begin_inset Formula $\raisebox{7mm}{}\dfrac{A}{B}\raisebox{-4mm}{}$
1889 \end_inset
1890
1891
1892 \end_layout
1893
1894 \end_inset
1895 </cell>
1896 </row>
1897 <row>
1898 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1899 \begin_inset Text
1900
1901 \begin_layout Plain Layout
1902
1903 \backslash
1904 dfrac
1905 \begin_inset space \textvisiblespace{}
1906 \end_inset
1907
1908 e^
1909 \backslash
1910 frac
1911 \begin_inset space \textvisiblespace{}
1912 \end_inset
1913
1914 1
1915 \begin_inset Formula $\downarrow$
1916 \end_inset
1917
1918 2
1919 \begin_inset Formula $\downarrow\downarrow$
1920 \end_inset
1921
1922 3
1923 \end_layout
1924
1925 \end_inset
1926 </cell>
1927 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1928 \begin_inset Text
1929
1930 \begin_layout Plain Layout
1931 \begin_inset Formula $\raisebox{8mm}{}\dfrac{e^{\frac{1}{2}}}{3}\raisebox{-4mm}{}$
1932 \end_inset
1933
1934
1935 \end_layout
1936
1937 \end_inset
1938 </cell>
1939 </row>
1940 </lyxtabular>
1941
1942 \end_inset
1943
1944
1945 \end_layout
1946
1947 \begin_layout Standard
1948 \begin_inset VSpace bigskip
1949 \end_inset
1950
1951
1952 \begin_inset Newpage newpage
1953 \end_inset
1954
1955 Für Mehrfachbrüche gibt es den Befehl 
1956 \series bold
1957
1958 \backslash
1959 cfrac
1960 \series default
1961
1962 \begin_inset Index idx
1963 status collapsed
1964
1965 \begin_layout Plain Layout
1966 Befehle ! C ! 
1967 \backslash
1968 cfrac
1969 \end_layout
1970
1971 \end_inset
1972
1973 .
1974  Dazu ein Beispiel:
1975 \begin_inset VSpace -3mm
1976 \end_inset
1977
1978
1979 \end_layout
1980
1981 \begin_layout Standard
1982 \begin_inset Formula 
1983 \begin{align*}
1984 \textrm{mit \textbf{\textbackslash frac} erstellt} &  & \textrm{mit \textbf{\textbackslash cfrac} erstellt}\\
1985 \frac{A}{B+\frac{C+\frac{E}{F}}{D}} &  & \cfrac{A}{B+\cfrac{C+\cfrac{E}{F}}{D}}
1986 \end{align*}
1987
1988 \end_inset
1989
1990
1991 \end_layout
1992
1993 \begin_layout Standard
1994 Der Befehl für obiges Beispiel lautet:
1995 \end_layout
1996
1997 \begin_layout Standard
1998
1999 \series bold
2000
2001 \backslash
2002 cfrac
2003 \begin_inset space \textvisiblespace{}
2004 \end_inset
2005
2006 A
2007 \begin_inset Formula $\downarrow$
2008 \end_inset
2009
2010 B+
2011 \backslash
2012 cfrac
2013 \begin_inset space \textvisiblespace{}
2014 \end_inset
2015
2016 C+
2017 \backslash
2018 cfrac
2019 \begin_inset space \textvisiblespace{}
2020 \end_inset
2021
2022 E
2023 \begin_inset Formula $\downarrow$
2024 \end_inset
2025
2026 F
2027 \begin_inset Formula $\downarrow$
2028 \end_inset
2029
2030 D
2031 \end_layout
2032
2033 \begin_layout Standard
2034 \begin_inset VSpace medskip
2035 \end_inset
2036
2037
2038 \end_layout
2039
2040 \begin_layout Standard
2041
2042 \series bold
2043
2044 \backslash
2045 cfrac
2046 \series default
2047  bewirkt, dass der Bruch immer in der Größe einer abgesetzten Formel erscheint,
2048  auch wenn er selbst Teil eines Bruches ist.
2049 \end_layout
2050
2051 \begin_layout Standard
2052 Es ist möglich die Ausrichtung des Zählers einzustellen.
2053  Der Befehl 
2054 \series bold
2055
2056 \backslash
2057 cfracleft
2058 \series default
2059  richtet ihn links, der Befehl 
2060 \series bold
2061
2062 \backslash
2063 cfracright
2064 \series default
2065  rechts aus.
2066  
2067 \series bold
2068
2069 \backslash
2070 cfrac
2071 \series default
2072  zentriert den Zähler.
2073  Diese Brüche demonstrieren die verschiedenen Ausrichtungen:
2074 \end_layout
2075
2076 \begin_layout Standard
2077
2078 \series bold
2079 \begin_inset Formula 
2080 \[
2081 \cfrac[l]{A}{B+C}\,,\,\cfrac{A}{B+C}\,,\,\cfrac[r]{A}{B+C}
2082 \]
2083
2084 \end_inset
2085
2086
2087 \end_layout
2088
2089 \begin_layout Standard
2090 \begin_inset Note Greyedout
2091 status open
2092
2093 \begin_layout Plain Layout
2094
2095 \series bold
2096 Achtung:
2097 \series default
2098  
2099 \series bold
2100
2101 \backslash
2102 cfracleft
2103 \series default
2104  und
2105 \series bold
2106  
2107 \backslash
2108 cfracright
2109 \series default
2110  sind keine echten LaTeX-Befehle, sondern stellen den Befehl 
2111 \series bold
2112
2113 \backslash
2114 cfrac[Ausrichtung]{Zähler}{Nenner}
2115 \series default
2116  dar.
2117  Daher kann man sie nicht im TeX-Code benutzen.
2118 \end_layout
2119
2120 \end_inset
2121
2122
2123 \end_layout
2124
2125 \begin_layout Standard
2126 \begin_inset VSpace medskip
2127 \end_inset
2128
2129 Oftmals ist es am günstigsten 
2130 \series bold
2131
2132 \backslash
2133 cfrac
2134 \series default
2135  und 
2136 \series bold
2137
2138 \backslash
2139 frac
2140 \series default
2141  zu kombinieren:
2142 \begin_inset Formula 
2143 \[
2144 \cfrac{A}{B+\cfrac{C+\frac{E}{F}}{D}}
2145 \]
2146
2147 \end_inset
2148
2149
2150 \end_layout
2151
2152 \begin_layout Standard
2153 Um Brüche mit schrägem Bruchstrich zu erzeugen, kann der Befehl 
2154 \series bold
2155
2156 \backslash
2157 nicefrac
2158 \series default
2159
2160 \begin_inset Index idx
2161 status collapsed
2162
2163 \begin_layout Plain Layout
2164 Befehle ! N ! 
2165 \backslash
2166 nicefrac
2167 \end_layout
2168
2169 \end_inset
2170
2171
2172 \begin_inset Formula $\nicefrac{5}{31}$
2173 \end_inset
2174
2175  oder 
2176 \series bold
2177
2178 \backslash
2179 unitfrac
2180 \series default
2181
2182 \begin_inset Index idx
2183 status collapsed
2184
2185 \begin_layout Plain Layout
2186 Befehle! U ! 
2187 \backslash
2188 unitfrac
2189 \end_layout
2190
2191 \end_inset
2192
2193
2194 \begin_inset Formula $\unitfrac{5}{31}$
2195 \end_inset
2196
2197  benutzt werden.
2198  Des Weiteren gibt es den Befehl 
2199 \series bold
2200
2201 \backslash
2202 unitfracthree
2203 \series default
2204  mit dem man einen Bruch in Kombination mit einer Zahl setzen kann: 
2205 \begin_inset Formula $\unitfrac[2]{1}{3}$
2206 \end_inset
2207
2208
2209 \end_layout
2210
2211 \begin_layout Standard
2212 \begin_inset Note Greyedout
2213 status open
2214
2215 \begin_layout Plain Layout
2216
2217 \series bold
2218 Achtung:
2219 \series default
2220  
2221 \series bold
2222
2223 \backslash
2224 unitfracthree
2225 \series default
2226  ist kein echter LaTeX-Befehl, sondern der Befehl
2227 \begin_inset Newline newline
2228 \end_inset
2229
2230
2231 \series bold
2232
2233 \backslash
2234 unitfrac[Zahl]{Zähler}{Nenner}
2235 \series default
2236  .
2237  Daher kann man ihn nicht im TeX-Code benutzen.
2238 \end_layout
2239
2240 \end_inset
2241
2242
2243 \end_layout
2244
2245 \begin_layout Standard
2246 Wie man eigene Brüche definiert, um die Bruchstrichdicke zu ändern, ist
2247  in 
2248 \begin_inset CommandInset ref
2249 LatexCommand ref
2250 reference "sub:Selbstdefinierte-Brüche"
2251
2252 \end_inset
2253
2254  erklärt.
2255 \end_layout
2256
2257 \begin_layout Standard
2258 Mehrzeilige Brüche sind in 
2259 \begin_inset CommandInset ref
2260 LatexCommand ref
2261 reference "sub:Mehrzeilige-Brüche"
2262
2263 \end_inset
2264
2265  erklärt.
2266 \end_layout
2267
2268 \begin_layout Subsection
2269 Wurzeln
2270 \begin_inset Index idx
2271 status collapsed
2272
2273 \begin_layout Plain Layout
2274 Wurzeln
2275 \end_layout
2276
2277 \end_inset
2278
2279
2280 \end_layout
2281
2282 \begin_layout Standard
2283 Quadratwurzeln werden mit 
2284 \series bold
2285
2286 \backslash
2287 sqrt
2288 \series default
2289
2290 \begin_inset Index idx
2291 status collapsed
2292
2293 \begin_layout Plain Layout
2294 Befehle ! S ! 
2295 \backslash
2296 sqrt
2297 \end_layout
2298
2299 \end_inset
2300
2301  oder dem Mathe-Werkzeugleistenknopf 
2302 \begin_inset Info
2303 type  "icon"
2304 arg   "math-insert \\sqrt"
2305 \end_inset
2306
2307  gesetzt, alle anderen Wurzeln mit dem Befehl 
2308 \series bold
2309
2310 \backslash
2311 root
2312 \series default
2313
2314 \begin_inset Index idx
2315 status collapsed
2316
2317 \begin_layout Plain Layout
2318 Befehle ! R ! 
2319 \backslash
2320 root
2321 \end_layout
2322
2323 \end_inset
2324
2325  oder dem Mathe-Werkzeugleistenknopf 
2326 \begin_inset Info
2327 type  "icon"
2328 arg   "math-insert \\root"
2329 \end_inset
2330
2331 .
2332 \end_layout
2333
2334 \begin_layout Standard
2335 \align center
2336 \begin_inset Tabular
2337 <lyxtabular version="3" rows="3" columns="2">
2338 <features rotate="0" tabularvalignment="middle">
2339 <column alignment="center" valignment="top" width="0pt">
2340 <column alignment="center" valignment="top" width="0pt">
2341 <row>
2342 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2343 \begin_inset Text
2344
2345 \begin_layout Plain Layout
2346 Befehl
2347 \end_layout
2348
2349 \end_inset
2350 </cell>
2351 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2352 \begin_inset Text
2353
2354 \begin_layout Plain Layout
2355 Ergebnis
2356 \begin_inset Note Note
2357 status collapsed
2358
2359 \begin_layout Plain Layout
2360
2361 \series bold
2362
2363 \backslash
2364 raisebox
2365 \series default
2366  dient nur als Abstandhalter.
2367 \end_layout
2368
2369 \end_inset
2370
2371
2372 \end_layout
2373
2374 \end_inset
2375 </cell>
2376 </row>
2377 <row>
2378 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2379 \begin_inset Text
2380
2381 \begin_layout Plain Layout
2382
2383 \backslash
2384 sqrt
2385 \begin_inset space \textvisiblespace{}
2386 \end_inset
2387
2388 A-B
2389 \end_layout
2390
2391 \end_inset
2392 </cell>
2393 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2394 \begin_inset Text
2395
2396 \begin_layout Plain Layout
2397 \begin_inset Formula $\raisebox{4.5mm}{}\sqrt{A-B}$
2398 \end_inset
2399
2400
2401 \end_layout
2402
2403 \end_inset
2404 </cell>
2405 </row>
2406 <row>
2407 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
2408 \begin_inset Text
2409
2410 \begin_layout Plain Layout
2411
2412 \backslash
2413 root
2414 \begin_inset space \textvisiblespace{}
2415 \end_inset
2416
2417 3
2418 \begin_inset Formula $\downarrow$
2419 \end_inset
2420
2421 A-B
2422 \end_layout
2423
2424 \end_inset
2425 </cell>
2426 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
2427 \begin_inset Text
2428
2429 \begin_layout Plain Layout
2430 \begin_inset Formula $\raisebox{4.5mm}{}\sqrt[3]{A-B}$
2431 \end_inset
2432
2433
2434 \end_layout
2435
2436 \end_inset
2437 </cell>
2438 </row>
2439 </lyxtabular>
2440
2441 \end_inset
2442
2443
2444 \end_layout
2445
2446 \begin_layout Standard
2447 Eine Quadratwurzel kann man auch mit 
2448 \series bold
2449
2450 \backslash
2451 root
2452 \series default
2453  erstellen, indem man das Feld über der Wurzel frei lässt.
2454 \end_layout
2455
2456 \begin_layout Standard
2457 Bei manchen Indizes ist der Abstand zur Wurzel zu gering, wie bei dieser
2458  Formel: 
2459 \begin_inset Formula $\sqrt[\beta]{B}$
2460 \end_inset
2461
2462
2463 \begin_inset Newline newline
2464 \end_inset
2465
2466 Das 
2467 \begin_inset Formula $\beta$
2468 \end_inset
2469
2470  berührt die Wurzel.
2471  Um dies zu verhindern, verwendet man die Befehle 
2472 \series bold
2473
2474 \backslash
2475 leftroot
2476 \series default
2477
2478 \begin_inset Index idx
2479 status collapsed
2480
2481 \begin_layout Plain Layout
2482 Befehle ! L ! 
2483 \backslash
2484 leftroot
2485 \end_layout
2486
2487 \end_inset
2488
2489  und 
2490 \series bold
2491
2492 \backslash
2493 uproot
2494 \series default
2495
2496 \begin_inset Index idx
2497 status collapsed
2498
2499 \begin_layout Plain Layout
2500 Befehle ! U ! 
2501 \backslash
2502 uproot
2503 \end_layout
2504
2505 \end_inset
2506
2507 , die folgendes Schema besitzen:
2508 \end_layout
2509
2510 \begin_layout Standard
2511
2512 \series bold
2513
2514 \backslash
2515 leftroot{Abstand}
2516 \series default
2517  bzw.
2518 \begin_inset space \space{}
2519 \end_inset
2520
2521
2522 \series bold
2523
2524 \backslash
2525 uproot{Abstand}
2526 \end_layout
2527
2528 \begin_layout Standard
2529 Abstand ist die Anzahl der Big Points (Einheit bp; 
2530 \begin_inset Formula $\mathrm{72\, bp=1\, inch}$
2531 \end_inset
2532
2533 ), um die der Index nach links bzw.
2534 \begin_inset space \space{}
2535 \end_inset
2536
2537 nach oben verschoben werden soll.
2538  Die Befehle werden in den Index geschrieben.
2539  So ergibt der Befehl
2540 \begin_inset Newline newline
2541 \end_inset
2542
2543
2544 \series bold
2545
2546 \backslash
2547 root
2548 \backslash
2549 leftroot{-1
2550 \begin_inset Formula $\to$
2551 \end_inset
2552
2553
2554 \backslash
2555 uproot{2
2556 \begin_inset Formula $\to$
2557 \end_inset
2558
2559
2560 \backslash
2561 beta
2562 \begin_inset space \textvisiblespace{}
2563 \end_inset
2564
2565
2566 \begin_inset Formula $\to$
2567 \end_inset
2568
2569 B
2570 \begin_inset Newline newline
2571 \end_inset
2572
2573
2574 \series default
2575 eine korrekt gesetzte Formel: 
2576 \begin_inset Formula $\sqrt[\leftroot{-1}\uproot{2}\beta]{B}$
2577 \end_inset
2578
2579
2580 \end_layout
2581
2582 \begin_layout Subsection
2583 Binomialkoeffizienten
2584 \begin_inset Index idx
2585 status collapsed
2586
2587 \begin_layout Plain Layout
2588 Binomialkoeffizienten
2589 \end_layout
2590
2591 \end_inset
2592
2593
2594 \end_layout
2595
2596 \begin_layout Standard
2597 Binomialkoeffizienten können mit dem Befehl 
2598 \series bold
2599
2600 \backslash
2601 binom
2602 \series default
2603
2604 \begin_inset Index idx
2605 status collapsed
2606
2607 \begin_layout Plain Layout
2608 Befehle ! B ! 
2609 \backslash
2610 binom
2611 \end_layout
2612
2613 \end_inset
2614
2615  oder über das Untermenü des Mathe-Werkzeugleistenknopfs 
2616 \begin_inset Info
2617 type  "icon"
2618 arg   "math-insert \\frac-square"
2619 \end_inset
2620
2621  eingefügt werden.
2622  Analog zu Brüchen (
2623 \series bold
2624
2625 \backslash
2626 frac
2627 \series default
2628 ) gibt es außer 
2629 \series bold
2630
2631 \backslash
2632 binom
2633 \series default
2634  noch die Befehle 
2635 \series bold
2636
2637 \backslash
2638 dbinom
2639 \series default
2640
2641 \begin_inset Index idx
2642 status collapsed
2643
2644 \begin_layout Plain Layout
2645 Befehle ! D ! 
2646 \backslash
2647 dbinom
2648 \end_layout
2649
2650 \end_inset
2651
2652  und 
2653 \series bold
2654
2655 \backslash
2656 tbinom
2657 \series default
2658
2659 \begin_inset Index idx
2660 status collapsed
2661
2662 \begin_layout Plain Layout
2663 Befehle ! T ! 
2664 \backslash
2665 tbinom
2666 \end_layout
2667
2668 \end_inset
2669
2670 .
2671  Für andere Klammern um Binomialkoeffizienten gibt es die Befehle 
2672 \series bold
2673
2674 \backslash
2675 brace
2676 \series default
2677
2678 \begin_inset Index idx
2679 status collapsed
2680
2681 \begin_layout Plain Layout
2682 Befehle ! B ! 
2683 \backslash
2684 brace
2685 \end_layout
2686
2687 \end_inset
2688
2689  und 
2690 \series bold
2691
2692 \backslash
2693 brack
2694 \series default
2695
2696 \begin_inset Index idx
2697 status collapsed
2698
2699 \begin_layout Plain Layout
2700 Befehle ! B ! 
2701 \backslash
2702 brack
2703 \end_layout
2704
2705 \end_inset
2706
2707 .
2708 \end_layout
2709
2710 \begin_layout Standard
2711 \align center
2712 \begin_inset Tabular
2713 <lyxtabular version="3" rows="6" columns="2">
2714 <features rotate="0" tabularvalignment="middle">
2715 <column alignment="center" valignment="top" width="0pt">
2716 <column alignment="center" valignment="top" width="0pt">
2717 <row>
2718 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2719 \begin_inset Text
2720
2721 \begin_layout Plain Layout
2722 Befehl
2723 \end_layout
2724
2725 \end_inset
2726 </cell>
2727 <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
2728 \begin_inset Text
2729
2730 \begin_layout Plain Layout
2731 Ergebnis
2732 \begin_inset Note Note
2733 status collapsed
2734
2735 \begin_layout Plain Layout
2736
2737 \series bold
2738
2739 \backslash
2740 raisebox
2741 \series default
2742  dient nur als Abstandhalter.
2743 \end_layout
2744
2745 \end_inset
2746
2747
2748 \end_layout
2749
2750 \end_inset
2751 </cell>
2752 </row>
2753 <row>
2754 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
2755 \begin_inset Text
2756
2757 \begin_layout Plain Layout
2758
2759 \backslash
2760 binom
2761 \begin_inset space \textvisiblespace{}
2762 \end_inset
2763
2764 A
2765 \begin_inset Formula $\downarrow$
2766 \end_inset
2767
2768 B
2769 \end_layout
2770
2771 \end_inset
2772 </cell>
2773 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
2774 \begin_inset Text
2775
2776 \begin_layout Plain Layout
2777 \begin_inset Formula $\raisebox{5mm}{}\binom{A}{B}\raisebox{-2.5mm}{}$
2778 \end_inset
2779
2780
2781 \end_layout
2782
2783 \end_inset
2784 </cell>
2785 </row>
2786 <row>
2787 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
2788 \begin_inset Text
2789
2790 \begin_layout Plain Layout
2791
2792 \backslash
2793 dbinom
2794 \begin_inset space \textvisiblespace{}
2795 \end_inset
2796
2797 A
2798 \begin_inset Formula $\downarrow$
2799 \end_inset
2800
2801 B
2802 \end_layout
2803
2804 \end_inset
2805 </cell>
2806 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
2807 \begin_inset Text
2808
2809 \begin_layout Plain Layout
2810 \begin_inset Formula $\raisebox{5mm}{}\dbinom{A}{B}\raisebox{-2.5mm}{}$
2811 \end_inset
2812
2813
2814 \end_layout
2815
2816 \end_inset
2817 </cell>
2818 </row>
2819 <row>
2820 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
2821 \begin_inset Text
2822
2823 \begin_layout Plain Layout
2824
2825 \backslash
2826 tbinom
2827 \begin_inset space \textvisiblespace{}
2828 \end_inset
2829
2830 A
2831 \begin_inset Formula $\downarrow$
2832 \end_inset
2833
2834 B
2835 \end_layout
2836
2837 \end_inset
2838 </cell>
2839 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
2840 \begin_inset Text
2841
2842 \begin_layout Plain Layout
2843 \begin_inset Formula $\raisebox{5mm}{}\tbinom{A}{B}\raisebox{-2.5mm}{}$
2844 \end_inset
2845
2846
2847 \end_layout
2848
2849 \end_inset
2850 </cell>
2851 </row>
2852 <row>
2853 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2854 \begin_inset Text
2855
2856 \begin_layout Plain Layout
2857
2858 \backslash
2859 brack
2860 \begin_inset space \textvisiblespace{}
2861 \end_inset
2862
2863 A
2864 \begin_inset Formula $\downarrow$
2865 \end_inset
2866
2867 B
2868 \end_layout
2869
2870 \end_inset
2871 </cell>
2872 <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
2873 \begin_inset Text
2874
2875 \begin_layout Plain Layout
2876 \begin_inset Formula $\raisebox{5mm}{}{A \brack B}\raisebox{-2.5mm}{}$
2877 \end_inset
2878
2879
2880 \end_layout
2881
2882 \end_inset
2883 </cell>
2884 </row>
2885 <row>
2886 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
2887 \begin_inset Text
2888
2889 \begin_layout Plain Layout
2890
2891 \backslash
2892 brace
2893 \begin_inset space \textvisiblespace{}
2894 \end_inset
2895
2896 A
2897 \begin_inset Formula $\downarrow$
2898 \end_inset
2899
2900 B
2901 \end_layout
2902
2903 \end_inset
2904 </cell>
2905 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
2906 \begin_inset Text
2907
2908 \begin_layout Plain Layout
2909 \begin_inset Formula $\raisebox{5mm}{}{A \brace B}\raisebox{-2.5mm}{}$
2910 \end_inset
2911
2912
2913 \end_layout
2914
2915 \end_inset
2916 </cell>
2917 </row>
2918 </lyxtabular>
2919
2920 \end_inset
2921
2922
2923 \end_layout
2924
2925 \begin_layout Subsection
2926 Fallunterscheidungen
2927 \begin_inset Index idx
2928 status collapsed
2929
2930 \begin_layout Plain Layout
2931 Fallunterscheidungen
2932 \end_layout
2933
2934 \end_inset
2935
2936
2937 \end_layout
2938
2939 \begin_layout Standard
2940 \align center
2941 \begin_inset Tabular
2942 <lyxtabular version="3" rows="3" columns="2">
2943 <features rotate="0" tabularvalignment="middle">
2944 <column alignment="center" valignment="top" width="0pt">
2945 <column alignment="center" valignment="top" width="0pt">
2946 <row>
2947 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2948 \begin_inset Text
2949
2950 \begin_layout Plain Layout
2951 Befehl
2952 \end_layout
2953
2954 \end_inset
2955 </cell>
2956 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2957 \begin_inset Text
2958
2959 \begin_layout Plain Layout
2960 Ergebnis
2961 \end_layout
2962
2963 \end_inset
2964 </cell>
2965 </row>
2966 <row>
2967 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2968 \begin_inset Text
2969
2970 \begin_layout Plain Layout
2971
2972 \backslash
2973 cases
2974 \begin_inset space \textvisiblespace{}
2975 \end_inset
2976
2977 A
2978 \begin_inset Formula $\to$
2979 \end_inset
2980
2981 B>0
2982 \begin_inset Index idx
2983 status collapsed
2984
2985 \begin_layout Plain Layout
2986 Befehle ! C ! 
2987 \backslash
2988 cases
2989 \end_layout
2990
2991 \end_inset
2992
2993
2994 \end_layout
2995
2996 \end_inset
2997 </cell>
2998 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2999 \begin_inset Text
3000
3001 \begin_layout Plain Layout
3002 \begin_inset Formula $\begin{cases}
3003 A & B>0\end{cases}$
3004 \end_inset
3005
3006
3007 \end_layout
3008
3009 \end_inset
3010 </cell>
3011 </row>
3012 <row>
3013 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3014 \begin_inset Text
3015
3016 \begin_layout Plain Layout
3017
3018 \backslash
3019 cases
3020 \begin_inset space \textvisiblespace{}
3021 \end_inset
3022
3023 Strg+Enter
3024 \end_layout
3025
3026 \end_inset
3027 </cell>
3028 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3029 \begin_inset Text
3030
3031 \begin_layout Plain Layout
3032 \begin_inset Formula $\begin{cases}
3033 A & \textrm{für }x>0\\
3034 B & \textrm{für }x=0
3035 \end{cases}$
3036 \end_inset
3037
3038
3039 \end_layout
3040
3041 \end_inset
3042 </cell>
3043 </row>
3044 </lyxtabular>
3045
3046 \end_inset
3047
3048
3049 \end_layout
3050
3051 \begin_layout Standard
3052 Nach der Eingabe von 
3053 \series bold
3054
3055 \backslash
3056 cases
3057 \series default
3058  oder der Benutzung des Mathe-Werkzeugleistenknopfs 
3059 \begin_inset Info
3060 type  "icon"
3061 arg   "math-insert \\cases"
3062 \end_inset
3063
3064  können mit 
3065 \family sans
3066 Strg+Enter
3067 \family default
3068  oder dem Tabellen-Werkzeugleistenknopf 
3069 \begin_inset Info
3070 type  "icon"
3071 arg   "inset-modify tabular append-row"
3072 \end_inset
3073
3074  neue Zeilen erstellt werden.
3075 \begin_inset Foot
3076 status collapsed
3077
3078 \begin_layout Plain Layout
3079 Umlaute in Formeln, wie in obiger Tabelle, sind in 
3080 \begin_inset CommandInset ref
3081 LatexCommand ref
3082 reference "sub:Akzente-für-ein"
3083
3084 \end_inset
3085
3086  beschrieben.
3087 \end_layout
3088
3089 \end_inset
3090
3091
3092 \end_layout
3093
3094 \begin_layout Standard
3095 Der Befehl 
3096 \series bold
3097
3098 \backslash
3099 cases
3100 \series default
3101  ist auch über das Menü 
3102 \family sans
3103 Einfügen\SpecialChar \menuseparator
3104 Mathe\SpecialChar \menuseparator
3105 Cases-Umgebung
3106 \family default
3107  verfügbar.
3108 \end_layout
3109
3110 \begin_layout Subsection
3111 Verneinungen
3112 \begin_inset Index idx
3113 status collapsed
3114
3115 \begin_layout Plain Layout
3116 Verneinungen
3117 \end_layout
3118
3119 \end_inset
3120
3121
3122 \end_layout
3123
3124 \begin_layout Standard
3125 Durch die Eingabe von 
3126 \series bold
3127
3128 \backslash
3129 not
3130 \series default
3131
3132 \begin_inset Index idx
3133 status collapsed
3134
3135 \begin_layout Plain Layout
3136 Befehle ! N ! 
3137 \backslash
3138 not
3139 \end_layout
3140
3141 \end_inset
3142
3143  kann jedes beliebige Zeichen durchgestrichen dargestellt werden.
3144  Die Zeichen werden quasi mit einem Schrägstrich akzentuiert.
3145 \end_layout
3146
3147 \begin_layout Standard
3148 \align center
3149 \begin_inset Tabular
3150 <lyxtabular version="3" rows="4" columns="2">
3151 <features rotate="0" tabularvalignment="middle">
3152 <column alignment="center" valignment="top" width="0pt">
3153 <column alignment="center" valignment="top" width="0pt">
3154 <row>
3155 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3156 \begin_inset Text
3157
3158 \begin_layout Plain Layout
3159 Befehl
3160 \end_layout
3161
3162 \end_inset
3163 </cell>
3164 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3165 \begin_inset Text
3166
3167 \begin_layout Plain Layout
3168 Ergebnis
3169 \end_layout
3170
3171 \end_inset
3172 </cell>
3173 </row>
3174 <row>
3175 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3176 \begin_inset Text
3177
3178 \begin_layout Plain Layout
3179
3180 \backslash
3181 not=
3182 \end_layout
3183
3184 \end_inset
3185 </cell>
3186 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3187 \begin_inset Text
3188
3189 \begin_layout Plain Layout
3190 \begin_inset Formula $\not=$
3191 \end_inset
3192
3193
3194 \end_layout
3195
3196 \end_inset
3197 </cell>
3198 </row>
3199 <row>
3200 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3201 \begin_inset Text
3202
3203 \begin_layout Plain Layout
3204
3205 \backslash
3206 not 
3207 \backslash
3208 le
3209 \end_layout
3210
3211 \end_inset
3212 </cell>
3213 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3214 \begin_inset Text
3215
3216 \begin_layout Plain Layout
3217 \begin_inset Formula $\not\le$
3218 \end_inset
3219
3220
3221 \end_layout
3222
3223 \end_inset
3224 </cell>
3225 </row>
3226 <row>
3227 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3228 \begin_inset Text
3229
3230 \begin_layout Plain Layout
3231
3232 \backslash
3233 not 
3234 \backslash
3235 parallel
3236 \end_layout
3237
3238 \end_inset
3239 </cell>
3240 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3241 \begin_inset Text
3242
3243 \begin_layout Plain Layout
3244 \begin_inset Formula $\not\parallel$
3245 \end_inset
3246
3247
3248 \end_layout
3249
3250 \end_inset
3251 </cell>
3252 </row>
3253 </lyxtabular>
3254
3255 \end_inset
3256
3257
3258 \end_layout
3259
3260 \begin_layout Standard
3261 Das letzte Beispiel zeigt, dass nicht alle Verneinungen gut aussehen.
3262  Deswegen gibt es für Einige spezielle Befehle (siehe 
3263 \begin_inset CommandInset ref
3264 LatexCommand ref
3265 reference "sub:Mathematische-Symbole"
3266
3267 \end_inset
3268
3269  und 
3270 \begin_inset CommandInset ref
3271 LatexCommand ref
3272 reference "sec:Relationen"
3273
3274 \end_inset
3275
3276 ).
3277 \end_layout
3278
3279 \begin_layout Subsection
3280 Platzhalter
3281 \begin_inset CommandInset label
3282 LatexCommand label
3283 name "sub:Platzhalter"
3284
3285 \end_inset
3286
3287
3288 \begin_inset Index idx
3289 status collapsed
3290
3291 \begin_layout Plain Layout
3292 Platzhalter
3293 \end_layout
3294
3295 \end_inset
3296
3297
3298 \begin_inset Index idx
3299 status collapsed
3300
3301 \begin_layout Plain Layout
3302 chemische Zeichen ! Isotope
3303 \end_layout
3304
3305 \end_inset
3306
3307
3308 \begin_inset Index idx
3309 status collapsed
3310
3311 \begin_layout Plain Layout
3312 Isotope|see
3313 \begin_inset ERT
3314 status collapsed
3315
3316 \begin_layout Plain Layout
3317
3318 {
3319 \end_layout
3320
3321 \end_inset
3322
3323 chemische Zeichen
3324 \begin_inset ERT
3325 status collapsed
3326
3327 \begin_layout Plain Layout
3328
3329 }
3330 \end_layout
3331
3332 \end_inset
3333
3334
3335 \end_layout
3336
3337 \end_inset
3338
3339
3340 \end_layout
3341
3342 \begin_layout Standard
3343 Möchte man z.
3344 \begin_inset space \thinspace{}
3345 \end_inset
3346
3347 B.
3348  Isotope
3349 \begin_inset Foot
3350 status collapsed
3351
3352 \begin_layout Plain Layout
3353 Wie Isotope und chemische Reaktionen erstellt werden, ist in 
3354 \begin_inset CommandInset ref
3355 LatexCommand ref
3356 reference "sub:Chemische-Symbole-und"
3357
3358 \end_inset
3359
3360  beschrieben.
3361 \end_layout
3362
3363 \end_inset
3364
3365  darstellen, tritt folgendes Problem auf:
3366 \end_layout
3367
3368 \begin_layout Standard
3369 \align center
3370 \begin_inset Tabular
3371 <lyxtabular version="3" rows="2" columns="2">
3372 <features rotate="0" tabularvalignment="middle">
3373 <column alignment="center" valignment="top" width="0pt">
3374 <column alignment="center" valignment="top" width="0pt">
3375 <row>
3376 <cell alignment="center" valignment="top" usebox="none">
3377 \begin_inset Text
3378
3379 \begin_layout Plain Layout
3380 durch Hoch- und Tiefstellen erzeugte Indizes:
3381 \end_layout
3382
3383 \end_inset
3384 </cell>
3385 <cell alignment="center" valignment="top" usebox="none">
3386 \begin_inset Text
3387
3388 \begin_layout Plain Layout
3389 \begin_inset Formula $_{9}^{19}\mathrm{F}\raisebox{-3mm}{}$
3390 \end_inset
3391
3392
3393 \end_layout
3394
3395 \end_inset
3396 </cell>
3397 </row>
3398 <row>
3399 <cell alignment="center" valignment="top" usebox="none">
3400 \begin_inset Text
3401
3402 \begin_layout Plain Layout
3403 korrekte Indizes:
3404 \end_layout
3405
3406 \end_inset
3407 </cell>
3408 <cell alignment="center" valignment="top" usebox="none">
3409 \begin_inset Text
3410
3411 \begin_layout Plain Layout
3412 \begin_inset Formula $_{\phantom{1}9}^{19}\mathrm{F}$
3413 \end_inset
3414
3415
3416 \end_layout
3417
3418 \end_inset
3419 </cell>
3420 </row>
3421 </lyxtabular>
3422
3423 \end_inset
3424
3425
3426 \begin_inset Note Note
3427 status collapsed
3428
3429 \begin_layout Plain Layout
3430
3431 \series bold
3432
3433 \backslash
3434 raisebox
3435 \series default
3436  dient nur
3437 \end_layout
3438
3439 \begin_layout Plain Layout
3440 als Abstandhalter.
3441 \end_layout
3442
3443 \end_inset
3444
3445
3446 \end_layout
3447
3448 \begin_layout Standard
3449 Der kürzere Index wird standardmäßig unter oder über das erste Zeichen des
3450  längeren Index gesetzt.
3451  Um das zu verhindern gibt es den Befehl 
3452 \series bold
3453
3454 \backslash
3455 phantom
3456 \series default
3457
3458 \begin_inset Index idx
3459 status collapsed
3460
3461 \begin_layout Plain Layout
3462 Befehle ! P ! 
3463 \backslash
3464 phantom
3465 \end_layout
3466
3467 \end_inset
3468
3469  oder den Mathe-Werkzeugleistenknopf
3470 \begin_inset space \thinspace{}
3471 \end_inset
3472
3473
3474 \begin_inset Foot
3475 status collapsed
3476
3477 \begin_layout Plain Layout
3478 zu finden im Untermenü des Mathe-Werkzeugleistenknopfs 
3479 \begin_inset Info
3480 type  "icon"
3481 arg   "math-insert \\space"
3482 \end_inset
3483
3484
3485 \end_layout
3486
3487 \end_inset
3488
3489  
3490 \begin_inset Graphics
3491         filename ../../images/math/phantom.png
3492         scale 85
3493
3494 \end_inset
3495
3496 , der ein oder mehrere Phantomzeichen erstellt.
3497  Wenn 
3498 \series bold
3499
3500 \backslash
3501 phantom
3502 \series default
3503  eingegeben wird, erscheint ein kleines blaues Kästchen, dass von zwei roten
3504  Pfeilen überlagert wird.
3505  Die Pfeile geben an, dass die komplette Breite und Höhe des Kästcheninhalts
3506  als Leerraum erstellt wird.
3507  Phantomzeichen sind dementsprechend Platzhalter mit der Größe der angegebenen
3508  Zeichen.
3509 \end_layout
3510
3511 \begin_layout Standard
3512 \align center
3513 \begin_inset Tabular
3514 <lyxtabular version="3" rows="4" columns="2">
3515 <features rotate="0" tabularvalignment="middle">
3516 <column alignment="center" valignment="top">
3517 <column alignment="center" valignment="top">
3518 <row>
3519 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3520 \begin_inset Text
3521
3522 \begin_layout Plain Layout
3523 Befehl
3524 \end_layout
3525
3526 \end_inset
3527 </cell>
3528 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3529 \begin_inset Text
3530
3531 \begin_layout Plain Layout
3532 Ergebnis
3533 \begin_inset Note Note
3534 status collapsed
3535
3536 \begin_layout Plain Layout
3537
3538 \series bold
3539
3540 \backslash
3541 raisebox
3542 \series default
3543  dient nur als Abstandhalter.
3544 \end_layout
3545
3546 \end_inset
3547
3548
3549 \end_layout
3550
3551 \end_inset
3552 </cell>
3553 </row>
3554 <row>
3555 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3556 \begin_inset Text
3557
3558 \begin_layout Plain Layout
3559 ^19
3560 \begin_inset space \textvisiblespace{}
3561 \end_inset
3562
3563 _
3564 \backslash
3565 phantom
3566 \begin_inset space \textvisiblespace{}
3567 \end_inset
3568
3569 1
3570 \begin_inset Formula $\to$
3571 \end_inset
3572
3573 9
3574 \begin_inset space \textvisiblespace{}
3575 \end_inset
3576
3577 F
3578 \end_layout
3579
3580 \end_inset
3581 </cell>
3582 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3583 \begin_inset Text
3584
3585 \begin_layout Plain Layout
3586 \begin_inset Formula $\raisebox{4.5mm}{}{}_{\phantom{1}9}^{19}\mathrm{F}\raisebox{-2.5mm}{}$
3587 \end_inset
3588
3589
3590 \end_layout
3591
3592 \end_inset
3593 </cell>
3594 </row>
3595 <row>
3596 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3597 \begin_inset Text
3598
3599 \begin_layout Plain Layout
3600 ^235
3601 \begin_inset space \textvisiblespace{}
3602 \end_inset
3603
3604 _
3605 \backslash
3606 phantom
3607 \begin_inset space \textvisiblespace{}
3608 \end_inset
3609
3610 23
3611 \begin_inset Formula $\to$
3612 \end_inset
3613
3614 9
3615 \begin_inset space \textvisiblespace{}
3616 \end_inset
3617
3618 F
3619 \end_layout
3620
3621 \end_inset
3622 </cell>
3623 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3624 \begin_inset Text
3625
3626 \begin_layout Plain Layout
3627 \begin_inset Formula $\raisebox{4.5mm}{}{}_{\phantom{23}9}^{235}\mathrm{F}\raisebox{-2.5mm}{}$
3628 \end_inset
3629
3630
3631 \end_layout
3632
3633 \end_inset
3634 </cell>
3635 </row>
3636 <row>
3637 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3638 \begin_inset Text
3639
3640 \begin_layout Plain Layout
3641
3642 \backslash
3643 Lambda^
3644 \begin_inset space \textvisiblespace{}
3645 \end_inset
3646
3647
3648 \backslash
3649 phantom
3650 \begin_inset space \textvisiblespace{}
3651 \end_inset
3652
3653 ii
3654 \begin_inset Formula $\to$
3655 \end_inset
3656
3657 t
3658 \begin_inset space \textvisiblespace{}
3659 \end_inset
3660
3661 _MMt
3662 \end_layout
3663
3664 \end_inset
3665 </cell>
3666 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3667 \begin_inset Text
3668
3669 \begin_layout Plain Layout
3670 \begin_inset Formula $\raisebox{4.5mm}{}\Lambda_{MMt}^{\phantom{ii}t}\raisebox{-2.5mm}{}$
3671 \end_inset
3672
3673
3674 \end_layout
3675
3676 \end_inset
3677 </cell>
3678 </row>
3679 </lyxtabular>
3680
3681 \end_inset
3682
3683
3684 \end_layout
3685
3686 \begin_layout Standard
3687 Des Weiteren gibt es noch die Befehle 
3688 \series bold
3689
3690 \backslash
3691 vphantom
3692 \series default
3693
3694 \begin_inset Index idx
3695 status collapsed
3696
3697 \begin_layout Plain Layout
3698 Befehle ! V ! 
3699 \backslash
3700 vphantom
3701 \end_layout
3702
3703 \end_inset
3704
3705  (Werkzeugleistenknopf 
3706 \begin_inset space ~
3707 \end_inset
3708
3709
3710 \begin_inset Graphics
3711         filename ../../images/math/vphantom.png
3712         scale 85
3713
3714 \end_inset
3715
3716 ) und 
3717 \series bold
3718
3719 \backslash
3720 hphantom
3721 \series default
3722
3723 \begin_inset Index idx
3724 status collapsed
3725
3726 \begin_layout Plain Layout
3727 Befehle ! H ! 
3728 \backslash
3729 hphantom
3730 \end_layout
3731
3732 \end_inset
3733
3734  (Werkzeugleistenknopf 
3735 \begin_inset space ~
3736 \end_inset
3737
3738
3739 \begin_inset Graphics
3740         filename ../../images/math/hphantom.png
3741         scale 85
3742
3743 \end_inset
3744
3745 ).
3746  
3747 \series bold
3748
3749 \backslash
3750 hphantom
3751 \series default
3752  erzeugt nur Platz für die maximale Höhe der im Kästchen angegebenen Zeichen,
3753  nicht jedoch für deren Breite.
3754  Bei 
3755 \series bold
3756
3757 \backslash
3758 vphantom
3759 \series default
3760  wird nur Platz mit der Breite des Kästchens erstellt.
3761  Daher haben die Kästchen der beiden Befehle nur einen roten Pfeil.
3762 \end_layout
3763
3764 \begin_layout Standard
3765 Zum Beispiel erzeugt 
3766 \series bold
3767
3768 \backslash
3769 vphantom
3770 \series default
3771
3772 \begin_inset space \textvisiblespace{}
3773 \end_inset
3774
3775
3776 \series bold
3777 a
3778 \backslash
3779 int
3780 \series default
3781  Platz der Höhe des Integralzeichens,
3782 \begin_inset Foot
3783 status collapsed
3784
3785 \begin_layout Plain Layout
3786 Der Befehl 
3787 \series bold
3788
3789 \backslash
3790 int
3791 \series default
3792  erzeugt ein Integralzeichen, siehe 
3793 \begin_inset CommandInset ref
3794 LatexCommand ref
3795 reference "sub:Große-Operatoren"
3796
3797 \end_inset
3798
3799 .
3800 \end_layout
3801
3802 \end_inset
3803
3804  da dieses das größere Zeichen ist.
3805  Eine Beispielanwendung ist in 
3806 \begin_inset CommandInset ref
3807 LatexCommand ref
3808 reference "sub:Mehrzeilige-Klammern"
3809
3810 \end_inset
3811
3812  zu finden.
3813 \end_layout
3814
3815 \begin_layout Standard
3816 Platzhalter können auch für Text verwendet werden, wenn sie über das Menü
3817  
3818 \family sans
3819 Einfügen\SpecialChar \menuseparator
3820 Formatierung\SpecialChar \menuseparator
3821 Phantom
3822 \family default
3823  eingefügt werden:
3824 \end_layout
3825
3826 \begin_layout Standard
3827 Dies ist ein Satz.
3828 \begin_inset Newline newline
3829 \end_inset
3830
3831
3832 \begin_inset Phantom Phantom
3833 status open
3834
3835 \begin_layout Plain Layout
3836 Dies
3837 \end_layout
3838
3839 \end_inset
3840
3841  ist ein Satz.
3842 \end_layout
3843
3844 \begin_layout Subsection
3845 Linien
3846 \begin_inset Index idx
3847 status collapsed
3848
3849 \begin_layout Plain Layout
3850 Linien
3851 \end_layout
3852
3853 \end_inset
3854
3855
3856 \begin_inset Index idx
3857 status collapsed
3858
3859 \begin_layout Plain Layout
3860 Formel ! unterstrichene
3861 \end_layout
3862
3863 \end_inset
3864
3865
3866 \end_layout
3867
3868 \begin_layout Standard
3869 \align center
3870 \begin_inset Tabular
3871 <lyxtabular version="3" rows="4" columns="2">
3872 <features rotate="0" tabularvalignment="middle">
3873 <column alignment="center" valignment="top" width="0pt">
3874 <column alignment="center" valignment="top" width="0pt">
3875 <row>
3876 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3877 \begin_inset Text
3878
3879 \begin_layout Plain Layout
3880 Befehl
3881 \end_layout
3882
3883 \end_inset
3884 </cell>
3885 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3886 \begin_inset Text
3887
3888 \begin_layout Plain Layout
3889 Ergebnis
3890 \begin_inset Note Note
3891 status collapsed
3892
3893 \begin_layout Plain Layout
3894
3895 \series bold
3896
3897 \backslash
3898 raisebox
3899 \series default
3900  dient nur als Abstandhalter.
3901 \end_layout
3902
3903 \end_inset
3904
3905
3906 \end_layout
3907
3908 \end_inset
3909 </cell>
3910 </row>
3911 <row>
3912 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3913 \begin_inset Text
3914
3915 \begin_layout Plain Layout
3916
3917 \backslash
3918 overline
3919 \begin_inset space \textvisiblespace{}
3920 \end_inset
3921
3922 A+B
3923 \begin_inset Index idx
3924 status collapsed
3925
3926 \begin_layout Plain Layout
3927 Befehle ! O ! 
3928 \backslash
3929 overline
3930 \end_layout
3931
3932 \end_inset
3933
3934
3935 \end_layout
3936
3937 \end_inset
3938 </cell>
3939 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3940 \begin_inset Text
3941
3942 \begin_layout Plain Layout
3943 \begin_inset Formula $\raisebox{5mm}{}\overline{A+B}$
3944 \end_inset
3945
3946
3947 \end_layout
3948
3949 \end_inset
3950 </cell>
3951 </row>
3952 <row>
3953 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
3954 \begin_inset Text
3955
3956 \begin_layout Plain Layout
3957
3958 \backslash
3959 underline
3960 \begin_inset space \textvisiblespace{}
3961 \end_inset
3962
3963 A+B
3964 \begin_inset Index idx
3965 status collapsed
3966
3967 \begin_layout Plain Layout
3968 Befehle ! U ! 
3969 \backslash
3970 underline
3971 \end_layout
3972
3973 \end_inset
3974
3975
3976 \end_layout
3977
3978 \end_inset
3979 </cell>
3980 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
3981 \begin_inset Text
3982
3983 \begin_layout Plain Layout
3984 \begin_inset Formula $\underline{A+B}\raisebox{-2.5mm}{}$
3985 \end_inset
3986
3987
3988 \end_layout
3989
3990 \end_inset
3991 </cell>
3992 </row>
3993 <row>
3994 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3995 \begin_inset Text
3996
3997 \begin_layout Plain Layout
3998
3999 \backslash
4000 overline
4001 \begin_inset space \textvisiblespace{}
4002 \end_inset
4003
4004
4005 \backslash
4006 underline
4007 \begin_inset space \textvisiblespace{}
4008 \end_inset
4009
4010 A+B
4011 \end_layout
4012
4013 \end_inset
4014 </cell>
4015 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4016 \begin_inset Text
4017
4018 \begin_layout Plain Layout
4019 \begin_inset Formula $\raisebox{5mm}{}\overline{\underline{A+B}}\raisebox{-2.5mm}{}$
4020 \end_inset
4021
4022
4023 \end_layout
4024
4025 \end_inset
4026 </cell>
4027 </row>
4028 </lyxtabular>
4029
4030 \end_inset
4031
4032
4033 \end_layout
4034
4035 \begin_layout Standard
4036 Beim letzten Beispiel spielt es keine Rolle, ob man zuerst 
4037 \series bold
4038
4039 \backslash
4040 overline
4041 \series default
4042  oder 
4043 \series bold
4044
4045 \backslash
4046 underline
4047 \series default
4048  eingibt.
4049 \end_layout
4050
4051 \begin_layout Standard
4052 Will man Ergebnisse doppelt unterstreichen, verwendet man zweimal hintereinander
4053 \begin_inset Newline linebreak
4054 \end_inset
4055
4056
4057 \series bold
4058
4059 \backslash
4060 underline
4061 \series default
4062 .
4063 \end_layout
4064
4065 \begin_layout Standard
4066 Man kann bis zu 6 Striche über oder unter Zeichen setzen.
4067 \end_layout
4068
4069 \begin_layout Standard
4070 \begin_inset VSpace bigskip
4071 \end_inset
4072
4073 Benutzerdefinierte Linien können mit dem Befehl 
4074 \series bold
4075
4076 \backslash
4077 rule
4078 \series default
4079
4080 \begin_inset Index idx
4081 status collapsed
4082
4083 \begin_layout Plain Layout
4084 Befehle! R ! 
4085 \backslash
4086 rule
4087 \end_layout
4088
4089 \end_inset
4090
4091  erstellt werden, der folgendes Schema besitzt:
4092 \end_layout
4093
4094 \begin_layout Standard
4095
4096 \series bold
4097
4098 \backslash
4099 rule[vertikaler Versatz]{Länge}{Dicke}
4100 \end_layout
4101
4102 \begin_layout Standard
4103 Der optionale vertikale Versatz verschiebt die Linie nach oben (oder nach
4104  unten, wenn der Wert negativ ist).
4105  Die Einheiten, die in 
4106 \begin_inset CommandInset ref
4107 LatexCommand ref
4108 reference "tab:Verfügbare-Einheiten"
4109
4110 \end_inset
4111
4112  aufgelistet sind, können für die Werte benutzt werden.
4113  Hier sind zwei Beispiele, die mit den Befehlen
4114 \begin_inset Newline newline
4115 \end_inset
4116
4117
4118 \series bold
4119
4120 \backslash
4121 rule[-2ex]{3cm}{2pt}
4122 \series default
4123  und 
4124 \series bold
4125
4126 \backslash
4127 rule{2cm}{1pt}
4128 \series default
4129  erzeugt wurden:
4130 \end_layout
4131
4132 \begin_layout Standard
4133 Dies ist ein Satz 
4134 \begin_inset Formula $\rule[-2ex]{3cm}{2pt}\rule{2cm}{1pt}$
4135 \end_inset
4136
4137  mit zwei Linien.
4138 \end_layout
4139
4140 \begin_layout Standard
4141
4142 \series bold
4143
4144 \backslash
4145 rule
4146 \series default
4147  kann auch für Text verwendet werden, wenn eine Linie über das Menü 
4148 \family sans
4149 Einfügen\SpecialChar \menuseparator
4150 Formatierung\SpecialChar \menuseparator
4151 Horizontale
4152 \begin_inset space ~
4153 \end_inset
4154
4155 Line
4156 \family default
4157  eingefügt wird:
4158 \end_layout
4159
4160 \begin_layout Standard
4161 Dies ist ein Satz 
4162 \begin_inset CommandInset line
4163 LatexCommand rule
4164 offset "0.5ex"
4165 width "3cm"
4166 height "1pt"
4167
4168 \end_inset
4169
4170  mit einer Linie.
4171 \end_layout
4172
4173 \begin_layout Subsection
4174 Fortsetzungspunkte
4175 \begin_inset CommandInset label
4176 LatexCommand label
4177 name "sub:Fortsetzungspunkte"
4178
4179 \end_inset
4180
4181
4182 \begin_inset Index idx
4183 status collapsed
4184
4185 \begin_layout Plain Layout
4186 Fortsetzungspunkte
4187 \end_layout
4188
4189 \end_inset
4190
4191
4192 \end_layout
4193
4194 \begin_layout Standard
4195 Es gibt unterschiedliche Arten von Fortsetzungspunkten.
4196 \begin_inset Foot
4197 status collapsed
4198
4199 \begin_layout Plain Layout
4200 In der Mathe-Werkzeugleiste zu finden im Untermenü des Knopfs 
4201 \begin_inset Info
4202 type  "icon"
4203 arg   "math-insert \\ldots"
4204 \end_inset
4205
4206
4207 \end_layout
4208
4209 \end_inset
4210
4211  Für Aufzählungen verwendet man unten sitzende Punkte (
4212 \series bold
4213
4214 \backslash
4215 ldots
4216 \series default
4217
4218 \begin_inset Index idx
4219 status collapsed
4220
4221 \begin_layout Plain Layout
4222 Befehle ! L ! 
4223 \backslash
4224 ldots
4225 \end_layout
4226
4227 \end_inset
4228
4229 ), während man für Operationen Punkte braucht, die auf der selben Höhe wie
4230  die Operatoren sind (
4231 \series bold
4232
4233 \backslash
4234 cdots
4235 \series default
4236
4237 \begin_inset Index idx
4238 status collapsed
4239
4240 \begin_layout Plain Layout
4241 Befehle ! C ! 
4242 \backslash
4243 cdots
4244 \end_layout
4245
4246 \end_inset
4247
4248 ).
4249  Verwendet man den Befehl 
4250 \series bold
4251
4252 \backslash
4253 dots
4254 \series default
4255
4256 \begin_inset Index idx
4257 status collapsed
4258
4259 \begin_layout Plain Layout
4260 Befehle ! D ! 
4261 \backslash
4262 dots
4263 \end_layout
4264
4265 \end_inset
4266
4267 , entscheidet LaTeX anhand des nachfolgenden Zeichens, welche Punktart verwendet
4268  wird.
4269 \end_layout
4270
4271 \begin_layout Standard
4272 \align center
4273 \begin_inset Tabular
4274 <lyxtabular version="3" rows="9" columns="2">
4275 <features rotate="0" tabularvalignment="middle">
4276 <column alignment="center" valignment="top" width="0pt">
4277 <column alignment="center" valignment="top" width="0pt">
4278 <row>
4279 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4280 \begin_inset Text
4281
4282 \begin_layout Plain Layout
4283 Befehl
4284 \end_layout
4285
4286 \end_inset
4287 </cell>
4288 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4289 \begin_inset Text
4290
4291 \begin_layout Plain Layout
4292 Ergebnis
4293 \end_layout
4294
4295 \end_inset
4296 </cell>
4297 </row>
4298 <row>
4299 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4300 \begin_inset Text
4301
4302 \begin_layout Plain Layout
4303 A_1
4304 \begin_inset space \textvisiblespace{}
4305 \end_inset
4306
4307 ,
4308 \backslash
4309 dots
4310 \begin_inset space \textvisiblespace{}
4311 \end_inset
4312
4313 ,A_n
4314 \end_layout
4315
4316 \end_inset
4317 </cell>
4318 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4319 \begin_inset Text
4320
4321 \begin_layout Plain Layout
4322 \begin_inset Formula $A_{1},\dots,A_{n}$
4323 \end_inset
4324
4325
4326 \end_layout
4327
4328 \end_inset
4329 </cell>
4330 </row>
4331 <row>
4332 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4333 \begin_inset Text
4334
4335 \begin_layout Plain Layout
4336 A_1
4337 \begin_inset space \textvisiblespace{}
4338 \end_inset
4339
4340 +
4341 \backslash
4342 dots
4343 \begin_inset space \textvisiblespace{}
4344 \end_inset
4345
4346 +A_n
4347 \end_layout
4348
4349 \end_inset
4350 </cell>
4351 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4352 \begin_inset Text
4353
4354 \begin_layout Plain Layout
4355 \begin_inset Formula $A_{1}+\dots+A_{n}$
4356 \end_inset
4357
4358
4359 \end_layout
4360
4361 \end_inset
4362 </cell>
4363 </row>
4364 <row>
4365 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4366 \begin_inset Text
4367
4368 \begin_layout Plain Layout
4369 A_1
4370 \begin_inset space \textvisiblespace{}
4371 \end_inset
4372
4373 ,
4374 \backslash
4375 ldots
4376 \begin_inset space \textvisiblespace{}
4377 \end_inset
4378
4379 ,A_n
4380 \end_layout
4381
4382 \end_inset
4383 </cell>
4384 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4385 \begin_inset Text
4386
4387 \begin_layout Plain Layout
4388 \begin_inset Formula $A_{1},\ldots,A_{n}$
4389 \end_inset
4390
4391
4392 \end_layout
4393
4394 \end_inset
4395 </cell>
4396 </row>
4397 <row>
4398 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4399 \begin_inset Text
4400
4401 \begin_layout Plain Layout
4402 A_1
4403 \begin_inset space \textvisiblespace{}
4404 \end_inset
4405
4406 +
4407 \backslash
4408 cdots
4409 \begin_inset space \textvisiblespace{}
4410 \end_inset
4411
4412 +A_n
4413 \end_layout
4414
4415 \end_inset
4416 </cell>
4417 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4418 \begin_inset Text
4419
4420 \begin_layout Plain Layout
4421 \begin_inset Formula $A_{1}+\cdots+A_{n}$
4422 \end_inset
4423
4424
4425 \end_layout
4426
4427 \end_inset
4428 </cell>
4429 </row>
4430 <row>
4431 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4432 \begin_inset Text
4433
4434 \begin_layout Plain Layout
4435
4436 \backslash
4437 vdots
4438 \end_layout
4439
4440 \end_inset
4441 </cell>
4442 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4443 \begin_inset Text
4444
4445 \begin_layout Plain Layout
4446 \begin_inset Formula $\vdots$
4447 \end_inset
4448
4449
4450 \end_layout
4451
4452 \end_inset
4453 </cell>
4454 </row>
4455 <row>
4456 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4457 \begin_inset Text
4458
4459 \begin_layout Plain Layout
4460
4461 \backslash
4462 ddots
4463 \end_layout
4464
4465 \end_inset
4466 </cell>
4467 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4468 \begin_inset Text
4469
4470 \begin_layout Plain Layout
4471 \begin_inset Formula $\ddots$
4472 \end_inset
4473
4474
4475 \end_layout
4476
4477 \end_inset
4478 </cell>
4479 </row>
4480 <row>
4481 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4482 \begin_inset Text
4483
4484 \begin_layout Plain Layout
4485
4486 \backslash
4487 iddots
4488 \end_layout
4489
4490 \end_inset
4491 </cell>
4492 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4493 \begin_inset Text
4494
4495 \begin_layout Plain Layout
4496 \begin_inset Formula $\iddots$
4497 \end_inset
4498
4499
4500 \end_layout
4501
4502 \end_inset
4503 </cell>
4504 </row>
4505 <row>
4506 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4507 \begin_inset Text
4508
4509 \begin_layout Plain Layout
4510 3
4511 \series bold
4512 ×
4513 \series default
4514 3
4515 \begin_inset space \thinspace{}
4516 \end_inset
4517
4518 Matrix mit obigen Befehlen
4519 \end_layout
4520
4521 \end_inset
4522 </cell>
4523 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4524 \begin_inset Text
4525
4526 \begin_layout Plain Layout
4527 \begin_inset Formula $\begin{array}{ccc}
4528 A_{11} & \cdots & A_{1m}\\
4529 \vdots & \ddots & \vdots\\
4530 A_{n1} & \cdots & A_{nm}
4531 \end{array}$
4532 \end_inset
4533
4534
4535 \end_layout
4536
4537 \end_inset
4538 </cell>
4539 </row>
4540 </lyxtabular>
4541
4542 \end_inset
4543
4544
4545 \end_layout
4546
4547 \begin_layout Standard
4548 Die im Menü 
4549 \family sans
4550 Einfügen\SpecialChar \menuseparator
4551 Sonderzeichen
4552 \family default
4553  verfügbaren Fortsetzungspunkte sind 
4554 \series bold
4555
4556 \backslash
4557 ldots
4558 \series default
4559 .
4560 \end_layout
4561
4562 \begin_layout Standard
4563 \begin_inset VSpace medskip
4564 \end_inset
4565
4566 Um 
4567 \series bold
4568
4569 \backslash
4570 iddots
4571 \series default
4572  nutzen zu können, muss eine der Optionen 
4573 \family sans
4574 Mathdots Paket (automatisch) verwenden 
4575 \family default
4576 in den Dokumenteinstellungen unter 
4577 \family sans
4578 Mathe-Optionen
4579 \family default
4580  gewählt sein.
4581 \begin_inset Newline newline
4582 \end_inset
4583
4584 Die Option 
4585 \family sans
4586 Mathdots Paket verwenden
4587 \family default
4588  verbessert das Aussehen aller Fortsetzungspunkte des Dokuments wenn deren
4589  Schriftstil oder die Schriftgröße nicht Standard sind.
4590 \end_layout
4591
4592 \begin_layout Standard
4593 \begin_inset VSpace medskip
4594 \end_inset
4595
4596 Speziell für Matrizen gibt es Fortsetzungspunkte, die sich über mehrere
4597  Spalten erstrecken.
4598  Man erhält sie mit dem Befehl 
4599 \series bold
4600
4601 \backslash
4602 hdotsfor
4603 \series default
4604
4605 \begin_inset Index idx
4606 status collapsed
4607
4608 \begin_layout Plain Layout
4609 Befehle ! H ! 
4610 \backslash
4611 hdotsfor
4612 \end_layout
4613
4614 \end_inset
4615
4616 , der folgendes Schema besitzt:
4617 \end_layout
4618
4619 \begin_layout Standard
4620
4621 \series bold
4622
4623 \backslash
4624 hdotsfor[Abstand]{Anzahl der Spalten}
4625 \end_layout
4626
4627 \begin_layout Standard
4628 Anzahl der Spalten gibt an, über wie viele Spalten sich die Punkte erstrecken
4629  sollen.
4630  Abstand ist ein Faktor, der den Punktabstand festlegt.
4631 \end_layout
4632
4633 \begin_layout Standard
4634 In folgender Matrix wurde in das erste Kästchen der zweiten Zeile der Befehl
4635  
4636 \series bold
4637
4638 \backslash
4639 hdotsfor[2]{4}
4640 \series default
4641  eingegeben, um Fortsetzungspunkte mit doppelt so großem Punktabstand wie
4642  beim Befehl 
4643 \series bold
4644
4645 \backslash
4646 dots
4647 \series default
4648  zu erhalten:
4649 \begin_inset Formula 
4650 \[
4651 \left(\begin{array}{cccc}
4652 A & B & C & D\\
4653 \hdotsfor[2]{4}\\
4654 q & w & e & r
4655 \end{array}\right)
4656 \]
4657
4658 \end_inset
4659
4660 Es ist zu beachten, dass die Matrixfelder über die sich die Punkte erstrecken
4661  sollen leer sein müssen, ansonsten kommt es zu LaTeX-Fehlern.
4662 \end_layout
4663
4664 \begin_layout Standard
4665 \begin_inset VSpace bigskip
4666 \end_inset
4667
4668 Des Weiteren kann man mit dem Befehl 
4669 \series bold
4670
4671 \backslash
4672 dotfill
4673 \series default
4674
4675 \begin_inset Index idx
4676 status collapsed
4677
4678 \begin_layout Plain Layout
4679 Befehle ! D ! 
4680 \backslash
4681 dotfill
4682 \end_layout
4683
4684 \end_inset
4685
4686  den Rest einer Zeile mit Punkten füllen.
4687  Die Wirkungsweise des Befehls entspricht der von 
4688 \series bold
4689
4690 \backslash
4691 hfill
4692 \series default
4693 , siehe 
4694 \begin_inset CommandInset ref
4695 LatexCommand ref
4696 reference "sub:Variabler-Leerraum"
4697
4698 \end_inset
4699
4700 .
4701 \end_layout
4702
4703 \begin_layout Standard
4704 Z.
4705 \begin_inset space \thinspace{}
4706 \end_inset
4707
4708 B.
4709  ergibt der Befehl 
4710 \series bold
4711 A
4712 \backslash
4713 dotfill
4714 \begin_inset space \textvisiblespace{}
4715 \end_inset
4716
4717 B
4718 \end_layout
4719
4720 \begin_layout Standard
4721 \begin_inset Formula $A\dotfill B$
4722 \end_inset
4723
4724
4725 \end_layout
4726
4727 \begin_layout Standard
4728 Analog dazu gibt es für eine Linie den Befehl 
4729 \series bold
4730
4731 \backslash
4732 hrulefill
4733 \series default
4734
4735 \begin_inset Index idx
4736 status collapsed
4737
4738 \begin_layout Plain Layout
4739 Befehle ! H ! 
4740 \backslash
4741 hrulefill
4742 \end_layout
4743
4744 \end_inset
4745
4746 :
4747 \end_layout
4748
4749 \begin_layout Standard
4750 \begin_inset Formula $A\hrulefill B$
4751 \end_inset
4752
4753
4754 \end_layout
4755
4756 \begin_layout Standard
4757 Um die Befehle für Text zu verwenden, müssen sie im TeX-Modus eingegeben
4758  werden.
4759 \end_layout
4760
4761 \begin_layout Section
4762 Matrizen
4763 \begin_inset CommandInset label
4764 LatexCommand label
4765 name "sec:Matrizen"
4766
4767 \end_inset
4768
4769
4770 \begin_inset Index idx
4771 status collapsed
4772
4773 \begin_layout Plain Layout
4774 Matrizen
4775 \end_layout
4776
4777 \end_inset
4778
4779
4780 \end_layout
4781
4782 \begin_layout Standard
4783 Matrizen können über den Mathe-Werkzeugleistenknopf
4784 \family sans
4785  
4786 \family default
4787
4788 \begin_inset Info
4789 type  "icon"
4790 arg   "dialog-show mathmatrix"
4791 \end_inset
4792
4793  oder das Menü 
4794 \family sans
4795 Einfügen\SpecialChar \menuseparator
4796 Mathe\SpecialChar \menuseparator
4797 Matrix
4798 \family default
4799  eingefügt werden.
4800  Sie werden nach der Spalten- und Zeilenanzahl, der Ausrichtung und der
4801  Verzierung gefragt.
4802  Die vertikale Ausrichtung ist dabei nur bei Matrizen in eingebetteten Formeln
4803  von Bedeutung:
4804 \end_layout
4805
4806 \begin_layout Standard
4807 Die erste Matrix ist oben 
4808 \begin_inset Formula $\begin{array}[t]{cccc}
4809 A & D & G & J\\
4810 B & E & H & K\\
4811 C & F & I & L
4812 \end{array}$
4813 \end_inset
4814
4815 , die zweite mittig 
4816 \begin_inset Formula $\begin{array}{cccc}
4817 A & D & G & J\\
4818 B & E & H & K\\
4819 C & F & I & L
4820 \end{array}$
4821 \end_inset
4822
4823  und die dritte unten 
4824 \begin_inset Formula $\begin{array}[b]{cccc}
4825 A & D & G & J\\
4826 B & E & H & K\\
4827 C & F & I & L
4828 \end{array}$
4829 \end_inset
4830
4831  ausgerichtet.
4832 \end_layout
4833
4834 \begin_layout Standard
4835 Die horizontale Ausrichtung gibt an, wie die Spalteneinträge ausgerichtet
4836  werden sollen.
4837  Dazu wird für jede Spalte ein Buchstabe eingegeben.
4838  
4839 \emph on
4840 l
4841 \emph default
4842  steht für linksbündig, 
4843 \emph on
4844 c
4845 \emph default
4846  für mittig und 
4847 \emph on
4848 r
4849 \emph default
4850  für rechtsbündig.
4851  Möchte man z.
4852 \begin_inset space \thinspace{}
4853 \end_inset
4854
4855 B.
4856  eine 4
4857 \series bold
4858 ×
4859 \series default
4860 4
4861 \begin_inset space ~
4862 \end_inset
4863
4864 Matrix erstellen, bei der der Inhalt der ersten Spalte linksbündig, der
4865  Inhalt der zweiten und dritten mittig und der Inhalt der letzten rechtsbündig
4866  ausgerichtet ist, gibt man für die horizontale Ausrichtung 
4867 \series bold
4868 lccr
4869 \series default
4870  an.
4871  Normalerweise sind in einer Matrix alle Spalteninhalte zentriert, weswegen
4872  die Voreinstellung für jede Spalte ein 
4873 \series bold
4874 c
4875 \series default
4876  ist.
4877 \end_layout
4878
4879 \begin_layout Standard
4880 Horizontale Ausrichtung:
4881 \end_layout
4882
4883 \begin_layout Standard
4884
4885 \series bold
4886 lll
4887 \series default
4888  : 
4889 \begin_inset Formula $\begin{array}{lll}
4890 10000 & D & G\\
4891 B & 10000 & H\\
4892 C & F & 10000
4893 \end{array}$
4894 \end_inset
4895
4896  , 
4897 \series bold
4898 ccc
4899 \series default
4900  : 
4901 \begin_inset Formula $\begin{array}{ccc}
4902 10000 & D & G\\
4903 B & 10000 & H\\
4904 C & F & 10000
4905 \end{array}$
4906 \end_inset
4907
4908  , 
4909 \series bold
4910 rrr
4911 \series default
4912  : 
4913 \begin_inset Formula $\begin{array}{rrr}
4914 10000 & D & G\\
4915 B & 10000 & H\\
4916 C & F & 10000
4917 \end{array}$
4918 \end_inset
4919
4920
4921 \end_layout
4922
4923 \begin_layout Standard
4924 Um nachträglich Zeilen und Spalten hinzuzufügen oder zu entfernen, kann
4925  man die Mathe-Werkzeugleistenknöpfe 
4926 \begin_inset Info
4927 type  "icon"
4928 arg   "inset-modify tabular append-row"
4929 \end_inset
4930
4931
4932 \begin_inset Info
4933 type  "icon"
4934 arg   "inset-modify tabular delete-row"
4935 \end_inset
4936
4937 , usw.
4938 \begin_inset space \space{}
4939 \end_inset
4940
4941 oder das Menü 
4942 \family sans
4943 Bearbeiten\SpecialChar \menuseparator
4944 Zeilen & Spalten
4945 \family default
4946  verwenden.
4947  Neue Zeilen können auch mit 
4948 \family sans
4949 Strg+Enter
4950 \family default
4951  erstellt werden.
4952 \end_layout
4953
4954 \begin_layout Standard
4955 \begin_inset VSpace bigskip
4956 \end_inset
4957
4958 Die 
4959 \family sans
4960 Verzierung
4961 \family default
4962  fügt Klammern um die Matrix in der ausgewählten Art hinzu.
4963  Alternativ können Klammern entweder mit den Befehlen 
4964 \series bold
4965
4966 \backslash
4967 left
4968 \series default
4969
4970 \begin_inset Index idx
4971 status collapsed
4972
4973 \begin_layout Plain Layout
4974 Befehle ! L ! 
4975 \backslash
4976 left
4977 \end_layout
4978
4979 \end_inset
4980
4981  und 
4982 \series bold
4983
4984 \backslash
4985 right
4986 \series default
4987
4988 \begin_inset Index idx
4989 status collapsed
4990
4991 \begin_layout Plain Layout
4992 Befehle ! R ! 
4993 \backslash
4994 right
4995 \end_layout
4996
4997 \end_inset
4998
4999  erstellt werden (Tastenkürzel 
5000 \family sans
5001 Alt+M
5002 \begin_inset space ~
5003 \end_inset
5004
5005 Klammer
5006 \family default
5007 ), siehe 
5008 \begin_inset CommandInset ref
5009 LatexCommand ref
5010 reference "sub:Automatische-Klammergrößen"
5011
5012 \end_inset
5013
5014 , oder man verwendet folgende Befehle:
5015 \begin_inset VSpace bigskip
5016 \end_inset
5017
5018
5019 \end_layout
5020
5021 \begin_layout Standard
5022 \begin_inset space \hfill{}
5023 \end_inset
5024
5025
5026 \begin_inset Tabular
5027 <lyxtabular version="3" rows="4" columns="2">
5028 <features rotate="0" tabularvalignment="middle">
5029 <column alignment="center" valignment="top">
5030 <column alignment="center" valignment="top">
5031 <row>
5032 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5033 \begin_inset Text
5034
5035 \begin_layout Plain Layout
5036 Befehl
5037 \end_layout
5038
5039 \end_inset
5040 </cell>
5041 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5042 \begin_inset Text
5043
5044 \begin_layout Plain Layout
5045 Ergebnis
5046 \end_layout
5047
5048 \end_inset
5049 </cell>
5050 </row>
5051 <row>
5052 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5053 \begin_inset Text
5054
5055 \begin_layout Plain Layout
5056
5057 \backslash
5058 bmatrix
5059 \begin_inset space \textvisiblespace{}
5060 \end_inset
5061
5062 2
5063 \series bold
5064 ×
5065 \series default
5066 2
5067 \begin_inset space \thinspace{}
5068 \end_inset
5069
5070 Matrix
5071 \end_layout
5072
5073 \end_inset
5074 </cell>
5075 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5076 \begin_inset Text
5077
5078 \begin_layout Plain Layout
5079 \begin_inset Formula $\raisebox{7.5mm}{}\begin{bmatrix}\begin{array}{cc}
5080 0 & \textrm{-}\mathrm{i}\\
5081 \mathrm{i} & 0
5082 \end{array}\end{bmatrix}\raisebox{-5.3mm}{}$
5083 \end_inset
5084
5085
5086 \end_layout
5087
5088 \end_inset
5089 </cell>
5090 </row>
5091 <row>
5092 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5093 \begin_inset Text
5094
5095 \begin_layout Plain Layout
5096
5097 \backslash
5098 Bmatrix
5099 \begin_inset space \textvisiblespace{}
5100 \end_inset
5101
5102 2
5103 \series bold
5104 ×
5105 \series default
5106 2
5107 \begin_inset space \thinspace{}
5108 \end_inset
5109
5110 Matrix
5111 \end_layout
5112
5113 \end_inset
5114 </cell>
5115 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5116 \begin_inset Text
5117
5118 \begin_layout Plain Layout
5119 \begin_inset Formula $\raisebox{7.5mm}{}\begin{Bmatrix}\begin{array}{cc}
5120 0 & \textrm{-}\mathrm{i}\\
5121 \mathrm{i} & 0
5122 \end{array}\end{Bmatrix}\raisebox{-5.3mm}{}$
5123 \end_inset
5124
5125
5126 \end_layout
5127
5128 \end_inset
5129 </cell>
5130 </row>
5131 <row>
5132 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5133 \begin_inset Text
5134
5135 \begin_layout Plain Layout
5136
5137 \backslash
5138 pmatrix
5139 \begin_inset space \textvisiblespace{}
5140 \end_inset
5141
5142 2
5143 \series bold
5144 ×
5145 \series default
5146 2
5147 \begin_inset space \thinspace{}
5148 \end_inset
5149
5150 Matrix
5151 \end_layout
5152
5153 \end_inset
5154 </cell>
5155 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5156 \begin_inset Text
5157
5158 \begin_layout Plain Layout
5159 \begin_inset Formula $\raisebox{7.5mm}{}\begin{pmatrix}\begin{array}{cc}
5160 0 & \textrm{-}\mathrm{i}\\
5161 \mathrm{i} & 0
5162 \end{array}\end{pmatrix}\raisebox{-5.3mm}{}$
5163 \end_inset
5164
5165
5166 \end_layout
5167
5168 \end_inset
5169 </cell>
5170 </row>
5171 </lyxtabular>
5172
5173 \end_inset
5174
5175
5176 \begin_inset space \hfill{}
5177 \end_inset
5178
5179
5180 \begin_inset Tabular
5181 <lyxtabular version="3" rows="4" columns="2">
5182 <features rotate="0" tabularvalignment="middle">
5183 <column alignment="center" valignment="top">
5184 <column alignment="center" valignment="top">
5185 <row>
5186 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5187 \begin_inset Text
5188
5189 \begin_layout Plain Layout
5190 Befehl
5191 \end_layout
5192
5193 \end_inset
5194 </cell>
5195 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5196 \begin_inset Text
5197
5198 \begin_layout Plain Layout
5199 Ergebnis
5200 \end_layout
5201
5202 \end_inset
5203 </cell>
5204 </row>
5205 <row>
5206 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5207 \begin_inset Text
5208
5209 \begin_layout Plain Layout
5210
5211 \backslash
5212 vmatrix
5213 \begin_inset space \textvisiblespace{}
5214 \end_inset
5215
5216 2
5217 \series bold
5218 ×
5219 \series default
5220 2
5221 \begin_inset space \thinspace{}
5222 \end_inset
5223
5224 Matrix
5225 \end_layout
5226
5227 \end_inset
5228 </cell>
5229 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5230 \begin_inset Text
5231
5232 \begin_layout Plain Layout
5233 \begin_inset Formula $\raisebox{7.5mm}{}\begin{vmatrix}\begin{array}{cc}
5234 0 & \textrm{-}\mathrm{i}\\
5235 \mathrm{i} & 0
5236 \end{array}\end{vmatrix}\raisebox{-5.3mm}{}$
5237 \end_inset
5238
5239
5240 \end_layout
5241
5242 \end_inset
5243 </cell>
5244 </row>
5245 <row>
5246 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5247 \begin_inset Text
5248
5249 \begin_layout Plain Layout
5250
5251 \backslash
5252 Vmatrix
5253 \begin_inset space \textvisiblespace{}
5254 \end_inset
5255
5256 2
5257 \series bold
5258 ×
5259 \series default
5260 2
5261 \begin_inset space \thinspace{}
5262 \end_inset
5263
5264 Matrix
5265 \end_layout
5266
5267 \end_inset
5268 </cell>
5269 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5270 \begin_inset Text
5271
5272 \begin_layout Plain Layout
5273 \begin_inset Formula $\raisebox{7.5mm}{}\begin{Vmatrix}\begin{array}{cc}
5274 0 & \textrm{-}\mathrm{i}\\
5275 \mathrm{i} & 0
5276 \end{array}\end{Vmatrix}\raisebox{-5.3mm}{}$
5277 \end_inset
5278
5279
5280 \end_layout
5281
5282 \end_inset
5283 </cell>
5284 </row>
5285 <row>
5286 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5287 \begin_inset Text
5288
5289 \begin_layout Plain Layout
5290
5291 \backslash
5292 matrix
5293 \begin_inset space \textvisiblespace{}
5294 \end_inset
5295
5296 2
5297 \series bold
5298 ×
5299 \series default
5300 2
5301 \begin_inset space \thinspace{}
5302 \end_inset
5303
5304 Matrix
5305 \end_layout
5306
5307 \end_inset
5308 </cell>
5309 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5310 \begin_inset Text
5311
5312 \begin_layout Plain Layout
5313 \begin_inset Formula $\raisebox{7.5mm}{}\begin{matrix}\begin{array}{cc}
5314 0 & \textrm{-}\mathrm{i}\\
5315 \mathrm{i} & 0
5316 \end{array}\end{matrix}\raisebox{-5.3mm}{}$
5317 \end_inset
5318
5319
5320 \end_layout
5321
5322 \end_inset
5323 </cell>
5324 </row>
5325 </lyxtabular>
5326
5327 \end_inset
5328
5329
5330 \begin_inset space \hfill{}
5331 \end_inset
5332
5333
5334 \end_layout
5335
5336 \begin_layout Standard
5337 \begin_inset VSpace medskip
5338 \end_inset
5339
5340 Wurde z.
5341 \begin_inset space \thinspace{}
5342 \end_inset
5343
5344 B.
5345  
5346 \series bold
5347
5348 \backslash
5349 vmatrix
5350 \series default
5351  eingegeben, erscheint ein blaues Kästchen zwischen zwei senkrechten Strichen,
5352  in das die Matrix eingefügt wird.
5353 \begin_inset Newline newline
5354 \end_inset
5355
5356 Man beachte, dass verzierte Matrizen die vertikale Ausrichtung ignorieren.
5357 \end_layout
5358
5359 \begin_layout Standard
5360 \begin_inset VSpace bigskip
5361 \end_inset
5362
5363 Da alle mehrzeiligen Formeln Matrizen sind, kann man die in 
5364 \begin_inset CommandInset ref
5365 LatexCommand ref
5366 reference "sub:Spaltenabstand"
5367
5368 \end_inset
5369
5370  beschriebene Länge 
5371 \series bold
5372
5373 \backslash
5374 arraycolsep
5375 \series default
5376
5377 \begin_inset Index idx
5378 status collapsed
5379
5380 \begin_layout Plain Layout
5381 Befehle ! A ! 
5382 \backslash
5383 arraycolsep
5384 \end_layout
5385
5386 \end_inset
5387
5388  auch zur Änderung des Spaltenabstands von Matrizen verwenden.
5389 \end_layout
5390
5391 \begin_layout Standard
5392 Möchte man den Zeilenabstand ändern, verwendet man den Befehl 
5393 \series bold
5394
5395 \backslash
5396 arraystretch
5397 \series default
5398
5399 \begin_inset Index idx
5400 status collapsed
5401
5402 \begin_layout Plain Layout
5403 Befehle ! A ! 
5404 \backslash
5405 arraystretch
5406 \end_layout
5407
5408 \end_inset
5409
5410 .
5411  Dieser wird folgendermaßen benutzt:
5412 \end_layout
5413
5414 \begin_layout Standard
5415
5416 \series bold
5417
5418 \backslash
5419 renewcommand{
5420 \backslash
5421 arraystretch}{Dehnungsfaktor}
5422 \begin_inset Index idx
5423 status collapsed
5424
5425 \begin_layout Plain Layout
5426 Befehle ! R ! 
5427 \backslash
5428 renewcommand
5429 \end_layout
5430
5431 \end_inset
5432
5433
5434 \end_layout
5435
5436 \begin_layout Standard
5437 Der Befehl 
5438 \series bold
5439
5440 \backslash
5441 renewcommand
5442 \series default
5443  weist dabei dem vordefinierten Befehl 
5444 \series bold
5445
5446 \backslash
5447 arraystretch
5448 \series default
5449  den Dehnungsfaktor zu.
5450  Möchte man z.
5451 \begin_inset space \thinspace{}
5452 \end_inset
5453
5454 B.
5455  den Zeilenabstand verdoppeln, gibt man für den Faktor eine 2 an.
5456  Dieser wird dann für alle folgenden Matrizen verwendet.
5457  Um wieder zum ursprünglichen Abstand zurückzukehren, weist man 
5458 \series bold
5459
5460 \backslash
5461 arraystretch
5462 \series default
5463  den Faktor 1 zu.
5464 \end_layout
5465
5466 \begin_layout Standard
5467 Um Matrizen in eine Textzeile zu setzen, benutzt man den Befehl 
5468 \series bold
5469
5470 \backslash
5471 smallmatrix
5472 \series default
5473
5474 \begin_inset Index idx
5475 status collapsed
5476
5477 \begin_layout Plain Layout
5478 Befehle ! S ! 
5479 \backslash
5480 smallmatrix
5481 \end_layout
5482
5483 \end_inset
5484
5485 .
5486  Gibt man ihn in eine Formel ein, erscheint ein blaues Kästchen mit zwei
5487  gestrichelten Linien.
5488  In dieses Kästchen wird die Matrix eingegeben.
5489  Man verwendet stattdessen das Menü 
5490 \family sans
5491 Bearbeiten\SpecialChar \menuseparator
5492 Zeilen
5493 \begin_inset space ~
5494 \end_inset
5495
5496 &
5497 \begin_inset space ~
5498 \end_inset
5499
5500 Spalten
5501 \family default
5502  oder die Mathe-Werkzeugleiste um neue Spalten zu erstellen.
5503  Neue Zeilen können auch mit 
5504 \family sans
5505 Strg+Enter
5506 \family default
5507  erstellt werden.
5508 \end_layout
5509
5510 \begin_layout Standard
5511 Dies ist eine Matrix 
5512 \begin_inset Formula $\left(\begin{smallmatrix}A & B\\
5513 C & D
5514 \end{smallmatrix}\right)$
5515 \end_inset
5516
5517  in einer Textzeile.
5518 \end_layout
5519
5520 \begin_layout Section
5521 Klammern und Begrenzungszeichen
5522 \begin_inset Index idx
5523 status collapsed
5524
5525 \begin_layout Plain Layout
5526 Klammern
5527 \end_layout
5528
5529 \end_inset
5530
5531
5532 \begin_inset Index idx
5533 status collapsed
5534
5535 \begin_layout Plain Layout
5536 Begrenzungszeichen
5537 \end_layout
5538
5539 \end_inset
5540
5541
5542 \end_layout
5543
5544 \begin_layout Subsection
5545 Vertikale Klammern und Begrenzungszeichen
5546 \begin_inset Index idx
5547 status collapsed
5548
5549 \begin_layout Plain Layout
5550 Klammern ! vertikale
5551 \end_layout
5552
5553 \end_inset
5554
5555
5556 \end_layout
5557
5558 \begin_layout Standard
5559 \begin_inset space \hfill{}
5560 \end_inset
5561
5562
5563 \begin_inset Tabular
5564 <lyxtabular version="3" rows="9" columns="2">
5565 <features rotate="0" tabularvalignment="middle">
5566 <column alignment="center" valignment="top" width="0pt">
5567 <column alignment="center" valignment="top" width="0pt">
5568 <row>
5569 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5570 \begin_inset Text
5571
5572 \begin_layout Plain Layout
5573 Befehl
5574 \end_layout
5575
5576 \end_inset
5577 </cell>
5578 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5579 \begin_inset Text
5580
5581 \begin_layout Plain Layout
5582 Ergebnis
5583 \end_layout
5584
5585 \end_inset
5586 </cell>
5587 </row>
5588 <row>
5589 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5590 \begin_inset Text
5591
5592 \begin_layout Plain Layout
5593 (
5594 \end_layout
5595
5596 \end_inset
5597 </cell>
5598 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5599 \begin_inset Text
5600
5601 \begin_layout Plain Layout
5602 \begin_inset Formula $($
5603 \end_inset
5604
5605
5606 \end_layout
5607
5608 \end_inset
5609 </cell>
5610 </row>
5611 <row>
5612 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5613 \begin_inset Text
5614
5615 \begin_layout Plain Layout
5616 {
5617 \end_layout
5618
5619 \end_inset
5620 </cell>
5621 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5622 \begin_inset Text
5623
5624 \begin_layout Plain Layout
5625 \begin_inset Formula $\{$
5626 \end_inset
5627
5628
5629 \end_layout
5630
5631 \end_inset
5632 </cell>
5633 </row>
5634 <row>
5635 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5636 \begin_inset Text
5637
5638 \begin_layout Plain Layout
5639 [
5640 \end_layout
5641
5642 \end_inset
5643 </cell>
5644 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5645 \begin_inset Text
5646
5647 \begin_layout Plain Layout
5648 \begin_inset Formula $[$
5649 \end_inset
5650
5651
5652 \end_layout
5653
5654 \end_inset
5655 </cell>
5656 </row>
5657 <row>
5658 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5659 \begin_inset Text
5660
5661 \begin_layout Plain Layout
5662
5663 \backslash
5664 langle
5665 \end_layout
5666
5667 \end_inset
5668 </cell>
5669 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5670 \begin_inset Text
5671
5672 \begin_layout Plain Layout
5673 \begin_inset Formula $\langle$
5674 \end_inset
5675
5676
5677 \end_layout
5678
5679 \end_inset
5680 </cell>
5681 </row>
5682 <row>
5683 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5684 \begin_inset Text
5685
5686 \begin_layout Plain Layout
5687
5688 \backslash
5689 lceil
5690 \end_layout
5691
5692 \end_inset
5693 </cell>
5694 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5695 \begin_inset Text
5696
5697 \begin_layout Plain Layout
5698 \begin_inset Formula $\lceil$
5699 \end_inset
5700
5701
5702 \end_layout
5703
5704 \end_inset
5705 </cell>
5706 </row>
5707 <row>
5708 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5709 \begin_inset Text
5710
5711 \begin_layout Plain Layout
5712
5713 \backslash
5714 lfloor
5715 \end_layout
5716
5717 \end_inset
5718 </cell>
5719 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5720 \begin_inset Text
5721
5722 \begin_layout Plain Layout
5723 \begin_inset Formula $\lfloor$
5724 \end_inset
5725
5726
5727 \end_layout
5728
5729 \end_inset
5730 </cell>
5731 </row>
5732 <row>
5733 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5734 \begin_inset Text
5735
5736 \begin_layout Plain Layout
5737 /
5738 \end_layout
5739
5740 \end_inset
5741 </cell>
5742 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5743 \begin_inset Text
5744
5745 \begin_layout Plain Layout
5746 \begin_inset Formula $/$
5747 \end_inset
5748
5749
5750 \end_layout
5751
5752 \end_inset
5753 </cell>
5754 </row>
5755 <row>
5756 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5757 \begin_inset Text
5758
5759 \begin_layout Plain Layout
5760 |
5761 \end_layout
5762
5763 \end_inset
5764 </cell>
5765 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5766 \begin_inset Text
5767
5768 \begin_layout Plain Layout
5769 \begin_inset Formula $|$
5770 \end_inset
5771
5772
5773 \end_layout
5774
5775 \end_inset
5776 </cell>
5777 </row>
5778 </lyxtabular>
5779
5780 \end_inset
5781
5782
5783 \begin_inset space \hfill{}
5784 \end_inset
5785
5786
5787 \begin_inset Tabular
5788 <lyxtabular version="3" rows="9" columns="2">
5789 <features rotate="0" tabularvalignment="middle">
5790 <column alignment="center" valignment="top" width="0pt">
5791 <column alignment="center" valignment="top" width="0pt">
5792 <row>
5793 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5794 \begin_inset Text
5795
5796 \begin_layout Plain Layout
5797 Befehl
5798 \end_layout
5799
5800 \end_inset
5801 </cell>
5802 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5803 \begin_inset Text
5804
5805 \begin_layout Plain Layout
5806 Ergebnis
5807 \end_layout
5808
5809 \end_inset
5810 </cell>
5811 </row>
5812 <row>
5813 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5814 \begin_inset Text
5815
5816 \begin_layout Plain Layout
5817 )
5818 \end_layout
5819
5820 \end_inset
5821 </cell>
5822 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5823 \begin_inset Text
5824
5825 \begin_layout Plain Layout
5826 \begin_inset Formula $)$
5827 \end_inset
5828
5829
5830 \end_layout
5831
5832 \end_inset
5833 </cell>
5834 </row>
5835 <row>
5836 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5837 \begin_inset Text
5838
5839 \begin_layout Plain Layout
5840 }
5841 \end_layout
5842
5843 \end_inset
5844 </cell>
5845 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5846 \begin_inset Text
5847
5848 \begin_layout Plain Layout
5849 \begin_inset Formula $\}$
5850 \end_inset
5851
5852
5853 \end_layout
5854
5855 \end_inset
5856 </cell>
5857 </row>
5858 <row>
5859 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5860 \begin_inset Text
5861
5862 \begin_layout Plain Layout
5863 ]
5864 \end_layout
5865
5866 \end_inset
5867 </cell>
5868 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5869 \begin_inset Text
5870
5871 \begin_layout Plain Layout
5872 \begin_inset Formula $]$
5873 \end_inset
5874
5875
5876 \end_layout
5877
5878 \end_inset
5879 </cell>
5880 </row>
5881 <row>
5882 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5883 \begin_inset Text
5884
5885 \begin_layout Plain Layout
5886
5887 \backslash
5888 rangle
5889 \end_layout
5890
5891 \end_inset
5892 </cell>
5893 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5894 \begin_inset Text
5895
5896 \begin_layout Plain Layout
5897 \begin_inset Formula $\rangle$
5898 \end_inset
5899
5900
5901 \end_layout
5902
5903 \end_inset
5904 </cell>
5905 </row>
5906 <row>
5907 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5908 \begin_inset Text
5909
5910 \begin_layout Plain Layout
5911
5912 \backslash
5913 rceil
5914 \end_layout
5915
5916 \end_inset
5917 </cell>
5918 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5919 \begin_inset Text
5920
5921 \begin_layout Plain Layout
5922 \begin_inset Formula $\rceil$
5923 \end_inset
5924
5925
5926 \end_layout
5927
5928 \end_inset
5929 </cell>
5930 </row>
5931 <row>
5932 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5933 \begin_inset Text
5934
5935 \begin_layout Plain Layout
5936
5937 \backslash
5938 rfloor
5939 \end_layout
5940
5941 \end_inset
5942 </cell>
5943 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5944 \begin_inset Text
5945
5946 \begin_layout Plain Layout
5947 \begin_inset Formula $\rfloor$
5948 \end_inset
5949
5950
5951 \end_layout
5952
5953 \end_inset
5954 </cell>
5955 </row>
5956 <row>
5957 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5958 \begin_inset Text
5959
5960 \begin_layout Plain Layout
5961
5962 \backslash
5963
5964 \backslash
5965
5966 \end_layout
5967
5968 \end_inset
5969 </cell>
5970 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5971 \begin_inset Text
5972
5973 \begin_layout Plain Layout
5974 \begin_inset Formula $\backslash$
5975 \end_inset
5976
5977
5978 \end_layout
5979
5980 \end_inset
5981 </cell>
5982 </row>
5983 <row>
5984 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5985 \begin_inset Text
5986
5987 \begin_layout Plain Layout
5988
5989 \backslash
5990 |
5991 \end_layout
5992
5993 \end_inset
5994 </cell>
5995 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5996 \begin_inset Text
5997
5998 \begin_layout Plain Layout
5999 \begin_inset Formula $\|$
6000 \end_inset
6001
6002
6003 \end_layout
6004
6005 \end_inset
6006 </cell>
6007 </row>
6008 </lyxtabular>
6009
6010 \end_inset
6011
6012
6013 \begin_inset space \hfill{}
6014 \end_inset
6015
6016
6017 \end_layout
6018
6019 \begin_layout Standard
6020
6021 \series medium
6022 \begin_inset Note Greyedout
6023 status open
6024
6025 \begin_layout Plain Layout
6026
6027 \series bold
6028 Achtung:
6029 \series default
6030  Im TeX-Modus muss für den Backslash der Befehl 
6031 \series bold
6032
6033 \backslash
6034 textbackslash
6035 \series default
6036
6037 \begin_inset Index idx
6038 status collapsed
6039
6040 \begin_layout Plain Layout
6041 Befehle ! T ! 
6042 \backslash
6043 textbackslash
6044 \end_layout
6045
6046 \end_inset
6047
6048  verwendet werden, denn der Befehl 
6049 \series bold
6050
6051 \backslash
6052
6053 \backslash
6054
6055 \series default
6056  steht dort für einen Zeilenumbruch.
6057 \end_layout
6058
6059 \end_inset
6060
6061
6062 \end_layout
6063
6064 \begin_layout Standard
6065 Für alle oben aufgelisteten Zeichen kann die Größe mit den in den folgenden
6066  zwei Unterkapiteln beschriebenen Befehlen eingestellt werden.
6067  Dabei können dann statt den Befehlen 
6068 \series bold
6069
6070 \backslash
6071 langle
6072 \series default
6073  und 
6074 \series bold
6075
6076 \backslash
6077 rangle
6078 \series default
6079  direkt die Zeichen < und > verwendet werden.
6080 \end_layout
6081
6082 \begin_layout Subsubsection
6083 Manuelle Klammergrößen
6084 \begin_inset CommandInset label
6085 LatexCommand label
6086 name "sub:Manuelle-Klammergrößen"
6087
6088 \end_inset
6089
6090
6091 \begin_inset Index idx
6092 status collapsed
6093
6094 \begin_layout Plain Layout
6095 Klammergrößen ! manuelle
6096 \end_layout
6097
6098 \end_inset
6099
6100
6101 \end_layout
6102
6103 \begin_layout Standard
6104 Möchte man die Klammergröße manuell festlegen, kann man dies mittels der
6105  LaTeX-Befehle 
6106 \series bold
6107
6108 \backslash
6109 big
6110 \series default
6111
6112 \begin_inset Index idx
6113 status collapsed
6114
6115 \begin_layout Plain Layout
6116 Befehle ! B ! 
6117 \backslash
6118 big
6119 \end_layout
6120
6121 \end_inset
6122
6123
6124 \series bold
6125
6126 \backslash
6127 Big
6128 \series default
6129
6130 \series bold
6131
6132 \backslash
6133 bigg
6134 \series default
6135  und 
6136 \series bold
6137
6138 \backslash
6139 Bigg
6140 \series default
6141  tun.
6142  
6143 \series bold
6144
6145 \backslash
6146 big
6147 \series default
6148  steht hierbei für die kleinste und 
6149 \series bold
6150
6151 \backslash
6152 Bigg
6153 \series default
6154  für die größte Klammergröße.
6155 \end_layout
6156
6157 \begin_layout Standard
6158 Diese Befehle werden benutzt um Klammerebenen optisch hervorzuheben:
6159 \end_layout
6160
6161 \begin_layout Standard
6162 \align center
6163 \begin_inset Tabular
6164 <lyxtabular version="3" rows="2" columns="2">
6165 <features rotate="0" tabularvalignment="middle">
6166 <column alignment="center" valignment="top" width="0pt">
6167 <column alignment="center" valignment="top" width="0pt">
6168 <row>
6169 <cell alignment="center" valignment="top" usebox="none">
6170 \begin_inset Text
6171
6172 \begin_layout Plain Layout
6173 einheitliche Klammergröße:
6174 \end_layout
6175
6176 \end_inset
6177 </cell>
6178 <cell alignment="center" valignment="top" usebox="none">
6179 \begin_inset Text
6180
6181 \begin_layout Plain Layout
6182 \begin_inset Formula $((A+B)(A-B))^{C}\raisebox{-4mm}{}$
6183 \end_inset
6184
6185
6186 \end_layout
6187
6188 \end_inset
6189 </cell>
6190 </row>
6191 <row>
6192 <cell alignment="center" valignment="top" usebox="none">
6193 \begin_inset Text
6194
6195 \begin_layout Plain Layout
6196 besser sieht das so aus:
6197 \end_layout
6198
6199 \end_inset
6200 </cell>
6201 <cell alignment="center" valignment="top" usebox="none">
6202 \begin_inset Text
6203
6204 \begin_layout Plain Layout
6205 \begin_inset Formula $\Big((A+B)(A-B)\Big)^{C}$
6206 \end_inset
6207
6208
6209 \end_layout
6210
6211 \end_inset
6212 </cell>
6213 </row>
6214 </lyxtabular>
6215
6216 \end_inset
6217
6218
6219 \begin_inset Note Note
6220 status collapsed
6221
6222 \begin_layout Plain Layout
6223
6224 \series bold
6225
6226 \backslash
6227 raisebox
6228 \series default
6229  dient nur
6230 \end_layout
6231
6232 \begin_layout Plain Layout
6233 als Abstandhalter.
6234 \end_layout
6235
6236 \end_inset
6237
6238
6239 \end_layout
6240
6241 \begin_layout Standard
6242 Für die zweite Formel wurde der Befehl 
6243 \series bold
6244
6245 \backslash
6246 Big((A+B)(A-B)
6247 \backslash
6248 Big)^
6249 \begin_inset space \textvisiblespace{}
6250 \end_inset
6251
6252 C
6253 \series default
6254  verwendet.
6255 \end_layout
6256
6257 \begin_layout Standard
6258 Hier alle Klammergrößen in der Übersicht:
6259 \end_layout
6260
6261 \begin_layout Standard
6262 \align center
6263
6264 \backslash
6265 Bigg(
6266 \backslash
6267 exp
6268 \backslash
6269 bigg<
6270 \backslash
6271 Big[
6272 \backslash
6273 big{
6274 \backslash
6275 ln(3x)
6276 \backslash
6277 big}^2
6278 \begin_inset space \textvisiblespace{}
6279 \end_inset
6280
6281
6282 \backslash
6283 sin(x)
6284 \backslash
6285 Big]^
6286 \begin_inset space \textvisiblespace{}
6287 \end_inset
6288
6289 A
6290 \begin_inset space \textvisiblespace{}
6291 \end_inset
6292
6293
6294 \backslash
6295 bigg>
6296 \backslash
6297 Bigg)^0,5
6298 \end_layout
6299
6300 \begin_layout Standard
6301 \align center
6302 \begin_inset Formula $\Bigg(\exp\bigg<\Big[\big\{\ln(3x)\big\}^{2}\sin(x)\Big]^{A}\bigg>\Bigg)^{0,5}$
6303 \end_inset
6304
6305
6306 \end_layout
6307
6308 \begin_layout Standard
6309 Es gibt außer den 
6310 \series bold
6311
6312 \backslash
6313 big
6314 \series default
6315 -Befehlen noch die Variante 
6316 \series bold
6317
6318 \backslash
6319 bigm
6320 \series default
6321
6322 \begin_inset Index idx
6323 status collapsed
6324
6325 \begin_layout Plain Layout
6326 Befehle ! B ! 
6327 \backslash
6328 bigm
6329 \end_layout
6330
6331 \end_inset
6332
6333 , die etwas mehr Leerraum zwischen Klammer und Klammerinhalt erzeugt und
6334  die Variante 
6335 \series bold
6336
6337 \backslash
6338 bigl
6339 \series default
6340 -
6341 \series bold
6342
6343 \backslash
6344 bigr
6345 \series default
6346
6347 \begin_inset Index idx
6348 status collapsed
6349
6350 \begin_layout Plain Layout
6351 Befehle ! B ! 
6352 \backslash
6353 bigl - 
6354 \backslash
6355 bigr
6356 \end_layout
6357
6358 \end_inset
6359
6360 , die keinen zusätzlichen Leerraum erzeugt.
6361  Das 
6362 \emph on
6363 l
6364 \emph default
6365  am Ende des Befehls 
6366 \series bold
6367
6368 \backslash
6369 bigl
6370 \series default
6371  steht für eine linke Klammer; für eine rechte Klammer wird dieses durch
6372  ein 
6373 \emph on
6374 r
6375 \emph default
6376  ersetzt.
6377  Eine linke oder rechte Klammer kann je eine öffnende oder schließende Klammer
6378  sein.
6379 \end_layout
6380
6381 \begin_layout Standard
6382 In der folgenden Tabelle sind die Varianten miteinander verglichen:
6383 \end_layout
6384
6385 \begin_layout Standard
6386 \align center
6387 \begin_inset Tabular
6388 <lyxtabular version="3" rows="5" columns="2">
6389 <features rotate="0" tabularvalignment="middle">
6390 <column alignment="center" valignment="middle">
6391 <column alignment="center" valignment="middle">
6392 <row>
6393 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6394 \begin_inset Text
6395
6396 \begin_layout Plain Layout
6397 Befehl
6398 \end_layout
6399
6400 \end_inset
6401 </cell>
6402 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6403 \begin_inset Text
6404
6405 \begin_layout Plain Layout
6406 Ergebnis
6407 \begin_inset Note Note
6408 status collapsed
6409
6410 \begin_layout Plain Layout
6411
6412 \series bold
6413
6414 \backslash
6415 raisebox
6416 \series default
6417  dient nur als Abstandhalter.
6418 \end_layout
6419
6420 \end_inset
6421
6422
6423 \end_layout
6424
6425 \end_inset
6426 </cell>
6427 </row>
6428 <row>
6429 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6430 \begin_inset Text
6431
6432 \begin_layout Plain Layout
6433
6434 \backslash
6435 Bigm(
6436 \backslash
6437 bigm(
6438 \backslash
6439 ln(3x)
6440 \backslash
6441 bigm)^2
6442 \begin_inset space \textvisiblespace{}
6443 \end_inset
6444
6445
6446 \backslash
6447 Bigm)
6448 \end_layout
6449
6450 \end_inset
6451 </cell>
6452 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6453 \begin_inset Text
6454
6455 \begin_layout Plain Layout
6456 \begin_inset Formula $\raisebox{5.5mm}{}\Bigm(\bigm(\ln(3x)\bigm)^{2}\Bigm)\raisebox{-3.25mm}{}$
6457 \end_inset
6458
6459
6460 \end_layout
6461
6462 \end_inset
6463 </cell>
6464 </row>
6465 <row>
6466 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6467 \begin_inset Text
6468
6469 \begin_layout Plain Layout
6470
6471 \backslash
6472 Big(
6473 \backslash
6474 big(
6475 \backslash
6476 ln(3x)
6477 \backslash
6478 big)^2
6479 \begin_inset space \textvisiblespace{}
6480 \end_inset
6481
6482
6483 \backslash
6484 Big)
6485 \end_layout
6486
6487 \end_inset
6488 </cell>
6489 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6490 \begin_inset Text
6491
6492 \begin_layout Plain Layout
6493 \begin_inset Formula $\raisebox{5.5mm}{}\Big(\big(\ln(3x)\big)^{2}\Big)\raisebox{-3.25mm}{}$
6494 \end_inset
6495
6496
6497 \end_layout
6498
6499 \end_inset
6500 </cell>
6501 </row>
6502 <row>
6503 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6504 \begin_inset Text
6505
6506 \begin_layout Plain Layout
6507
6508 \backslash
6509 Bigl(
6510 \backslash
6511 bigl(
6512 \backslash
6513 ln(3x)
6514 \backslash
6515 bigr)^2
6516 \begin_inset space \textvisiblespace{}
6517 \end_inset
6518
6519
6520 \backslash
6521 Bigr)
6522 \end_layout
6523
6524 \end_inset
6525 </cell>
6526 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6527 \begin_inset Text
6528
6529 \begin_layout Plain Layout
6530 \begin_inset Formula $\raisebox{5.5mm}{}\Bigl(\bigl(\ln(3x)\bigr)^{2}\Bigr)\raisebox{-3.25mm}{}$
6531 \end_inset
6532
6533
6534 \end_layout
6535
6536 \end_inset
6537 </cell>
6538 </row>
6539 <row>
6540 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6541 \begin_inset Text
6542
6543 \begin_layout Plain Layout
6544
6545 \backslash
6546 bigl)
6547 \backslash
6548 ln(3x)
6549 \backslash
6550 bigr(
6551 \end_layout
6552
6553 \end_inset
6554 </cell>
6555 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6556 \begin_inset Text
6557
6558 \begin_layout Plain Layout
6559 \begin_inset Formula $\raisebox{4.5mm}{}\bigl)\ln(3x)\bigr(\raisebox{-2mm}{}$
6560 \end_inset
6561
6562
6563 \end_layout
6564
6565 \end_inset
6566 </cell>
6567 </row>
6568 </lyxtabular>
6569
6570 \end_inset
6571
6572
6573 \end_layout
6574
6575 \begin_layout Subsubsection
6576 Automatische Klammergrößen
6577 \begin_inset CommandInset label
6578 LatexCommand label
6579 name "sub:Automatische-Klammergrößen"
6580
6581 \end_inset
6582
6583
6584 \begin_inset Index idx
6585 status collapsed
6586
6587 \begin_layout Plain Layout
6588 Klammergrößen ! automatische
6589 \end_layout
6590
6591 \end_inset
6592
6593
6594 \end_layout
6595
6596 \begin_layout Standard
6597 Klammern variabler Größe können mit den Befehlen 
6598 \series bold
6599
6600 \backslash
6601 left
6602 \series default
6603
6604 \begin_inset Index idx
6605 status collapsed
6606
6607 \begin_layout Plain Layout
6608 Befehle ! L ! 
6609 \backslash
6610 left
6611 \end_layout
6612
6613 \end_inset
6614
6615  und 
6616 \series bold
6617
6618 \backslash
6619 right
6620 \series default
6621
6622 \begin_inset Index idx
6623 status collapsed
6624
6625 \begin_layout Plain Layout
6626 Befehle ! R ! 
6627 \backslash
6628 right
6629 \end_layout
6630
6631 \end_inset
6632
6633  oder über den Mathe-Werkzeugleistenknopf
6634 \family sans
6635  
6636 \family default
6637
6638 \begin_inset Info
6639 type  "icon"
6640 arg   "dialog-show mathdelimiter"
6641 \end_inset
6642
6643  eingefügt werden.
6644  Auf 
6645 \series bold
6646
6647 \backslash
6648 left
6649 \series default
6650  und 
6651 \series bold
6652
6653 \backslash
6654 right
6655 \series default
6656  muss unmittelbar die gewünschte Klammer folgen.
6657  Die Klammergröße wird dann bei der Ausgabe automatisch berechnet.
6658 \end_layout
6659
6660 \begin_layout Standard
6661 \align center
6662 normale Klammer: Der Befehl 
6663 \series bold
6664
6665 \backslash
6666 ln(
6667 \backslash
6668 frac
6669 \begin_inset space \textvisiblespace{}
6670 \end_inset
6671
6672 A
6673 \begin_inset Formula $\downarrow$
6674 \end_inset
6675
6676 C
6677 \begin_inset space \textvisiblespace{}
6678 \end_inset
6679
6680 )
6681 \series default
6682  ergibt
6683 \begin_inset Formula 
6684 \[
6685 \ln(\frac{A}{C})
6686 \]
6687
6688 \end_inset
6689
6690
6691 \end_layout
6692
6693 \begin_layout Standard
6694 \align center
6695 mehrzeilige Klammer: Der Befehl 
6696 \series bold
6697
6698 \backslash
6699 ln
6700 \backslash
6701 left(
6702 \backslash
6703 frac
6704 \begin_inset space \textvisiblespace{}
6705 \end_inset
6706
6707 A
6708 \begin_inset Formula $\downarrow$
6709 \end_inset
6710
6711 C
6712 \begin_inset space \textvisiblespace{}
6713 \end_inset
6714
6715
6716 \backslash
6717 right)
6718 \series default
6719  ergibt
6720 \begin_inset Formula 
6721 \[
6722 \ln\left(\frac{A}{C}\right)
6723 \]
6724
6725 \end_inset
6726
6727
6728 \end_layout
6729
6730 \begin_layout Standard
6731 An Stelle von 
6732 \series bold
6733
6734 \backslash
6735 left
6736 \series default
6737  und 
6738 \series bold
6739
6740 \backslash
6741 right
6742 \series default
6743  kann man die Tastenkürzel 
6744 \family sans
6745 Alt+M
6746 \begin_inset space ~
6747 \end_inset
6748
6749 Klammer
6750 \family default
6751  verwenden.
6752  Das hat den Vorteil, dass man in LyX sofort die wahre Klammergröße sieht
6753  und dass die rechte Klammer gleich mit erstellt wird.
6754 \begin_inset Newline newline
6755 \end_inset
6756
6757 Der Befehl für das letzte Beispiel würde dann lauten: 
6758 \series bold
6759
6760 \backslash
6761 ln Alt+M
6762 \series default
6763  
6764 \series bold
6765 (
6766 \backslash
6767 frac
6768 \begin_inset space \textvisiblespace{}
6769 \end_inset
6770
6771 A
6772 \begin_inset Formula $\downarrow$
6773 \end_inset
6774
6775 C
6776 \end_layout
6777
6778 \begin_layout Standard
6779 Will man nur eine Klammerhälfte erstellen, schreibt man für die weggelassene
6780  Klammer einen Punkt.
6781  So ergibt z.
6782 \begin_inset space \thinspace{}
6783 \end_inset
6784
6785 B.
6786  der Befehl 
6787 \series bold
6788
6789 \backslash
6790 left.
6791 \backslash
6792 frac
6793 \begin_inset space \textvisiblespace{}
6794 \end_inset
6795
6796 A
6797 \begin_inset Formula $\downarrow$
6798 \end_inset
6799
6800 B
6801 \begin_inset space \textvisiblespace{}
6802 \end_inset
6803
6804
6805 \backslash
6806 right}
6807 \series default
6808
6809 \begin_inset space \thinspace{}
6810 \end_inset
6811
6812 :
6813 \series bold
6814
6815 \begin_inset Formula 
6816 \[
6817 \left.\frac{A}{B}\right\} 
6818 \]
6819
6820 \end_inset
6821
6822
6823 \series default
6824 Die Befehle 
6825 \series bold
6826
6827 \backslash
6828 left
6829 \series default
6830  und 
6831 \series bold
6832
6833 \backslash
6834 right
6835 \series default
6836  werden beim Neu laden des Dokuments von LyX in Klammern der richtigen Größe
6837  umgewandelt.
6838  Für eine weggelassene Klammer erscheint in LyX eine gestrichelte Linie.
6839 \end_layout
6840
6841 \begin_layout Standard
6842 \begin_inset VSpace bigskip
6843 \end_inset
6844
6845 Da alle gängigen LaTeX-Distributionen eTeX, eine Erweiterung von LaTeX,
6846  verwenden, steht für alle Klammern und Begrenzungszeichen zusätzlich der
6847  Befehl 
6848 \series bold
6849
6850 \backslash
6851 middle
6852 \series default
6853
6854 \begin_inset Index idx
6855 status collapsed
6856
6857 \begin_layout Plain Layout
6858 Befehle ! M ! 
6859 \backslash
6860 middle
6861 \end_layout
6862
6863 \end_inset
6864
6865  zur Verfügung.
6866  Durch diesen wird das folgende Zeichen an die Höhe der umgebenden Klammern
6867  angepasst, was z.
6868 \begin_inset space \thinspace{}
6869 \end_inset
6870
6871 B.
6872  für physikalische Vektoren von Nutzen ist:
6873 \begin_inset Formula 
6874 \[
6875 \left\langle \phi\:\middle|\: J=\frac{3}{2}\,,\, M_{J}\right\rangle 
6876 \]
6877
6878 \end_inset
6879
6880 Für physikalische Vektoren gibt es ein spezielles LaTeX-Paket, das in 
6881 \begin_inset CommandInset ref
6882 LatexCommand ref
6883 reference "sub:Physikalische-Vektoren"
6884
6885 \end_inset
6886
6887  beschrieben ist.
6888 \end_layout
6889
6890 \begin_layout Subsection
6891 Horizontale Klammern
6892 \begin_inset Index idx
6893 status collapsed
6894
6895 \begin_layout Plain Layout
6896 Klammern ! horizontale
6897 \end_layout
6898
6899 \end_inset
6900
6901
6902 \end_layout
6903
6904 \begin_layout Standard
6905 \align center
6906 \begin_inset Tabular
6907 <lyxtabular version="3" rows="4" columns="2">
6908 <features rotate="0" tabularvalignment="middle">
6909 <column alignment="center" valignment="top" width="0pt">
6910 <column alignment="center" valignment="top" width="0pt">
6911 <row>
6912 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6913 \begin_inset Text
6914
6915 \begin_layout Plain Layout
6916 Befehl
6917 \begin_inset Note Note
6918 status collapsed
6919
6920 \begin_layout Plain Layout
6921
6922 \series bold
6923
6924 \backslash
6925 raisebox
6926 \series default
6927  dient nur als Abstandhalter.
6928 \end_layout
6929
6930 \end_inset
6931
6932
6933 \end_layout
6934
6935 \end_inset
6936 </cell>
6937 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6938 \begin_inset Text
6939
6940 \begin_layout Plain Layout
6941 Ergebnis
6942 \end_layout
6943
6944 \end_inset
6945 </cell>
6946 </row>
6947 <row>
6948 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6949 \begin_inset Text
6950
6951 \begin_layout Plain Layout
6952 \begin_inset ERT
6953 status collapsed
6954
6955 \begin_layout Plain Layout
6956
6957
6958 \backslash
6959 raisebox{2.3mm}{
6960 \end_layout
6961
6962 \end_inset
6963
6964
6965 \backslash
6966 overbrace
6967 \begin_inset space \textvisiblespace{}
6968 \end_inset
6969
6970 A+B
6971 \begin_inset space \textvisiblespace{}
6972 \end_inset
6973
6974 ^
6975 \begin_inset space \textvisiblespace{}
6976 \end_inset
6977
6978 3
6979 \begin_inset ERT
6980 status collapsed
6981
6982 \begin_layout Plain Layout
6983
6984 }
6985 \end_layout
6986
6987 \end_inset
6988
6989
6990 \begin_inset Index idx
6991 status collapsed
6992
6993 \begin_layout Plain Layout
6994 Befehle ! O ! 
6995 \backslash
6996 overbrace
6997 \end_layout
6998
6999 \end_inset
7000
7001
7002 \end_layout
7003
7004 \end_inset
7005 </cell>
7006 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7007 \begin_inset Text
7008
7009 \begin_layout Plain Layout
7010 \begin_inset Formula $\overbrace{A+B}^{3}$
7011 \end_inset
7012
7013
7014 \end_layout
7015
7016 \end_inset
7017 </cell>
7018 </row>
7019 <row>
7020 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7021 \begin_inset Text
7022
7023 \begin_layout Plain Layout
7024 \begin_inset ERT
7025 status collapsed
7026
7027 \begin_layout Plain Layout
7028
7029
7030 \backslash
7031 raisebox{-2.2mm}{
7032 \end_layout
7033
7034 \end_inset
7035
7036
7037 \backslash
7038 underbrace
7039 \begin_inset space \textvisiblespace{}
7040 \end_inset
7041
7042 A+B
7043 \begin_inset space \textvisiblespace{}
7044 \end_inset
7045
7046 _5
7047 \begin_inset ERT
7048 status collapsed
7049
7050 \begin_layout Plain Layout
7051
7052 }
7053 \end_layout
7054
7055 \end_inset
7056
7057
7058 \begin_inset Index idx
7059 status collapsed
7060
7061 \begin_layout Plain Layout
7062 Befehle ! U ! 
7063 \backslash
7064 underbrace
7065 \end_layout
7066
7067 \end_inset
7068
7069
7070 \end_layout
7071
7072 \end_inset
7073 </cell>
7074 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7075 \begin_inset Text
7076
7077 \begin_layout Plain Layout
7078 \begin_inset Formula $\underbrace{A+B}_{5}$
7079 \end_inset
7080
7081
7082 \end_layout
7083
7084 \end_inset
7085 </cell>
7086 </row>
7087 <row>
7088 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7089 \begin_inset Text
7090
7091 \begin_layout Plain Layout
7092
7093 \backslash
7094 overbrace
7095 \begin_inset space \textvisiblespace{}
7096 \end_inset
7097
7098
7099 \backslash
7100 underbrace
7101 \begin_inset space \textvisiblespace{}
7102 \end_inset
7103
7104 A+B_w
7105 \begin_inset space \textvisiblespace{}
7106 \end_inset
7107
7108
7109 \begin_inset space \textvisiblespace{}
7110 \end_inset
7111
7112 _7
7113 \begin_inset space \textvisiblespace{}
7114 \end_inset
7115
7116
7117 \begin_inset space \textvisiblespace{}
7118 \end_inset
7119
7120 ^
7121 \begin_inset space \textvisiblespace{}
7122 \end_inset
7123
7124 C
7125 \end_layout
7126
7127 \end_inset
7128 </cell>
7129 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7130 \begin_inset Text
7131
7132 \begin_layout Plain Layout
7133 \begin_inset Formula $\overbrace{\underbrace{A+B_{w}}_{7}}^{C}$
7134 \end_inset
7135
7136
7137 \end_layout
7138
7139 \end_inset
7140 </cell>
7141 </row>
7142 </lyxtabular>
7143
7144 \end_inset
7145
7146
7147 \end_layout
7148
7149 \begin_layout Standard
7150 Beim letzten Beispiel spielt es keine Rolle, ob man zuerst 
7151 \series bold
7152
7153 \backslash
7154 overbrace
7155 \series default
7156  oder 
7157 \series bold
7158
7159 \backslash
7160 underbrace
7161 \series default
7162  eingibt.
7163 \end_layout
7164
7165 \begin_layout Standard
7166 \begin_inset VSpace medskip
7167 \end_inset
7168
7169
7170 \end_layout
7171
7172 \begin_layout Standard
7173 Wenn man in den Dokumenteinstellungen unter 
7174 \family sans
7175 Mathe-Optionen
7176 \family default
7177  für das Paket 
7178 \series bold
7179 mathtools
7180 \series default
7181
7182 \begin_inset Index idx
7183 status collapsed
7184
7185 \begin_layout Plain Layout
7186 Pakete ! mathtools
7187 \end_layout
7188
7189 \end_inset
7190
7191  die Option 
7192 \family sans
7193 Immer
7194 \begin_inset space ~
7195 \end_inset
7196
7197 laden
7198 \family default
7199  einstellt, hat man Zugriff auf eckige Klammern:
7200 \end_layout
7201
7202 \begin_layout Standard
7203 \align center
7204 \begin_inset Tabular
7205 <lyxtabular version="3" rows="4" columns="2">
7206 <features rotate="0" tabularvalignment="middle">
7207 <column alignment="center" valignment="top" width="0pt">
7208 <column alignment="center" valignment="top" width="0pt">
7209 <row>
7210 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7211 \begin_inset Text
7212
7213 \begin_layout Plain Layout
7214 Befehl
7215 \begin_inset Note Note
7216 status collapsed
7217
7218 \begin_layout Plain Layout
7219
7220 \series bold
7221
7222 \backslash
7223 raisebox
7224 \series default
7225  dient nur als Abstandhalter.
7226 \end_layout
7227
7228 \end_inset
7229
7230
7231 \end_layout
7232
7233 \end_inset
7234 </cell>
7235 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7236 \begin_inset Text
7237
7238 \begin_layout Plain Layout
7239 Ergebnis
7240 \end_layout
7241
7242 \end_inset
7243 </cell>
7244 </row>
7245 <row>
7246 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7247 \begin_inset Text
7248
7249 \begin_layout Plain Layout
7250 \begin_inset ERT
7251 status collapsed
7252
7253 \begin_layout Plain Layout
7254
7255
7256 \backslash
7257 raisebox{2.3mm}{
7258 \end_layout
7259
7260 \end_inset
7261
7262
7263 \backslash
7264 overbracket{A+B
7265 \begin_inset space \textvisiblespace{}
7266 \end_inset
7267
7268 ^3
7269 \begin_inset ERT
7270 status collapsed
7271
7272 \begin_layout Plain Layout
7273
7274 }
7275 \end_layout
7276
7277 \end_inset
7278
7279
7280 \begin_inset Index idx
7281 status collapsed
7282
7283 \begin_layout Plain Layout
7284 Befehle ! O ! 
7285 \backslash
7286 overbracket
7287 \end_layout
7288
7289 \end_inset
7290
7291
7292 \end_layout
7293
7294 \end_inset
7295 </cell>
7296 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7297 \begin_inset Text
7298
7299 \begin_layout Plain Layout
7300 \begin_inset Formula $\overbracket{A+B}^{3}$
7301 \end_inset
7302
7303
7304 \end_layout
7305
7306 \end_inset
7307 </cell>
7308 </row>
7309 <row>
7310 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7311 \begin_inset Text
7312
7313 \begin_layout Plain Layout
7314 \begin_inset ERT
7315 status collapsed
7316
7317 \begin_layout Plain Layout
7318
7319
7320 \backslash
7321 raisebox{-2.2mm}{
7322 \end_layout
7323
7324 \end_inset
7325
7326
7327 \backslash
7328 underbracket{A+B
7329 \begin_inset space \textvisiblespace{}
7330 \end_inset
7331
7332 _5
7333 \begin_inset ERT
7334 status collapsed
7335
7336 \begin_layout Plain Layout
7337
7338 }
7339 \end_layout
7340
7341 \end_inset
7342
7343
7344 \begin_inset Index idx
7345 status collapsed
7346
7347 \begin_layout Plain Layout
7348 Befehle ! U ! 
7349 \backslash
7350 under
7351 \size normal
7352 bracket
7353 \end_layout
7354
7355 \end_inset
7356
7357
7358 \end_layout
7359
7360 \end_inset
7361 </cell>
7362 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7363 \begin_inset Text
7364
7365 \begin_layout Plain Layout
7366 \begin_inset Formula $\underbracket{A+B}_{5}$
7367 \end_inset
7368
7369
7370 \end_layout
7371
7372 \end_inset
7373 </cell>
7374 </row>
7375 <row>
7376 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7377 \begin_inset Text
7378
7379 \begin_layout Plain Layout
7380
7381 \backslash
7382 overbracket{
7383 \backslash
7384 underbracket{A+B_w
7385 \begin_inset space \textvisiblespace{}
7386 \end_inset
7387
7388
7389 \begin_inset space \textvisiblespace{}
7390 \end_inset
7391
7392 _7
7393 \begin_inset space \textvisiblespace{}
7394 \end_inset
7395
7396
7397 \begin_inset space \textvisiblespace{}
7398 \end_inset
7399
7400 ^
7401 \begin_inset space \textvisiblespace{}
7402 \end_inset
7403
7404 C
7405 \end_layout
7406
7407 \end_inset
7408 </cell>
7409 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7410 \begin_inset Text
7411
7412 \begin_layout Plain Layout
7413 \begin_inset Formula $\overbracket{\underbracket{A+B_{w}}_{7}}^{C}$
7414 \end_inset
7415
7416
7417 \end_layout
7418
7419 \end_inset
7420 </cell>
7421 </row>
7422 </lyxtabular>
7423
7424 \end_inset
7425
7426
7427 \end_layout
7428
7429 \begin_layout Standard
7430 Für 
7431 \series bold
7432
7433 \backslash
7434 overbracket
7435 \series default
7436  und 
7437 \series bold
7438
7439 \backslash
7440 underbracket
7441 \series default
7442  kann die Strichstärke der Klammer verändert werden, indem man die gewünschte
7443  Stärke in eckigen Klammern hinter dem Befehl angibt:
7444 \end_layout
7445
7446 \begin_layout Standard
7447 \align center
7448 \begin_inset Tabular
7449 <lyxtabular version="3" rows="3" columns="2">
7450 <features rotate="0" tabularvalignment="middle">
7451 <column alignment="center" valignment="top" width="0pt">
7452 <column alignment="center" valignment="top" width="0pt">
7453 <row>
7454 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7455 \begin_inset Text
7456
7457 \begin_layout Plain Layout
7458 Befehl
7459 \begin_inset Note Note
7460 status collapsed
7461
7462 \begin_layout Plain Layout
7463
7464 \series bold
7465
7466 \backslash
7467 raisebox
7468 \series default
7469  dient nur als Abstandhalter.
7470 \end_layout
7471
7472 \end_inset
7473
7474
7475 \end_layout
7476
7477 \end_inset
7478 </cell>
7479 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7480 \begin_inset Text
7481
7482 \begin_layout Plain Layout
7483 Ergebnis
7484 \end_layout
7485
7486 \end_inset
7487 </cell>
7488 </row>
7489 <row>
7490 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7491 \begin_inset Text
7492
7493 \begin_layout Plain Layout
7494 \begin_inset ERT
7495 status collapsed
7496
7497 \begin_layout Plain Layout
7498
7499
7500 \backslash
7501 raisebox{2.3mm}{
7502 \end_layout
7503
7504 \end_inset
7505
7506
7507 \backslash
7508 overbracket[3pt]
7509 \backslash
7510 {A+B
7511 \begin_inset space \textvisiblespace{}
7512 \end_inset
7513
7514 ^3
7515 \begin_inset ERT
7516 status collapsed
7517
7518 \begin_layout Plain Layout
7519
7520 }
7521 \end_layout
7522
7523 \end_inset
7524
7525
7526 \end_layout
7527
7528 \end_inset
7529 </cell>
7530 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7531 \begin_inset Text
7532
7533 \begin_layout Plain Layout
7534 \begin_inset Formula $\overbracket[3pt]{A+B}^{3}$
7535 \end_inset
7536
7537
7538 \end_layout
7539
7540 \end_inset
7541 </cell>
7542 </row>
7543 <row>
7544 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7545 \begin_inset Text
7546
7547 \begin_layout Plain Layout
7548 \begin_inset ERT
7549 status collapsed
7550
7551 \begin_layout Plain Layout
7552
7553
7554 \backslash
7555 raisebox{-2.2mm}{
7556 \end_layout
7557
7558 \end_inset
7559
7560
7561 \backslash
7562 underbracket[1pt]
7563 \backslash
7564 {A+B
7565 \begin_inset space \textvisiblespace{}
7566 \end_inset
7567
7568 _5
7569 \begin_inset ERT
7570 status collapsed
7571
7572 \begin_layout Plain Layout
7573
7574 }
7575 \end_layout
7576
7577 \end_inset
7578
7579
7580 \end_layout
7581
7582 \end_inset
7583 </cell>
7584 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7585 \begin_inset Text
7586
7587 \begin_layout Plain Layout
7588 \begin_inset Formula $\underbracket[1pt]{A+B}_{5}$
7589 \end_inset
7590
7591
7592 \end_layout
7593
7594 \end_inset
7595 </cell>
7596 </row>
7597 </lyxtabular>
7598
7599 \end_inset
7600
7601
7602 \end_layout
7603
7604 \begin_layout Standard
7605 \begin_inset VSpace bigskip
7606 \end_inset
7607
7608 Benötigt man Klammern, die sich überschneiden, muss man die in 
7609 \begin_inset CommandInset ref
7610 LatexCommand ref
7611 reference "sec:Mehrzeilige-Formeln"
7612
7613 \end_inset
7614
7615  beschriebenen mehrzeiligen Formeln verwenden:
7616 \begin_inset Formula 
7617 \begin{eqnarray*}
7618 A & = & \underbrace{gggg+bbqq}_{r}+\: dddd\\
7619  &  & \hphantom{gggg+\:}\underbrace{\hphantom{bbqq+dddd}}_{s}
7620 \end{eqnarray*}
7621
7622 \end_inset
7623
7624 In die erste Zeile wird die Formel zusammen mit der ersten Klammer eingegeben.
7625  Dabei ist es wichtig, dass vor dem ersten 
7626 \begin_inset Formula $d$
7627 \end_inset
7628
7629  der Abstandsbefehl
7630 \begin_inset Foot
7631 status collapsed
7632
7633 \begin_layout Plain Layout
7634 Abstandsbefehle sind in 
7635 \begin_inset CommandInset ref
7636 LatexCommand ref
7637 reference "sub:Vordefinierter-Leerraum"
7638
7639 \end_inset
7640
7641  erklärt.
7642 \end_layout
7643
7644 \end_inset
7645
7646  
7647 \series bold
7648
7649 \backslash
7650 :
7651 \series default
7652  eingegeben wird, denn die nach dem 
7653 \begin_inset Formula $q$
7654 \end_inset
7655
7656  endende Klammer verhindert, dass das nachfolgende 
7657 \begin_inset Quotes gld
7658 \end_inset
7659
7660 +
7661 \begin_inset Quotes grd
7662 \end_inset
7663
7664  von Leerraum umgeben ist.
7665 \begin_inset Foot
7666 status collapsed
7667
7668 \begin_layout Plain Layout
7669 weil eine Klammer nicht als Zeichen gilt, siehe 
7670 \begin_inset CommandInset ref
7671 LatexCommand ref
7672 reference "sub:Binäre-Operatoren"
7673
7674 \end_inset
7675
7676
7677 \end_layout
7678
7679 \end_inset
7680
7681  In die zweite Zeile wird die zweite Klammer eingegeben.
7682  Da sie vor dem 
7683 \begin_inset Formula $b$
7684 \end_inset
7685
7686  beginnen soll, gibt man zuerst 
7687 \series bold
7688
7689 \backslash
7690 hphantom{gggg+
7691 \backslash
7692 :}
7693 \series default
7694  ein.
7695 \begin_inset Foot
7696 status collapsed
7697
7698 \begin_layout Plain Layout
7699 mehr zu 
7700 \series bold
7701
7702 \backslash
7703 hphantom
7704 \series default
7705  siehe 
7706 \begin_inset CommandInset ref
7707 LatexCommand ref
7708 reference "sub:Platzhalter"
7709
7710 \end_inset
7711
7712 .
7713 \end_layout
7714
7715 \end_inset
7716
7717  Dieser Leerraum wird benötigt, weil das 
7718 \begin_inset Quotes gld
7719 \end_inset
7720
7721 +
7722 \begin_inset Quotes grd
7723 \end_inset
7724
7725  in der Formel auch von Leerraum umgeben ist.
7726  Die Klammer wird unter den Befehl 
7727 \series bold
7728
7729 \backslash
7730 hphantom{bbqq+dddd}
7731 \series default
7732  gesetzt.
7733 \end_layout
7734
7735 \begin_layout Standard
7736 Komplizierter wird es, wenn sich Klammern über und unter der Formel überschneide
7737 n, wie in folgendem Beispiel:
7738 \begin_inset ERT
7739 status collapsed
7740
7741 \begin_layout Plain Layout
7742
7743
7744 \backslash
7745 setlength{
7746 \backslash
7747 jot}{-6pt}
7748 \end_layout
7749
7750 \end_inset
7751
7752
7753 \begin_inset Formula 
7754 \begin{eqnarray*}
7755  &  & \hphantom{gggg+\:}\overbrace{\hphantom{bbqq+dddd}}^{s}\\
7756 A & = & \underbrace{gggg+bbqq}_{r}+\: dddd
7757 \end{eqnarray*}
7758
7759 \end_inset
7760
7761
7762 \begin_inset ERT
7763 status collapsed
7764
7765 \begin_layout Plain Layout
7766
7767
7768 \backslash
7769 setlength{
7770 \backslash
7771 jot}{3pt}
7772 \end_layout
7773
7774 \end_inset
7775
7776 Die erste Formelzeile ist gleich der zweiten Zeile des vorigen Beispiels,
7777  mit dem Unterschied, dass sich die Klammer oben befindet.
7778  Die zweite Zeile enthält die Formel zusammen mit der zweiten Klammer.
7779  Damit sich zwischen oberer Klammer in der ersten Zeile und der Formel in
7780  der zweiten Zeile kein Leerraum befindet, muss der Zeilenabstand verändert
7781  werden.
7782  Aufgrund eines Fehlers in LyX ist dies nicht ohne Weiteres möglich.
7783 \begin_inset Foot
7784 status collapsed
7785
7786 \begin_layout Plain Layout
7787 \begin_inset CommandInset href
7788 LatexCommand href
7789 name "LyX-Fehler #1505"
7790 target "http://www.lyx.org/trac/ticket/1505"
7791
7792 \end_inset
7793
7794
7795 \end_layout
7796
7797 \end_inset
7798
7799  Es muss als Lösung des Problems der globale Formelzeilenabstand 
7800 \series bold
7801
7802 \backslash
7803 jot
7804 \series default
7805
7806 \begin_inset Index idx
7807 status collapsed
7808
7809 \begin_layout Plain Layout
7810 Befehle ! J ! 
7811 \backslash
7812 jot
7813 \end_layout
7814
7815 \end_inset
7816
7817  vor der Formel mit dem Befehl 
7818 \series bold
7819
7820 \backslash
7821 setlength{
7822 \backslash
7823 jot}{-6pt}
7824 \series default
7825  im TeX-Modus auf den Wert -6
7826 \begin_inset space \thinspace{}
7827 \end_inset
7828
7829 pt geändert.
7830  Nach der Formel wird 
7831 \series bold
7832
7833 \backslash
7834 jot
7835 \series default
7836  mit demselben Befehl wieder auf den Standardwert 3
7837 \begin_inset space \thinspace{}
7838 \end_inset
7839
7840 pt zurückgesetzt.
7841  Genaueres zum Zeilenabstand in Formeln ist in 
7842 \begin_inset CommandInset ref
7843 LatexCommand ref
7844 reference "sub:Zeilenabstand"
7845
7846 \end_inset
7847
7848  erklärt.
7849 \end_layout
7850
7851 \begin_layout Section
7852 Pfeile
7853 \begin_inset Index idx
7854 status collapsed
7855
7856 \begin_layout Plain Layout
7857 Pfeile
7858 \end_layout
7859
7860 \end_inset
7861
7862
7863 \end_layout
7864
7865 \begin_layout Standard
7866 Pfeile können über den Mathe-Werkzeugleistenknopf 
7867 \begin_inset Info
7868 type  "icon"
7869 arg   "math-insert \\leftarrow"
7870 \end_inset
7871
7872  oder mit den Befehlen eingefügt werden, die in den folgenden Unterkapiteln
7873  aufgelistet sind.
7874 \end_layout
7875
7876 \begin_layout Subsection
7877 Horizontale Pfeile
7878 \begin_inset Index idx
7879 status collapsed
7880
7881 \begin_layout Plain Layout
7882 Pfeile ! horizontale
7883 \end_layout
7884
7885 \end_inset
7886
7887
7888 \end_layout
7889
7890 \begin_layout Standard
7891 \begin_inset space \hfill{}
7892 \end_inset
7893
7894
7895 \begin_inset Tabular
7896 <lyxtabular version="3" rows="8" columns="2">
7897 <features rotate="0" tabularvalignment="middle">
7898 <column alignment="center" valignment="top" width="0pt">
7899 <column alignment="center" valignment="top" width="0pt">
7900 <row>
7901 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7902 \begin_inset Text
7903
7904 \begin_layout Plain Layout
7905 Befehl
7906 \end_layout
7907
7908 \end_inset
7909 </cell>
7910 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7911 \begin_inset Text
7912
7913 \begin_layout Plain Layout
7914 Ergebnis
7915 \end_layout
7916
7917 \end_inset
7918 </cell>
7919 </row>
7920 <row>
7921 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7922 \begin_inset Text
7923
7924 \begin_layout Plain Layout
7925
7926 \backslash
7927 gets
7928 \end_layout
7929
7930 \end_inset
7931 </cell>
7932 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7933 \begin_inset Text
7934
7935 \begin_layout Plain Layout
7936 \begin_inset Formula $\gets$
7937 \end_inset
7938
7939
7940 \end_layout
7941
7942 \end_inset
7943 </cell>
7944 </row>
7945 <row>
7946 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7947 \begin_inset Text
7948
7949 \begin_layout Plain Layout
7950
7951 \backslash
7952 Leftarrow
7953 \end_layout
7954
7955 \end_inset
7956 </cell>
7957 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7958 \begin_inset Text
7959
7960 \begin_layout Plain Layout
7961 \begin_inset Formula $\Leftarrow$
7962 \end_inset
7963
7964
7965 \end_layout
7966
7967 \end_inset
7968 </cell>
7969 </row>
7970 <row>
7971 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7972 \begin_inset Text
7973
7974 \begin_layout Plain Layout
7975
7976 \backslash
7977 longleftarrow
7978 \end_layout
7979
7980 \end_inset
7981 </cell>
7982 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7983 \begin_inset Text
7984
7985 \begin_layout Plain Layout
7986 \begin_inset Formula $\longleftarrow$
7987 \end_inset
7988
7989
7990 \end_layout
7991
7992 \end_inset
7993 </cell>
7994 </row>
7995 <row>
7996 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
7997 \begin_inset Text
7998
7999 \begin_layout Plain Layout
8000
8001 \backslash
8002 Longleftarrow
8003 \end_layout
8004
8005 \end_inset
8006 </cell>
8007 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8008 \begin_inset Text
8009
8010 \begin_layout Plain Layout
8011 \begin_inset Formula $\Longleftarrow$
8012 \end_inset
8013
8014
8015 \end_layout
8016
8017 \end_inset
8018 </cell>
8019 </row>
8020 <row>
8021 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8022 \begin_inset Text
8023
8024 \begin_layout Plain Layout
8025
8026 \backslash
8027 leftharpoonup
8028 \end_layout
8029
8030 \end_inset
8031 </cell>
8032 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8033 \begin_inset Text
8034
8035 \begin_layout Plain Layout
8036 \begin_inset Formula $\leftharpoonup$
8037 \end_inset
8038
8039
8040 \end_layout
8041
8042 \end_inset
8043 </cell>
8044 </row>
8045 <row>
8046 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8047 \begin_inset Text
8048
8049 \begin_layout Plain Layout
8050
8051 \backslash
8052 leftharpoondown
8053 \end_layout
8054
8055 \end_inset
8056 </cell>
8057 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8058 \begin_inset Text
8059
8060 \begin_layout Plain Layout
8061 \begin_inset Formula $\leftharpoondown$
8062 \end_inset
8063
8064
8065 \end_layout
8066
8067 \end_inset
8068 </cell>
8069 </row>
8070 <row>
8071 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8072 \begin_inset Text
8073
8074 \begin_layout Plain Layout
8075
8076 \backslash
8077 hookleftarrow
8078 \end_layout
8079
8080 \end_inset
8081 </cell>
8082 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8083 \begin_inset Text
8084
8085 \begin_layout Plain Layout
8086 \begin_inset Formula $\hookleftarrow$
8087 \end_inset
8088
8089
8090 \end_layout
8091
8092 \end_inset
8093 </cell>
8094 </row>
8095 </lyxtabular>
8096
8097 \end_inset
8098
8099
8100 \begin_inset space \hfill{}
8101 \end_inset
8102
8103
8104 \begin_inset Tabular
8105 <lyxtabular version="3" rows="8" columns="2">
8106 <features rotate="0" tabularvalignment="middle">
8107 <column alignment="center" valignment="top" width="0pt">
8108 <column alignment="center" valignment="top" width="0pt">
8109 <row>
8110 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8111 \begin_inset Text
8112
8113 \begin_layout Plain Layout
8114 Befehl
8115 \end_layout
8116
8117 \end_inset
8118 </cell>
8119 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8120 \begin_inset Text
8121
8122 \begin_layout Plain Layout
8123 Ergebnis
8124 \end_layout
8125
8126 \end_inset
8127 </cell>
8128 </row>
8129 <row>
8130 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8131 \begin_inset Text
8132
8133 \begin_layout Plain Layout
8134
8135 \backslash
8136 to
8137 \end_layout
8138
8139 \end_inset
8140 </cell>
8141 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8142 \begin_inset Text
8143
8144 \begin_layout Plain Layout
8145 \begin_inset Formula $\to$
8146 \end_inset
8147
8148
8149 \end_layout
8150
8151 \end_inset
8152 </cell>
8153 </row>
8154 <row>
8155 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8156 \begin_inset Text
8157
8158 \begin_layout Plain Layout
8159
8160 \backslash
8161 Rightarrow
8162 \end_layout
8163
8164 \end_inset
8165 </cell>
8166 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8167 \begin_inset Text
8168
8169 \begin_layout Plain Layout
8170 \begin_inset Formula $\Rightarrow$
8171 \end_inset
8172
8173
8174 \end_layout
8175
8176 \end_inset
8177 </cell>
8178 </row>
8179 <row>
8180 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8181 \begin_inset Text
8182
8183 \begin_layout Plain Layout
8184
8185 \backslash
8186 longrightarrow
8187 \end_layout
8188
8189 \end_inset
8190 </cell>
8191 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8192 \begin_inset Text
8193
8194 \begin_layout Plain Layout
8195 \begin_inset Formula $\longrightarrow$
8196 \end_inset
8197
8198
8199 \end_layout
8200
8201 \end_inset
8202 </cell>
8203 </row>
8204 <row>
8205 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8206 \begin_inset Text
8207
8208 \begin_layout Plain Layout
8209
8210 \backslash
8211 Longrightarrow
8212 \end_layout
8213
8214 \end_inset
8215 </cell>
8216 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8217 \begin_inset Text
8218
8219 \begin_layout Plain Layout
8220 \begin_inset Formula $\Longrightarrow$
8221 \end_inset
8222
8223
8224 \end_layout
8225
8226 \end_inset
8227 </cell>
8228 </row>
8229 <row>
8230 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8231 \begin_inset Text
8232
8233 \begin_layout Plain Layout
8234
8235 \backslash
8236 rightharpoonup
8237 \end_layout
8238
8239 \end_inset
8240 </cell>
8241 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8242 \begin_inset Text
8243
8244 \begin_layout Plain Layout
8245 \begin_inset Formula $\rightharpoonup$
8246 \end_inset
8247
8248
8249 \end_layout
8250
8251 \end_inset
8252 </cell>
8253 </row>
8254 <row>
8255 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8256 \begin_inset Text
8257
8258 \begin_layout Plain Layout
8259
8260 \backslash
8261 rightharpoondown
8262 \end_layout
8263
8264 \end_inset
8265 </cell>
8266 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8267 \begin_inset Text
8268
8269 \begin_layout Plain Layout
8270 \begin_inset Formula $\rightharpoondown$
8271 \end_inset
8272
8273
8274 \end_layout
8275
8276 \end_inset
8277 </cell>
8278 </row>
8279 <row>
8280 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8281 \begin_inset Text
8282
8283 \begin_layout Plain Layout
8284
8285 \backslash
8286 hookrightarrow
8287 \end_layout
8288
8289 \end_inset
8290 </cell>
8291 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8292 \begin_inset Text
8293
8294 \begin_layout Plain Layout
8295 \begin_inset Formula $\hookrightarrow$
8296 \end_inset
8297
8298
8299 \end_layout
8300
8301 \end_inset
8302 </cell>
8303 </row>
8304 </lyxtabular>
8305
8306 \end_inset
8307
8308
8309 \begin_inset space \hfill{}
8310 \end_inset
8311
8312
8313 \end_layout
8314
8315 \begin_layout Standard
8316 \begin_inset space \hfill{}
8317 \end_inset
8318
8319
8320 \begin_inset Tabular
8321 <lyxtabular version="3" rows="6" columns="2">
8322 <features rotate="0" tabularvalignment="middle">
8323 <column alignment="center" valignment="top" width="0pt">
8324 <column alignment="center" valignment="top" width="0pt">
8325 <row>
8326 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8327 \begin_inset Text
8328
8329 \begin_layout Plain Layout
8330 Befehl
8331 \end_layout
8332
8333 \end_inset
8334 </cell>
8335 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8336 \begin_inset Text
8337
8338 \begin_layout Plain Layout
8339 Ergebnis
8340 \end_layout
8341
8342 \end_inset
8343 </cell>
8344 </row>
8345 <row>
8346 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8347 \begin_inset Text
8348
8349 \begin_layout Plain Layout
8350
8351 \backslash
8352 leftrightarrow
8353 \end_layout
8354
8355 \end_inset
8356 </cell>
8357 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8358 \begin_inset Text
8359
8360 \begin_layout Plain Layout
8361 \begin_inset Formula $\leftrightarrow$
8362 \end_inset
8363
8364
8365 \end_layout
8366
8367 \end_inset
8368 </cell>
8369 </row>
8370 <row>
8371 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8372 \begin_inset Text
8373
8374 \begin_layout Plain Layout
8375
8376 \backslash
8377 Leftrightarrow
8378 \end_layout
8379
8380 \end_inset
8381 </cell>
8382 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8383 \begin_inset Text
8384
8385 \begin_layout Plain Layout
8386 \begin_inset Formula $\Leftrightarrow$
8387 \end_inset
8388
8389
8390 \end_layout
8391
8392 \end_inset
8393 </cell>
8394 </row>
8395 <row>
8396 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8397 \begin_inset Text
8398
8399 \begin_layout Plain Layout
8400
8401 \backslash
8402 longleftrightarrow
8403 \end_layout
8404
8405 \end_inset
8406 </cell>
8407 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8408 \begin_inset Text
8409
8410 \begin_layout Plain Layout
8411 \begin_inset Formula $\longleftrightarrow$
8412 \end_inset
8413
8414
8415 \end_layout
8416
8417 \end_inset
8418 </cell>
8419 </row>
8420 <row>
8421 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8422 \begin_inset Text
8423
8424 \begin_layout Plain Layout
8425
8426 \backslash
8427 Longleftrightarrow
8428 \end_layout
8429
8430 \end_inset
8431 </cell>
8432 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8433 \begin_inset Text
8434
8435 \begin_layout Plain Layout
8436 \begin_inset Formula $\Longleftrightarrow$
8437 \end_inset
8438
8439
8440 \end_layout
8441
8442 \end_inset
8443 </cell>
8444 </row>
8445 <row>
8446 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8447 \begin_inset Text
8448
8449 \begin_layout Plain Layout
8450
8451 \backslash
8452 rightleftharpoons
8453 \end_layout
8454
8455 \end_inset
8456 </cell>
8457 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8458 \begin_inset Text
8459
8460 \begin_layout Plain Layout
8461 \begin_inset Formula $\rightleftharpoons$
8462 \end_inset
8463
8464
8465 \end_layout
8466
8467 \end_inset
8468 </cell>
8469 </row>
8470 </lyxtabular>
8471
8472 \end_inset
8473
8474
8475 \begin_inset space \hspace{}
8476 \length 25pt
8477 \end_inset
8478
8479
8480 \begin_inset space \hfill{}
8481 \end_inset
8482
8483
8484 \begin_inset Tabular
8485 <lyxtabular version="3" rows="5" columns="2">
8486 <features rotate="0" tabularvalignment="middle">
8487 <column alignment="center" valignment="top" width="0pt">
8488 <column alignment="center" valignment="top" width="0pt">
8489 <row>
8490 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8491 \begin_inset Text
8492
8493 \begin_layout Plain Layout
8494 Befehl
8495 \end_layout
8496
8497 \end_inset
8498 </cell>
8499 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8500 \begin_inset Text
8501
8502 \begin_layout Plain Layout
8503 Ergebnis
8504 \end_layout
8505
8506 \end_inset
8507 </cell>
8508 </row>
8509 <row>
8510 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8511 \begin_inset Text
8512
8513 \begin_layout Plain Layout
8514
8515 \backslash
8516 mapsto
8517 \end_layout
8518
8519 \end_inset
8520 </cell>
8521 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8522 \begin_inset Text
8523
8524 \begin_layout Plain Layout
8525 \begin_inset Formula $\mapsto$
8526 \end_inset
8527
8528
8529 \end_layout
8530
8531 \end_inset
8532 </cell>
8533 </row>
8534 <row>
8535 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8536 \begin_inset Text
8537
8538 \begin_layout Plain Layout
8539
8540 \backslash
8541 longmapsto
8542 \end_layout
8543
8544 \end_inset
8545 </cell>
8546 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8547 \begin_inset Text
8548
8549 \begin_layout Plain Layout
8550 \begin_inset Formula $\longmapsto$
8551 \end_inset
8552
8553
8554 \end_layout
8555
8556 \end_inset
8557 </cell>
8558 </row>
8559 <row>
8560 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8561 \begin_inset Text
8562
8563 \begin_layout Plain Layout
8564
8565 \backslash
8566 leadsto
8567 \end_layout
8568
8569 \end_inset
8570 </cell>
8571 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8572 \begin_inset Text
8573
8574 \begin_layout Plain Layout
8575 \begin_inset Formula $\leadsto$
8576 \end_inset
8577
8578
8579 \end_layout
8580
8581 \end_inset
8582 </cell>
8583 </row>
8584 <row>
8585 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8586 \begin_inset Text
8587
8588 \begin_layout Plain Layout
8589
8590 \backslash
8591 dasharrow
8592 \end_layout
8593
8594 \end_inset
8595 </cell>
8596 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8597 \begin_inset Text
8598
8599 \begin_layout Plain Layout
8600 \begin_inset Formula $\dasharrow$
8601 \end_inset
8602
8603
8604 \end_layout
8605
8606 \end_inset
8607 </cell>
8608 </row>
8609 </lyxtabular>
8610
8611 \end_inset
8612
8613
8614 \begin_inset space \hfill{}
8615 \end_inset
8616
8617
8618 \end_layout
8619
8620 \begin_layout Standard
8621 \begin_inset VSpace medskip
8622 \end_inset
8623
8624 Als Akzente verwendete Pfeile, wie z.
8625 \begin_inset space \thinspace{}
8626 \end_inset
8627
8628 B.
8629  Vektorpfeile, sind in 
8630 \begin_inset CommandInset ref
8631 LatexCommand ref
8632 reference "sec:Akzente"
8633
8634 \end_inset
8635
8636  aufgelistet.
8637 \end_layout
8638
8639 \begin_layout Standard
8640 \begin_inset VSpace bigskip
8641 \end_inset
8642
8643 Des Weiteren gibt es die beschriftbaren Pfeile
8644 \begin_inset Index idx
8645 status collapsed
8646
8647 \begin_layout Plain Layout
8648 Pfeile ! beschriftbare
8649 \end_layout
8650
8651 \end_inset
8652
8653  
8654 \series bold
8655
8656 \backslash
8657 xleftarrow
8658 \series default
8659
8660 \begin_inset Index idx
8661 status collapsed
8662
8663 \begin_layout Plain Layout
8664 Befehle ! X ! 
8665 \backslash
8666 xleftarrow
8667 \end_layout
8668
8669 \end_inset
8670
8671  und 
8672 \series bold
8673
8674 \backslash
8675 xrightarrow
8676 \series default
8677
8678 \begin_inset Index idx
8679 status collapsed
8680
8681 \begin_layout Plain Layout
8682 Befehle ! X ! 
8683 \backslash
8684 xrightarrow
8685 \begin_inset ERT
8686 status collapsed
8687
8688 \begin_layout Plain Layout
8689
8690
8691 \backslash
8692 vspace{4mm}
8693 \end_layout
8694
8695 \end_inset
8696
8697
8698 \end_layout
8699
8700 \end_inset
8701
8702 .
8703  Gibt man einen dieser Befehle in eine Formel ein, erscheint ein Pfeil mit
8704  zwei blauen Kästchen, in die man die Beschriftung eingeben kann.
8705  Die Pfeillänge passt sich der Breite der Beschriftung an.
8706 \end_layout
8707
8708 \begin_layout Standard
8709 \align center
8710 \begin_inset Tabular
8711 <lyxtabular version="3" rows="3" columns="2">
8712 <features rotate="0" tabularvalignment="middle">
8713 <column alignment="center" valignment="top" width="0pt">
8714 <column alignment="center" valignment="top" width="0pt">
8715 <row>
8716 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8717 \begin_inset Text
8718
8719 \begin_layout Plain Layout
8720 Befehl
8721 \end_layout
8722
8723 \end_inset
8724 </cell>
8725 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8726 \begin_inset Text
8727
8728 \begin_layout Plain Layout
8729 Ergebnis
8730 \begin_inset Note Note
8731 status collapsed
8732
8733 \begin_layout Plain Layout
8734
8735 \series bold
8736
8737 \backslash
8738 raisebox
8739 \series default
8740  dient nur als Abstandhalter.
8741 \end_layout
8742
8743 \end_inset
8744
8745
8746 \end_layout
8747
8748 \end_inset
8749 </cell>
8750 </row>
8751 <row>
8752 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8753 \begin_inset Text
8754
8755 \begin_layout Plain Layout
8756 F(a)
8757 \backslash
8758 xleftarrow
8759 \begin_inset space \textvisiblespace{}
8760 \end_inset
8761
8762 x=a
8763 \begin_inset Formula $\downarrow$
8764 \end_inset
8765
8766 x>0
8767 \begin_inset Formula $\to$
8768 \end_inset
8769
8770 F(x)
8771 \end_layout
8772
8773 \end_inset
8774 </cell>
8775 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8776 \begin_inset Text
8777
8778 \begin_layout Plain Layout
8779 \begin_inset Formula $\raisebox{5.5mm}{}F(a)\xleftarrow[x>0]{x=a}F(x)\raisebox{-4mm}{}$
8780 \end_inset
8781
8782
8783 \end_layout
8784
8785 \end_inset
8786 </cell>
8787 </row>
8788 <row>
8789 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8790 \begin_inset Text
8791
8792 \begin_layout Plain Layout
8793 F(x)
8794 \backslash
8795 xrightarrow
8796 \begin_inset space \textvisiblespace{}
8797 \end_inset
8798
8799 x=a
8800 \begin_inset Formula $\downarrow$
8801 \end_inset
8802
8803 x>0
8804 \begin_inset Formula $\to$
8805 \end_inset
8806
8807 F(a)
8808 \end_layout
8809
8810 \end_inset
8811 </cell>
8812 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8813 \begin_inset Text
8814
8815 \begin_layout Plain Layout
8816 \begin_inset Formula $\raisebox{5.5mm}{}F(x)\xrightarrow[x>0]{x=a}F(a)\raisebox{-4mm}{}$
8817 \end_inset
8818
8819
8820 \end_layout
8821
8822 \end_inset
8823 </cell>
8824 </row>
8825 </lyxtabular>
8826
8827 \end_inset
8828
8829
8830 \end_layout
8831
8832 \begin_layout Standard
8833 \begin_inset VSpace medskip
8834 \end_inset
8835
8836
8837 \end_layout
8838
8839 \begin_layout Standard
8840 Wenn man in den Dokumenteinstellungen unter 
8841 \family sans
8842 Mathe-Optionen
8843 \family default
8844  für das Paket 
8845 \series bold
8846 mathtools
8847 \series default
8848
8849 \begin_inset Index idx
8850 status collapsed
8851
8852 \begin_layout Plain Layout
8853 Pakete ! mathtools
8854 \end_layout
8855
8856 \end_inset
8857
8858  die Option 
8859 \family sans
8860 Immer
8861 \begin_inset space ~
8862 \end_inset
8863
8864 laden
8865 \family default
8866  einstellt, hat man Zugriff auf die folgenden beschriftbaren Pfeile:
8867 \end_layout
8868
8869 \begin_layout Standard
8870 \align center
8871 \begin_inset space \hspace*{\fill}
8872 \end_inset
8873
8874
8875 \begin_inset Tabular
8876 <lyxtabular version="3" rows="7" columns="2">
8877 <features rotate="0" tabularvalignment="middle">
8878 <column alignment="center" valignment="top" width="0pt">
8879 <column alignment="center" valignment="top" width="0pt">
8880 <row>
8881 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8882 \begin_inset Text
8883
8884 \begin_layout Plain Layout
8885 Befehl
8886 \end_layout
8887
8888 \end_inset
8889 </cell>
8890 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8891 \begin_inset Text
8892
8893 \begin_layout Plain Layout
8894 Beispiel
8895 \begin_inset Note Note
8896 status collapsed
8897
8898 \begin_layout Plain Layout
8899
8900 \series bold
8901
8902 \backslash
8903 raisebox
8904 \series default
8905  dient nur als Abstandhalter.
8906 \end_layout
8907
8908 \end_inset
8909
8910
8911 \end_layout
8912
8913 \end_inset
8914 </cell>
8915 </row>
8916 <row>
8917 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8918 \begin_inset Text
8919
8920 \begin_layout Plain Layout
8921
8922 \backslash
8923 xleftrightarrow
8924 \end_layout
8925
8926 \end_inset
8927 </cell>
8928 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8929 \begin_inset Text
8930
8931 \begin_layout Plain Layout
8932 \begin_inset Formula $\raisebox{6mm}{}\xleftrightarrow[x=a]{x>0}\raisebox{-4mm}{}$
8933 \end_inset
8934
8935
8936 \end_layout
8937
8938 \end_inset
8939 </cell>
8940 </row>
8941 <row>
8942 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8943 \begin_inset Text
8944
8945 \begin_layout Plain Layout
8946
8947 \backslash
8948 xLeftarrow
8949 \end_layout
8950
8951 \end_inset
8952 </cell>
8953 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8954 \begin_inset Text
8955
8956 \begin_layout Plain Layout
8957 \begin_inset Formula $\raisebox{6mm}{}\xLeftarrow[x=a]{x>0}\raisebox{-4mm}{}$
8958 \end_inset
8959
8960
8961 \end_layout
8962
8963 \end_inset
8964 </cell>
8965 </row>
8966 <row>
8967 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8968 \begin_inset Text
8969
8970 \begin_layout Plain Layout
8971
8972 \backslash
8973 xRightarrow
8974 \end_layout
8975
8976 \end_inset
8977 </cell>
8978 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8979 \begin_inset Text
8980
8981 \begin_layout Plain Layout
8982 \begin_inset Formula $\raisebox{6mm}{}\xRightarrow[x=a]{x>0}\raisebox{-4mm}{}$
8983 \end_inset
8984
8985
8986 \end_layout
8987
8988 \end_inset
8989 </cell>
8990 </row>
8991 <row>
8992 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8993 \begin_inset Text
8994
8995 \begin_layout Plain Layout
8996
8997 \backslash
8998 xLeftrightarrow
8999 \end_layout
9000
9001 \end_inset
9002 </cell>
9003 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9004 \begin_inset Text
9005
9006 \begin_layout Plain Layout
9007 \begin_inset Formula $\raisebox{6mm}{}\xLeftrightarrow[x=a]{x>0}\raisebox{-4mm}{}$
9008 \end_inset
9009
9010
9011 \end_layout
9012
9013 \end_inset
9014 </cell>
9015 </row>
9016 <row>
9017 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9018 \begin_inset Text
9019
9020 \begin_layout Plain Layout
9021
9022 \backslash
9023 xhookleftarrow
9024 \end_layout
9025
9026 \end_inset
9027 </cell>
9028 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9029 \begin_inset Text
9030
9031 \begin_layout Plain Layout
9032 \begin_inset Formula $\raisebox{6mm}{}\xhookleftarrow[x=a]{x>0}\raisebox{-4mm}{}$
9033 \end_inset
9034
9035
9036 \end_layout
9037
9038 \end_inset
9039 </cell>
9040 </row>
9041 <row>
9042 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9043 \begin_inset Text
9044
9045 \begin_layout Plain Layout
9046
9047 \backslash
9048 xhookrightarrow
9049 \end_layout
9050
9051 \end_inset
9052 </cell>
9053 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9054 \begin_inset Text
9055
9056 \begin_layout Plain Layout
9057 \begin_inset Formula $\raisebox{6mm}{}\xhookrightarrow[x=a]{x>0}\raisebox{-4mm}{}$
9058 \end_inset
9059
9060
9061 \end_layout
9062
9063 \end_inset
9064 </cell>
9065 </row>
9066 </lyxtabular>
9067
9068 \end_inset
9069
9070
9071 \begin_inset space \hspace*{\fill}
9072 \end_inset
9073
9074
9075 \begin_inset Tabular
9076 <lyxtabular version="3" rows="7" columns="2">
9077 <features rotate="0" tabularvalignment="middle">
9078 <column alignment="center" valignment="top" width="0pt">
9079 <column alignment="center" valignment="top" width="0pt">
9080 <row>
9081 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9082 \begin_inset Text
9083
9084 \begin_layout Plain Layout
9085 Befehl
9086 \end_layout
9087
9088 \end_inset
9089 </cell>
9090 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9091 \begin_inset Text
9092
9093 \begin_layout Plain Layout
9094 Beispiel
9095 \begin_inset Note Note
9096 status collapsed
9097
9098 \begin_layout Plain Layout
9099
9100 \series bold
9101
9102 \backslash
9103 raisebox
9104 \series default
9105  dient nur als Abstandhalter.
9106 \end_layout
9107
9108 \end_inset
9109
9110
9111 \end_layout
9112
9113 \end_inset
9114 </cell>
9115 </row>
9116 <row>
9117 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9118 \begin_inset Text
9119
9120 \begin_layout Plain Layout
9121
9122 \backslash
9123 xleftharpoondown
9124 \end_layout
9125
9126 \end_inset
9127 </cell>
9128 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9129 \begin_inset Text
9130
9131 \begin_layout Plain Layout
9132 \begin_inset Formula $\raisebox{6mm}{}\xleftharpoondown[x=a]{x>0}\raisebox{-4mm}{}$
9133 \end_inset
9134
9135
9136 \end_layout
9137
9138 \end_inset
9139 </cell>
9140 </row>
9141 <row>
9142 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9143 \begin_inset Text
9144
9145 \begin_layout Plain Layout
9146
9147 \backslash
9148 xleftharpoonup
9149 \end_layout
9150
9151 \end_inset
9152 </cell>
9153 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9154 \begin_inset Text
9155
9156 \begin_layout Plain Layout
9157 \begin_inset Formula $\raisebox{6mm}{}\xleftharpoonup[x=a]{x>0}\raisebox{-4mm}{}$
9158 \end_inset
9159
9160
9161 \end_layout
9162
9163 \end_inset
9164 </cell>
9165 </row>
9166 <row>
9167 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9168 \begin_inset Text
9169
9170 \begin_layout Plain Layout
9171
9172 \backslash
9173 xrightharpoondown
9174 \end_layout
9175
9176 \end_inset
9177 </cell>
9178 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9179 \begin_inset Text
9180
9181 \begin_layout Plain Layout
9182 \begin_inset Formula $\raisebox{6mm}{}\xrightharpoondown[x=a]{x>0}\raisebox{-4mm}{}$
9183 \end_inset
9184
9185
9186 \end_layout
9187
9188 \end_inset
9189 </cell>
9190 </row>
9191 <row>
9192 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9193 \begin_inset Text
9194
9195 \begin_layout Plain Layout
9196
9197 \backslash
9198 xrightharpoonup
9199 \end_layout
9200
9201 \end_inset
9202 </cell>
9203 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9204 \begin_inset Text
9205
9206 \begin_layout Plain Layout
9207 \begin_inset Formula $\raisebox{6mm}{}\xrightharpoonup[x=a]{x>0}\raisebox{-4mm}{}$
9208 \end_inset
9209
9210
9211 \end_layout
9212
9213 \end_inset
9214 </cell>
9215 </row>
9216 <row>
9217 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9218 \begin_inset Text
9219
9220 \begin_layout Plain Layout
9221
9222 \backslash
9223 xleftrightharpoons
9224 \end_layout
9225
9226 \end_inset
9227 </cell>
9228 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9229 \begin_inset Text
9230
9231 \begin_layout Plain Layout
9232 \begin_inset Formula $\raisebox{6mm}{}\xleftrightharpoons[x=a]{x>0}\raisebox{-4mm}{}$
9233 \end_inset
9234
9235
9236 \end_layout
9237
9238 \end_inset
9239 </cell>
9240 </row>
9241 <row>
9242 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9243 \begin_inset Text
9244
9245 \begin_layout Plain Layout
9246
9247 \backslash
9248 xrightleftharpoons
9249 \end_layout
9250
9251 \end_inset
9252 </cell>
9253 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9254 \begin_inset Text
9255
9256 \begin_layout Plain Layout
9257 \begin_inset Formula $\raisebox{6mm}{}\xrightleftharpoons[x=a]{x>0}\raisebox{-4mm}{}$
9258 \end_inset
9259
9260
9261 \end_layout
9262
9263 \end_inset
9264 </cell>
9265 </row>
9266 </lyxtabular>
9267
9268 \end_inset
9269
9270
9271 \begin_inset space \hspace*{\fill}
9272 \end_inset
9273
9274
9275 \end_layout
9276
9277 \begin_layout Standard
9278 Das Befehlsschema ist für all diese Pfeile dasselbe:
9279 \end_layout
9280
9281 \begin_layout Standard
9282 \align center
9283 \begin_inset Tabular
9284 <lyxtabular version="3" rows="2" columns="2">
9285 <features rotate="0" tabularvalignment="middle">
9286 <column alignment="center" valignment="top" width="0pt">
9287 <column alignment="center" valignment="top" width="0pt">
9288 <row>
9289 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9290 \begin_inset Text
9291
9292 \begin_layout Plain Layout
9293 Befehl
9294 \end_layout
9295
9296 \end_inset
9297 </cell>
9298 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9299 \begin_inset Text
9300
9301 \begin_layout Plain Layout
9302 Ergebnis
9303 \begin_inset Note Note
9304 status collapsed
9305
9306 \begin_layout Plain Layout
9307
9308 \series bold
9309
9310 \backslash
9311 raisebox
9312 \series default
9313  dient nur als Abstandhalter.
9314 \end_layout
9315
9316 \end_inset
9317
9318
9319 \end_layout
9320
9321 \end_inset
9322 </cell>
9323 </row>
9324 <row>
9325 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9326 \begin_inset Text
9327
9328 \begin_layout Plain Layout
9329 F(a)
9330 \backslash
9331 xleftrightarrow[x=a]
9332 \backslash
9333 {x>0
9334 \begin_inset Formula $\to$
9335 \end_inset
9336
9337 F(x)
9338 \end_layout
9339
9340 \end_inset
9341 </cell>
9342 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9343 \begin_inset Text
9344
9345 \begin_layout Plain Layout
9346 \begin_inset Formula $\raisebox{6mm}{}F(a)\xleftrightarrow[x=a]{x>0}F(x)\raisebox{-4mm}{}$
9347 \end_inset
9348
9349
9350 \end_layout
9351
9352 \end_inset
9353 </cell>
9354 </row>
9355 </lyxtabular>
9356
9357 \end_inset
9358
9359
9360 \end_layout
9361
9362 \begin_layout Standard
9363 \begin_inset Newpage newpage
9364 \end_inset
9365
9366
9367 \end_layout
9368
9369 \begin_layout Subsection
9370 Vertikale und diagonale Pfeile
9371 \begin_inset Index idx
9372 status collapsed
9373
9374 \begin_layout Plain Layout
9375 Pfeile ! diagonale
9376 \end_layout
9377
9378 \end_inset
9379
9380
9381 \begin_inset Index idx
9382 status collapsed
9383
9384 \begin_layout Plain Layout
9385 Pfeile ! vertikale
9386 \end_layout
9387
9388 \end_inset
9389
9390
9391 \end_layout
9392
9393 \begin_layout Standard
9394 \begin_inset space \hfill{}
9395 \end_inset
9396
9397
9398 \begin_inset Tabular
9399 <lyxtabular version="3" rows="7" columns="2">
9400 <features rotate="0" tabularvalignment="middle">
9401 <column alignment="center" valignment="top" width="0pt">
9402 <column alignment="center" valignment="top" width="0pt">
9403 <row>
9404 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9405 \begin_inset Text
9406
9407 \begin_layout Plain Layout
9408 Befehl
9409 \end_layout
9410
9411 \end_inset
9412 </cell>
9413 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9414 \begin_inset Text
9415
9416 \begin_layout Plain Layout
9417 Ergebnis
9418 \end_layout
9419
9420 \end_inset
9421 </cell>
9422 </row>
9423 <row>
9424 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9425 \begin_inset Text
9426
9427 \begin_layout Plain Layout
9428
9429 \backslash
9430 uparrow
9431 \end_layout
9432
9433 \end_inset
9434 </cell>
9435 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9436 \begin_inset Text
9437
9438 \begin_layout Plain Layout
9439 \begin_inset Formula $\uparrow$
9440 \end_inset
9441
9442
9443 \end_layout
9444
9445 \end_inset
9446 </cell>
9447 </row>
9448 <row>
9449 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9450 \begin_inset Text
9451
9452 \begin_layout Plain Layout
9453
9454 \backslash
9455 Uparrow
9456 \end_layout
9457
9458 \end_inset
9459 </cell>
9460 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9461 \begin_inset Text
9462
9463 \begin_layout Plain Layout
9464 \begin_inset Formula $\Uparrow$
9465 \end_inset
9466
9467
9468 \end_layout
9469
9470 \end_inset
9471 </cell>
9472 </row>
9473 <row>
9474 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9475 \begin_inset Text
9476
9477 \begin_layout Plain Layout
9478
9479 \backslash
9480 updownarrow
9481 \end_layout
9482
9483 \end_inset
9484 </cell>
9485 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9486 \begin_inset Text
9487
9488 \begin_layout Plain Layout
9489 \begin_inset Formula $\updownarrow$
9490 \end_inset
9491
9492
9493 \end_layout
9494
9495 \end_inset
9496 </cell>
9497 </row>
9498 <row>
9499 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9500 \begin_inset Text
9501
9502 \begin_layout Plain Layout
9503
9504 \backslash
9505 Updownarrow
9506 \end_layout
9507
9508 \end_inset
9509 </cell>
9510 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9511 \begin_inset Text
9512
9513 \begin_layout Plain Layout
9514 \begin_inset Formula $\Updownarrow$
9515 \end_inset
9516
9517
9518 \end_layout
9519
9520 \end_inset
9521 </cell>
9522 </row>
9523 <row>
9524 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9525 \begin_inset Text
9526
9527 \begin_layout Plain Layout
9528
9529 \backslash
9530 Downarrow
9531 \end_layout
9532
9533 \end_inset
9534 </cell>
9535 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9536 \begin_inset Text
9537
9538 \begin_layout Plain Layout
9539 \begin_inset Formula $\Downarrow$
9540 \end_inset
9541
9542
9543 \end_layout
9544
9545 \end_inset
9546 </cell>
9547 </row>
9548 <row>
9549 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9550 \begin_inset Text
9551
9552 \begin_layout Plain Layout
9553
9554 \backslash
9555 downarrow
9556 \end_layout
9557
9558 \end_inset
9559 </cell>
9560 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9561 \begin_inset Text
9562
9563 \begin_layout Plain Layout
9564 \begin_inset Formula $\downarrow$
9565 \end_inset
9566
9567
9568 \end_layout
9569
9570 \end_inset
9571 </cell>
9572 </row>
9573 </lyxtabular>
9574
9575 \end_inset
9576
9577
9578 \begin_inset space \hfill{}
9579 \end_inset
9580
9581
9582 \begin_inset Tabular
9583 <lyxtabular version="3" rows="5" columns="2">
9584 <features rotate="0" tabularvalignment="middle">
9585 <column alignment="center" valignment="top" width="0pt">
9586 <column alignment="center" valignment="top" width="0pt">
9587 <row>
9588 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9589 \begin_inset Text
9590
9591 \begin_layout Plain Layout
9592 Befehl
9593 \end_layout
9594
9595 \end_inset
9596 </cell>
9597 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9598 \begin_inset Text
9599
9600 \begin_layout Plain Layout
9601 Ergebnis
9602 \end_layout
9603
9604 \end_inset
9605 </cell>
9606 </row>
9607 <row>
9608 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9609 \begin_inset Text
9610
9611 \begin_layout Plain Layout
9612
9613 \backslash
9614 nearrow
9615 \end_layout
9616
9617 \end_inset
9618 </cell>
9619 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9620 \begin_inset Text
9621
9622 \begin_layout Plain Layout
9623 \begin_inset Formula $\nearrow$
9624 \end_inset
9625
9626
9627 \end_layout
9628
9629 \end_inset
9630 </cell>
9631 </row>
9632 <row>
9633 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9634 \begin_inset Text
9635
9636 \begin_layout Plain Layout
9637
9638 \backslash
9639 searrow
9640 \end_layout
9641
9642 \end_inset
9643 </cell>
9644 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9645 \begin_inset Text
9646
9647 \begin_layout Plain Layout
9648 \begin_inset Formula $\searrow$
9649 \end_inset
9650
9651
9652 \end_layout
9653
9654 \end_inset
9655 </cell>
9656 </row>
9657 <row>
9658 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9659 \begin_inset Text
9660
9661 \begin_layout Plain Layout
9662
9663 \backslash
9664 swarrow
9665 \end_layout
9666
9667 \end_inset
9668 </cell>
9669 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9670 \begin_inset Text
9671
9672 \begin_layout Plain Layout
9673 \begin_inset Formula $\swarrow$
9674 \end_inset
9675
9676
9677 \end_layout
9678
9679 \end_inset
9680 </cell>
9681 </row>
9682 <row>
9683 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9684 \begin_inset Text
9685
9686 \begin_layout Plain Layout
9687
9688 \backslash
9689 nwarrow
9690 \end_layout
9691
9692 \end_inset
9693 </cell>
9694 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9695 \begin_inset Text
9696
9697 \begin_layout Plain Layout
9698 \begin_inset Formula $\nwarrow$
9699 \end_inset
9700
9701
9702 \end_layout
9703
9704 \end_inset
9705 </cell>
9706 </row>
9707 </lyxtabular>
9708
9709 \end_inset
9710
9711
9712 \begin_inset space \hfill{}
9713 \end_inset
9714
9715
9716 \end_layout
9717
9718 \begin_layout Standard
9719 \begin_inset VSpace medskip
9720 \end_inset
9721
9722 Vertikale Pfeile können auch als Begrenzungszeichen zusammen mit den in
9723  
9724 \begin_inset CommandInset ref
9725 LatexCommand ref
9726 reference "sub:Manuelle-Klammergrößen"
9727
9728 \end_inset
9729
9730  und 
9731 \begin_inset CommandInset ref
9732 LatexCommand ref
9733 reference "sub:Automatische-Klammergrößen"
9734
9735 \end_inset
9736
9737  beschriebenen Befehlen verwendet werden.
9738 \end_layout
9739
9740 \begin_layout Section
9741 Akzente
9742 \begin_inset CommandInset label
9743 LatexCommand label
9744 name "sec:Akzente"
9745
9746 \end_inset
9747
9748
9749 \begin_inset Index idx
9750 status collapsed
9751
9752 \begin_layout Plain Layout
9753 Akzente
9754 \end_layout
9755
9756 \end_inset
9757
9758
9759 \end_layout
9760
9761 \begin_layout Standard
9762 Akzente können über den Mathe-Werkzeugleistenknopf 
9763 \begin_inset Info
9764 type  "icon"
9765 arg   "math-insert \\hat"
9766 \end_inset
9767
9768  oder mit den Befehlen eingefügt werden, die in den folgenden Unterkapiteln
9769  aufgelistet sind.
9770 \end_layout
9771
9772 \begin_layout Subsection
9773 Akzente für ein Zeichen
9774 \begin_inset ERT
9775 status collapsed
9776
9777 \begin_layout Plain Layout
9778
9779
9780 \backslash
9781 texorpdfstring{
9782 \end_layout
9783
9784 \end_inset
9785
9786
9787 \begin_inset Foot
9788 status collapsed
9789
9790 \begin_layout Plain Layout
9791 Akzente im Text siehe 
9792 \begin_inset CommandInset ref
9793 LatexCommand ref
9794 reference "sub:Sonderzeichen-Akzente"
9795
9796 \end_inset
9797
9798
9799 \end_layout
9800
9801 \end_inset
9802
9803
9804 \begin_inset ERT
9805 status collapsed
9806
9807 \begin_layout Plain Layout
9808
9809 }{}
9810 \end_layout
9811
9812 \end_inset
9813
9814
9815 \begin_inset Note Note
9816 status collapsed
9817
9818 \begin_layout Plain Layout
9819
9820 \series bold
9821
9822 \backslash
9823 texorpdfstring
9824 \series default
9825  dient dazu, dass die Fußnote nicht im PDF-Lesezeichen erscheint.
9826 \end_layout
9827
9828 \begin_layout Plain Layout
9829 Näheres zu 
9830 \series bold
9831
9832 \backslash
9833 texorpdfstring
9834 \series default
9835  steht in Kapitel 
9836 \begin_inset CommandInset ref
9837 LatexCommand ref
9838 reference "sub:Formeln-in-Überschriften"
9839
9840 \end_inset
9841
9842 .
9843 \end_layout
9844
9845 \end_inset
9846
9847
9848 \begin_inset CommandInset label
9849 LatexCommand label
9850 name "sub:Akzente-für-ein"
9851
9852 \end_inset
9853
9854
9855 \begin_inset Index idx
9856 status collapsed
9857
9858 \begin_layout Plain Layout
9859 Akzente ! für ein Zeichen
9860 \end_layout
9861
9862 \end_inset
9863
9864
9865 \end_layout
9866
9867 \begin_layout Standard
9868 \begin_inset space \hfill{}
9869 \end_inset
9870
9871
9872 \begin_inset Tabular
9873 <lyxtabular version="3" rows="8" columns="2">
9874 <features rotate="0" tabularvalignment="middle">
9875 <column alignment="center" valignment="top" width="0pt">
9876 <column alignment="center" valignment="top" width="0pt">
9877 <row>
9878 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9879 \begin_inset Text
9880
9881 \begin_layout Plain Layout
9882 Befehl
9883 \end_layout
9884
9885 \end_inset
9886 </cell>
9887 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9888 \begin_inset Text
9889
9890 \begin_layout Plain Layout
9891 Ergebnis
9892 \begin_inset Note Note
9893 status collapsed
9894
9895 \begin_layout Plain Layout
9896
9897 \series bold
9898
9899 \backslash
9900 raisebox
9901 \series default
9902  dient nur als Abstandhalter.
9903 \end_layout
9904
9905 \end_inset
9906
9907
9908 \end_layout
9909
9910 \end_inset
9911 </cell>
9912 </row>
9913 <row>
9914 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9915 \begin_inset Text
9916
9917 \begin_layout Plain Layout
9918
9919 \backslash
9920 dot
9921 \begin_inset space \textvisiblespace{}
9922 \end_inset
9923
9924 A
9925 \end_layout
9926
9927 \end_inset
9928 </cell>
9929 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9930 \begin_inset Text
9931
9932 \begin_layout Plain Layout
9933 \begin_inset Formula $\raisebox{5mm}{}\dot{A}$
9934 \end_inset
9935
9936
9937 \end_layout
9938
9939 \end_inset
9940 </cell>
9941 </row>
9942 <row>
9943 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9944 \begin_inset Text
9945
9946 \begin_layout Plain Layout
9947
9948 \backslash
9949 ddot
9950 \begin_inset space \textvisiblespace{}
9951 \end_inset
9952
9953 A
9954 \end_layout
9955
9956 \end_inset
9957 </cell>
9958 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9959 \begin_inset Text
9960
9961 \begin_layout Plain Layout
9962 \begin_inset Formula $\raisebox{5mm}{}\ddot{A}$
9963 \end_inset
9964
9965
9966 \end_layout
9967
9968 \end_inset
9969 </cell>
9970 </row>
9971 <row>
9972 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9973 \begin_inset Text
9974
9975 \begin_layout Plain Layout
9976
9977 \backslash
9978 dddot
9979 \begin_inset space \textvisiblespace{}
9980 \end_inset
9981
9982 A
9983 \end_layout
9984
9985 \end_inset
9986 </cell>
9987 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9988 \begin_inset Text
9989
9990 \begin_layout Plain Layout
9991 \begin_inset Formula $\raisebox{5mm}{}\dddot{A}$
9992 \end_inset
9993
9994
9995 \end_layout
9996
9997 \end_inset
9998 </cell>
9999 </row>
10000 <row>
10001 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10002 \begin_inset Text
10003
10004 \begin_layout Plain Layout
10005
10006 \backslash
10007 ddddot
10008 \begin_inset space \textvisiblespace{}
10009 \end_inset
10010
10011 A
10012 \end_layout
10013
10014 \end_inset
10015 </cell>
10016 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10017 \begin_inset Text
10018
10019 \begin_layout Plain Layout
10020 \begin_inset Formula $\raisebox{5mm}{}\ddddot{A}$
10021 \end_inset
10022
10023
10024 \end_layout
10025
10026 \end_inset
10027 </cell>
10028 </row>
10029 <row>
10030 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10031 \begin_inset Text
10032
10033 \begin_layout Plain Layout
10034
10035 \backslash
10036 vec
10037 \begin_inset space \textvisiblespace{}
10038 \end_inset
10039
10040 A
10041 \begin_inset Index idx
10042 status collapsed
10043
10044 \begin_layout Plain Layout
10045 Vektoren
10046 \end_layout
10047
10048 \end_inset
10049
10050
10051 \end_layout
10052
10053 \end_inset
10054 </cell>
10055 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10056 \begin_inset Text
10057
10058 \begin_layout Plain Layout
10059 \begin_inset Formula $\raisebox{5mm}{}\vec{A}$
10060 \end_inset
10061
10062
10063 \end_layout
10064
10065 \end_inset
10066 </cell>
10067 </row>
10068 <row>
10069 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10070 \begin_inset Text
10071
10072 \begin_layout Plain Layout
10073
10074 \backslash
10075 bar
10076 \begin_inset space \textvisiblespace{}
10077 \end_inset
10078
10079 A
10080 \end_layout
10081
10082 \end_inset
10083 </cell>
10084 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10085 \begin_inset Text
10086
10087 \begin_layout Plain Layout
10088 \begin_inset Formula $\raisebox{5mm}{}\bar{A}$
10089 \end_inset
10090
10091
10092 \end_layout
10093
10094 \end_inset
10095 </cell>
10096 </row>
10097 <row>
10098 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10099 \begin_inset Text
10100
10101 \begin_layout Plain Layout
10102
10103 \backslash
10104 mathring
10105 \begin_inset space \textvisiblespace{}
10106 \end_inset
10107
10108 A
10109 \end_layout
10110
10111 \end_inset
10112 </cell>
10113 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10114 \begin_inset Text
10115
10116 \begin_layout Plain Layout
10117 \begin_inset Formula $\raisebox{5mm}{}\mathring{A}$
10118 \end_inset
10119
10120
10121 \end_layout
10122
10123 \end_inset
10124 </cell>
10125 </row>
10126 </lyxtabular>
10127
10128 \end_inset
10129
10130
10131 \begin_inset space \hfill{}
10132 \end_inset
10133
10134
10135 \begin_inset Tabular
10136 <lyxtabular version="3" rows="7" columns="2">
10137 <features rotate="0" tabularvalignment="middle">
10138 <column alignment="center" valignment="top" width="0pt">
10139 <column alignment="center" valignment="top" width="0pt">
10140 <row>
10141 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10142 \begin_inset Text
10143
10144 \begin_layout Plain Layout
10145 Befehl
10146 \end_layout
10147
10148 \end_inset
10149 </cell>
10150 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10151 \begin_inset Text
10152
10153 \begin_layout Plain Layout
10154 Ergebnis
10155 \end_layout
10156
10157 \end_inset
10158 </cell>
10159 </row>
10160 <row>
10161 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10162 \begin_inset Text
10163
10164 \begin_layout Plain Layout
10165
10166 \backslash
10167 tilde
10168 \begin_inset space \textvisiblespace{}
10169 \end_inset
10170
10171 A
10172 \end_layout
10173
10174 \end_inset
10175 </cell>
10176 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10177 \begin_inset Text
10178
10179 \begin_layout Plain Layout
10180 \begin_inset Formula $\raisebox{5mm}{}\tilde{A}$
10181 \end_inset
10182
10183
10184 \end_layout
10185
10186 \end_inset
10187 </cell>
10188 </row>
10189 <row>
10190 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10191 \begin_inset Text
10192
10193 \begin_layout Plain Layout
10194
10195 \backslash
10196 hat
10197 \begin_inset space \textvisiblespace{}
10198 \end_inset
10199
10200 A
10201 \end_layout
10202
10203 \end_inset
10204 </cell>
10205 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10206 \begin_inset Text
10207
10208 \begin_layout Plain Layout
10209 \begin_inset Formula $\raisebox{5mm}{}\hat{A}$
10210 \end_inset
10211
10212
10213 \end_layout
10214
10215 \end_inset
10216 </cell>
10217 </row>
10218 <row>
10219 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10220 \begin_inset Text
10221
10222 \begin_layout Plain Layout
10223
10224 \backslash
10225 check
10226 \begin_inset space \textvisiblespace{}
10227 \end_inset
10228
10229 A
10230 \end_layout
10231
10232 \end_inset
10233 </cell>
10234 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10235 \begin_inset Text
10236
10237 \begin_layout Plain Layout
10238 \begin_inset Formula $\raisebox{5mm}{}\check{A}$
10239 \end_inset
10240
10241
10242 \end_layout
10243
10244 \end_inset
10245 </cell>
10246 </row>
10247 <row>
10248 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10249 \begin_inset Text
10250
10251 \begin_layout Plain Layout
10252
10253 \backslash
10254 acute
10255 \begin_inset space \textvisiblespace{}
10256 \end_inset
10257
10258 A
10259 \end_layout
10260
10261 \end_inset
10262 </cell>
10263 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10264 \begin_inset Text
10265
10266 \begin_layout Plain Layout
10267 \begin_inset Formula $\raisebox{5mm}{}\acute{A}$
10268 \end_inset
10269
10270
10271 \end_layout
10272
10273 \end_inset
10274 </cell>
10275 </row>
10276 <row>
10277 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10278 \begin_inset Text
10279
10280 \begin_layout Plain Layout
10281
10282 \backslash
10283 grave
10284 \begin_inset space \textvisiblespace{}
10285 \end_inset
10286
10287 A
10288 \end_layout
10289
10290 \end_inset
10291 </cell>
10292 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10293 \begin_inset Text
10294
10295 \begin_layout Plain Layout
10296 \begin_inset Formula $\raisebox{5mm}{}\grave{A}$
10297 \end_inset
10298
10299
10300 \end_layout
10301
10302 \end_inset
10303 </cell>
10304 </row>
10305 <row>
10306 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10307 \begin_inset Text
10308
10309 \begin_layout Plain Layout
10310
10311 \backslash
10312 breve
10313 \begin_inset space \textvisiblespace{}
10314 \end_inset
10315
10316 A
10317 \end_layout
10318
10319 \end_inset
10320 </cell>
10321 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10322 \begin_inset Text
10323
10324 \begin_layout Plain Layout
10325 \begin_inset Formula $\raisebox{5mm}{}\breve{A}$
10326 \end_inset
10327
10328
10329 \end_layout
10330
10331 \end_inset
10332 </cell>
10333 </row>
10334 </lyxtabular>
10335
10336 \end_inset
10337
10338
10339 \begin_inset space \hfill{}
10340 \end_inset
10341
10342
10343 \end_layout
10344
10345 \begin_layout Standard
10346 \begin_inset VSpace bigskip
10347 \end_inset
10348
10349 Akzente wie z.B.
10350  é können direkt in Formeln eingegeben werden.
10351  LyX transformiert sie dann in den entsprechenden Akzentbefehl.
10352  Für Umlaute
10353 \begin_inset Index idx
10354 status collapsed
10355
10356 \begin_layout Plain Layout
10357 Umlaute
10358 \end_layout
10359
10360 \end_inset
10361
10362  ist es besser wenn man ein Anführungszeichen vor den Selbstlaut schreibt.
10363  Diese beiden Zeichen bilden dann für LaTeX 
10364 \emph on
10365 ein
10366 \emph default
10367  Zeichen.
10368  Im Gegensatz zu 
10369 \series bold
10370
10371 \backslash
10372 ddot
10373 \series default
10374  entstehen damit 
10375 \begin_inset Quotes gld
10376 \end_inset
10377
10378 echte
10379 \begin_inset Quotes grd
10380 \end_inset
10381
10382  Umlaute, was folgendes Beispiel zeigt:
10383 \end_layout
10384
10385 \begin_layout Standard
10386 \begin_inset VSpace -2mm
10387 \end_inset
10388
10389
10390 \end_layout
10391
10392 \begin_layout Standard
10393 \align center
10394 \begin_inset Tabular
10395 <lyxtabular version="3" rows="3" columns="2">
10396 <features rotate="0" tabularvalignment="middle">
10397 <column alignment="center" valignment="top">
10398 <column alignment="center" valignment="top">
10399 <row>
10400 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10401 \begin_inset Text
10402
10403 \begin_layout Plain Layout
10404 Befehl
10405 \end_layout
10406
10407 \end_inset
10408 </cell>
10409 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10410 \begin_inset Text
10411
10412 \begin_layout Plain Layout
10413 Ergebnis
10414 \begin_inset Note Note
10415 status collapsed
10416
10417 \begin_layout Plain Layout
10418
10419 \series bold
10420
10421 \backslash
10422 raisebox
10423 \series default
10424  dient nur als Abstandhalter.
10425 \end_layout
10426
10427 \end_inset
10428
10429
10430 \end_layout
10431
10432 \end_inset
10433 </cell>
10434 </row>
10435 <row>
10436 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10437 \begin_inset Text
10438
10439 \begin_layout Plain Layout
10440 \begin_inset Quotes grd
10441 \end_inset
10442
10443 i
10444 \end_layout
10445
10446 \end_inset
10447 </cell>
10448 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10449 \begin_inset Text
10450
10451 \begin_layout Plain Layout
10452 \begin_inset Formula $"i$
10453 \end_inset
10454
10455
10456 \end_layout
10457
10458 \end_inset
10459 </cell>
10460 </row>
10461 <row>
10462 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10463 \begin_inset Text
10464
10465 \begin_layout Plain Layout
10466
10467 \backslash
10468 ddot
10469 \begin_inset space \textvisiblespace{}
10470 \end_inset
10471
10472 i
10473 \end_layout
10474
10475 \end_inset
10476 </cell>
10477 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10478 \begin_inset Text
10479
10480 \begin_layout Plain Layout
10481 \begin_inset Formula $\raisebox{5mm}{}\ddot{i}$
10482 \end_inset
10483
10484
10485 \end_layout
10486
10487 \end_inset
10488 </cell>
10489 </row>
10490 </lyxtabular>
10491
10492 \end_inset
10493
10494
10495 \end_layout
10496
10497 \begin_layout Standard
10498 Ein weiterer Vorteil gegenüber 
10499 \series bold
10500
10501 \backslash
10502 ddot
10503 \series default
10504  ist, dass man Umlaute direkt in mathematischen Text konvertieren kann,
10505  denn die obigen Akzentbefehle sind 
10506 \emph on
10507 im mathematischen Text\SpecialChar \-
10508 modus nicht erlaubt
10509 \emph default
10510 .
10511  Um ein akzentuiertes Zeichen in mathematischen Text zu überführen, darf
10512  nur das Zeichen unter dem Akzent umgewandelt werden.
10513  Das gilt auch für alle anderen Umwandlungen wie z.
10514 \begin_inset space \thinspace{}
10515 \end_inset
10516
10517 B.
10518  in kursiv oder fett.
10519 \end_layout
10520
10521 \begin_layout Standard
10522 Im mathematischen Textmodus können Umlaute und andere akzentuierten Zeichen
10523  direkt eingegeben werden.
10524 \end_layout
10525
10526 \begin_layout Standard
10527 \begin_inset VSpace bigskip
10528 \end_inset
10529
10530
10531 \end_layout
10532
10533 \begin_layout Standard
10534 LyX unterstützt auch eine Tilde unter einem Zeichen, wenn das LaTeX-Paket
10535  
10536 \series bold
10537 undertilde
10538 \series default
10539
10540 \begin_inset Index idx
10541 status collapsed
10542
10543 \begin_layout Plain Layout
10544 Pakete ! undertilde
10545 \end_layout
10546
10547 \end_inset
10548
10549  auf Ihrem System installiert ist:
10550 \end_layout
10551
10552 \begin_layout Standard
10553 \begin_inset ERT
10554 status collapsed
10555
10556 \begin_layout Plain Layout
10557
10558
10559 \backslash
10560 ifundertilde 
10561 \end_layout
10562
10563 \end_inset
10564
10565
10566 \begin_inset Note Note
10567 status open
10568
10569 \begin_layout Plain Layout
10570 Die folgende Tabelle erscheint nur im Ausdruck wenn das LaTeX-Paket 
10571 \series bold
10572 undertilde
10573 \series default
10574  installiert ist:
10575 \end_layout
10576
10577 \end_inset
10578
10579
10580 \end_layout
10581
10582 \begin_layout Standard
10583 \noindent
10584 \align center
10585 \begin_inset Tabular
10586 <lyxtabular version="3" rows="2" columns="2">
10587 <features rotate="0" tabularvalignment="middle">
10588 <column alignment="center" valignment="top" width="0pt">
10589 <column alignment="center" valignment="top" width="0pt">
10590 <row>
10591 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10592 \begin_inset Text
10593
10594 \begin_layout Plain Layout
10595 Befehl
10596 \end_layout
10597
10598 \end_inset
10599 </cell>
10600 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10601 \begin_inset Text
10602
10603 \begin_layout Plain Layout
10604 Ergebnis
10605 \end_layout
10606
10607 \end_inset
10608 </cell>
10609 </row>
10610 <row>
10611 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10612 \begin_inset Text
10613
10614 \begin_layout Plain Layout
10615
10616 \backslash
10617 utilde
10618 \begin_inset space \textvisiblespace{}
10619 \end_inset
10620
10621 A
10622 \end_layout
10623
10624 \end_inset
10625 </cell>
10626 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10627 \begin_inset Text
10628
10629 \begin_layout Plain Layout
10630 \begin_inset Formula $\raisebox{5mm}{}\utilde{A}$
10631 \end_inset
10632
10633
10634 \end_layout
10635
10636 \end_inset
10637 </cell>
10638 </row>
10639 </lyxtabular>
10640
10641 \end_inset
10642
10643
10644 \end_layout
10645
10646 \begin_layout Standard
10647 \begin_inset ERT
10648 status collapsed
10649
10650 \begin_layout Plain Layout
10651
10652
10653 \backslash
10654 else 
10655 \end_layout
10656
10657 \end_inset
10658
10659
10660 \begin_inset Note Note
10661 status open
10662
10663 \begin_layout Plain Layout
10664 Folgendes erscheint im Ausdruck wenn das LaTeX-Paket 
10665 \series bold
10666 undertilde
10667 \series default
10668  nicht installiert ist:
10669 \end_layout
10670
10671 \end_inset
10672
10673
10674 \end_layout
10675
10676 \begin_layout Standard
10677 Das LaTeX-Paket 
10678 \series bold
10679 undertilde 
10680 \series default
10681 muss installiert sein, um den Rest dieses Abschnitts im Ausdruck zu sehen.
10682 \end_layout
10683
10684 \begin_layout Standard
10685 \begin_inset ERT
10686 status collapsed
10687
10688 \begin_layout Plain Layout
10689
10690
10691 \backslash
10692 fi 
10693 \end_layout
10694
10695 \end_inset
10696
10697
10698 \end_layout
10699
10700 \begin_layout Subsection
10701 Akzente für mehrere Zeichen
10702 \begin_inset Index idx
10703 status collapsed
10704
10705 \begin_layout Plain Layout
10706 Akzente ! für mehrere Zeichen
10707 \end_layout
10708
10709 \end_inset
10710
10711
10712 \end_layout
10713
10714 \begin_layout Standard
10715 \begin_inset space \hfill{}
10716 \end_inset
10717
10718
10719 \begin_inset Tabular
10720 <lyxtabular version="3" rows="5" columns="2">
10721 <features rotate="0" tabularvalignment="middle">
10722 <column alignment="center" valignment="top" width="0pt">
10723 <column alignment="center" valignment="top" width="0pt">
10724 <row>
10725 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10726 \begin_inset Text
10727
10728 \begin_layout Plain Layout
10729 Befehl
10730 \end_layout
10731
10732 \end_inset
10733 </cell>
10734 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10735 \begin_inset Text
10736
10737 \begin_layout Plain Layout
10738 Ergebnis
10739 \begin_inset Note Note
10740 status collapsed
10741
10742 \begin_layout Plain Layout
10743
10744 \series bold
10745
10746 \backslash
10747 raisebox
10748 \series default
10749  dient nur als Abstandhalter.
10750 \end_layout
10751
10752 \end_inset
10753
10754
10755 \end_layout
10756
10757 \end_inset
10758 </cell>
10759 </row>
10760 <row>
10761 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10762 \begin_inset Text
10763
10764 \begin_layout Plain Layout
10765
10766 \backslash
10767 overleftarrow
10768 \begin_inset space \textvisiblespace{}
10769 \end_inset
10770
10771 A=B
10772 \end_layout
10773
10774 \end_inset
10775 </cell>
10776 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10777 \begin_inset Text
10778
10779 \begin_layout Plain Layout
10780 \begin_inset Formula $\raisebox{6mm}{}\overleftarrow{A=B}\raisebox{-2mm}{}$
10781 \end_inset
10782
10783
10784 \end_layout
10785
10786 \end_inset
10787 </cell>
10788 </row>
10789 <row>
10790 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10791 \begin_inset Text
10792
10793 \begin_layout Plain Layout
10794
10795 \backslash
10796 underleftarrow
10797 \begin_inset space \textvisiblespace{}
10798 \end_inset
10799
10800 A=B
10801 \end_layout
10802
10803 \end_inset
10804 </cell>
10805 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10806 \begin_inset Text
10807
10808 \begin_layout Plain Layout
10809 \begin_inset Formula $\raisebox{5mm}{}\underleftarrow{A=B}\raisebox{-3mm}{}$
10810 \end_inset
10811
10812
10813 \end_layout
10814
10815 \end_inset
10816 </cell>
10817 </row>
10818 <row>
10819 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10820 \begin_inset Text
10821
10822 \begin_layout Plain Layout
10823
10824 \backslash
10825 overleftrightarrow
10826 \begin_inset space \textvisiblespace{}
10827 \end_inset
10828
10829 A=B
10830 \end_layout
10831
10832 \end_inset
10833 </cell>
10834 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10835 \begin_inset Text
10836
10837 \begin_layout Plain Layout
10838 \begin_inset Formula $\raisebox{6mm}{}\overleftrightarrow{A=B}\raisebox{-2mm}{}$
10839 \end_inset
10840
10841
10842 \end_layout
10843
10844 \end_inset
10845 </cell>
10846 </row>
10847 <row>
10848 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10849 \begin_inset Text
10850
10851 \begin_layout Plain Layout
10852
10853 \backslash
10854 underleftrightarrow
10855 \begin_inset space \textvisiblespace{}
10856 \end_inset
10857
10858 A=B
10859 \end_layout
10860
10861 \end_inset
10862 </cell>
10863 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10864 \begin_inset Text
10865
10866 \begin_layout Plain Layout
10867 \begin_inset Formula $\raisebox{5mm}{}\underleftrightarrow{A=B}\raisebox{-3mm}{}$
10868 \end_inset
10869
10870
10871 \end_layout
10872
10873 \end_inset
10874 </cell>
10875 </row>
10876 </lyxtabular>
10877
10878 \end_inset
10879
10880
10881 \begin_inset space \hfill{}
10882 \end_inset
10883
10884
10885 \begin_inset Tabular
10886 <lyxtabular version="3" rows="5" columns="2">
10887 <features rotate="0" tabularvalignment="middle">
10888 <column alignment="center" valignment="top" width="0pt">
10889 <column alignment="center" valignment="top" width="0pt">
10890 <row>
10891 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10892 \begin_inset Text
10893
10894 \begin_layout Plain Layout
10895 Befehl
10896 \end_layout
10897
10898 \end_inset
10899 </cell>
10900 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10901 \begin_inset Text
10902
10903 \begin_layout Plain Layout
10904 Ergebnis
10905 \end_layout
10906
10907 \end_inset
10908 </cell>
10909 </row>
10910 <row>
10911 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10912 \begin_inset Text
10913
10914 \begin_layout Plain Layout
10915
10916 \backslash
10917 overrightarrow
10918 \begin_inset space \textvisiblespace{}
10919 \end_inset
10920
10921 A=B
10922 \end_layout
10923
10924 \end_inset
10925 </cell>
10926 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10927 \begin_inset Text
10928
10929 \begin_layout Plain Layout
10930 \begin_inset Formula $\raisebox{6mm}{}\overrightarrow{A=B}\raisebox{-2mm}{}$
10931 \end_inset
10932
10933
10934 \end_layout
10935
10936 \end_inset
10937 </cell>
10938 </row>
10939 <row>
10940 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10941 \begin_inset Text
10942
10943 \begin_layout Plain Layout
10944
10945 \backslash
10946 underrightarrow
10947 \begin_inset space \textvisiblespace{}
10948 \end_inset
10949
10950 A=B
10951 \end_layout
10952
10953 \end_inset
10954 </cell>
10955 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10956 \begin_inset Text
10957
10958 \begin_layout Plain Layout
10959 \begin_inset Formula $\raisebox{5mm}{}\underrightarrow{A=B}\raisebox{-3mm}{}$
10960 \end_inset
10961
10962
10963 \end_layout
10964
10965 \end_inset
10966 </cell>
10967 </row>
10968 <row>
10969 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10970 \begin_inset Text
10971
10972 \begin_layout Plain Layout
10973
10974 \backslash
10975 widetilde
10976 \begin_inset space \textvisiblespace{}
10977 \end_inset
10978
10979 A=B
10980 \end_layout
10981
10982 \end_inset
10983 </cell>
10984 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10985 \begin_inset Text
10986
10987 \begin_layout Plain Layout
10988 \begin_inset Formula $\raisebox{6mm}{}\widetilde{A=B}\raisebox{-2mm}{}$
10989 \end_inset
10990
10991
10992 \end_layout
10993
10994 \end_inset
10995 </cell>
10996 </row>
10997 <row>
10998 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10999 \begin_inset Text
11000
11001 \begin_layout Plain Layout
11002
11003 \backslash
11004 widehat
11005 \begin_inset space \textvisiblespace{}
11006 \end_inset
11007
11008 A=B
11009 \end_layout
11010
11011 \end_inset
11012 </cell>
11013 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
11014 \begin_inset Text
11015
11016 \begin_layout Plain Layout
11017 \begin_inset Formula $\raisebox{6mm}{}\widehat{A=B}\raisebox{-2mm}{}$
11018 \end_inset
11019
11020
11021 \end_layout
11022
11023 \end_inset
11024 </cell>
11025 </row>
11026 </lyxtabular>
11027
11028 \end_inset
11029
11030
11031 \begin_inset space \hfill{}
11032 \end_inset
11033
11034
11035 \end_layout
11036
11037 \begin_layout Standard
11038 \begin_inset VSpace medskip
11039 \end_inset
11040
11041 Mit diesen Befehlen können beliebig viele Zeichen akzentuiert werden.
11042  Die Akzente
11043 \begin_inset Newline linebreak
11044 \end_inset
11045
11046
11047 \series bold
11048
11049 \backslash
11050 widetilde
11051 \series default
11052  und 
11053 \series bold
11054
11055 \backslash
11056 widehat
11057 \series default
11058  werden aber im Ausdruck nur mit einer Länge von etwa drei Zeichen gesetzt,
11059  was folgendes Beispiel verdeutlicht:
11060 \begin_inset Formula 
11061 \[
11062 \widetilde{A+B=C-D}
11063 \]
11064
11065 \end_inset
11066
11067
11068 \end_layout
11069
11070 \begin_layout Standard
11071 Mit den im vorigen Kapitel beschriebenen Befehlen 
11072 \series bold
11073
11074 \backslash
11075 overset
11076 \series default
11077
11078 \begin_inset Index idx
11079 status collapsed
11080
11081 \begin_layout Plain Layout
11082 Befehle ! O ! 
11083 \backslash
11084 overset
11085 \end_layout
11086
11087 \end_inset
11088
11089  und 
11090 \series bold
11091
11092 \backslash
11093 underset
11094 \series default
11095
11096 \begin_inset Index idx
11097 status collapsed
11098
11099 \begin_layout Plain Layout
11100 Befehle ! U ! 
11101 \backslash
11102 underset
11103 \end_layout
11104
11105 \end_inset
11106
11107  ist es auch möglich mehrere Zeichen zu akzentuieren.
11108  Der Befehl 
11109 \series bold
11110
11111 \backslash
11112 underset
11113 \begin_inset space \textvisiblespace{}
11114 \end_inset
11115
11116 A=B
11117 \begin_inset Formula $\downarrow$
11118 \end_inset
11119
11120 ***
11121 \series default
11122  ergibt:
11123 \begin_inset Formula 
11124 \[
11125 \underset{***}{A=B}
11126 \]
11127
11128 \end_inset
11129
11130
11131 \end_layout
11132
11133 \begin_layout Section
11134 Leerraum
11135 \begin_inset CommandInset label
11136 LatexCommand label
11137 name "sub:Leerraum"
11138
11139 \end_inset
11140
11141
11142 \begin_inset Index idx
11143 status collapsed
11144
11145 \begin_layout Plain Layout
11146 Leerraum ! horizontaler
11147 \end_layout
11148
11149 \end_inset
11150
11151
11152 \end_layout
11153
11154 \begin_layout Subsection
11155 Vordefinierter Leerraum
11156 \begin_inset CommandInset label
11157 LatexCommand label
11158 name "sub:Vordefinierter-Leerraum"
11159
11160 \end_inset
11161
11162
11163 \begin_inset Index idx
11164 status collapsed
11165
11166 \begin_layout Plain Layout
11167 Leerraum ! horizontaler ! vordefiniert
11168 \end_layout
11169
11170 \end_inset
11171
11172
11173 \end_layout
11174
11175 \begin_layout Standard
11176 Ab und an ist es notwendig in einer Formel horizontalen Leerraum einzufügen.
11177  Dazu gibt man ein geschütztes Leerzeichen ein.
11178  Es erscheint ein 
11179 \begin_inset Quotes gld
11180 \end_inset
11181
11182
11183 \color blue
11184
11185 \begin_inset space \textvisiblespace{}
11186 \end_inset
11187
11188
11189 \color inherit
11190
11191 \begin_inset Quotes grd
11192 \end_inset
11193
11194  und man kann durch mehrfaches Drücken der Leertaste aus acht verschiedenen
11195  Leerraum-Größen wählen.
11196  Man kann die Leerräume auch über den Mathe-Werkzeugleistenknopf 
11197 \begin_inset Info
11198 type  "icon"
11199 arg   "math-insert \\space"
11200 \end_inset
11201
11202  oder mit einzelnen Befehlen aufrufen.
11203  Unabhängig vom eingegebenen Befehl kann man durch Drücken der Leertaste
11204  danach wieder aus allen Größen wählen.
11205 \end_layout
11206
11207 \begin_layout Standard
11208 \align center
11209 \begin_inset Tabular
11210 <lyxtabular version="3" rows="6" columns="3">
11211 <features rotate="0" tabularvalignment="middle">
11212 <column alignment="center" valignment="top">
11213 <column alignment="center" valignment="top" width="15col%">
11214 <column alignment="center" valignment="top">
11215 <row>
11216 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11217 \begin_inset Text
11218
11219 \begin_layout Plain Layout
11220 Befehl
11221 \end_layout
11222
11223 \end_inset
11224 </cell>
11225 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11226 \begin_inset Text
11227
11228 \begin_layout Plain Layout
11229 Anzahl der Leertastendrücke
11230 \end_layout
11231
11232 \end_inset
11233 </cell>
11234 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11235 \begin_inset Text
11236
11237 \begin_layout Plain Layout
11238 Ergebnis
11239 \end_layout
11240
11241 \end_inset
11242 </cell>
11243 </row>
11244 <row>
11245 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11246 \begin_inset Text
11247
11248 \begin_layout Plain Layout
11249
11250 \backslash
11251 ,
11252 \end_layout
11253
11254 \end_inset
11255 </cell>
11256 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11257 \begin_inset Text
11258
11259 \begin_layout Plain Layout
11260 0
11261 \end_layout
11262
11263 \end_inset
11264 </cell>
11265 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11266 \begin_inset Text
11267
11268 \begin_layout Plain Layout
11269 \begin_inset Formula $A\, B$
11270 \end_inset
11271
11272
11273 \end_layout
11274
11275 \end_inset
11276 </cell>
11277 </row>
11278 <row>
11279 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11280 \begin_inset Text
11281
11282 \begin_layout Plain Layout
11283
11284 \backslash
11285 :
11286 \end_layout
11287
11288 \end_inset
11289 </cell>
11290 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11291 \begin_inset Text
11292
11293 \begin_layout Plain Layout
11294 1
11295 \end_layout
11296
11297 \end_inset
11298 </cell>
11299 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11300 \begin_inset Text
11301
11302 \begin_layout Plain Layout
11303 \begin_inset Formula $A\: B$
11304 \end_inset
11305
11306
11307 \end_layout
11308
11309 \end_inset
11310 </cell>
11311 </row>
11312 <row>
11313 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11314 \begin_inset Text
11315
11316 \begin_layout Plain Layout
11317
11318 \backslash
11319 ;
11320 \end_layout
11321
11322 \end_inset
11323 </cell>
11324 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11325 \begin_inset Text
11326
11327 \begin_layout Plain Layout
11328 2
11329 \end_layout
11330
11331 \end_inset
11332 </cell>
11333 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11334 \begin_inset Text
11335
11336 \begin_layout Plain Layout
11337 \begin_inset Formula $A\; B$
11338 \end_inset
11339
11340
11341 \end_layout
11342
11343 \end_inset
11344 </cell>
11345 </row>
11346 <row>
11347 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11348 \begin_inset Text
11349
11350 \begin_layout Plain Layout
11351
11352 \backslash
11353 quad
11354 \end_layout
11355
11356 \end_inset
11357 </cell>
11358 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11359 \begin_inset Text
11360
11361 \begin_layout Plain Layout
11362 3
11363 \end_layout
11364
11365 \end_inset
11366 </cell>
11367 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11368 \begin_inset Text
11369
11370 \begin_layout Plain Layout
11371 \begin_inset Formula $A\quad B$
11372 \end_inset
11373
11374
11375 \end_layout
11376
11377 \end_inset
11378 </cell>
11379 </row>
11380 <row>
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
11386 \backslash
11387 qquad
11388 \end_layout
11389
11390 \end_inset
11391 </cell>
11392 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11393 \begin_inset Text
11394
11395 \begin_layout Plain Layout
11396 4
11397 \end_layout
11398
11399 \end_inset
11400 </cell>
11401 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11402 \begin_inset Text
11403
11404 \begin_layout Plain Layout
11405 \begin_inset Formula $A\qquad B$
11406 \end_inset
11407
11408
11409 \end_layout
11410
11411 \end_inset
11412 </cell>
11413 </row>
11414 </lyxtabular>
11415
11416 \end_inset
11417
11418
11419 \begin_inset space \hfill{}
11420 \end_inset
11421
11422
11423 \begin_inset Tabular
11424 <lyxtabular version="3" rows="6" columns="3">
11425 <features rotate="0" tabularvalignment="middle">
11426 <column alignment="center" valignment="top">
11427 <column alignment="center" valignment="top" width="15col%">
11428 <column alignment="center" valignment="top">
11429 <row>
11430 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11431 \begin_inset Text
11432
11433 \begin_layout Plain Layout
11434 Befehl
11435 \end_layout
11436
11437 \end_inset
11438 </cell>
11439 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11440 \begin_inset Text
11441
11442 \begin_layout Plain Layout
11443 Anzahl der Leertastendrücke
11444 \end_layout
11445
11446 \end_inset
11447 </cell>
11448 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11449 \begin_inset Text
11450
11451 \begin_layout Plain Layout
11452 Ergebnis
11453 \end_layout
11454
11455 \end_inset
11456 </cell>
11457 </row>
11458 <row>
11459 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11460 \begin_inset Text
11461
11462 \begin_layout Plain Layout
11463
11464 \backslash
11465 hfill
11466 \end_layout
11467
11468 \end_inset
11469 </cell>
11470 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11471 \begin_inset Text
11472
11473 \begin_layout Plain Layout
11474 5
11475 \end_layout
11476
11477 \end_inset
11478 </cell>
11479 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11480 \begin_inset Text
11481
11482 \begin_layout Plain Layout
11483 \begin_inset Formula $A\hfill B$
11484 \end_inset
11485
11486
11487 \end_layout
11488
11489 \end_inset
11490 </cell>
11491 </row>
11492 <row>
11493 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11494 \begin_inset Text
11495
11496 \begin_layout Plain Layout
11497
11498 \backslash
11499 hspace*{1em}
11500 \end_layout
11501
11502 \end_inset
11503 </cell>
11504 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11505 \begin_inset Text
11506
11507 \begin_layout Plain Layout
11508 6
11509 \end_layout
11510
11511 \end_inset
11512 </cell>
11513 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11514 \begin_inset Text
11515
11516 \begin_layout Plain Layout
11517 \begin_inset Formula $A\hspace*{1em}B$
11518 \end_inset
11519
11520
11521 \end_layout
11522
11523 \end_inset
11524 </cell>
11525 </row>
11526 <row>
11527 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11528 \begin_inset Text
11529
11530 \begin_layout Plain Layout
11531
11532 \backslash
11533 hspace{1em}
11534 \end_layout
11535
11536 \end_inset
11537 </cell>
11538 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11539 \begin_inset Text
11540
11541 \begin_layout Plain Layout
11542 7
11543 \end_layout
11544
11545 \end_inset
11546 </cell>
11547 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11548 \begin_inset Text
11549
11550 \begin_layout Plain Layout
11551 \begin_inset Formula $A\hspace{1em}B$
11552 \end_inset
11553
11554
11555 \end_layout
11556
11557 \end_inset
11558 </cell>
11559 </row>
11560 <row>
11561 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11562 \begin_inset Text
11563
11564 \begin_layout Plain Layout
11565
11566 \backslash
11567
11568 \begin_inset space \textvisiblespace{}
11569 \end_inset
11570
11571
11572 \end_layout
11573
11574 \end_inset
11575 </cell>
11576 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11577 \begin_inset Text
11578
11579 \begin_layout Plain Layout
11580 8
11581 \end_layout
11582
11583 \end_inset
11584 </cell>
11585 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11586 \begin_inset Text
11587
11588 \begin_layout Plain Layout
11589 \begin_inset Formula $A\ B$
11590 \end_inset
11591
11592
11593 \end_layout
11594
11595 \end_inset
11596 </cell>
11597 </row>
11598 <row>
11599 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11600 \begin_inset Text
11601
11602 \begin_layout Plain Layout
11603
11604 \backslash
11605 !
11606 \end_layout
11607
11608 \end_inset
11609 </cell>
11610 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11611 \begin_inset Text
11612
11613 \begin_layout Plain Layout
11614 9
11615 \end_layout
11616
11617 \end_inset
11618 </cell>
11619 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11620 \begin_inset Text
11621
11622 \begin_layout Plain Layout
11623 \begin_inset Formula $A\! B$
11624 \end_inset
11625
11626
11627 \end_layout
11628
11629 \end_inset
11630 </cell>
11631 </row>
11632 </lyxtabular>
11633
11634 \end_inset
11635
11636
11637 \end_layout
11638
11639 \begin_layout Standard
11640 Leerraum
11641 \begin_inset space ~
11642 \end_inset
11643
11644 5
11645 \begin_inset space \thinspace{}
11646 \end_inset
11647
11648 --
11649 \begin_inset space \thinspace{}
11650 \end_inset
11651
11652 7 sind variable Leerräume, die in 
11653 \begin_inset CommandInset ref
11654 LatexCommand ref
11655 reference "sub:Variabler-Leerraum"
11656
11657 \end_inset
11658
11659  erläutert sind.
11660  Leerraum
11661 \begin_inset space ~
11662 \end_inset
11663
11664 9 scheint überhaupt keinen Leerraum zu produzieren.
11665  Er ist in LyX allerdings auch im Gegensatz zu allen anderen rot eingefärbt,
11666  denn er erstellt negativen Leerraum.
11667  Es gibt noch zwei weitere negative Leerräume:
11668 \begin_inset VSpace -4mm
11669 \end_inset
11670
11671
11672 \end_layout
11673
11674 \begin_layout Standard
11675 \align center
11676 \begin_inset Tabular
11677 <lyxtabular version="3" rows="3" columns="3">
11678 <features rotate="0" tabularvalignment="middle">
11679 <column alignment="center" valignment="middle" width="6.8cm">
11680 <column alignment="center" valignment="top" width="0pt">
11681 <column alignment="center" valignment="top" width="0pt">
11682 <row>
11683 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11684 \begin_inset Text
11685
11686 \begin_layout Plain Layout
11687 Befehl
11688 \end_layout
11689
11690 \end_inset
11691 </cell>
11692 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11693 \begin_inset Text
11694
11695 \begin_layout Plain Layout
11696
11697 \backslash
11698 negmedspace
11699 \end_layout
11700
11701 \end_inset
11702 </cell>
11703 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11704 \begin_inset Text
11705
11706 \begin_layout Plain Layout
11707
11708 \backslash
11709 negthickspace
11710 \end_layout
11711
11712 \end_inset
11713 </cell>
11714 </row>
11715 <row>
11716 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11717 \begin_inset Text
11718
11719 \begin_layout Plain Layout
11720 Anzahl der Leertastendrücke nach Eingabe des geschützten Leerzeichens
11721 \end_layout
11722
11723 \end_inset
11724 </cell>
11725 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11726 \begin_inset Text
11727
11728 \begin_layout Plain Layout
11729 10
11730 \end_layout
11731
11732 \end_inset
11733 </cell>
11734 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
11735 \begin_inset Text
11736
11737 \begin_layout Plain Layout
11738 11
11739 \end_layout
11740
11741 \end_inset
11742 </cell>
11743 </row>
11744 <row>
11745 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11746 \begin_inset Text
11747
11748 \begin_layout Plain Layout
11749 Ergebnis
11750 \end_layout
11751
11752 \end_inset
11753 </cell>
11754 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11755 \begin_inset Text
11756
11757 \begin_layout Plain Layout
11758 \begin_inset Formula $A\negmedspace B$
11759 \end_inset
11760
11761
11762 \end_layout
11763
11764 \end_inset
11765 </cell>
11766 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
11767 \begin_inset Text
11768
11769 \begin_layout Plain Layout
11770 \begin_inset Formula $A\negthickspace B$
11771 \end_inset
11772
11773
11774 \end_layout
11775
11776 \end_inset
11777 </cell>
11778 </row>
11779 </lyxtabular>
11780
11781 \end_inset
11782
11783
11784 \end_layout
11785
11786 \begin_layout Standard
11787 Negative Leerräume bewirken, dass sich benachbarte Zeichen überschneiden.
11788  Man kann auf diese Weise Ligaturen erzwingen, was z.
11789 \begin_inset space \thinspace{}
11790 \end_inset
11791
11792 B.
11793  für Summenzeichen von Nutzen ist:
11794 \begin_inset VSpace -4mm
11795 \end_inset
11796
11797
11798 \end_layout
11799
11800 \begin_layout Standard
11801 \align center
11802 \begin_inset Tabular
11803 <lyxtabular version="3" rows="3" columns="2">
11804 <features rotate="0" tabularvalignment="middle">
11805 <column alignment="center" valignment="top">
11806 <column alignment="center" valignment="top">
11807 <row>
11808 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11809 \begin_inset Text
11810
11811 \begin_layout Plain Layout
11812 Befehl
11813 \end_layout
11814
11815 \end_inset
11816 </cell>
11817 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11818 \begin_inset Text
11819
11820 \begin_layout Plain Layout
11821 Ergebnis
11822 \begin_inset Note Note
11823 status collapsed
11824
11825 \begin_layout Plain Layout
11826
11827 \series bold
11828
11829 \backslash
11830 raisebox
11831 \series default
11832  dient nur als Abstandhalter.
11833 \end_layout
11834
11835 \end_inset
11836
11837
11838 \end_layout
11839
11840 \end_inset
11841 </cell>
11842 </row>
11843 <row>
11844 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11845 \begin_inset Text
11846
11847 \begin_layout Plain Layout
11848
11849 \backslash
11850 sum
11851 \backslash
11852 sum
11853 \begin_inset space \textvisiblespace{}
11854 \end_inset
11855
11856 f_kl
11857 \end_layout
11858
11859 \end_inset
11860 </cell>
11861 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11862 \begin_inset Text
11863
11864 \begin_layout Plain Layout
11865 \begin_inset Formula $\raisebox{4.5mm}{}\sum\sum f_{kl}\raisebox{-2.5mm}{}$
11866 \end_inset
11867
11868
11869 \end_layout
11870
11871 \end_inset
11872 </cell>
11873 </row>
11874 <row>
11875 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11876 \begin_inset Text
11877
11878 \begin_layout Plain Layout
11879
11880 \backslash
11881 sum
11882 \backslash
11883 negmedspace
11884 \backslash
11885 sum
11886 \begin_inset space \textvisiblespace{}
11887 \end_inset
11888
11889 f_kl
11890 \end_layout
11891
11892 \end_inset
11893 </cell>
11894 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11895 \begin_inset Text
11896
11897 \begin_layout Plain Layout
11898 \begin_inset Formula $\raisebox{4.5mm}{}\sum\negmedspace\sum f_{kl}\raisebox{-2.5mm}{}$
11899 \end_inset
11900
11901
11902 \end_layout
11903
11904 \end_inset
11905 </cell>
11906 </row>
11907 </lyxtabular>
11908
11909 \end_inset
11910
11911
11912 \end_layout
11913
11914 \begin_layout Standard
11915 \noindent
11916 \begin_inset VSpace medskip
11917 \end_inset
11918
11919
11920 \end_layout
11921
11922 \begin_layout Standard
11923 \noindent
11924 Relationen, wie z.
11925 \begin_inset space \thinspace{}
11926 \end_inset
11927
11928 B.
11929  Gleichheitszeichen, sind immer von Leerraum umgeben.
11930  Will man dies unterdrücken, schreibt man das Gleichheitszeichen in eine
11931  TeX-Klammer.
11932  Die Wirkung kann man an folgendem Beispiel gut erkennen:
11933 \begin_inset VSpace -4mm
11934 \end_inset
11935
11936
11937 \end_layout
11938
11939 \begin_layout Standard
11940 \align center
11941 \begin_inset Tabular
11942 <lyxtabular version="3" rows="2" columns="2">
11943 <features rotate="0" tabularvalignment="middle">
11944 <column alignment="center" valignment="top" width="0pt">
11945 <column alignment="center" valignment="top" width="0pt">
11946 <row>
11947 <cell alignment="center" valignment="top" usebox="none">
11948 \begin_inset Text
11949
11950 \begin_layout Plain Layout
11951 normale Gleichung
11952 \end_layout
11953
11954 \end_inset
11955 </cell>
11956 <cell alignment="center" valignment="top" usebox="none">
11957 \begin_inset Text
11958
11959 \begin_layout Plain Layout
11960 \begin_inset Formula $A=B$
11961 \end_inset
11962
11963
11964 \end_layout
11965
11966 \end_inset
11967 </cell>
11968 </row>
11969 <row>
11970 <cell alignment="center" valignment="top" usebox="none">
11971 \begin_inset Text
11972
11973 \begin_layout Plain Layout
11974 \begin_inset Note Note
11975 status collapsed
11976
11977 \begin_layout Plain Layout
11978
11979 \series bold
11980
11981 \backslash
11982 raisebox
11983 \series default
11984  dient nur als Abstandhalter.
11985 \end_layout
11986
11987 \end_inset
11988
11989
11990 \begin_inset Formula $\raisebox{5mm}{}$
11991 \end_inset
11992
11993 Gleichung ohne Leerraum
11994 \end_layout
11995
11996 \end_inset
11997 </cell>
11998 <cell multicolumn="1" alignment="center" valignment="top" usebox="none">
11999 \begin_inset Text
12000
12001 \begin_layout Plain Layout
12002 \begin_inset Formula $A{=}B$
12003 \end_inset
12004
12005
12006 \end_layout
12007
12008 \end_inset
12009 </cell>
12010 </row>
12011 </lyxtabular>
12012
12013 \end_inset
12014
12015
12016 \end_layout
12017
12018 \begin_layout Standard
12019 Der Befehl für die letzte Formel lautet: 
12020 \series bold
12021 A
12022 \backslash
12023 {=
12024 \begin_inset Formula $\to$
12025 \end_inset
12026
12027 B
12028 \end_layout
12029
12030 \begin_layout Standard
12031 \begin_inset VSpace bigskip
12032 \end_inset
12033
12034 Leerräumen werden für physikalische Einheiten benötigt, denn zwischen Wert
12035  und Einheit ist der kleinste Leerraum und kein normales Leerzeichen.
12036  Bei Einheiten im Text fügt man den kleinsten Leerraum über das Menü 
12037 \family sans
12038 Einfügen\SpecialChar \menuseparator
12039 Formatierung\SpecialChar \menuseparator
12040 Kleiner
12041 \begin_inset space ~
12042 \end_inset
12043
12044 Abstand
12045 \family default
12046  (Tastenkürzel 
12047 \family sans
12048 Strg+Shift+Leertaste
12049 \family default
12050 ) ein.
12051 \end_layout
12052
12053 \begin_layout Standard
12054 Ein Beispiel zur Veranschaulichung:
12055 \end_layout
12056
12057 \begin_layout Standard
12058 \begin_inset Tabular
12059 <lyxtabular version="3" rows="2" columns="2">
12060 <features rotate="0" tabularvalignment="middle">
12061 <column alignment="left" valignment="top">
12062 <column alignment="left" valignment="top">
12063 <row>
12064 <cell alignment="center" valignment="top" usebox="none">
12065 \begin_inset Text
12066
12067 \begin_layout Plain Layout
12068 24 kW
12069 \begin_inset Formula $\cdot$
12070 \end_inset
12071
12072 h
12073 \end_layout
12074
12075 \end_inset
12076 </cell>
12077 <cell alignment="center" valignment="top" usebox="none">
12078 \begin_inset Text
12079
12080 \begin_layout Plain Layout
12081 Leerzeichen zwischen Wert und Einheit
12082 \end_layout
12083
12084 \end_inset
12085 </cell>
12086 </row>
12087 <row>
12088 <cell alignment="center" valignment="top" usebox="none">
12089 \begin_inset Text
12090
12091 \begin_layout Plain Layout
12092 24
12093 \begin_inset space \thinspace{}
12094 \end_inset
12095
12096 kW
12097 \begin_inset Formula $\cdot$
12098 \end_inset
12099
12100 h
12101 \end_layout
12102
12103 \end_inset
12104 </cell>
12105 <cell alignment="center" valignment="top" usebox="none">
12106 \begin_inset Text
12107
12108 \begin_layout Plain Layout
12109 kleinster Leerraum zwischen Wert und Einheit
12110 \end_layout
12111
12112 \end_inset
12113 </cell>
12114 </row>
12115 </lyxtabular>
12116
12117 \end_inset
12118
12119
12120 \end_layout
12121
12122 \begin_layout Subsection
12123 Variabler Leerraum
12124 \begin_inset ERT
12125 status collapsed
12126
12127 \begin_layout Plain Layout
12128
12129
12130 \backslash
12131 texorpdfstring{
12132 \end_layout
12133
12134 \end_inset
12135
12136
12137 \begin_inset Foot
12138 status collapsed
12139
12140 \begin_layout Plain Layout
12141 für vertikalen Leerraum in Formeln siehe 
12142 \begin_inset CommandInset ref
12143 LatexCommand ref
12144 reference "sub:Zeilenabstand"
12145
12146 \end_inset
12147
12148
12149 \end_layout
12150
12151 \end_inset
12152
12153
12154 \begin_inset ERT
12155 status collapsed
12156
12157 \begin_layout Plain Layout
12158
12159 }{}
12160 \end_layout
12161
12162 \end_inset
12163
12164
12165 \begin_inset Note Note
12166 status collapsed
12167
12168 \begin_layout Plain Layout
12169
12170 \series bold
12171
12172 \backslash
12173 texorpdfstring
12174 \series default
12175  dient dazu, dass die Fußnote nicht mit im PDF-Lesezeichen erscheint.
12176 \end_layout
12177
12178 \begin_layout Plain Layout
12179 Näheres zu 
12180 \series bold
12181
12182 \backslash
12183 texorpdfstring
12184 \series default
12185  steht in Kapitel 
12186 \begin_inset CommandInset ref
12187 LatexCommand ref
12188 reference "sub:Formeln-in-Überschriften"
12189
12190 \end_inset
12191
12192 .
12193 \end_layout
12194
12195 \end_inset
12196
12197
12198 \begin_inset CommandInset label
12199 LatexCommand label
12200 name "sub:Variabler-Leerraum"
12201
12202 \end_inset
12203
12204
12205 \begin_inset Index idx
12206 status collapsed
12207
12208 \begin_layout Plain Layout
12209 Leerraum ! horizontaler ! variabel
12210 \end_layout
12211
12212 \end_inset
12213
12214
12215 \end_layout
12216
12217 \begin_layout Standard
12218 Leerraum mit vorgegebener Länge lässt sich mit dem Befehl 
12219 \series bold
12220
12221 \backslash
12222 hspace
12223 \series default
12224
12225 \begin_inset Index idx
12226 status collapsed
12227
12228 \begin_layout Plain Layout
12229 Befehle ! H ! 
12230 \backslash
12231 hspace
12232 \end_layout
12233
12234 \end_inset
12235
12236  einfügen.
12237  Es erscheint ein langes 
12238 \begin_inset Quotes gld
12239 \end_inset
12240
12241
12242 \color blue
12243
12244 \begin_inset space \textvisiblespace{}
12245 \end_inset
12246
12247
12248 \color inherit
12249
12250 \begin_inset Quotes grd
12251 \end_inset
12252
12253 .
12254  Die Länge kann eingestellt werden, indem man mit der linken Maustaste auf
12255  das 
12256 \begin_inset Quotes gld
12257 \end_inset
12258
12259
12260 \color blue
12261
12262 \begin_inset space \textvisiblespace{}
12263 \end_inset
12264
12265
12266 \color inherit
12267
12268 \begin_inset Quotes grd
12269 \end_inset
12270
12271  klickt.
12272  Die Länge darf auch negativ sein.
12273  Wenn ein Leerraum das erste Zeichen in einer Zeile ist, wird er automatisch
12274  weggelassen.
12275  Um seine Ausgabe zu erzwingen, verwendet man den Befehl 
12276 \series bold
12277
12278 \backslash
12279 hspace*
12280 \series default
12281  statt 
12282 \series bold
12283
12284 \backslash
12285 hspace
12286 \series default
12287  oder klickt mit der linken Maustaste auf das 
12288 \begin_inset Quotes gld
12289 \end_inset
12290
12291
12292 \color blue
12293
12294 \begin_inset space \textvisiblespace{}
12295 \end_inset
12296
12297
12298 \color inherit
12299
12300 \begin_inset Quotes grd
12301 \end_inset
12302
12303  und wählt die Option 
12304 \family sans
12305 Schützen
12306 \family default
12307  aus.
12308 \begin_inset Newline newline
12309 \end_inset
12310
12311 Um so viel Leerraum einzufügen, dass die Formel allen verfügbaren Platz
12312  einnimmt, benutzt man den Befehl 
12313 \series bold
12314
12315 \backslash
12316 hfill
12317 \series default
12318
12319 \begin_inset Index idx
12320 status collapsed
12321
12322 \begin_layout Plain Layout
12323 Befehle ! H ! 
12324 \backslash
12325 hfill
12326 \end_layout
12327
12328 \end_inset
12329
12330 .
12331 \end_layout
12332
12333 \begin_layout Standard
12334 \begin_inset VSpace -1mm
12335 \end_inset
12336
12337
12338 \end_layout
12339
12340 \begin_layout Standard
12341 \align center
12342 \begin_inset Tabular
12343 <lyxtabular version="3" rows="4" columns="2">
12344 <features rotate="0" tabularvalignment="middle">
12345 <column alignment="center" valignment="top">
12346 <column alignment="center" valignment="top">
12347 <row>
12348 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12349 \begin_inset Text
12350
12351 \begin_layout Plain Layout
12352 Befehl (
12353 \backslash
12354 hspace Länge)
12355 \end_layout
12356
12357 \end_inset
12358 </cell>
12359 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12360 \begin_inset Text
12361
12362 \begin_layout Plain Layout
12363 Ergebnis
12364 \end_layout
12365
12366 \end_inset
12367 </cell>
12368 </row>
12369 <row>
12370 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12371 \begin_inset Text
12372
12373 \begin_layout Plain Layout
12374 A=B
12375 \backslash
12376 hspace
12377 \begin_inset space \textvisiblespace{}
12378 \end_inset
12379
12380 A
12381 \backslash
12382 not=C (3
12383 \begin_inset space \thinspace{}
12384 \end_inset
12385
12386 cm)
12387 \end_layout
12388
12389 \end_inset
12390 </cell>
12391 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12392 \begin_inset Text
12393
12394 \begin_layout Plain Layout
12395 \begin_inset Formula $A=B\hspace{3cm}A\not=C$
12396 \end_inset
12397
12398
12399 \end_layout
12400
12401 \end_inset
12402 </cell>
12403 </row>
12404 <row>
12405 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12406 \begin_inset Text
12407
12408 \begin_layout Plain Layout
12409 A
12410 \backslash
12411 hspace
12412 \begin_inset space \textvisiblespace{}
12413 \end_inset
12414
12415 A
12416 \backslash
12417 not=A (-1
12418 \begin_inset space \thinspace{}
12419 \end_inset
12420
12421 mm)
12422 \end_layout
12423
12424 \end_inset
12425 </cell>
12426 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12427 \begin_inset Text
12428
12429 \begin_layout Plain Layout
12430 \begin_inset Formula $A\hspace{-1mm}A\not=A$
12431 \end_inset
12432
12433
12434 \end_layout
12435
12436 \end_inset
12437 </cell>
12438 </row>
12439 <row>
12440 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12441 \begin_inset Text
12442
12443 \begin_layout Plain Layout
12444 A=A
12445 \backslash
12446 hfill
12447 \begin_inset space \textvisiblespace{}
12448 \end_inset
12449
12450 B=B
12451 \end_layout
12452
12453 \end_inset
12454 </cell>
12455 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12456 \begin_inset Text
12457
12458 \begin_layout Plain Layout
12459 \begin_inset Formula $A=A\hfill B=B$
12460 \end_inset
12461
12462
12463 \end_layout
12464
12465 \end_inset
12466 </cell>
12467 </row>
12468 </lyxtabular>
12469
12470 \end_inset
12471
12472
12473 \end_layout
12474
12475 \begin_layout Standard
12476 Im letzten Beispiel ist der verfügbare Platz durch die Länge des längsten
12477  Spalteneintrags der Tabelle vorgegeben.
12478  In einer eingebetteten Formel ist der Platz von der Länge der Zeile abhängig,
12479  in die 
12480 \series bold
12481
12482 \backslash
12483 hfill
12484 \series default
12485  eingegeben wird.
12486  Füllt eine Zeile die Breite komplett aus, wird demnach kein Leerraum erstellt.
12487  
12488 \series bold
12489
12490 \backslash
12491 hfill
12492 \series default
12493  wirkt in abgesetzten Formeln nur, wenn der Formelstil 
12494 \series bold
12495 Eingerückt
12496 \series default
12497  eingestellt ist.
12498  (Formelstile sind in 
12499 \begin_inset CommandInset ref
12500 LatexCommand ref
12501 reference "sec:Formelstile"
12502
12503 \end_inset
12504
12505  erklärt.)
12506 \end_layout
12507
12508 \begin_layout Standard
12509 Neben 
12510 \series bold
12511
12512 \backslash
12513 hfill
12514 \series default
12515  gibt es noch die Befehle 
12516 \series bold
12517
12518 \backslash
12519 dotfill
12520 \series default
12521  und 
12522 \series bold
12523
12524 \backslash
12525 hrulefill
12526 \series default
12527 , die den Leerraum mit einem Muster füllen, siehe 
12528 \begin_inset CommandInset ref
12529 LatexCommand ref
12530 reference "sub:Fortsetzungspunkte"
12531
12532 \end_inset
12533
12534  für ein Beispiel.
12535 \end_layout
12536
12537 \begin_layout Standard
12538 Variabler Leerraum kann für Text über das Menü 
12539 \family sans
12540 Einfügen\SpecialChar \menuseparator
12541 Formatierung\SpecialChar \menuseparator
12542 Horizontaler
12543 \begin_inset space ~
12544 \end_inset
12545
12546 Abstand
12547 \family default
12548  eingefügt werden:
12549 \end_layout
12550
12551 \begin_layout Standard
12552 Dies ist eine Zeile mit
12553 \begin_inset space \hspace{}
12554 \length 2cm
12555 \end_inset
12556
12557 2
12558 \begin_inset space \thinspace{}
12559 \end_inset
12560
12561 cm Leerraum.
12562 \end_layout
12563
12564 \begin_layout Standard
12565 Dies ist eine Zeile mit
12566 \begin_inset space \hfill{}
12567 \end_inset
12568
12569 maximalem Leerraum.
12570 \end_layout
12571
12572 \begin_layout Subsection
12573 Leerraum neben eingebetteten Formeln
12574 \begin_inset Index idx
12575 status collapsed
12576
12577 \begin_layout Plain Layout
12578 Leerraum ! neben eingebetteten Formeln
12579 \end_layout
12580
12581 \end_inset
12582
12583
12584 \end_layout
12585
12586 \begin_layout Standard
12587 Über die Länge 
12588 \series bold
12589
12590 \backslash
12591 mathsurround
12592 \series default
12593
12594 \begin_inset Index idx
12595 status collapsed
12596
12597 \begin_layout Plain Layout
12598 Befehle ! M ! 
12599 \backslash
12600 mathsurround
12601 \end_layout
12602
12603 \end_inset
12604
12605  lässt sich der Leerraum einstellen, der neben eingebettete Formeln gesetzt
12606  wird.
12607  Der Wert einer Länge wird mit dem Befehl 
12608 \series bold
12609
12610 \backslash
12611 setlength
12612 \series default
12613
12614 \begin_inset Index idx
12615 status collapsed
12616
12617 \begin_layout Plain Layout
12618 Befehle ! S ! 
12619 \backslash
12620 setlength
12621 \end_layout
12622
12623 \end_inset
12624
12625  gesetzt.
12626  Dieser besitzt folgendes Befehlsschema:
12627 \end_layout
12628
12629 \begin_layout Standard
12630
12631 \series bold
12632
12633 \backslash
12634 setlength{Längenname}{Wert}
12635 \end_layout
12636
12637 \begin_layout Standard
12638 Um 
12639 \series bold
12640
12641 \backslash
12642 mathsurround
12643 \series default
12644  den Wert 5
12645 \begin_inset space \thinspace{}
12646 \end_inset
12647
12648 mm zuzuweisen, gibt man im TeX-Modus den Befehl
12649 \end_layout
12650
12651 \begin_layout Standard
12652
12653 \series bold
12654
12655 \backslash
12656 setlength{
12657 \backslash
12658 mathsurround}{5mm}
12659 \end_layout
12660
12661 \begin_layout Standard
12662 ein.
12663  Neben alle eingebetteten Formeln, die auf den Befehl folgen, wird nun 5
12664 \begin_inset space \thinspace{}
12665 \end_inset
12666
12667 mm Leerraum gesetzt:
12668 \begin_inset ERT
12669 status collapsed
12670
12671 \begin_layout Plain Layout
12672
12673
12674 \backslash
12675 setlength{
12676 \backslash
12677 mathsurround}{5mm}
12678 \end_layout
12679
12680 \end_inset
12681
12682
12683 \end_layout
12684
12685 \begin_layout Standard
12686 Dies ist eine Zeile in der sich 
12687 \begin_inset Formula $A=B$
12688 \end_inset
12689
12690  eine Formel mit 5
12691 \begin_inset space \thinspace{}
12692 \end_inset
12693
12694 mm umgebendem Leerraum befindet.
12695 \begin_inset ERT
12696 status collapsed
12697
12698 \begin_layout Plain Layout
12699
12700
12701 \backslash
12702 setlength{
12703 \backslash
12704 mathsurround}{0pt}
12705 \end_layout
12706
12707 \end_inset
12708
12709
12710 \end_layout
12711
12712 \begin_layout Standard
12713 Um wieder zum voreingestellten Wert zurückzukehren, setzt man 
12714 \series bold
12715
12716 \backslash
12717 mathsurround
12718 \series default
12719  auf den Wert 0
12720 \begin_inset space \thinspace{}
12721 \end_inset
12722
12723 pt.
12724 \end_layout
12725
12726 \begin_layout Section
12727 Boxen und Rahmen
12728 \begin_inset Index idx
12729 status collapsed
12730
12731 \begin_layout Plain Layout
12732 Boxen
12733 \end_layout
12734
12735 \end_inset
12736
12737
12738 \begin_inset Index idx
12739 status collapsed
12740
12741 \begin_layout Plain Layout
12742 Rahmen | see
12743 \begin_inset ERT
12744 status collapsed
12745
12746 \begin_layout Plain Layout
12747
12748 {
12749 \end_layout
12750
12751 \end_inset
12752
12753 Boxen
12754 \begin_inset ERT
12755 status collapsed
12756
12757 \begin_layout Plain Layout
12758
12759 }
12760 \end_layout
12761
12762 \end_inset
12763
12764
12765 \end_layout
12766
12767 \end_inset
12768
12769
12770 \end_layout
12771
12772 \begin_layout Standard
12773 Boxen für Text sind im Kapitel 
12774 \family typewriter
12775 Boxen
12776 \family default
12777  im Handbuch 
12778 \family typewriter
12779 Eingebettete
12780 \begin_inset space ~
12781 \end_inset
12782
12783 Objekte
12784 \family default
12785  beschrieben.
12786 \end_layout
12787
12788 \begin_layout Subsection
12789 Boxen mit Rahmen
12790 \begin_inset CommandInset label
12791 LatexCommand label
12792 name "sub:Boxen-mit-Rahmen"
12793
12794 \end_inset
12795
12796
12797 \begin_inset Index idx
12798 status collapsed
12799
12800 \begin_layout Plain Layout
12801 Boxen ! mit Rahmen
12802 \end_layout
12803
12804 \end_inset
12805
12806
12807 \end_layout
12808
12809 \begin_layout Standard
12810 Es ist möglich Formeln oder Teile davon mit den Befehlen 
12811 \series bold
12812
12813 \backslash
12814 fbox
12815 \series default
12816
12817 \begin_inset Index idx
12818 status collapsed
12819
12820 \begin_layout Plain Layout
12821 Befehle ! F ! 
12822 \backslash
12823 fbox
12824 \end_layout
12825
12826 \end_inset
12827
12828  und 
12829 \series bold
12830
12831 \backslash
12832 boxed
12833 \series default
12834
12835 \begin_inset Index idx
12836 status collapsed
12837
12838 \begin_layout Plain Layout
12839 Befehle ! B ! 
12840 \backslash
12841 boxed
12842 \end_layout
12843
12844 \end_inset
12845
12846  zu umranden.
12847 \end_layout
12848
12849 \begin_layout Standard
12850 Gibt man einen dieser Befehle in eine Formel ein, erscheint ein Eingabefeld
12851  in einem Rahmen.
12852  Bei 
12853 \series bold
12854
12855 \backslash
12856 fbox
12857 \series default
12858  muss in diesem Eingabefeld mit 
12859 \family sans
12860 Strg+M
12861 \family default
12862  noch eine Formel erstellt werden, denn der Inhalt dieser Box wird sonst
12863  als mathematischer Text behandelt.
12864  Verwendet man 
12865 \series bold
12866
12867 \backslash
12868 boxed
12869 \series default
12870 , wird automatisch im Rahmen eine neue Formel erzeugt.
12871 \end_layout
12872
12873 \begin_layout Standard
12874 Der Befehl 
12875 \series bold
12876
12877 \backslash
12878 fbox
12879 \series default
12880  ist nicht zur Umrandung von abgesetzten Formeln geeignet, denn die Formel
12881  wird dann immer in Textzeilengröße gesetzt.
12882  Im Gegensatz dazu ist 
12883 \series bold
12884
12885 \backslash
12886 boxed
12887 \series default
12888  nicht zur Umrandung von Formeln in einer Textzeile geeignet, denn die Formel
12889  wird dann immer in der Größe einer abgesetzten Formel gesetzt.
12890 \end_layout
12891
12892 \begin_layout Standard
12893 Als Erweiterung zu 
12894 \series bold
12895
12896 \backslash
12897 fbox
12898 \series default
12899  gibt es den Befehl 
12900 \series bold
12901
12902 \backslash
12903 framebox
12904 \series default
12905
12906 \begin_inset Index idx
12907 status collapsed
12908
12909 \begin_layout Plain Layout
12910 Befehle ! F ! 
12911 \backslash
12912 framebox
12913 \end_layout
12914
12915 \end_inset
12916
12917 , bei dem man zusätzlich die Rahmenbreite und die Ausrichtung einstellen
12918  kann.
12919  
12920 \series bold
12921
12922 \backslash
12923 framebox
12924 \series default
12925  wird nach folgendem Schema verwendet:
12926 \end_layout
12927
12928 \begin_layout Standard
12929
12930 \series bold
12931
12932 \backslash
12933 framebox[Rahmenbreite][Position]{Boxinhalt}
12934 \end_layout
12935
12936 \begin_layout Standard
12937 Die Position kann entweder 
12938 \emph on
12939 l
12940 \emph default
12941  oder 
12942 \emph on
12943 r
12944 \emph default
12945  sein.
12946  
12947 \emph on
12948 l
12949 \emph default
12950  bewirkt linksbündige, 
12951 \emph on
12952 r
12953 \emph default
12954  rechtsbündige Ausrichtung der Formel in der Box.
12955  Gibt man keine Position an, wird die Formel zentriert.
12956 \begin_inset Newline newline
12957 \end_inset
12958
12959 Gibt man keine Breite an, darf auch keine Position angegeben werden.
12960  In diesem Falle wird die Rahmenbreite wie bei 
12961 \series bold
12962
12963 \backslash
12964 fbox
12965 \series default
12966  an den Boxinhalt angepasst.
12967 \end_layout
12968
12969 \begin_layout Standard
12970 Wenn man den Befehl 
12971 \series bold
12972
12973 \backslash
12974 framebox
12975 \series default
12976  eingibt, erscheint eine Box mit drei Eingabefeldern.
12977  Die ersten beiden sind von eckigen Klammern umgeben und stehen für die
12978  beiden optionalen Argumente.
12979  In das dritte Feld wird wie bei 
12980 \series bold
12981
12982 \backslash
12983 fbox
12984 \series default
12985  die Formel eingegeben.
12986 \end_layout
12987
12988 \begin_layout Standard
12989 \align center
12990 \begin_inset Tabular
12991 <lyxtabular version="3" rows="5" columns="2">
12992 <features rotate="0" tabularvalignment="middle">
12993 <column alignment="center" valignment="top">
12994 <column alignment="center" valignment="top">
12995 <row>
12996 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12997 \begin_inset Text
12998
12999 \begin_layout Plain Layout
13000 Befehl
13001 \end_layout
13002
13003 \end_inset
13004 </cell>
13005 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13006 \begin_inset Text
13007
13008 \begin_layout Plain Layout
13009 Ergebnis
13010 \begin_inset Note Note
13011 status collapsed
13012
13013 \begin_layout Plain Layout
13014
13015 \series bold
13016
13017 \backslash
13018 raisebox
13019 \series default
13020  dient nur als Abstandhalter.
13021 \end_layout
13022
13023 \end_inset
13024
13025
13026 \end_layout
13027
13028 \end_inset
13029 </cell>
13030 </row>
13031 <row>
13032 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13033 \begin_inset Text
13034
13035 \begin_layout Plain Layout
13036
13037 \backslash
13038 fbox
13039 \begin_inset space \textvisiblespace{}
13040 \end_inset
13041
13042
13043 \family sans
13044 Strg+M
13045 \family default
13046  
13047 \backslash
13048 int
13049 \begin_inset space \textvisiblespace{}
13050 \end_inset
13051
13052 A=B
13053 \end_layout
13054
13055 \end_inset
13056 </cell>
13057 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13058 \begin_inset Text
13059
13060 \begin_layout Plain Layout
13061 \begin_inset Formula $\raisebox{6mm}{}\fbox{\ensuremath{\int A=B}}\raisebox{-4mm}{}$
13062 \end_inset
13063
13064
13065 \end_layout
13066
13067 \end_inset
13068 </cell>
13069 </row>
13070 <row>
13071 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13072 \begin_inset Text
13073
13074 \begin_layout Plain Layout
13075
13076 \backslash
13077 boxed
13078 \begin_inset space \textvisiblespace{}
13079 \end_inset
13080
13081
13082 \backslash
13083 int
13084 \begin_inset space \textvisiblespace{}
13085 \end_inset
13086
13087 A=B
13088 \end_layout
13089
13090 \end_inset
13091 </cell>
13092 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13093 \begin_inset Text
13094
13095 \begin_layout Plain Layout
13096 \begin_inset Formula $\raisebox{8.5mm}{}\boxed{\int A=B}\raisebox{-6.5mm}{}$
13097 \end_inset
13098
13099
13100 \end_layout
13101
13102 \end_inset
13103 </cell>
13104 </row>
13105 <row>
13106 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13107 \begin_inset Text
13108
13109 \begin_layout Plain Layout
13110 A+
13111 \backslash
13112 fbox
13113 \begin_inset space \textvisiblespace{}
13114 \end_inset
13115
13116 B
13117 \end_layout
13118
13119 \end_inset
13120 </cell>
13121 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13122 \begin_inset Text
13123
13124 \begin_layout Plain Layout
13125 \begin_inset Formula $\raisebox{6mm}{}A+\fbox{B}\raisebox{-3mm}{}$
13126 \end_inset
13127
13128
13129 \end_layout
13130
13131 \end_inset
13132 </cell>
13133 </row>
13134 <row>
13135 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13136 \begin_inset Text
13137
13138 \begin_layout Plain Layout
13139
13140 \backslash
13141 framebox
13142 \begin_inset space \textvisiblespace{}
13143 \end_inset
13144
13145 20mm
13146 \begin_inset Formula $\to$
13147 \end_inset
13148
13149
13150 \begin_inset Formula $\to$
13151 \end_inset
13152
13153
13154 \family sans
13155 Strg+M
13156 \family default
13157  
13158 \backslash
13159 frac
13160 \begin_inset space \textvisiblespace{}
13161 \end_inset
13162
13163 A
13164 \begin_inset Formula $\downarrow$
13165 \end_inset
13166
13167 B
13168 \end_layout
13169
13170 \end_inset
13171 </cell>
13172 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13173 \begin_inset Text
13174
13175 \begin_layout Plain Layout
13176 \begin_inset Formula $\raisebox{6mm}{}$
13177 \end_inset
13178
13179
13180 \begin_inset Formula $\framebox[20mm][]{\ensuremath{\frac{A}{B}}}$
13181 \end_inset
13182
13183
13184 \begin_inset Formula $\raisebox{-4mm}{}$
13185 \end_inset
13186
13187
13188 \end_layout
13189
13190 \end_inset
13191 </cell>
13192 </row>
13193 </lyxtabular>
13194
13195 \end_inset
13196
13197
13198 \end_layout
13199
13200 \begin_layout Standard
13201 Die Rahmendicke kann ebenfalls eingestellt werden.
13202  Dazu müssen vor der Formel im TeX-Modus die Befehle
13203 \end_layout
13204
13205 \begin_layout Standard
13206
13207 \series bold
13208
13209 \backslash
13210 fboxrule
13211 \series default
13212  
13213 \series bold
13214
13215 \begin_inset Quotes gld
13216 \end_inset
13217
13218 Dicke
13219 \begin_inset Quotes grd
13220 \end_inset
13221
13222
13223 \series default
13224  
13225 \series bold
13226
13227 \backslash
13228 fboxsep
13229 \series default
13230  
13231 \series bold
13232
13233 \begin_inset Quotes gld
13234 \end_inset
13235
13236 Abstand
13237 \begin_inset Quotes grd
13238 \end_inset
13239
13240
13241 \end_layout
13242
13243 \begin_layout Standard
13244 eingegeben werden.
13245  
13246 \begin_inset Quotes gld
13247 \end_inset
13248
13249 Abstand
13250 \begin_inset Quotes grd
13251 \end_inset
13252
13253  legt dabei den minimalen Abstand zwischen Rahmen und dem ersten Zeichen
13254  in der Box fest.
13255  Ein Beispiel dafür ist folgende umrandete Formel:
13256 \begin_inset ERT
13257 status collapsed
13258
13259 \begin_layout Plain Layout
13260
13261
13262 \backslash
13263 fboxrule 2mm 
13264 \backslash
13265 fboxsep 3mm
13266 \end_layout
13267
13268 \end_inset
13269
13270
13271 \begin_inset Formula 
13272 \[
13273 \boxed{A+B=C}
13274 \]
13275
13276 \end_inset
13277
13278 Vor dieser Formel wurde im TeX-Modus
13279 \end_layout
13280
13281 \begin_layout Standard
13282
13283 \series bold
13284
13285 \backslash
13286 fboxrule
13287 \series default
13288  
13289 \series bold
13290 2mm
13291 \series default
13292  
13293 \series bold
13294
13295 \backslash
13296 fboxsep
13297 \series default
13298  
13299 \series bold
13300 3mm
13301 \end_layout
13302
13303 \begin_layout Standard
13304 eingegeben.
13305  Diese angegeben Werte werden für alle folgenden Boxen verwendet.
13306 \end_layout
13307
13308 \begin_layout Standard
13309 Möchte man wieder zur Standardrahmengröße zurückkehren, gibt man vor der
13310  nächsten Formel im TeX-Modus folgende Befehle ein:
13311 \end_layout
13312
13313 \begin_layout Standard
13314
13315 \series bold
13316
13317 \backslash
13318 fboxrule
13319 \series default
13320  
13321 \series bold
13322 0.4pt
13323 \series default
13324  
13325 \series bold
13326
13327 \backslash
13328 fboxsep
13329 \series default
13330  
13331 \series bold
13332 3pt
13333 \series default
13334
13335 \begin_inset ERT
13336 status collapsed
13337
13338 \begin_layout Plain Layout
13339
13340
13341 \backslash
13342 fboxrule 0.4pt 
13343 \backslash
13344 fboxsep 3pt
13345 \end_layout
13346
13347 \end_inset
13348
13349
13350 \end_layout
13351
13352 \begin_layout Subsection
13353 Boxen ohne Rahmen
13354 \begin_inset CommandInset label
13355 LatexCommand label
13356 name "sub:Boxen-ohne-Rahmen"
13357
13358 \end_inset
13359
13360
13361 \begin_inset Index idx
13362 status collapsed
13363
13364 \begin_layout Plain Layout
13365 Boxen ! ohne Rahmen
13366 \end_layout
13367
13368 \end_inset
13369
13370
13371 \end_layout
13372
13373 \begin_layout Standard
13374 Für Boxen ohne Rahmen gibt es folgende Box-Befehle: 
13375 \series bold
13376
13377 \backslash
13378 mbox
13379 \series default
13380
13381 \begin_inset Index idx
13382 status collapsed
13383
13384 \begin_layout Plain Layout
13385 Befehle ! M ! 
13386 \backslash
13387 mbox
13388 \end_layout
13389
13390 \end_inset
13391
13392
13393 \series bold
13394
13395 \backslash
13396 makebox
13397 \series default
13398
13399 \begin_inset Index idx
13400 status collapsed
13401
13402 \begin_layout Plain Layout
13403 Befehle ! M ! 
13404 \backslash
13405 makebox
13406 \end_layout
13407
13408 \end_inset
13409
13410  und
13411 \begin_inset Newline linebreak
13412 \end_inset
13413
13414
13415 \series bold
13416
13417 \backslash
13418 raisebox
13419 \series default
13420
13421 \begin_inset Index idx
13422 status collapsed
13423
13424 \begin_layout Plain Layout
13425 Befehle ! R ! 
13426 \backslash
13427 raisebox
13428 \end_layout
13429
13430 \end_inset
13431
13432
13433 \end_layout
13434
13435 \begin_layout Standard
13436 Mit 
13437 \series bold
13438
13439 \backslash
13440 raisebox
13441 \series default
13442  kann man eine Box hoch- oder tiefstellen.
13443  Allerdings behalten die Zeichen in der Box im Gegensatz zum normalen Hochstelle
13444 n die Schriftgröße bei.
13445  
13446 \series bold
13447
13448 \backslash
13449 raisebox
13450 \series default
13451  wird dabei mit folgendem Schema benutzt:
13452 \end_layout
13453
13454 \begin_layout Standard
13455
13456 \series bold
13457
13458 \backslash
13459 raisebox{Höhe}{Boxinhalt}
13460 \end_layout
13461
13462 \begin_layout Standard
13463 Soll in der Box eine Formel stehen, muss man wie bei 
13464 \series bold
13465
13466 \backslash
13467 fbox
13468 \series default
13469  eine weitere Formel erstellen.
13470  
13471 \begin_inset Note Greyedout
13472 status open
13473
13474 \begin_layout Plain Layout
13475
13476 \series bold
13477 Achtung:
13478 \series default
13479  Für 
13480 \series bold
13481
13482 \backslash
13483 raisebox
13484 \series default
13485  wird diese weitere Formel durch zweimaliges statt einmaliges Drücken von
13486  
13487 \family sans
13488 Strg+M
13489 \family default
13490  erstellt, denn LyX unterstützt 
13491 \series bold
13492
13493 \backslash
13494 raisebox
13495 \series default
13496  noch nicht direkt.
13497 \end_layout
13498
13499 \end_inset
13500
13501
13502 \end_layout
13503
13504 \begin_layout Standard
13505 \align center
13506 \begin_inset Tabular
13507 <lyxtabular version="3" rows="4" columns="2">
13508 <features rotate="0" tabularvalignment="middle">
13509 <column alignment="center" valignment="top">
13510 <column alignment="center" valignment="top">
13511 <row>
13512 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13513 \begin_inset Text
13514
13515 \begin_layout Plain Layout
13516 Befehl
13517 \end_layout
13518
13519 \end_inset
13520 </cell>
13521 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13522 \begin_inset Text
13523
13524 \begin_layout Plain Layout
13525 Ergebnis
13526 \end_layout
13527
13528 \end_inset
13529 </cell>
13530 </row>
13531 <row>
13532 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13533 \begin_inset Text
13534
13535 \begin_layout Plain Layout
13536 H
13537 \backslash
13538 raisebox{2mm
13539 \begin_inset Formula $\to$
13540 \end_inset
13541
13542
13543 \backslash
13544 {al
13545 \begin_inset Formula $\to$
13546 \end_inset
13547
13548  lo
13549 \end_layout
13550
13551 \end_inset
13552 </cell>
13553 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13554 \begin_inset Text
13555
13556 \begin_layout Plain Layout
13557 \begin_inset Formula $H\raisebox{2mm}{al}lo$
13558 \end_inset
13559
13560
13561 \end_layout
13562
13563 \end_inset
13564 </cell>
13565 </row>
13566 <row>
13567 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13568 \begin_inset Text
13569
13570 \begin_layout Plain Layout
13571 H
13572 \backslash
13573 raisebox{-2mm
13574 \begin_inset Formula $\to$
13575 \end_inset
13576
13577
13578 \backslash
13579 {al
13580 \begin_inset Formula $\to$
13581 \end_inset
13582
13583 lo
13584 \end_layout
13585
13586 \end_inset
13587 </cell>
13588 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13589 \begin_inset Text
13590
13591 \begin_layout Plain Layout
13592 \begin_inset Formula $H\raisebox{-2mm}{al}lo$
13593 \end_inset
13594
13595
13596 \end_layout
13597
13598 \end_inset
13599 </cell>
13600 </row>
13601 <row>
13602 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13603 \begin_inset Text
13604
13605 \begin_layout Plain Layout
13606 A=
13607 \backslash
13608 raisebox{-2mm
13609 \begin_inset Formula $\to$
13610 \end_inset
13611
13612
13613 \backslash
13614 {
13615 \family sans
13616 Strg+M Strg+M
13617 \family default
13618  
13619 \backslash
13620 sqrt
13621 \begin_inset space \textvisiblespace{}
13622 \end_inset
13623
13624
13625 \end_layout
13626
13627 \end_inset
13628 </cell>
13629 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13630 \begin_inset Text
13631
13632 \begin_layout Plain Layout
13633 \begin_inset Formula $A=\raisebox{-2mm}{\mbox{\ensuremath{\sqrt{B}}}}$
13634 \end_inset
13635
13636
13637 \end_layout
13638
13639 \end_inset
13640 </cell>
13641 </row>
13642 </lyxtabular>
13643
13644 \end_inset
13645
13646
13647 \end_layout
13648
13649 \begin_layout Standard
13650 Der Befehl 
13651 \series bold
13652
13653 \backslash
13654 mbox
13655 \series default
13656  ist äquivalent zu 
13657 \series bold
13658
13659 \backslash
13660 fbox
13661 \series default
13662  und 
13663 \series bold
13664
13665 \backslash
13666 makebox
13667 \series default
13668  ist äquivalent zu 
13669 \series bold
13670
13671 \backslash
13672 framebox
13673 \series default
13674 , nur dass es keinen Rahmen gibt.
13675 \end_layout
13676
13677 \begin_layout Subsection
13678 Farbige Boxen
13679 \begin_inset CommandInset label
13680 LatexCommand label
13681 name "sub:Farbige-Boxen"
13682
13683 \end_inset
13684
13685
13686 \begin_inset Index idx
13687 status collapsed
13688
13689 \begin_layout Plain Layout
13690 Boxen ! farbige
13691 \end_layout
13692
13693 \end_inset
13694
13695
13696 \end_layout
13697
13698 \begin_layout Standard
13699 Damit die in diesem Kapitel angegebenen Befehle benutzt werden können, muss
13700  im LaTeX-Vorspann das LaTeX-Paket 
13701 \series bold
13702 color
13703 \series default
13704
13705 \begin_inset Foot
13706 status collapsed
13707
13708 \begin_layout Plain Layout
13709 Das Paket 
13710 \series bold
13711 color
13712 \series default
13713  ist Teil jeder LaTeX-Standardinstallation.
13714 \end_layout
13715
13716 \end_inset
13717
13718
13719 \begin_inset Index idx
13720 status collapsed
13721
13722 \begin_layout Plain Layout
13723 Pakete ! color
13724 \end_layout
13725
13726 \end_inset
13727
13728  mit der Zeile
13729 \end_layout
13730
13731 \begin_layout Standard
13732
13733 \series bold
13734
13735 \backslash
13736 usepackage{color}
13737 \end_layout
13738
13739 \begin_layout Standard
13740 geladen werden
13741 \begin_inset Foot
13742 status collapsed
13743
13744 \begin_layout Plain Layout
13745 Wird irgendwo im Dokument Text mit einer vordefinierten Farbe gefärbt, lädt
13746  LyX das LaTeX-Paket 
13747 \series bold
13748 color
13749 \series default
13750  automatisch.
13751  Dadurch kann es vorkommen, dass das Paket doppelt geladen wird, was aber
13752  keine Probleme hervorruft.
13753 \end_layout
13754
13755 \end_inset
13756
13757
13758 \begin_inset Note Note
13759 status collapsed
13760
13761 \begin_layout Plain Layout
13762 Damit das Paket nicht doppelt geladen werden kann, wurde im LaTeX-Vorspann
13763  ein Makro eingefügt.
13764 \end_layout
13765
13766 \end_inset
13767
13768 .
13769 \end_layout
13770
13771 \begin_layout Standard
13772 \begin_inset VSpace medskip
13773 \end_inset
13774
13775 Um Boxen einzufärben, verwendet man den Befehl 
13776 \series bold
13777
13778 \backslash
13779 colorbox
13780 \series default
13781
13782 \begin_inset Index idx
13783 status collapsed
13784
13785 \begin_layout Plain Layout
13786 Befehle ! C ! 
13787 \backslash
13788 colorbox
13789 \end_layout
13790
13791 \end_inset
13792
13793  nach folgendem Schema:
13794 \end_layout
13795
13796 \begin_layout Standard
13797
13798 \series bold
13799
13800 \backslash
13801 colorbox{Farbe}{Boxinhalt}
13802 \end_layout
13803
13804 \begin_layout Standard
13805 Der Boxinhalt kann auch wieder eine Box sein und eine 
13806 \series bold
13807
13808 \backslash
13809 colorbox
13810 \series default
13811  kann auch ein Teil einer anderen Box sein (siehe 2.
13812  und 3.
13813  Beispiel).
13814  Soll in der Box eine Formel stehen, muss wie bei 
13815 \series bold
13816
13817 \backslash
13818 raisebox
13819 \series default
13820  eine weitere Formel erstellt werden.
13821 \begin_inset Foot
13822 status collapsed
13823
13824 \begin_layout Plain Layout
13825 Das gilt auch für den Befehl 
13826 \series bold
13827
13828 \backslash
13829 fcolorbox
13830 \series default
13831 .
13832 \end_layout
13833
13834 \end_inset
13835
13836
13837 \end_layout
13838
13839 \begin_layout Standard
13840 Aus folgenden vordefinierten Farben kann gewählt werden:
13841 \end_layout
13842
13843 \begin_layout Standard
13844
13845 \series bold
13846 black
13847 \series default
13848
13849 \series bold
13850 blue
13851 \series default
13852
13853 \series bold
13854 cyan
13855 \series default
13856
13857 \series bold
13858 green
13859 \series default
13860
13861 \series bold
13862 magenta
13863 \series default
13864
13865 \series bold
13866 red
13867 \series default
13868
13869 \series bold
13870 white
13871 \series default
13872  und 
13873 \series bold
13874 yellow
13875 \end_layout
13876
13877 \begin_layout Standard
13878 \align center
13879 \begin_inset Tabular
13880 <lyxtabular version="3" rows="4" columns="2">
13881 <features rotate="0" tabularvalignment="middle">
13882 <column alignment="center" valignment="top">
13883 <column alignment="center" valignment="top">
13884 <row>
13885 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13886 \begin_inset Text
13887
13888 \begin_layout Plain Layout
13889 Befehl
13890 \end_layout
13891
13892 \end_inset
13893 </cell>
13894 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13895 \begin_inset Text
13896
13897 \begin_layout Plain Layout
13898 Ergebnis
13899 \begin_inset Note Note
13900 status collapsed
13901
13902 \begin_layout Plain Layout
13903
13904 \series bold
13905
13906 \backslash
13907 raisebox
13908 \series default
13909  dient nur als Abstandhalter.
13910 \end_layout
13911
13912 \end_inset
13913
13914
13915 \end_layout
13916
13917 \end_inset
13918 </cell>
13919 </row>
13920 <row>
13921 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13922 \begin_inset Text
13923
13924 \begin_layout Plain Layout
13925
13926 \backslash
13927 colorbox{yellow
13928 \begin_inset Formula $\to$
13929 \end_inset
13930
13931
13932 \backslash
13933 {A=B
13934 \end_layout
13935
13936 \end_inset
13937 </cell>
13938 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13939 \begin_inset Text
13940
13941 \begin_layout Plain Layout
13942 \begin_inset Formula $\raisebox{6mm}{}\colorbox{yellow}{A=B}\raisebox{-3mm}{}$
13943 \end_inset
13944
13945
13946 \end_layout
13947
13948 \end_inset
13949 </cell>
13950 </row>
13951 <row>
13952 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13953 \begin_inset Text
13954
13955 \begin_layout Plain Layout
13956
13957 \backslash
13958 colorbox{green
13959 \begin_inset Formula $\to$
13960 \end_inset
13961
13962
13963 \backslash
13964 {
13965 \backslash
13966 fbox
13967 \begin_inset space \textvisiblespace{}
13968 \end_inset
13969
13970 A=B
13971 \end_layout
13972
13973 \end_inset
13974 </cell>
13975 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13976 \begin_inset Text
13977
13978 \begin_layout Plain Layout
13979 \begin_inset Formula $\raisebox{6mm}{}\colorbox{green}{\fbox{A=B}}\raisebox{-3mm}{}$
13980 \end_inset
13981
13982
13983 \end_layout
13984
13985 \end_inset
13986 </cell>
13987 </row>
13988 <row>
13989 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13990 \begin_inset Text
13991
13992 \begin_layout Plain Layout
13993
13994 \backslash
13995 fbox
13996 \begin_inset space \textvisiblespace{}
13997 \end_inset
13998
13999
14000 \backslash
14001 colorbox{green
14002 \begin_inset Formula $\to$
14003 \end_inset
14004
14005
14006 \backslash
14007 {
14008 \family sans
14009 Strg+M Strg+M
14010 \family default
14011  
14012 \backslash
14013 int
14014 \begin_inset space \textvisiblespace{}
14015 \end_inset
14016
14017 C=D
14018 \end_layout
14019
14020 \end_inset
14021 </cell>
14022 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
14023 \begin_inset Text
14024
14025 \begin_layout Plain Layout
14026 \begin_inset Formula $\raisebox{7mm}{}\fbox{\colorbox{green}{\mbox{\ensuremath{\int C=D}}}}\raisebox{-5mm}{}$
14027 \end_inset
14028
14029
14030 \end_layout
14031
14032 \end_inset
14033 </cell>
14034 </row>
14035 </lyxtabular>
14036
14037 \end_inset
14038
14039
14040 \end_layout
14041
14042 \begin_layout Standard
14043
14044 \series bold
14045
14046 \backslash
14047 colorbox
14048 \series default
14049  färbt nur die Box, nicht aber die Zeichen in der Box ein.
14050  Um alle Zeichen zu färben, markiert man die ganze Formel und wählt im Dialog
14051  
14052 \family sans
14053 Textstil
14054 \family default
14055  die gewünschte Farbe aus.
14056  Der Dialog kann mit dem Werkzeugleistenknopf 
14057 \begin_inset Info
14058 type  "icon"
14059 arg   "dialog-show character"
14060 \end_inset
14061
14062  oder dem Menü 
14063 \family sans
14064 Bearbeiten\SpecialChar \menuseparator
14065 Textstil\SpecialChar \menuseparator
14066 Benutzerdefiniert
14067 \family default
14068  aufgerufen werden.
14069  Die Formelnummer hat dann dieselbe Farbe wie die Formel.
14070  Soll die Formelnummer eine andere Farbe als die Formelzeichen haben, muss
14071  innerhalb der Formel die Farbe geändert werden.
14072 \end_layout
14073
14074 \begin_layout Standard
14075 Ein Beispiel:
14076 \end_layout
14077
14078 \begin_layout Standard
14079
14080 \color red
14081 \begin_inset Formula 
14082 \begin{equation}
14083 \int A=B\label{eq:rot}
14084 \end{equation}
14085
14086 \end_inset
14087
14088
14089 \color green
14090
14091 \begin_inset Formula 
14092 \begin{equation}
14093 \textcolor{red}{\int A=B}\label{eq:rotgruen}
14094 \end{equation}
14095
14096 \end_inset
14097
14098
14099 \end_layout
14100
14101 \begin_layout Standard
14102 Formel 
14103 \begin_inset CommandInset ref
14104 LatexCommand eqref
14105 reference "eq:rot"
14106
14107 \end_inset
14108
14109  ist komplett rot gefärbt.
14110 \begin_inset Newline newline
14111 \end_inset
14112
14113 Formel 
14114 \begin_inset CommandInset ref
14115 LatexCommand eqref
14116 reference "eq:rotgruen"
14117
14118 \end_inset
14119
14120  wurde zuerst komplett grün gefärbt, um die Farbe der Formelnummer festzulegen.
14121  Anschließend wurden die Formelzeichen rot gefärbt.
14122 \end_layout
14123
14124 \begin_layout Standard
14125 \begin_inset VSpace bigskip
14126 \end_inset
14127
14128 Möchte man den Rahmen anders als den Rest der Box färben, verwendet man
14129  den Befehl 
14130 \series bold
14131
14132 \backslash
14133 fcolorbox
14134 \series default
14135
14136 \begin_inset Index idx
14137 status collapsed
14138
14139 \begin_layout Plain Layout
14140 Befehle ! F ! 
14141 \backslash
14142 fcolorbox
14143 \end_layout
14144
14145 \end_inset
14146
14147  nach folgendem Schema:
14148 \end_layout
14149
14150 \begin_layout Standard
14151
14152 \series bold
14153
14154 \backslash
14155 fcolorbox{Rahmenfarbe}{Farbe}{Boxinhalt}
14156 \end_layout
14157
14158 \begin_layout Standard
14159
14160 \series bold
14161
14162 \backslash
14163 fcolorbox
14164 \series default
14165  stellt also eine Erweiterung des Befehls 
14166 \series bold
14167
14168 \backslash
14169 colorbox
14170 \series default
14171  dar.
14172  Die Rahmenbreite wird, wie bei 
14173 \series bold
14174
14175 \backslash
14176 framebox
14177 \series default
14178 , mit 
14179 \series bold
14180
14181 \backslash
14182 fboxrule
14183 \series default
14184  und 
14185 \series bold
14186
14187 \backslash
14188 fboxsep
14189 \series default
14190  festgelegt.
14191  Ein Beispiel:
14192 \begin_inset ERT
14193 status collapsed
14194
14195 \begin_layout Plain Layout
14196
14197
14198 \backslash
14199 fboxrule 1mm 
14200 \backslash
14201 fboxsep 1mm
14202 \end_layout
14203
14204 \end_inset
14205
14206
14207 \begin_inset Formula 
14208 \[
14209 \fcolorbox{cyan}{magenta}{A=B}
14210 \]
14211
14212 \end_inset
14213
14214
14215 \begin_inset ERT
14216 status collapsed
14217
14218 \begin_layout Plain Layout
14219
14220
14221 \backslash
14222 fboxrule 0.4pt 
14223 \backslash
14224 fboxsep 3pt
14225 \end_layout
14226
14227 \end_inset
14228
14229
14230 \end_layout
14231
14232 \begin_layout Standard
14233 Diese Formel wurde mit folgendem Befehl erstellt:
14234 \begin_inset Newline newline
14235 \end_inset
14236
14237
14238 \series bold
14239
14240 \backslash
14241 fcolorbox{cyan
14242 \begin_inset Formula $\to$
14243 \end_inset
14244
14245
14246 \backslash
14247 {magenta
14248 \begin_inset Formula $\to$
14249 \end_inset
14250
14251
14252 \backslash
14253 {A=B
14254 \end_layout
14255
14256 \begin_layout Standard
14257 \begin_inset VSpace bigskip
14258 \end_inset
14259
14260 Um andere als die vordefinierten Farben zu verwenden, muss man diese zuerst
14261  selbst definieren.
14262 \end_layout
14263
14264 \begin_layout Standard
14265 Man kann z.
14266 \begin_inset space \thinspace{}
14267 \end_inset
14268
14269 B.
14270  mit folgender LaTeX-Vorspannzeile die Farbe 
14271 \begin_inset Quotes gld
14272 \end_inset
14273
14274
14275 \series bold
14276 dunkelgruen
14277 \series default
14278
14279 \begin_inset Quotes grd
14280 \end_inset
14281
14282
14283 \begin_inset Foot
14284 status collapsed
14285
14286 \begin_layout Plain Layout
14287 In Befehlen darf kein Umlaut stehen, siehe 
14288 \begin_inset CommandInset ref
14289 LatexCommand ref
14290 reference "sec:Benutzerdefinierte-Befehle"
14291
14292 \end_inset
14293
14294 .
14295 \end_layout
14296
14297 \end_inset
14298
14299  definieren:
14300 \end_layout
14301
14302 \begin_layout Standard
14303
14304 \series bold
14305
14306 \backslash
14307 definecolor{dunkelgruen}{cmyk}{0.5,
14308 \series default
14309  
14310 \series bold
14311 0,
14312 \series default
14313  
14314 \series bold
14315 1,
14316 \series default
14317  
14318 \series bold
14319 0.5}
14320 \series default
14321
14322 \begin_inset Index idx
14323 status collapsed
14324
14325 \begin_layout Plain Layout
14326 Befehle ! D ! 
14327 \backslash
14328 definecolor
14329 \end_layout
14330
14331 \end_inset
14332
14333
14334 \end_layout
14335
14336 \begin_layout Standard
14337
14338 \series bold
14339 cmyk
14340 \series default
14341  ist der Farbraum und steht für die Farben 
14342 \series bold
14343 cyan
14344 \series default
14345
14346 \series bold
14347 magenta
14348 \series default
14349
14350 \series bold
14351 yellow
14352 \series default
14353  und 
14354 \series bold
14355 black
14356 \series default
14357 .
14358  Die vier Zahlen geben der Reihe nach den Anteil der vier Farben an.
14359  Für den Anteil kann man Werte im Bereich 0
14360 \begin_inset space \thinspace{}
14361 \end_inset
14362
14363 -
14364 \begin_inset space \thinspace{}
14365 \end_inset
14366
14367 1 angeben.
14368  Anstelle von 
14369 \series bold
14370 cmyk
14371 \series default
14372  kann man zur Definition auch den Farbraum 
14373 \series bold
14374 rgb
14375 \series default
14376  verwenden.
14377  
14378 \series bold
14379 rgb
14380 \series default
14381  steht für 
14382 \series bold
14383 red
14384 \series default
14385
14386 \series bold
14387 green
14388 \series default
14389  und 
14390 \series bold
14391 blue
14392 \series default
14393 , so dass man dann mit drei Zahlen die Anteile dieser Farben festlegen kann.
14394  Des Weiteren gibt es noch den Farbraum 
14395 \series bold
14396 gray
14397 \series default
14398 , bei dem man mit einer Zahl den Graustufenanteil festlegen kann.
14399 \end_layout
14400
14401 \begin_layout Standard
14402 Als Beispiel eine gerahmte Box mit der neu definierten Farbe 
14403 \series bold
14404 darkgreen
14405 \series default
14406 , bei der die Zeichenfarbe 
14407 \series bold
14408 yellow
14409 \series default
14410  gewählt wurde:
14411 \begin_inset Formula 
14412 \begin{equation}
14413 \colorbox{dunkelgruen}{\color{yellow}\boxed{\int A\,\mathrm{d}x=\frac{\sqrt[5]{B}}{\ln\left(\frac{1}{3}\right)}}}
14414 \end{equation}
14415
14416 \end_inset
14417
14418
14419 \end_layout
14420
14421 \begin_layout Standard
14422 Selbst definierte Farben können mit dem Befehl 
14423 \series bold
14424
14425 \backslash
14426 textcolor
14427 \series default
14428  auch für Text
14429 \begin_inset Index idx
14430 status collapsed
14431
14432 \begin_layout Plain Layout
14433 Text ! farbiger
14434 \end_layout
14435
14436 \end_inset
14437
14438  verwendet werden:
14439 \end_layout
14440
14441 \begin_layout Standard
14442 \begin_inset ERT
14443 status collapsed
14444
14445 \begin_layout Plain Layout
14446
14447
14448 \backslash
14449 textcolor{dunkelgruen}{
14450 \end_layout
14451
14452 \end_inset
14453
14454 Dieser Satz ist 
14455 \begin_inset Quotes gld
14456 \end_inset
14457
14458 dunkelgruen
14459 \begin_inset Quotes grd
14460 \end_inset
14461
14462 .
14463 \begin_inset ERT
14464 status collapsed
14465
14466 \begin_layout Plain Layout
14467
14468 }
14469 \end_layout
14470
14471 \end_inset
14472
14473
14474 \end_layout
14475
14476 \begin_layout Standard
14477
14478 \series bold
14479
14480 \backslash
14481 textcolor
14482 \series default
14483
14484 \begin_inset Index idx
14485 status collapsed
14486
14487 \begin_layout Plain Layout
14488 Befehle ! T ! 
14489 \backslash
14490 textcolor
14491 \end_layout
14492
14493 \end_inset
14494
14495  wird nach dem Schema 
14496 \series bold
14497
14498 \backslash
14499 textcolor{Farbe}{zu
14500 \series default
14501  
14502 \series bold
14503 färbende
14504 \series default
14505  
14506 \series bold
14507 Zeichen}
14508 \series default
14509  verwendet.
14510 \end_layout
14511
14512 \begin_layout Subsection
14513 Absatzboxen
14514 \begin_inset CommandInset label
14515 LatexCommand label
14516 name "sub:Absatzboxen"
14517
14518 \end_inset
14519
14520
14521 \begin_inset Index idx
14522 status collapsed
14523
14524 \begin_layout Plain Layout
14525 Boxen ! Absatz-
14526 \end_layout
14527
14528 \end_inset
14529
14530
14531 \end_layout
14532
14533 \begin_layout Standard
14534 Mit dem Menü 
14535 \family sans
14536 Einfügen\SpecialChar \menuseparator
14537 Box
14538 \family default
14539  oder dem Werkzeugleistenknopf 
14540 \begin_inset Info
14541 type  "icon"
14542 arg   "box-insert"
14543 \end_inset
14544
14545  kann man eine Box erstellen, die mehrere Zeilen und Absätze enthalten kann,
14546  eine so genannte 
14547 \emph on
14548 Parbox
14549 \emph default
14550  (Absatzbox).
14551 \end_layout
14552
14553 \begin_layout Standard
14554 Das folgende Beispiel zeigt eine umrahmte Absatzbox in einer Zeile:
14555 \end_layout
14556
14557 \begin_layout Standard
14558 \begin_inset VSpace medskip
14559 \end_inset
14560
14561 Dies ist eine Zeile 
14562 \begin_inset Box Boxed
14563 position "c"
14564 hor_pos "c"
14565 has_inner_box 1
14566 inner_pos "t"
14567 use_parbox 1
14568 use_makebox 0
14569 width "5cm"
14570 special "none"
14571 height "1in"
14572 height_special "totalheight"
14573 status open
14574
14575 \begin_layout Plain Layout
14576 Dies ist die Absatzbox.
14577  Sie ist genau 5
14578 \begin_inset space \thinspace{}
14579 \end_inset
14580
14581 cm lang und kann auch Formeln enthalten: 
14582 \begin_inset Formula $\int A\,\mathrm{d}s=C$
14583 \end_inset
14584
14585
14586 \end_layout
14587
14588 \end_inset
14589
14590  mit einer Absatzbox.
14591 \begin_inset VSpace medskip
14592 \end_inset
14593
14594
14595 \end_layout
14596
14597 \begin_layout Standard
14598 Solch eine Box wird erstellt, indem man mit der rechten Maustaste auf die
14599  graue Box mit dem Namen 
14600 \begin_inset Quotes gld
14601 \end_inset
14602
14603 Box(Gerahmt)
14604 \begin_inset Quotes grd
14605 \end_inset
14606
14607  klickt.
14608  Es erscheint dann ein Fenster in dem man die Boxeigenschaften festlegt.
14609  In diesem Fall: 
14610 \emph on
14611 Verzierung
14612 \emph default
14613 : Rechteckige Box, 
14614 \emph on
14615 Innere Box
14616 \emph default
14617 : Parbox, 
14618 \emph on
14619 Breite
14620 \emph default
14621 : 5
14622 \begin_inset space \thinspace{}
14623 \end_inset
14624
14625 cm, 
14626 \emph on
14627 Vertikale Box Ausrichtung
14628 \emph default
14629 : Mitte
14630 \end_layout
14631
14632 \begin_layout Standard
14633 \begin_inset VSpace medskip
14634 \end_inset
14635
14636 In LaTeX wird eine Absatzbox mit dem Befehl 
14637 \series bold
14638
14639 \backslash
14640 parbox
14641 \series default
14642
14643 \begin_inset Index idx
14644 status collapsed
14645
14646 \begin_layout Plain Layout
14647 Befehle ! P ! 
14648 \backslash
14649 parbox
14650 \end_layout
14651
14652 \end_inset
14653
14654  erstellt, welcher folgendes Schema besitzt:
14655 \end_layout
14656
14657 \begin_layout Standard
14658
14659 \series bold
14660
14661 \backslash
14662 parbox[Position]{Breite}{Boxinhalt}
14663 \end_layout
14664
14665 \begin_layout Standard
14666 Die Positionen 
14667 \emph on
14668 b
14669 \emph default
14670  und 
14671 \emph on
14672 t
14673 \emph default
14674  sind möglich.
14675  
14676 \emph on
14677 b
14678 \emph default
14679  steht für 
14680 \begin_inset Quotes gld
14681 \end_inset
14682
14683 bottom
14684 \begin_inset Quotes grd
14685 \end_inset
14686
14687  (unten) und bedeutet, dass die letzte Absatzzeile in den umstehenden Text
14688  eingepasst wird.
14689  Bei 
14690 \emph on
14691 t
14692 \emph default
14693  wie 
14694 \begin_inset Quotes gld
14695 \end_inset
14696
14697 top
14698 \begin_inset Quotes grd
14699 \end_inset
14700
14701  (oben) geschieht dies für die erste Zeile.
14702  Wird keine Position angegeben, wird der Absatz in mittlerer Höhe eingepasst,
14703  siehe das Kapitel 
14704 \emph on
14705 Boxen
14706 \emph default
14707  des Handbuchs
14708 \emph on
14709  Eingebettete
14710 \begin_inset space ~
14711 \end_inset
14712
14713 Objekte
14714 \emph default
14715  für Beispiele.
14716 \end_layout
14717
14718 \begin_layout Standard
14719 \begin_inset VSpace bigskip
14720 \end_inset
14721
14722 Möchte man Formeln komplett mit Formelnummer umranden, muss man die Formel
14723  in eine Absatzbox setzen.
14724  Dazu schreibt man im TeX-Modus vor die Formel den Befehl 
14725 \series bold
14726
14727 \backslash
14728 fbox{
14729 \backslash
14730 parbox{
14731 \backslash
14732 linewidth-2
14733 \backslash
14734 fboxsep-2
14735 \backslash
14736 fboxrule}{
14737 \series default
14738 .
14739  Hierbei steht 
14740 \series bold
14741
14742 \backslash
14743 linewidth
14744 \series default
14745
14746 \begin_inset Index idx
14747 status collapsed
14748
14749 \begin_layout Plain Layout
14750 Befehle ! L ! 
14751 \backslash
14752 linewidth
14753 \end_layout
14754
14755 \end_inset
14756
14757  für die im Dokument eingestellte Zeilenbreite.
14758  Da sich der Rahmen außerhalb der Absatzbox befindet, muss man von der Zeilenbre
14759 ite zweimal die Rahmendicke und den Rahmenabstand abziehen.
14760  Da dies LyX aufgrund eines Fehlers
14761 \begin_inset Foot
14762 status collapsed
14763
14764 \begin_layout Plain Layout
14765 \begin_inset CommandInset href
14766 LatexCommand href
14767 name "LyX-Fehler #4483"
14768 target "http://www.lyx.org/trac/ticket/4483"
14769
14770 \end_inset
14771
14772
14773 \end_layout
14774
14775 \end_inset
14776
14777  nicht automatisch macht, muss der TeX-Modus verwendet werden.
14778  Damit man in Argumenten multiplizieren und subtrahieren kann, muss im LaTeX-Vor
14779 spann das LaTeX-Paket 
14780 \series bold
14781 calc
14782 \series default
14783
14784 \begin_inset Foot
14785 status collapsed
14786
14787 \begin_layout Plain Layout
14788
14789 \series bold
14790 calc
14791 \series default
14792  ist Teil jeder LaTeX-Standardinstallation.
14793 \end_layout
14794
14795 \end_inset
14796
14797
14798 \begin_inset Index idx
14799 status collapsed
14800
14801 \begin_layout Plain Layout
14802 Pakete ! calc
14803 \end_layout
14804
14805 \end_inset
14806
14807  mit der Zeile
14808 \end_layout
14809
14810 \begin_layout Standard
14811
14812 \series bold
14813
14814 \backslash
14815 usepackage{calc}
14816 \end_layout
14817
14818 \begin_layout Standard
14819 geladen werden.
14820  Nach der Formel werden beide Boxen geschlossen, indem man 
14821 \series bold
14822 }}
14823 \series default
14824  im TeX-Modus eingibt.
14825  Dazu ein Beispiel:
14826 \begin_inset ERT
14827 status collapsed
14828
14829 \begin_layout Plain Layout
14830
14831
14832 \backslash
14833 fboxsep 5mm 
14834 \backslash
14835 fboxrule 5mm
14836 \end_layout
14837
14838 \end_inset
14839
14840
14841 \end_layout
14842
14843 \begin_layout Standard
14844 \begin_inset ERT
14845 status collapsed
14846
14847 \begin_layout Plain Layout
14848
14849
14850 \backslash
14851 fbox{
14852 \backslash
14853 parbox{
14854 \backslash
14855 linewidth-2
14856 \backslash
14857 fboxsep-2
14858 \backslash
14859 fboxrule}{
14860 \end_layout
14861
14862 \end_inset
14863
14864
14865 \begin_inset Formula 
14866 \begin{equation}
14867 \int A\,\mathrm{d}x=\frac{\sqrt[5]{B}}{\ln\left(\frac{1}{3}\right)}
14868 \end{equation}
14869
14870 \end_inset
14871
14872
14873 \begin_inset ERT
14874 status collapsed
14875
14876 \begin_layout Plain Layout
14877
14878 }}
14879 \end_layout
14880
14881 \end_inset
14882
14883
14884 \begin_inset ERT
14885 status collapsed
14886
14887 \begin_layout Plain Layout
14888
14889
14890 \backslash
14891 fboxrule 0.4pt 
14892 \backslash
14893 fboxsep 3pt
14894 \end_layout
14895
14896 \end_inset
14897
14898
14899 \end_layout
14900
14901 \begin_layout Standard
14902 \begin_inset VSpace medskip
14903 \end_inset
14904
14905 Da im Argument von 
14906 \series bold
14907
14908 \backslash
14909 fbox
14910 \series default
14911  eine Absatzbox verwendet wird, gibt es in diesem Fall bei der Formelgröße
14912  keinen Unterschied zwischen 
14913 \series bold
14914
14915 \backslash
14916 fbox
14917 \series default
14918  und 
14919 \series bold
14920
14921 \backslash
14922 boxed
14923 \series default
14924 .
14925 \end_layout
14926
14927 \begin_layout Standard
14928 \begin_inset VSpace bigskip
14929 \end_inset
14930
14931 Sehr nützlich sind Absatzboxen, wenn man Formeln direkt kommentieren möchte.
14932  Dazu verwendet man 
14933 \series bold
14934
14935 \backslash
14936 parbox
14937 \series default
14938  in Verbindung mit dem Befehl 
14939 \series bold
14940
14941 \backslash
14942 tag
14943 \series default
14944 .
14945  (mehr zu 
14946 \series bold
14947
14948 \backslash
14949 tag
14950 \series default
14951  siehe 
14952 \begin_inset CommandInset ref
14953 LatexCommand ref
14954 reference "sub:Benutzerdefinierte-Nummerierung"
14955
14956 \end_inset
14957
14958 )
14959 \end_layout
14960
14961 \begin_layout Standard
14962 Ein Beispiel einer mit Hilfe von 
14963 \series bold
14964
14965 \backslash
14966 parbox
14967 \series default
14968  kommentierten Formel:
14969 \end_layout
14970
14971 \begin_layout Standard
14972 \begin_inset ERT
14973 status collapsed
14974
14975 \begin_layout Plain Layout
14976
14977
14978 \backslash
14979 [5x-7b=3b
14980 \backslash
14981 tag*{
14982 \backslash
14983 parbox{5cm}{
14984 \end_layout
14985
14986 \end_inset
14987
14988 Dies ist eine Beschreibung.
14989  Sie ist deutlich von der Formel getrennt und mehrzeilig.
14990 \begin_inset ERT
14991 status collapsed
14992
14993 \begin_layout Plain Layout
14994
14995 }}
14996 \backslash
14997 ]
14998 \end_layout
14999
15000 \end_inset
15001
15002
15003 \end_layout
15004
15005 \begin_layout Standard
15006 So eine Formel muss komplett im TeX-Modus eingegeben werden, da LyX den
15007  Befehl 
15008 \series bold
15009
15010 \backslash
15011 parbox
15012 \series default
15013  in Formeln noch nicht unterstützt.
15014  Die Formel wird mit folgender Befehlssequenz erstellt:
15015 \end_layout
15016
15017 \begin_layout Standard
15018 Der Befehl 
15019 \series bold
15020
15021 \backslash
15022 [5x-7b=3b
15023 \backslash
15024 tag*
15025 \backslash
15026 {
15027 \backslash
15028 parbox{5cm}{
15029 \series default
15030  wird im TeX-Modus eingegeben.
15031 \begin_inset Foot
15032 status collapsed
15033
15034 \begin_layout Plain Layout
15035 Ist der Formelstil 
15036 \series bold
15037 Eingerückt
15038 \series default
15039  aktiviert, kann 
15040 \series bold
15041
15042 \backslash
15043 tag*
15044 \backslash
15045 {
15046 \series default
15047  auch durch 
15048 \series bold
15049
15050 \backslash
15051 hfill
15052 \series default
15053  ersetzt werden.
15054  (Formelstile siehe 
15055 \begin_inset CommandInset ref
15056 LatexCommand ref
15057 reference "sec:Formelstile"
15058
15059 \end_inset
15060
15061 )
15062 \end_layout
15063
15064 \end_inset
15065
15066  Dann folgt die Beschreibung als normaler Text und zuletzt gibt man 
15067 \series bold
15068 }}
15069 \backslash
15070 ]
15071 \series default
15072  im TeX-Modus ein.
15073  Die Befehle 
15074 \series bold
15075
15076 \backslash
15077 [
15078 \series default
15079  und 
15080 \series bold
15081
15082 \backslash
15083 ]
15084 \series default
15085  erstellen hierbei eine abgesetzte Formel.
15086 \end_layout
15087
15088 \begin_layout Standard
15089 Die Vorteile von 
15090 \series bold
15091
15092 \backslash
15093 parbox
15094 \series default
15095  erkennt man an folgendem Beispiel, in dem mit Hilfe des mathematischen
15096  Textmodus 
15097 \begin_inset Quotes gld
15098 \end_inset
15099
15100 kommentiert
15101 \begin_inset Quotes grd
15102 \end_inset
15103
15104  wurde:
15105 \begin_inset Formula 
15106 \[
15107 5x-7b=3b\textrm{Dies ist eine Beschreibung. Sie ist nicht von der Formel getrennt ...}
15108 \]
15109
15110 \end_inset
15111
15112
15113 \end_layout
15114
15115 \begin_layout Section
15116 Operatoren
15117 \begin_inset Index idx
15118 status collapsed
15119
15120 \begin_layout Plain Layout
15121 Operatoren
15122 \end_layout
15123
15124 \end_inset
15125
15126
15127 \end_layout
15128
15129 \begin_layout Subsection
15130 Große Operatoren
15131 \begin_inset CommandInset label
15132 LatexCommand label
15133 name "sub:Große-Operatoren"
15134
15135 \end_inset
15136
15137
15138 \begin_inset Index idx
15139 status collapsed
15140
15141 \begin_layout Plain Layout
15142 Operatoren ! große
15143 \end_layout
15144
15145 \end_inset
15146
15147
15148 \begin_inset Index idx
15149 status collapsed
15150
15151 \begin_layout Plain Layout
15152 Summen
15153 \end_layout
15154
15155 \end_inset
15156
15157
15158 \begin_inset Index idx
15159 status collapsed
15160
15161 \begin_layout Plain Layout
15162 Integrale
15163 \end_layout
15164
15165 \end_inset
15166
15167
15168 \end_layout
15169
15170 \begin_layout Standard
15171 Um alle großen Integraloperatoren nutzen zu können, die im Folgenden aufgelistet
15172  sind, muss die Option 
15173 \family sans
15174 esint-Paket automatisch verwenden
15175 \family default
15176  in den Dokumenteinstellungen unter 
15177 \family sans
15178 Mathe-Optionen
15179 \family default
15180  gewählt sein.
15181 \end_layout
15182
15183 \begin_layout Standard
15184 \begin_inset space \hfill{}
15185 \end_inset
15186
15187
15188 \begin_inset Tabular
15189 <lyxtabular version="3" rows="11" columns="2">
15190 <features rotate="0" tabularvalignment="middle">
15191 <column alignment="center" valignment="top" width="0pt">
15192 <column alignment="center" valignment="top" width="0pt">
15193 <row>
15194 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15195 \begin_inset Text
15196
15197 \begin_layout Plain Layout
15198 Befehl
15199 \end_layout
15200
15201 \end_inset
15202 </cell>
15203 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15204 \begin_inset Text
15205
15206 \begin_layout Plain Layout
15207 Ergebnis
15208 \end_layout
15209
15210 \end_inset
15211 </cell>
15212 </row>
15213 <row>
15214 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15215 \begin_inset Text
15216
15217 \begin_layout Plain Layout
15218
15219 \backslash
15220 int
15221 \begin_inset Index idx
15222 status collapsed
15223
15224 \begin_layout Plain Layout
15225 Befehle ! I ! 
15226 \backslash
15227 int
15228 \end_layout
15229
15230 \end_inset
15231
15232
15233 \end_layout
15234
15235 \end_inset
15236 </cell>
15237 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15238 \begin_inset Text
15239
15240 \begin_layout Plain Layout
15241 \begin_inset Formula $\int$
15242 \end_inset
15243
15244
15245 \end_layout
15246
15247 \end_inset
15248 </cell>
15249 </row>
15250 <row>
15251 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15252 \begin_inset Text
15253
15254 \begin_layout Plain Layout
15255
15256 \backslash
15257 oint
15258 \end_layout
15259
15260 \end_inset
15261 </cell>
15262 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15263 \begin_inset Text
15264
15265 \begin_layout Plain Layout
15266 \begin_inset Formula $\oint$
15267 \end_inset
15268
15269
15270 \end_layout
15271
15272 \end_inset
15273 </cell>
15274 </row>
15275 <row>
15276 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15277 \begin_inset Text
15278
15279 \begin_layout Plain Layout
15280
15281 \backslash
15282 ointctrclockwise
15283 \end_layout
15284
15285 \end_inset
15286 </cell>
15287 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15288 \begin_inset Text
15289
15290 \begin_layout Plain Layout
15291 \begin_inset Formula $\ointctrclockwise$
15292 \end_inset
15293
15294
15295 \end_layout
15296
15297 \end_inset
15298 </cell>
15299 </row>
15300 <row>
15301 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15302 \begin_inset Text
15303
15304 \begin_layout Plain Layout
15305
15306 \backslash
15307 ointclockwise
15308 \end_layout
15309
15310 \end_inset
15311 </cell>
15312 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15313 \begin_inset Text
15314
15315 \begin_layout Plain Layout
15316 \begin_inset Formula $\ointclockwise$
15317 \end_inset
15318
15319
15320 \end_layout
15321
15322 \end_inset
15323 </cell>
15324 </row>
15325 <row>
15326 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15327 \begin_inset Text
15328
15329 \begin_layout Plain Layout
15330
15331 \backslash
15332 sqint
15333 \end_layout
15334
15335 \end_inset
15336 </cell>
15337 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15338 \begin_inset Text
15339
15340 \begin_layout Plain Layout
15341 \begin_inset Formula $\sqint$
15342 \end_inset
15343
15344
15345 \end_layout
15346
15347 \end_inset
15348 </cell>
15349 </row>
15350 <row>
15351 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15352 \begin_inset Text
15353
15354 \begin_layout Plain Layout
15355
15356 \backslash
15357 fint
15358 \end_layout
15359
15360 \end_inset
15361 </cell>
15362 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15363 \begin_inset Text
15364
15365 \begin_layout Plain Layout
15366  
15367 \begin_inset Formula $\fint$
15368 \end_inset
15369
15370
15371 \end_layout
15372
15373 \end_inset
15374 </cell>
15375 </row>
15376 <row>
15377 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15378 \begin_inset Text
15379
15380 \begin_layout Plain Layout
15381
15382 \backslash
15383 landupint
15384 \end_layout
15385
15386 \end_inset
15387 </cell>
15388 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15389 \begin_inset Text
15390
15391 \begin_layout Plain Layout
15392  
15393 \begin_inset Formula $\landupint$
15394 \end_inset
15395
15396
15397 \end_layout
15398
15399 \end_inset
15400 </cell>
15401 </row>
15402 <row>
15403 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15404 \begin_inset Text
15405
15406 \begin_layout Plain Layout
15407
15408 \backslash
15409 landdownint
15410 \end_layout
15411
15412 \end_inset
15413 </cell>
15414 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15415 \begin_inset Text
15416
15417 \begin_layout Plain Layout
15418  
15419 \begin_inset Formula $\landdownint$
15420 \end_inset
15421
15422
15423 \end_layout
15424
15425 \end_inset
15426 </cell>
15427 </row>
15428 <row>
15429 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15430 \begin_inset Text
15431
15432 \begin_layout Plain Layout
15433
15434 \backslash
15435 bigcap
15436 \end_layout
15437
15438 \end_inset
15439 </cell>
15440 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15441 \begin_inset Text
15442
15443 \begin_layout Plain Layout
15444 \begin_inset Formula $\bigcap$
15445 \end_inset
15446
15447
15448 \end_layout
15449
15450 \end_inset
15451 </cell>
15452 </row>
15453 <row>
15454 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15455 \begin_inset Text
15456
15457 \begin_layout Plain Layout
15458
15459 \backslash
15460 bigcup
15461 \end_layout
15462
15463 \end_inset
15464 </cell>
15465 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15466 \begin_inset Text
15467
15468 \begin_layout Plain Layout
15469 \begin_inset Formula $\bigcup$
15470 \end_inset
15471
15472
15473 \end_layout
15474
15475 \end_inset
15476 </cell>
15477 </row>
15478 </lyxtabular>
15479
15480 \end_inset
15481
15482
15483 \begin_inset space \hfill{}
15484 \end_inset
15485
15486
15487 \begin_inset Tabular
15488 <lyxtabular version="3" rows="11" columns="2">
15489 <features rotate="0" tabularvalignment="middle">
15490 <column alignment="center" valignment="top" width="0pt">
15491 <column alignment="center" valignment="top" width="0pt">
15492 <row>
15493 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15494 \begin_inset Text
15495
15496 \begin_layout Plain Layout
15497 Befehl
15498 \end_layout
15499
15500 \end_inset
15501 </cell>
15502 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15503 \begin_inset Text
15504
15505 \begin_layout Plain Layout
15506 Ergebnis
15507 \end_layout
15508
15509 \end_inset
15510 </cell>
15511 </row>
15512 <row>
15513 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15514 \begin_inset Text
15515
15516 \begin_layout Plain Layout
15517
15518 \backslash
15519 sum
15520 \begin_inset Index idx
15521 status collapsed
15522
15523 \begin_layout Plain Layout
15524 Befehle ! S ! 
15525 \backslash
15526 sum
15527 \end_layout
15528
15529 \end_inset
15530
15531
15532 \end_layout
15533
15534 \end_inset
15535 </cell>
15536 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15537 \begin_inset Text
15538
15539 \begin_layout Plain Layout
15540 \begin_inset Formula $\sum$
15541 \end_inset
15542
15543
15544 \end_layout
15545
15546 \end_inset
15547 </cell>
15548 </row>
15549 <row>
15550 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15551 \begin_inset Text
15552
15553 \begin_layout Plain Layout
15554
15555 \backslash
15556 prod
15557 \begin_inset Index idx
15558 status collapsed
15559
15560 \begin_layout Plain Layout
15561 Befehle ! P ! 
15562 \backslash
15563 prod
15564 \end_layout
15565
15566 \end_inset
15567
15568
15569 \end_layout
15570
15571 \end_inset
15572 </cell>
15573 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15574 \begin_inset Text
15575
15576 \begin_layout Plain Layout
15577 \begin_inset Formula $\prod$
15578 \end_inset
15579
15580
15581 \end_layout
15582
15583 \end_inset
15584 </cell>
15585 </row>
15586 <row>
15587 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15588 \begin_inset Text
15589
15590 \begin_layout Plain Layout
15591
15592 \backslash
15593 coprod
15594 \end_layout
15595
15596 \end_inset
15597 </cell>
15598 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15599 \begin_inset Text
15600
15601 \begin_layout Plain Layout
15602 \begin_inset Formula $\coprod$
15603 \end_inset
15604
15605
15606 \end_layout
15607
15608 \end_inset
15609 </cell>
15610 </row>
15611 <row>
15612 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15613 \begin_inset Text
15614
15615 \begin_layout Plain Layout
15616
15617 \backslash
15618 bigodot
15619 \end_layout
15620
15621 \end_inset
15622 </cell>
15623 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15624 \begin_inset Text
15625
15626 \begin_layout Plain Layout
15627 \begin_inset Formula $\bigodot$
15628 \end_inset
15629
15630
15631 \end_layout
15632
15633 \end_inset
15634 </cell>
15635 </row>
15636 <row>
15637 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15638 \begin_inset Text
15639
15640 \begin_layout Plain Layout
15641
15642 \backslash
15643 bigotimes
15644 \end_layout
15645
15646 \end_inset
15647 </cell>
15648 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15649 \begin_inset Text
15650
15651 \begin_layout Plain Layout
15652 \begin_inset Formula $\bigotimes$
15653 \end_inset
15654
15655
15656 \end_layout
15657
15658 \end_inset
15659 </cell>
15660 </row>
15661 <row>
15662 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15663 \begin_inset Text
15664
15665 \begin_layout Plain Layout
15666
15667 \backslash
15668 bigoplus
15669 \end_layout
15670
15671 \end_inset
15672 </cell>
15673 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15674 \begin_inset Text
15675
15676 \begin_layout Plain Layout
15677 \begin_inset Formula $\bigoplus$
15678 \end_inset
15679
15680
15681 \end_layout
15682
15683 \end_inset
15684 </cell>
15685 </row>
15686 <row>
15687 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15688 \begin_inset Text
15689
15690 \begin_layout Plain Layout
15691
15692 \backslash
15693 bigwedge
15694 \end_layout
15695
15696 \end_inset
15697 </cell>
15698 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15699 \begin_inset Text
15700
15701 \begin_layout Plain Layout
15702 \begin_inset Formula $\bigwedge$
15703 \end_inset
15704
15705
15706 \end_layout
15707
15708 \end_inset
15709 </cell>
15710 </row>
15711 <row>
15712 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15713 \begin_inset Text
15714
15715 \begin_layout Plain Layout
15716
15717 \backslash
15718 bigvee
15719 \end_layout
15720
15721 \end_inset
15722 </cell>
15723 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15724 \begin_inset Text
15725
15726 \begin_layout Plain Layout
15727 \begin_inset Formula $\bigvee$
15728 \end_inset
15729
15730
15731 \end_layout
15732
15733 \end_inset
15734 </cell>
15735 </row>
15736 <row>
15737 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15738 \begin_inset Text
15739
15740 \begin_layout Plain Layout
15741
15742 \backslash
15743 bigsqcup
15744 \end_layout
15745
15746 \end_inset
15747 </cell>
15748 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15749 \begin_inset Text
15750
15751 \begin_layout Plain Layout
15752 \begin_inset Formula $\bigsqcup$
15753 \end_inset
15754
15755
15756 \end_layout
15757
15758 \end_inset
15759 </cell>
15760 </row>
15761 <row>
15762 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15763 \begin_inset Text
15764
15765 \begin_layout Plain Layout
15766
15767 \backslash
15768 biguplus
15769 \end_layout
15770
15771 \end_inset
15772 </cell>
15773 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15774 \begin_inset Text
15775
15776 \begin_layout Plain Layout
15777 \begin_inset Formula $\biguplus$
15778 \end_inset
15779
15780
15781 \end_layout
15782
15783 \end_inset
15784 </cell>
15785 </row>
15786 </lyxtabular>
15787
15788 \end_inset
15789
15790
15791 \begin_inset space \hfill{}
15792 \end_inset
15793
15794
15795 \end_layout
15796
15797 \begin_layout Standard
15798 Alle großen Operatoren können auch über den Mathe-Werkzeugleistenknopf 
15799 \begin_inset Info
15800 type  "icon"
15801 arg   "math-insert \\intop"
15802 \end_inset
15803
15804  eingefügt werden.
15805 \end_layout
15806
15807 \begin_layout Standard
15808 Die Operatoren werden als groß bezeichnet, da sie größer sind als die zum
15809  Teil gleich aussehenden binären Operatoren.
15810  Zu allen großen Operatoren kann man Grenzen angeben, wie im nächsten Abschnitt
15811  beschrieben.
15812 \end_layout
15813
15814 \begin_layout Standard
15815 Für alle Integrale gibt es Befehle, die auf 
15816 \series bold
15817 op
15818 \series default
15819  enden: 
15820 \series bold
15821
15822 \backslash
15823 intop
15824 \series default
15825
15826 \series bold
15827
15828 \backslash
15829 ointop
15830 \series default
15831  usw..
15832  Diese unterscheiden sich von 
15833 \series bold
15834
15835 \backslash
15836 int
15837 \series default
15838  usw.
15839 \begin_inset space \space{}
15840 \end_inset
15841
15842 in der Art wie die Operatorgrenzen dargestellt werden, siehe 
15843 \begin_inset CommandInset ref
15844 LatexCommand ref
15845 reference "sub:Operatorgrenzen"
15846
15847 \end_inset
15848
15849 .
15850  
15851 \end_layout
15852
15853 \begin_layout Subsubsection*
15854 Hinweise zu Integralen
15855 \end_layout
15856
15857 \begin_layout Standard
15858 Der Buchstabe 
15859 \emph on
15860 d
15861 \emph default
15862  in einer Integralen ist ein Operator, der deswegen aufrecht erscheinen
15863  muss.
15864  Dazu markiert man das 
15865 \emph on
15866 d
15867 \emph default
15868  und wandelt es mit der Tastenkombination 
15869 \family sans
15870 Alt+Z
15871 \begin_inset space ~
15872 \end_inset
15873
15874 R
15875 \family default
15876
15877 \begin_inset Foot
15878 status collapsed
15879
15880 \begin_layout Plain Layout
15881 Schriftstile siehe 
15882 \begin_inset CommandInset ref
15883 LatexCommand ref
15884 reference "sub:Schriftstile"
15885
15886 \end_inset
15887
15888
15889 \end_layout
15890
15891 \end_inset
15892
15893  um.
15894  Anschließend fügt man vor dem 
15895 \emph on
15896 d
15897 \emph default
15898 , wie bei Operatoren üblich, den kleinsten Leerraum ein.
15899  Dazu ein Beispiel:
15900 \end_layout
15901
15902 \begin_layout Standard
15903 inkorrekt: 
15904 \begin_inset Formula $\int A(x)dx$
15905 \end_inset
15906
15907
15908 \begin_inset Newline newline
15909 \end_inset
15910
15911
15912 \begin_inset Phantom HPhantom
15913 status open
15914
15915 \begin_layout Plain Layout
15916 in
15917 \end_layout
15918
15919 \end_inset
15920
15921 korrekt: 
15922 \begin_inset Formula $\int A(x)\,\mathrm{d}x$
15923 \end_inset
15924
15925
15926 \end_layout
15927
15928 \begin_layout Standard
15929 \begin_inset VSpace medskip
15930 \end_inset
15931
15932 Für Mehrfachintegrale gibt es folgende Befehle:
15933 \begin_inset VSpace medskip
15934 \end_inset
15935
15936
15937 \end_layout
15938
15939 \begin_layout Standard
15940 \begin_inset space \hfill{}
15941 \end_inset
15942
15943
15944 \begin_inset Tabular
15945 <lyxtabular version="3" rows="4" columns="2">
15946 <features rotate="0" tabularvalignment="middle">
15947 <column alignment="center" valignment="top">
15948 <column alignment="center" valignment="top">
15949 <row>
15950 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15951 \begin_inset Text
15952
15953 \begin_layout Plain Layout
15954 Befehl
15955 \end_layout
15956
15957 \end_inset
15958 </cell>
15959 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15960 \begin_inset Text
15961
15962 \begin_layout Plain Layout
15963 Ergebnis
15964 \begin_inset Note Note
15965 status collapsed
15966
15967 \begin_layout Plain Layout
15968
15969 \series bold
15970
15971 \backslash
15972 raisebox
15973 \series default
15974  dient nur als Abstandhalter.
15975 \end_layout
15976
15977 \end_inset
15978
15979
15980 \end_layout
15981
15982 \end_inset
15983 </cell>
15984 </row>
15985 <row>
15986 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15987 \begin_inset Text
15988
15989 \begin_layout Plain Layout
15990
15991 \backslash
15992 iint
15993 \end_layout
15994
15995 \end_inset
15996 </cell>
15997 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15998 \begin_inset Text
15999
16000 \begin_layout Plain Layout
16001 \begin_inset Formula $\raisebox{4.5mm}{}\iint\raisebox{-2.5mm}{}$
16002 \end_inset
16003
16004
16005 \end_layout
16006
16007 \end_inset
16008 </cell>
16009 </row>
16010 <row>
16011 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16012 \begin_inset Text
16013
16014 \begin_layout Plain Layout
16015
16016 \backslash
16017 oiint
16018 \end_layout
16019
16020 \end_inset
16021 </cell>
16022 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16023 \begin_inset Text
16024
16025 \begin_layout Plain Layout
16026 \begin_inset Formula $\raisebox{4.5mm}{}\oiint\raisebox{-2.5mm}{}$
16027 \end_inset
16028
16029
16030 \end_layout
16031
16032 \end_inset
16033 </cell>
16034 </row>
16035 <row>
16036 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16037 \begin_inset Text
16038
16039 \begin_layout Plain Layout
16040
16041 \backslash
16042 sqiint
16043 \end_layout
16044
16045 \end_inset
16046 </cell>
16047 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16048 \begin_inset Text
16049
16050 \begin_layout Plain Layout
16051 \begin_inset Formula $\raisebox{4.5mm}{}\sqiint\raisebox{-2.5mm}{}$
16052 \end_inset
16053
16054
16055 \end_layout
16056
16057 \end_inset
16058 </cell>
16059 </row>
16060 </lyxtabular>
16061
16062 \end_inset
16063
16064
16065 \begin_inset space \hfill{}
16066 \end_inset
16067
16068
16069 \begin_inset Tabular
16070 <lyxtabular version="3" rows="4" columns="2">
16071 <features rotate="0" tabularvalignment="middle">
16072 <column alignment="center" valignment="top">
16073 <column alignment="center" valignment="top">
16074 <row>
16075 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16076 \begin_inset Text
16077
16078 \begin_layout Plain Layout
16079 Befehl
16080 \end_layout
16081
16082 \end_inset
16083 </cell>
16084 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16085 \begin_inset Text
16086
16087 \begin_layout Plain Layout
16088 Ergebnis
16089 \end_layout
16090
16091 \end_inset
16092 </cell>
16093 </row>
16094 <row>
16095 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16096 \begin_inset Text
16097
16098 \begin_layout Plain Layout
16099
16100 \backslash
16101 iiint
16102 \end_layout
16103
16104 \end_inset
16105 </cell>
16106 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16107 \begin_inset Text
16108
16109 \begin_layout Plain Layout
16110 \begin_inset Formula $\raisebox{4.5mm}{}\iiint\raisebox{-2.5mm}{}$
16111 \end_inset
16112
16113
16114 \end_layout
16115
16116 \end_inset
16117 </cell>
16118 </row>
16119 <row>
16120 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16121 \begin_inset Text
16122
16123 \begin_layout Plain Layout
16124
16125 \backslash
16126 iiiint
16127 \end_layout
16128
16129 \end_inset
16130 </cell>
16131 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16132 \begin_inset Text
16133
16134 \begin_layout Plain Layout
16135 \begin_inset Formula $\raisebox{4.5mm}{}\iiiint\raisebox{-2.5mm}{}$
16136 \end_inset
16137
16138
16139 \end_layout
16140
16141 \end_inset
16142 </cell>
16143 </row>
16144 <row>
16145 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16146 \begin_inset Text
16147
16148 \begin_layout Plain Layout
16149
16150 \backslash
16151 dotsint
16152 \end_layout
16153
16154 \end_inset
16155 </cell>
16156 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16157 \begin_inset Text
16158
16159 \begin_layout Plain Layout
16160 \begin_inset Formula $\raisebox{4.5mm}{}\dotsint\raisebox{-2.5mm}{}$
16161 \end_inset
16162
16163
16164 \end_layout
16165
16166 \end_inset
16167 </cell>
16168 </row>
16169 </lyxtabular>
16170
16171 \end_inset
16172
16173
16174 \begin_inset space \hfill{}
16175 \end_inset
16176
16177
16178 \end_layout
16179
16180 \begin_layout Subsection
16181 Operatorgrenzen
16182 \begin_inset CommandInset label
16183 LatexCommand label
16184 name "sub:Operatorgrenzen"
16185
16186 \end_inset
16187
16188
16189 \begin_inset Index idx
16190 status collapsed
16191
16192 \begin_layout Plain Layout
16193 Operatoren ! Grenzen
16194 \end_layout
16195
16196 \end_inset
16197
16198
16199 \end_layout
16200
16201 \begin_layout Standard
16202 Grenzen werden durch Hoch- bzw.
16203 \begin_inset space \space{}
16204 \end_inset
16205
16206 Tiefstellen erzeugt:
16207 \end_layout
16208
16209 \begin_layout Standard
16210 \align center
16211 \begin_inset Tabular
16212 <lyxtabular version="3" rows="2" columns="2">
16213 <features rotate="0" tabularvalignment="middle">
16214 <column alignment="center" valignment="top" width="0pt">
16215 <column alignment="center" valignment="top" width="0pt">
16216 <row>
16217 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16218 \begin_inset Text
16219
16220 \begin_layout Plain Layout
16221 Befehl
16222 \end_layout
16223
16224 \end_inset
16225 </cell>
16226 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16227 \begin_inset Text
16228
16229 \begin_layout Plain Layout
16230 Ergebnis
16231 \begin_inset Note Note
16232 status collapsed
16233
16234 \begin_layout Plain Layout
16235
16236 \series bold
16237
16238 \backslash
16239 raisebox
16240 \series default
16241  dient nur als Abstandhalter.
16242 \end_layout
16243
16244 \end_inset
16245
16246
16247 \end_layout
16248
16249 \end_inset
16250 </cell>
16251 </row>
16252 <row>
16253 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16254 \begin_inset Text
16255
16256 \begin_layout Plain Layout
16257
16258 \backslash
16259 prod^
16260 \backslash
16261 infty
16262 \begin_inset space \textvisiblespace{}
16263 \end_inset
16264
16265
16266 \begin_inset Formula $\to$
16267 \end_inset
16268
16269 _0
16270 \begin_inset Formula $\to$
16271 \end_inset
16272
16273 A(x)
16274 \end_layout
16275
16276 \end_inset
16277 </cell>
16278 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16279 \begin_inset Text
16280
16281 \begin_layout Plain Layout
16282 \begin_inset Formula $\raisebox{5mm}{}\prod_{0}^{\infty}A(x)\raisebox{-2.5mm}{}$
16283 \end_inset
16284
16285
16286 \end_layout
16287
16288 \end_inset
16289 </cell>
16290 </row>
16291 </lyxtabular>
16292
16293 \end_inset
16294
16295
16296 \end_layout
16297
16298 \begin_layout Standard
16299 Bei einer Formel in einer Textzeile werden die Grenzen rechts neben den
16300  Operator gesetzt.
16301  In einer abgesetzten Formel werden, außer bei Integralen, die Grenzen über
16302  bzw.
16303 \begin_inset space \space{}
16304 \end_inset
16305
16306 unter den Operator gesetzt.
16307 \end_layout
16308
16309 \begin_layout Standard
16310 Um zu erzwingen, dass die Grenzen neben den Operator gesetzt werden, setzt
16311  man den Cursor direkt hinter den Operator und setzt über das Menü 
16312 \family sans
16313 Bearbeiten\SpecialChar \menuseparator
16314 Mathe\SpecialChar \menuseparator
16315 Art der Operatorgrenzen ändern
16316 \family default
16317  die Grenzen auf 
16318 \series bold
16319 Eingebettet
16320 \series default
16321  (Tastenkombination 
16322 \family sans
16323 Alt+M
16324 \begin_inset space ~
16325 \end_inset
16326
16327 L
16328 \family default
16329 ).
16330  Dazu folgendes Beispiel:
16331 \end_layout
16332
16333 \begin_layout Standard
16334 Die normalen Grenzen sehen so aus:
16335 \begin_inset Formula 
16336 \[
16337 \sum_{x=0}^{\infty}\frac{1}{x^{2}}
16338 \]
16339
16340 \end_inset
16341
16342 So sieht die Formel aus, wenn man die Grenzen neben das Summenzeichen setzt:
16343 \begin_inset Formula 
16344 \[
16345 \sum\nolimits _{x=0}^{\infty}\frac{1}{x^{2}}
16346 \]
16347
16348 \end_inset
16349
16350 Bei Integralen werden mit Ausnahme von denen, die auf 
16351 \series bold
16352 op
16353 \series default
16354  enden (
16355 \series bold
16356
16357 \backslash
16358 intop
16359 \series default
16360
16361 \series bold
16362
16363 \backslash
16364 ointop
16365 \series default
16366  usw.), die Grenzen standardmäßig neben den Operator gesetzt.
16367  Bei Mehrfachintegralen werden die Grenzen jedoch meistens unter den Operator
16368  gesetzt.
16369  Im folgenden Beispiel wurde die Grenze deswegen auf 
16370 \series bold
16371 Anzeige
16372 \series default
16373  gesetzt und damit unter die Integrale geschrieben:
16374 \begin_inset Formula 
16375 \begin{equation}
16376 \iiint\limits _{V}X\,\mathrm{d}V=U\label{eq:VolInt}
16377 \end{equation}
16378
16379 \end_inset
16380
16381
16382 \end_layout
16383
16384 \begin_layout Standard
16385 \begin_inset VSpace medskip
16386 \end_inset
16387
16388 Um Bedingungen für Grenzen anzugeben, gibt es die Befehle 
16389 \series bold
16390
16391 \backslash
16392 subarray
16393 \series default
16394
16395 \begin_inset Index idx
16396 status collapsed
16397
16398 \begin_layout Plain Layout
16399 Befehle ! S ! 
16400 \backslash
16401 subarray
16402 \end_layout
16403
16404 \end_inset
16405
16406  und 
16407 \series bold
16408
16409 \backslash
16410 substack
16411 \series default
16412
16413 \begin_inset Index idx
16414 status collapsed
16415
16416 \begin_layout Plain Layout
16417 Befehle ! S ! 
16418 \backslash
16419 substack
16420 \end_layout
16421
16422 \end_inset
16423
16424 .
16425  Um z.
16426 \begin_inset space \thinspace{}
16427 \end_inset
16428
16429 B.
16430  diesen Ausdruck 
16431 \begin_inset Formula 
16432 \begin{equation}
16433 \sum_{\begin{subarray}{c}
16434 0<k<1000\\
16435 \\
16436 k\,\in\,\mathbb{N}
16437 \end{subarray}}^{n}k^{-2}\label{eq:substack}
16438 \end{equation}
16439
16440 \end_inset
16441
16442 zu erstellen, muss man Folgendes tun:
16443 \begin_inset Newline newline
16444 \end_inset
16445
16446 Zuerst gibt man den Befehl 
16447 \series bold
16448
16449 \backslash
16450 sum
16451 \series default
16452 ^
16453 \series bold
16454 n
16455 \begin_inset space \textvisiblespace{}
16456 \end_inset
16457
16458 _
16459 \series default
16460  ein.
16461  Man befindet sich nun in einem blauen Kästchen unter dem Summenzeichen.
16462  In dieses gibt man den Befehl 
16463 \series bold
16464
16465 \backslash
16466 subarray
16467 \begin_inset space \textvisiblespace{}
16468 \end_inset
16469
16470
16471 \series default
16472  ein.
16473  Das blaue Kästchen hat nun eine lila Umrandung und man kann jetzt mehrere
16474  Zeilen untereinander schreiben.
16475  Mit Eingabe des Zeilenumbruchs (
16476 \family sans
16477 Strg+Enter
16478 \family default
16479 ) wird eine neue Zeile erstellt.
16480  Gibt man
16481 \begin_inset Newline newline
16482 \end_inset
16483
16484
16485 \series bold
16486 0<k<1000 Strg+Enter
16487 \begin_inset Newline newline
16488 \end_inset
16489
16490
16491 \series default
16492 ein, erscheint darunter ein Kästchen für die neue Zeile.
16493 \end_layout
16494
16495 \begin_layout Standard
16496 Die Ausrichtung der Zeilen kann mit der 
16497 \family sans
16498 Tabellen-Werkzeugleiste
16499 \family default
16500  oder dem Menü 
16501 \family sans
16502 Bearbeiten\SpecialChar \menuseparator
16503 Zeilen & Spalten
16504 \family default
16505  auf links geändert werden.
16506  Um rechts ausgerichtete Zeilen zu erhalten, wird am Anfang der Zeile 
16507 \series bold
16508
16509 \backslash
16510 hfill
16511 \begin_inset space \textvisiblespace{}
16512 \end_inset
16513
16514
16515 \series default
16516  eingegeben.
16517 \end_layout
16518
16519 \begin_layout Standard
16520 Der Befehl 
16521 \series bold
16522
16523 \backslash
16524 substack
16525 \series default
16526  ist äquivalent zu 
16527 \series bold
16528
16529 \backslash
16530 subarray
16531 \series default
16532 , mit dem Unterschied dass die Zeilen immer zentriert ausgerichtet sind.
16533 \end_layout
16534
16535 \begin_layout Standard
16536 \begin_inset VSpace bigskip
16537 \end_inset
16538
16539 Wie bei Formel 
16540 \begin_inset CommandInset ref
16541 LatexCommand eqref
16542 reference "eq:substack"
16543
16544 \end_inset
16545
16546  kann es vorkommen, dass sich neben dem Operator zu viel Leerraum befindet,
16547  denn das dem Operator folgende Zeichen wird neben die Grenzen gesetzt.
16548  Um das zu verhindern, kann man den Befehl 
16549 \series bold
16550
16551 \backslash
16552 smashoperator
16553 \series default
16554
16555 \begin_inset Index idx
16556 status collapsed
16557
16558 \begin_layout Plain Layout
16559 Befehle ! S ! 
16560 \backslash
16561 smashoperator
16562 \end_layout
16563
16564 \end_inset
16565
16566  verwenden.
16567  Um ihn zu aktivieren, stellt man in den Dokumenteinstellungen unter 
16568 \family sans
16569 Mathe-Optionen
16570 \family default
16571  für das Paket 
16572 \series bold
16573 mathtools
16574 \series default
16575
16576 \begin_inset Index idx
16577 status collapsed
16578
16579 \begin_layout Plain Layout
16580 Pakete ! mathtools
16581 \end_layout
16582
16583 \end_inset
16584
16585  die Option 
16586 \family sans
16587 Immer
16588 \begin_inset space ~
16589 \end_inset
16590
16591 laden
16592 \family default
16593  ein.
16594  
16595 \series bold
16596
16597 \backslash
16598 smashoperator
16599 \series default
16600  setzt den Leerraum um den Operator auf 0
16601 \begin_inset space \thinspace{}
16602 \end_inset
16603
16604 pt.
16605 \begin_inset Newline newline
16606 \end_inset
16607
16608 Auf Formel 
16609 \begin_inset CommandInset ref
16610 LatexCommand eqref
16611 reference "eq:substack"
16612
16613 \end_inset
16614
16615  angewandt, verwendet man den Befehl
16616 \end_layout
16617
16618 \begin_layout Standard
16619
16620 \series bold
16621
16622 \backslash
16623 smashoperator{
16624 \end_layout
16625
16626 \begin_layout Standard
16627 und fügt den Operator mit seinen Grenze in die geschweifte Klammer ein.
16628  Nach der geschweiften Klammer setzt man die Formel fort:
16629 \begin_inset Formula 
16630 \[
16631 \smashoperator{\sum_{\begin{subarray}{c}
16632 0<k<1000\\
16633 \\
16634 k\,\in\,\mathbb{N}
16635 \end{subarray}}^{n}}k^{-2}
16636 \]
16637
16638 \end_inset
16639
16640
16641 \end_layout
16642
16643 \begin_layout Standard
16644 Es ist möglich den Leerraum auf nur einer Seite des Operators auf 0
16645 \begin_inset space \thinspace{}
16646 \end_inset
16647
16648 pt zu setzen.
16649  Dazu schreibt man entweder 
16650 \series bold
16651 [l]
16652 \series default
16653  oder 
16654 \series bold
16655 [r]
16656 \series default
16657  zwischen 
16658 \series bold
16659
16660 \backslash
16661 smashoperator
16662 \series default
16663  und seine geschweifte Klammer.
16664  
16665 \series bold
16666 l
16667 \series default
16668  steht dabei für die linke und 
16669 \series bold
16670 r
16671 \series default
16672  für die rechten Seite des Operators.
16673  Hier ist ein Beispiel der möglichen Formen von 
16674 \series bold
16675
16676 \backslash
16677 smashoperator
16678 \series default
16679 :
16680 \end_layout
16681
16682 \begin_layout Standard
16683 \begin_inset Formula 
16684 \[
16685 Y\smashoperator{\sum_{1\le i\le j\le n}^{n=3456}}X_{ij}=Y\smashoperator[l]{\sum_{1\le i\le j\le n}^{n=3456}}X_{ij}=Y\smashoperator[r]{\sum_{1\le i\le j\le n}^{n=3456}}X_{ij}
16686 \]
16687
16688 \end_inset
16689
16690
16691 \end_layout
16692
16693 \begin_layout Standard
16694 \begin_inset VSpace bigskip
16695 \end_inset
16696
16697
16698 \end_layout
16699
16700 \begin_layout Standard
16701 Wenn mehrere aufeinanderfolgende Operatoren Grenzen haben, sieht der Schriftsatz
16702  der Grenzen oft nicht ansprechend aus, wie dieses Beispiel zeigt:
16703 \begin_inset Formula 
16704 \[
16705 \text{a)}\lim_{n\to\infty}\max_{p\ge n}\quad\text{b)}\lim_{n\to\infty}\max_{p^{2}\ge n}\quad\text{c)}\lim_{n\to\infty}\sup_{p^{2}\ge nK}\quad\text{d)}\limsup_{n\to\infty}\max_{p\ge n}
16706 \]
16707
16708 \end_inset
16709
16710 Um den Schriftsatz zu verbessern, stellt man in den Dokumenteinstellungen
16711  unter 
16712 \family sans
16713 Mathe-Optionen
16714 \family default
16715  für das Paket 
16716 \series bold
16717 mathtools
16718 \series default
16719
16720 \begin_inset Index idx
16721 status collapsed
16722
16723 \begin_layout Plain Layout
16724 Pakete ! mathtools
16725 \end_layout
16726
16727 \end_inset
16728
16729  die Option 
16730 \family sans
16731 Immer
16732 \begin_inset space ~
16733 \end_inset
16734
16735 laden
16736 \family default
16737  ein.
16738  Nun fügt man direkt vor den ersten Operator denn Befehl 
16739 \series bold
16740
16741 \backslash
16742 adjustlimits
16743 \series default
16744
16745 \begin_inset Index idx
16746 status collapsed
16747
16748 \begin_layout Plain Layout
16749 Befehle ! A ! 
16750 \backslash
16751 adjustlimits
16752 \end_layout
16753
16754 \end_inset
16755
16756  ein.
16757  Das Beispiel schaut dann so aus:
16758 \begin_inset Formula 
16759 \[
16760 \text{a)}\adjustlimits\lim_{n\to\infty}\max_{p\ge n}\quad\text{b)}\adjustlimits\lim_{n\to\infty}\max_{p^{2}\ge n}\quad\text{c)}\adjustlimits\lim_{n\to\infty}\sup_{p^{2}\ge nK}\quad\text{d)}\adjustlimits\limsup_{n\to\infty}\max_{p\ge n}
16761 \]
16762
16763 \end_inset
16764
16765
16766 \end_layout
16767
16768 \begin_layout Standard
16769 \begin_inset VSpace bigskip
16770 \end_inset
16771
16772 In 
16773 \begin_inset CommandInset ref
16774 LatexCommand ref
16775 reference "sub:Selbstdefinierte-Operatoren"
16776
16777 \end_inset
16778
16779  ist beschrieben, wie man eine Grenze für mehrere Operatoren verwenden kann.
16780 \end_layout
16781
16782 \begin_layout Subsection
16783 Dekoration für Operatoren
16784 \begin_inset Index idx
16785 status collapsed
16786
16787 \begin_layout Plain Layout
16788 Operatoren ! Dekoration
16789 \end_layout
16790
16791 \end_inset
16792
16793
16794 \end_layout
16795
16796 \begin_layout Standard
16797 Zum Dekorieren von Operatoren gibt es die Befehle 
16798 \series bold
16799
16800 \backslash
16801 overset
16802 \series default
16803
16804 \begin_inset Index idx
16805 status collapsed
16806
16807 \begin_layout Plain Layout
16808 Befehle ! O ! 
16809 \backslash
16810 overset
16811 \end_layout
16812
16813 \end_inset
16814
16815  und 
16816 \series bold
16817
16818 \backslash
16819 underset
16820 \series default
16821
16822 \begin_inset Index idx
16823 status collapsed
16824
16825 \begin_layout Plain Layout
16826 Befehle ! U ! 
16827 \backslash
16828 underset
16829 \end_layout
16830
16831 \end_inset
16832
16833 , mit denen man Zeichen über bzw.
16834 \begin_inset space \space{}
16835 \end_inset
16836
16837 unter einen Operator setzen kann.
16838  Mit dem Befehl 
16839 \series bold
16840
16841 \backslash
16842 sideset
16843 \series default
16844
16845 \begin_inset Index idx
16846 status collapsed
16847
16848 \begin_layout Plain Layout
16849 Befehle ! S ! 
16850 \backslash
16851 sideset
16852 \end_layout
16853
16854 \end_inset
16855
16856  können Zeichen vor und nach einen großen Operator gesetzt werden.
16857 \end_layout
16858
16859 \begin_layout Standard
16860 Es gibt 4
16861 \begin_inset space ~
16862 \end_inset
16863
16864 Varianten von 
16865 \series bold
16866
16867 \backslash
16868 sideset
16869 \series default
16870 :
16871 \end_layout
16872
16873 \begin_layout Itemize
16874
16875 \series bold
16876
16877 \backslash
16878 sideset
16879 \series default
16880  zum Setzen von Zeichen an die Ecken des Operators
16881 \end_layout
16882
16883 \begin_layout Itemize
16884
16885 \series bold
16886
16887 \backslash
16888 sidesetn
16889 \series default
16890  zum Setzen von Zeichen vor und/oder nach den Operator (diese Variante entsprich
16891 t LaTeXs originalem 
16892 \series bold
16893
16894 \backslash
16895 sideset
16896 \series default
16897  Befehl)
16898 \end_layout
16899
16900 \begin_layout Itemize
16901
16902 \series bold
16903
16904 \backslash
16905 sidesetl
16906 \series default
16907  zum Setzen von Zeichen an die linken Ecken und/oder nach den Operator
16908 \end_layout
16909
16910 \begin_layout Itemize
16911
16912 \series bold
16913
16914 \backslash
16915 sidesetr
16916 \series default
16917  zum Setzen von Zeichen an die rechten Ecken und/oder vor den Operator
16918 \end_layout
16919
16920 \begin_layout Standard
16921 Z.
16922 \begin_inset space \thinspace{}
16923 \end_inset
16924
16925 B.
16926  ergibt der Befehl 
16927 \series bold
16928
16929 \backslash
16930 sidesetn
16931 \begin_inset space \textvisiblespace{}
16932 \end_inset
16933
16934
16935 \backslash
16936 sum
16937 \begin_inset space \textvisiblespace{}
16938 \end_inset
16939
16940
16941 \begin_inset Formula $\to$
16942 \end_inset
16943
16944 '
16945 \begin_inset Formula $\to$
16946 \end_inset
16947
16948 _k=1
16949 \begin_inset space \textvisiblespace{}
16950 \end_inset
16951
16952
16953 \series default
16954 ^
16955 \series bold
16956 n
16957 \series default
16958  :
16959 \begin_inset Formula 
16960 \[
16961 \sideset{}{'}\sum_{k=1}^{n}
16962 \]
16963
16964 \end_inset
16965
16966
16967 \end_layout
16968
16969 \begin_layout Standard
16970 \begin_inset Note Greyedout
16971 status open
16972
16973 \begin_layout Plain Layout
16974
16975 \series bold
16976 Achtung: 
16977 \backslash
16978 sideset
16979 \series default
16980  kann nur für die Dekoration von großen Operatoren verwendet werden, binäre
16981  Operatoren sind nicht erlaubt.
16982 \end_layout
16983
16984 \end_inset
16985
16986
16987 \end_layout
16988
16989 \begin_layout Standard
16990 Mit 
16991 \series bold
16992
16993 \backslash
16994 overset
16995 \series default
16996  bzw.
16997 \begin_inset space \space{}
16998 \end_inset
16999
17000
17001 \series bold
17002
17003 \backslash
17004 underset
17005 \series default
17006  kann man auch Symbole und Zeichen dekorieren.
17007  Beispielsweise ergibt der Befehl 
17008 \series bold
17009
17010 \backslash
17011 overset
17012 \begin_inset space \textvisiblespace{}
17013 \end_inset
17014
17015
17016 \backslash
17017 maltese
17018 \begin_inset space \textvisiblespace{}
17019 \end_inset
17020
17021
17022 \series default
17023
17024 \begin_inset Formula $\uparrow$
17025 \end_inset
17026
17027
17028 \series bold
17029 a
17030 \series default
17031  :
17032 \begin_inset Formula 
17033 \[
17034 \overset{a}{\maltese}
17035 \]
17036
17037 \end_inset
17038
17039
17040 \end_layout
17041
17042 \begin_layout Subsection
17043 Binäre Operatoren
17044 \begin_inset CommandInset label
17045 LatexCommand label
17046 name "sub:Binäre-Operatoren"
17047
17048 \end_inset
17049
17050
17051 \begin_inset Index idx
17052 status collapsed
17053
17054 \begin_layout Plain Layout
17055 Operatoren ! binäre
17056 \end_layout
17057
17058 \end_inset
17059
17060
17061 \end_layout
17062
17063 \begin_layout Standard
17064 Binäre Operatoren sind von Leerraum umgeben, wenn sich vor und hinter ihnen
17065  ein Zeichen befindet.
17066 \begin_inset VSpace medskip
17067 \end_inset
17068
17069
17070 \end_layout
17071
17072 \begin_layout Standard
17073 \begin_inset space \hfill{}
17074 \end_inset
17075
17076
17077 \begin_inset Tabular
17078 <lyxtabular version="3" rows="13" columns="2">
17079 <features rotate="0" tabularvalignment="middle">
17080 <column alignment="center" valignment="top" width="0pt">
17081 <column alignment="center" valignment="top" width="0pt">
17082 <row>
17083 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17084 \begin_inset Text
17085
17086 \begin_layout Plain Layout
17087 Befehl
17088 \begin_inset Note Note
17089 status collapsed
17090
17091 \begin_layout Plain Layout
17092
17093 \series bold
17094
17095 \backslash
17096 raisebox
17097 \series default
17098  dient nur als Abstandhalter.
17099 \end_layout
17100
17101 \end_inset
17102
17103
17104 \end_layout
17105
17106 \end_inset
17107 </cell>
17108 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17109 \begin_inset Text
17110
17111 \begin_layout Plain Layout
17112 Ergebnis
17113 \end_layout
17114
17115 \end_inset
17116 </cell>
17117 </row>
17118 <row>
17119 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17120 \begin_inset Text
17121
17122 \begin_layout Plain Layout
17123 +
17124 \end_layout
17125
17126 \end_inset
17127 </cell>
17128 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17129 \begin_inset Text
17130
17131 \begin_layout Plain Layout
17132 \begin_inset Formula $+$
17133 \end_inset
17134
17135
17136 \end_layout
17137
17138 \end_inset
17139 </cell>
17140 </row>
17141 <row>
17142 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17143 \begin_inset Text
17144
17145 \begin_layout Plain Layout
17146 -
17147 \end_layout
17148
17149 \end_inset
17150 </cell>
17151 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17152 \begin_inset Text
17153
17154 \begin_layout Plain Layout
17155 \begin_inset Formula $-$
17156 \end_inset
17157
17158
17159 \end_layout
17160
17161 \end_inset
17162 </cell>
17163 </row>
17164 <row>
17165 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17166 \begin_inset Text
17167
17168 \begin_layout Plain Layout
17169
17170 \backslash
17171 pm
17172 \end_layout
17173
17174 \end_inset
17175 </cell>
17176 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17177 \begin_inset Text
17178
17179 \begin_layout Plain Layout
17180 \begin_inset Formula $\pm$
17181 \end_inset
17182
17183
17184 \end_layout
17185
17186 \end_inset
17187 </cell>
17188 </row>
17189 <row>
17190 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17191 \begin_inset Text
17192
17193 \begin_layout Plain Layout
17194
17195 \backslash
17196 mp
17197 \end_layout
17198
17199 \end_inset
17200 </cell>
17201 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17202 \begin_inset Text
17203
17204 \begin_layout Plain Layout
17205 \begin_inset Formula $\mp$
17206 \end_inset
17207
17208
17209 \end_layout
17210
17211 \end_inset
17212 </cell>
17213 </row>
17214 <row>
17215 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17216 \begin_inset Text
17217
17218 \begin_layout Plain Layout
17219
17220 \backslash
17221 cdot
17222 \end_layout
17223
17224 \end_inset
17225 </cell>
17226 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17227 \begin_inset Text
17228
17229 \begin_layout Plain Layout
17230 \begin_inset Formula $\cdot$
17231 \end_inset
17232
17233
17234 \end_layout
17235
17236 \end_inset
17237 </cell>
17238 </row>
17239 <row>
17240 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17241 \begin_inset Text
17242
17243 \begin_layout Plain Layout
17244
17245 \backslash
17246 times
17247 \end_layout
17248
17249 \end_inset
17250 </cell>
17251 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17252 \begin_inset Text
17253
17254 \begin_layout Plain Layout
17255 \begin_inset Formula $\times$
17256 \end_inset
17257
17258
17259 \end_layout
17260
17261 \end_inset
17262 </cell>
17263 </row>
17264 <row>
17265 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17266 \begin_inset Text
17267
17268 \begin_layout Plain Layout
17269
17270 \backslash
17271 div
17272 \end_layout
17273
17274 \end_inset
17275 </cell>
17276 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17277 \begin_inset Text
17278
17279 \begin_layout Plain Layout
17280 \begin_inset Formula $\div$
17281 \end_inset
17282
17283
17284 \end_layout
17285
17286 \end_inset
17287 </cell>
17288 </row>
17289 <row>
17290 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17291 \begin_inset Text
17292
17293 \begin_layout Plain Layout
17294 \begin_inset ERT
17295 status collapsed
17296
17297 \begin_layout Plain Layout
17298
17299
17300 \backslash
17301 raisebox{-1.2mm}{
17302 \end_layout
17303
17304 \end_inset
17305
17306 *
17307 \begin_inset ERT
17308 status collapsed
17309
17310 \begin_layout Plain Layout
17311
17312 }
17313 \end_layout
17314
17315 \end_inset
17316
17317
17318 \end_layout
17319
17320 \end_inset
17321 </cell>
17322 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17323 \begin_inset Text
17324
17325 \begin_layout Plain Layout
17326 \begin_inset Formula $*$
17327 \end_inset
17328
17329
17330 \end_layout
17331
17332 \end_inset
17333 </cell>
17334 </row>
17335 <row>
17336 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17337 \begin_inset Text
17338
17339 \begin_layout Plain Layout
17340
17341 \backslash
17342 star
17343 \end_layout
17344
17345 \end_inset
17346 </cell>
17347 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17348 \begin_inset Text
17349
17350 \begin_layout Plain Layout
17351 \begin_inset Formula $\star$
17352 \end_inset
17353
17354
17355 \end_layout
17356
17357 \end_inset
17358 </cell>
17359 </row>
17360 <row>
17361 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17362 \begin_inset Text
17363
17364 \begin_layout Plain Layout
17365
17366 \backslash
17367 circ
17368 \end_layout
17369
17370 \end_inset
17371 </cell>
17372 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17373 \begin_inset Text
17374
17375 \begin_layout Plain Layout
17376 \begin_inset Formula $\circ$
17377 \end_inset
17378
17379
17380 \end_layout
17381
17382 \end_inset
17383 </cell>
17384 </row>
17385 <row>
17386 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17387 \begin_inset Text
17388
17389 \begin_layout Plain Layout
17390
17391 \backslash
17392 diamond
17393 \end_layout
17394
17395 \end_inset
17396 </cell>
17397 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17398 \begin_inset Text
17399
17400 \begin_layout Plain Layout
17401 \begin_inset Formula $\diamond$
17402 \end_inset
17403
17404
17405 \end_layout
17406
17407 \end_inset
17408 </cell>
17409 </row>
17410 <row>
17411 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17412 \begin_inset Text
17413
17414 \begin_layout Plain Layout
17415
17416 \backslash
17417 bullet
17418 \end_layout
17419
17420 \end_inset
17421 </cell>
17422 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17423 \begin_inset Text
17424
17425 \begin_layout Plain Layout
17426 \begin_inset Formula $\bullet$
17427 \end_inset
17428
17429
17430 \end_layout
17431
17432 \end_inset
17433 </cell>
17434 </row>
17435 </lyxtabular>
17436
17437 \end_inset
17438
17439
17440 \begin_inset space \hfill{}
17441 \end_inset
17442
17443
17444 \begin_inset Tabular
17445 <lyxtabular version="3" rows="13" columns="2">
17446 <features rotate="0" tabularvalignment="middle">
17447 <column alignment="center" valignment="top" width="0pt">
17448 <column alignment="center" valignment="top" width="0pt">
17449 <row>
17450 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17451 \begin_inset Text
17452
17453 \begin_layout Plain Layout
17454 Befehl
17455 \end_layout
17456
17457 \end_inset
17458 </cell>
17459 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17460 \begin_inset Text
17461
17462 \begin_layout Plain Layout
17463 Ergebnis
17464 \end_layout
17465
17466 \end_inset
17467 </cell>
17468 </row>
17469 <row>
17470 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17471 \begin_inset Text
17472
17473 \begin_layout Plain Layout
17474
17475 \backslash
17476 nabla
17477 \end_layout
17478
17479 \end_inset
17480 </cell>
17481 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17482 \begin_inset Text
17483
17484 \begin_layout Plain Layout
17485 \begin_inset Formula $\nabla$
17486 \end_inset
17487
17488
17489 \end_layout
17490
17491 \end_inset
17492 </cell>
17493 </row>
17494 <row>
17495 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17496 \begin_inset Text
17497
17498 \begin_layout Plain Layout
17499
17500 \backslash
17501 bigtriangledown
17502 \end_layout
17503
17504 \end_inset
17505 </cell>
17506 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17507 \begin_inset Text
17508
17509 \begin_layout Plain Layout
17510 \begin_inset Formula $\bigtriangledown$
17511 \end_inset
17512
17513
17514 \end_layout
17515
17516 \end_inset
17517 </cell>
17518 </row>
17519 <row>
17520 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17521 \begin_inset Text
17522
17523 \begin_layout Plain Layout
17524
17525 \backslash
17526 bigtriangleup
17527 \end_layout
17528
17529 \end_inset
17530 </cell>
17531 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17532 \begin_inset Text
17533
17534 \begin_layout Plain Layout
17535 \begin_inset Formula $\bigtriangleup$
17536 \end_inset
17537
17538
17539 \end_layout
17540
17541 \end_inset
17542 </cell>
17543 </row>
17544 <row>
17545 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17546 \begin_inset Text
17547
17548 \begin_layout Plain Layout
17549
17550 \backslash
17551 Box
17552 \end_layout
17553
17554 \end_inset
17555 </cell>
17556 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17557 \begin_inset Text
17558
17559 \begin_layout Plain Layout
17560 \begin_inset Formula $\Box$
17561 \end_inset
17562
17563
17564 \end_layout
17565
17566 \end_inset
17567 </cell>
17568 </row>
17569 <row>
17570 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17571 \begin_inset Text
17572
17573 \begin_layout Plain Layout
17574
17575 \backslash
17576 cap 
17577 \end_layout
17578
17579 \end_inset
17580 </cell>
17581 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17582 \begin_inset Text
17583
17584 \begin_layout Plain Layout
17585 \begin_inset Formula $\cap$
17586 \end_inset
17587
17588
17589 \end_layout
17590
17591 \end_inset
17592 </cell>
17593 </row>
17594 <row>
17595 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17596 \begin_inset Text
17597
17598 \begin_layout Plain Layout
17599
17600 \backslash
17601 cup
17602 \end_layout
17603
17604 \end_inset
17605 </cell>
17606 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17607 \begin_inset Text
17608
17609 \begin_layout Plain Layout
17610 \begin_inset Formula $\cup$
17611 \end_inset
17612
17613
17614 \end_layout
17615
17616 \end_inset
17617 </cell>
17618 </row>
17619 <row>
17620 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17621 \begin_inset Text
17622
17623 \begin_layout Plain Layout
17624
17625 \backslash
17626 dagger
17627 \end_layout
17628
17629 \end_inset
17630 </cell>
17631 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17632 \begin_inset Text
17633
17634 \begin_layout Plain Layout
17635 \begin_inset Formula $\dagger$
17636 \end_inset
17637
17638
17639 \end_layout
17640
17641 \end_inset
17642 </cell>
17643 </row>
17644 <row>
17645 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17646 \begin_inset Text
17647
17648 \begin_layout Plain Layout
17649
17650 \backslash
17651 ddagger
17652 \end_layout
17653
17654 \end_inset
17655 </cell>
17656 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17657 \begin_inset Text
17658
17659 \begin_layout Plain Layout
17660 \begin_inset Formula $\ddagger$
17661 \end_inset
17662
17663
17664 \end_layout
17665
17666 \end_inset
17667 </cell>
17668 </row>
17669 <row>
17670 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17671 \begin_inset Text
17672
17673 \begin_layout Plain Layout
17674
17675 \backslash
17676 wr
17677 \end_layout
17678
17679 \end_inset
17680 </cell>
17681 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17682 \begin_inset Text
17683
17684 \begin_layout Plain Layout
17685 \begin_inset Formula $\wr$
17686 \end_inset
17687
17688
17689 \end_layout
17690
17691 \end_inset
17692 </cell>
17693 </row>
17694 <row>
17695 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17696 \begin_inset Text
17697
17698 \begin_layout Plain Layout
17699
17700 \backslash
17701 bigcirc
17702 \end_layout
17703
17704 \end_inset
17705 </cell>
17706 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17707 \begin_inset Text
17708
17709 \begin_layout Plain Layout
17710 \begin_inset Formula $\bigcirc$
17711 \end_inset
17712
17713
17714 \end_layout
17715
17716 \end_inset
17717 </cell>
17718 </row>
17719 <row>
17720 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17721 \begin_inset Text
17722
17723 \begin_layout Plain Layout
17724
17725 \backslash
17726 wedge
17727 \end_layout
17728
17729 \end_inset
17730 </cell>
17731 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17732 \begin_inset Text
17733
17734 \begin_layout Plain Layout
17735 \begin_inset Formula $\wedge$
17736 \end_inset
17737
17738
17739 \end_layout
17740
17741 \end_inset
17742 </cell>
17743 </row>
17744 <row>
17745 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17746 \begin_inset Text
17747
17748 \begin_layout Plain Layout
17749
17750 \backslash
17751 vee
17752 \end_layout
17753
17754 \end_inset
17755 </cell>
17756 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17757 \begin_inset Text
17758
17759 \begin_layout Plain Layout
17760 \begin_inset Formula $\vee$
17761 \end_inset
17762
17763
17764 \end_layout
17765
17766 \end_inset
17767 </cell>
17768 </row>
17769 </lyxtabular>
17770
17771 \end_inset
17772
17773
17774 \begin_inset space \hfill{}
17775 \end_inset
17776
17777
17778 \begin_inset Tabular
17779 <lyxtabular version="3" rows="13" columns="2">
17780 <features rotate="0" tabularvalignment="middle">
17781 <column alignment="center" valignment="top" width="0pt">
17782 <column alignment="center" valignment="top" width="0pt">
17783 <row>
17784 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17785 \begin_inset Text
17786
17787 \begin_layout Plain Layout
17788 Befehl
17789 \end_layout
17790
17791 \end_inset
17792 </cell>
17793 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17794 \begin_inset Text
17795
17796 \begin_layout Plain Layout
17797 Ergebnis
17798 \end_layout
17799
17800 \end_inset
17801 </cell>
17802 </row>
17803 <row>
17804 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17805 \begin_inset Text
17806
17807 \begin_layout Plain Layout
17808
17809 \backslash
17810 oplus
17811 \end_layout
17812
17813 \end_inset
17814 </cell>
17815 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17816 \begin_inset Text
17817
17818 \begin_layout Plain Layout
17819 \begin_inset Formula $\oplus$
17820 \end_inset
17821
17822
17823 \end_layout
17824
17825 \end_inset
17826 </cell>
17827 </row>
17828 <row>
17829 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17830 \begin_inset Text
17831
17832 \begin_layout Plain Layout
17833
17834 \backslash
17835 ominus
17836 \end_layout
17837
17838 \end_inset
17839 </cell>
17840 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17841 \begin_inset Text
17842
17843 \begin_layout Plain Layout
17844 \begin_inset Formula $\ominus$
17845 \end_inset
17846
17847
17848 \end_layout
17849
17850 \end_inset
17851 </cell>
17852 </row>
17853 <row>
17854 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17855 \begin_inset Text
17856
17857 \begin_layout Plain Layout
17858
17859 \backslash
17860 otimes
17861 \end_layout
17862
17863 \end_inset
17864 </cell>
17865 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17866 \begin_inset Text
17867
17868 \begin_layout Plain Layout
17869 \begin_inset Formula $\otimes$
17870 \end_inset
17871
17872
17873 \end_layout
17874
17875 \end_inset
17876 </cell>
17877 </row>
17878 <row>
17879 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17880 \begin_inset Text
17881
17882 \begin_layout Plain Layout
17883
17884 \backslash
17885 oslash
17886 \end_layout
17887
17888 \end_inset
17889 </cell>
17890 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17891 \begin_inset Text
17892
17893 \begin_layout Plain Layout
17894 \begin_inset Formula $\oslash$
17895 \end_inset
17896
17897
17898 \end_layout
17899
17900 \end_inset
17901 </cell>
17902 </row>
17903 <row>
17904 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17905 \begin_inset Text
17906
17907 \begin_layout Plain Layout
17908
17909 \backslash
17910 odot
17911 \end_layout
17912
17913 \end_inset
17914 </cell>
17915 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17916 \begin_inset Text
17917
17918 \begin_layout Plain Layout
17919 \begin_inset Formula $\odot$
17920 \end_inset
17921
17922
17923 \end_layout
17924
17925 \end_inset
17926 </cell>
17927 </row>
17928 <row>
17929 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17930 \begin_inset Text
17931
17932 \begin_layout Plain Layout
17933
17934 \backslash
17935 amalg
17936 \end_layout
17937
17938 \end_inset
17939 </cell>
17940 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17941 \begin_inset Text
17942
17943 \begin_layout Plain Layout
17944 \begin_inset Formula $\amalg$
17945 \end_inset
17946
17947
17948 \end_layout
17949
17950 \end_inset
17951 </cell>
17952 </row>
17953 <row>
17954 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17955 \begin_inset Text
17956
17957 \begin_layout Plain Layout
17958
17959 \backslash
17960 uplus
17961 \end_layout
17962
17963 \end_inset
17964 </cell>
17965 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17966 \begin_inset Text
17967
17968 \begin_layout Plain Layout
17969 \begin_inset Formula $\uplus$
17970 \end_inset
17971
17972
17973 \end_layout
17974
17975 \end_inset
17976 </cell>
17977 </row>
17978 <row>
17979 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17980 \begin_inset Text
17981
17982 \begin_layout Plain Layout
17983
17984 \backslash
17985 setminus
17986 \end_layout
17987
17988 \end_inset
17989 </cell>
17990 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17991 \begin_inset Text
17992
17993 \begin_layout Plain Layout
17994 \begin_inset Formula $\setminus$
17995 \end_inset
17996
17997
17998 \end_layout
17999
18000 \end_inset
18001 </cell>
18002 </row>
18003 <row>
18004 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18005 \begin_inset Text
18006
18007 \begin_layout Plain Layout
18008
18009 \backslash
18010 sqcap
18011 \end_layout
18012
18013 \end_inset
18014 </cell>
18015 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18016 \begin_inset Text
18017
18018 \begin_layout Plain Layout
18019 \begin_inset Formula $\sqcap$
18020 \end_inset
18021
18022
18023 \end_layout
18024
18025 \end_inset
18026 </cell>
18027 </row>
18028 <row>
18029 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18030 \begin_inset Text
18031
18032 \begin_layout Plain Layout
18033
18034 \backslash
18035 sqcup
18036 \end_layout
18037
18038 \end_inset
18039 </cell>
18040 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18041 \begin_inset Text
18042
18043 \begin_layout Plain Layout
18044 \begin_inset Formula $\sqcup$
18045 \end_inset
18046
18047
18048 \end_layout
18049
18050 \end_inset
18051 </cell>
18052 </row>
18053 <row>
18054 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18055 \begin_inset Text
18056
18057 \begin_layout Plain Layout
18058
18059 \backslash
18060 triangleleft
18061 \end_layout
18062
18063 \end_inset
18064 </cell>
18065 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18066 \begin_inset Text
18067
18068 \begin_layout Plain Layout
18069 \begin_inset Formula $\triangleleft$
18070 \end_inset
18071
18072
18073 \end_layout
18074
18075 \end_inset
18076 </cell>
18077 </row>
18078 <row>
18079 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18080 \begin_inset Text
18081
18082 \begin_layout Plain Layout
18083
18084 \backslash
18085 triangleright
18086 \end_layout
18087
18088 \end_inset
18089 </cell>
18090 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
18091 \begin_inset Text
18092
18093 \begin_layout Plain Layout
18094 \begin_inset Formula $\triangleright$
18095 \end_inset
18096
18097
18098 \end_layout
18099
18100 \end_inset
18101 </cell>
18102 </row>
18103 </lyxtabular>
18104
18105 \end_inset
18106
18107
18108 \begin_inset space \hfill{}
18109 \end_inset
18110
18111
18112 \end_layout
18113
18114 \begin_layout Standard
18115 Alle binären Operatoren können auch über den Mathe-Werkzeugleistenknopf
18116  
18117 \begin_inset Info
18118 type  "icon"
18119 arg   "math-insert \\pm"
18120 \end_inset
18121
18122  eingefügt werden.
18123 \end_layout
18124
18125 \begin_layout Standard
18126 Um den Laplace-Operator darzustellen, kann man statt 
18127 \series bold
18128
18129 \backslash
18130 bigtriangleup
18131 \series default
18132  auch 
18133 \series bold
18134
18135 \backslash
18136 Delta
18137 \series default
18138  verwenden oder man benutzt 
18139 \series bold
18140
18141 \backslash
18142 nabla
18143 \series default
18144 ^
18145 \series bold
18146 2
18147 \series default
18148  (
18149 \begin_inset Formula $\nabla^{2}$
18150 \end_inset
18151
18152 ).
18153 \end_layout
18154
18155 \begin_layout Standard
18156 Das Zeichen 
18157 \family sans
18158 Menütrenner
18159 \family default
18160  im Menü 
18161 \family sans
18162 Einfügen\SpecialChar \menuseparator
18163 Sonderzeichen
18164 \family default
18165  ist der Operator 
18166 \series bold
18167
18168 \backslash
18169 triangleright
18170 \series default
18171 .
18172 \end_layout
18173
18174 \begin_layout Subsection
18175 Selbst definierte Operatoren
18176 \begin_inset CommandInset label
18177 LatexCommand label
18178 name "sub:Selbstdefinierte-Operatoren"
18179
18180 \end_inset
18181
18182
18183 \begin_inset Index idx
18184 status collapsed
18185
18186 \begin_layout Plain Layout
18187 Operatoren ! selbstdefinierte
18188 \end_layout
18189
18190 \end_inset
18191
18192
18193 \end_layout
18194
18195 \begin_layout Standard
18196 Mit Hilfe des Befehls 
18197 \series bold
18198
18199 \backslash
18200 DeclareMathOperator
18201 \series default
18202
18203 \begin_inset Index idx
18204 status collapsed
18205
18206 \begin_layout Plain Layout
18207 Befehle ! D ! 
18208 \backslash
18209 dbinom@
18210 \backslash
18211 DeclareMathOperator
18212 \end_layout
18213
18214 \end_inset
18215
18216  kann man im LaTeX-Vorspann eigene Operatoren definieren.
18217  Das Befehlsschema dazu lautet:
18218 \end_layout
18219
18220 \begin_layout Standard
18221
18222 \series bold
18223
18224 \backslash
18225 DeclareMathOperator{neuer Befehl}{Anzeige}
18226 \end_layout
18227
18228 \begin_layout Standard
18229 Anzeige können Zeichen und Symbole sein, die festlegen, wie der Operator
18230  im Ausdruck aussieht.
18231  Will man einen großen Operator definieren, setzt man hinter den Befehl
18232  ein 
18233 \series bold
18234 *
18235 \series default
18236 .
18237  Zu allen selbst definierten großen Operatoren kann man Grenzen angeben,
18238  wie in 
18239 \begin_inset CommandInset ref
18240 LatexCommand ref
18241 reference "sub:Operatorgrenzen"
18242
18243 \end_inset
18244
18245  beschrieben.
18246 \end_layout
18247
18248 \begin_layout Standard
18249 Beispielsweise definiert die LaTeX-Vorspannzeile
18250 \end_layout
18251
18252 \begin_layout Standard
18253
18254 \series bold
18255
18256 \backslash
18257 DeclareMathOperator*{
18258 \backslash
18259 Raute}{
18260 \backslash
18261 blacklozenge}
18262 \end_layout
18263
18264 \begin_layout Standard
18265 den Befehl 
18266 \series bold
18267
18268 \backslash
18269 Raute
18270 \series default
18271 , mit dem man einen großen Operator aufrufen kann, der aus dem Raute Symbol
18272  aus 
18273 \begin_inset CommandInset ref
18274 LatexCommand ref
18275 reference "sub:Sonstige-Symbole"
18276
18277 \end_inset
18278
18279  besteht:
18280 \begin_inset Formula 
18281 \[
18282 \Raute_{n=1}^{\infty}
18283 \]
18284
18285 \end_inset
18286
18287 Der Befehl für diese Formel lautet: 
18288 \series bold
18289
18290 \backslash
18291 Raute
18292 \series default
18293 ^
18294 \series bold
18295
18296 \backslash
18297 infty
18298 \begin_inset Formula $\to$
18299 \end_inset
18300
18301 _n=1
18302 \end_layout
18303
18304 \begin_layout Standard
18305 \begin_inset VSpace bigskip
18306 \end_inset
18307
18308 Benötigt man eigene Operatoren nicht mehrfach im Dokument, kann man diese
18309  auch mit den Befehlen 
18310 \series bold
18311
18312 \backslash
18313 mathop
18314 \series default
18315
18316 \begin_inset Index idx
18317 status collapsed
18318
18319 \begin_layout Plain Layout
18320 Befehle ! M ! 
18321 \backslash
18322 mathop
18323 \end_layout
18324
18325 \end_inset
18326
18327  und 
18328 \series bold
18329
18330 \backslash
18331 mathbin
18332 \series default
18333
18334 \begin_inset Index idx
18335 status collapsed
18336
18337 \begin_layout Plain Layout
18338 Befehle ! M ! 
18339 \backslash
18340 mathbin
18341 \end_layout
18342
18343 \end_inset
18344
18345  definieren, die folgendes Schema besitzen:
18346 \end_layout
18347
18348 \begin_layout Standard
18349
18350 \series bold
18351
18352 \backslash
18353 mathop{Anzeige}
18354 \series default
18355  bzw.
18356 \begin_inset space \space{}
18357 \end_inset
18358
18359
18360 \series bold
18361
18362 \backslash
18363 mathbin{Anzeige}
18364 \end_layout
18365
18366 \begin_layout Standard
18367
18368 \series bold
18369
18370 \backslash
18371 mathop
18372 \series default
18373  definiert große, 
18374 \series bold
18375
18376 \backslash
18377 mathbin
18378 \series default
18379  binäre Operatoren.
18380 \end_layout
18381
18382 \begin_layout Standard
18383
18384 \series bold
18385
18386 \backslash
18387 mathop
18388 \series default
18389  lässt sich z.
18390 \begin_inset space \thinspace{}
18391 \end_inset
18392
18393 B.
18394  nutzen, um eine Grenze für mehrere Operatoren zu verwenden:
18395 \begin_inset Formula 
18396 \[
18397 \mathop{\sum\negmedspace\sum}_{i,j=1}^{N}
18398 \]
18399
18400 \end_inset
18401
18402
18403 \end_layout
18404
18405 \begin_layout Standard
18406 Der Befehl für obige Formel lautet:
18407 \begin_inset Newline newline
18408 \end_inset
18409
18410  
18411 \series bold
18412
18413 \backslash
18414 mathop{
18415 \backslash
18416 sum
18417 \backslash
18418 negmedspace
18419 \backslash
18420 sum
18421 \series default
18422
18423 \begin_inset space \textvisiblespace{}
18424 \end_inset
18425
18426
18427 \series bold
18428
18429 \begin_inset Formula $\to$
18430 \end_inset
18431
18432 ^N
18433 \series default
18434
18435 \begin_inset space \textvisiblespace{}
18436 \end_inset
18437
18438
18439 \series bold
18440 _i,j=1
18441 \end_layout
18442
18443 \begin_layout Standard
18444 \begin_inset Newpage newpage
18445 \end_inset
18446
18447
18448 \end_layout
18449
18450 \begin_layout Section
18451 Schriften
18452 \begin_inset Index idx
18453 status collapsed
18454
18455 \begin_layout Plain Layout
18456 Schriften
18457 \end_layout
18458
18459 \end_inset
18460
18461
18462 \end_layout
18463
18464 \begin_layout Subsection
18465 Schriftstile
18466 \begin_inset CommandInset label
18467 LatexCommand label
18468 name "sub:Schriftstile"
18469
18470 \end_inset
18471
18472
18473 \begin_inset Index idx
18474 status collapsed
18475
18476 \begin_layout Plain Layout
18477 Schriften ! Schriftstile
18478 \end_layout
18479
18480 \end_inset
18481
18482
18483 \end_layout
18484
18485 \begin_layout Standard
18486 Lateinische Buchstaben in einer Formel können in folgenden Schriftstilen
18487  gesetzt werden:
18488 \begin_inset VSpace -2mm
18489 \end_inset
18490
18491
18492 \end_layout
18493
18494 \begin_layout Standard
18495 \align center
18496 \begin_inset Tabular
18497 <lyxtabular version="3" rows="7" columns="3">
18498 <features rotate="0" tabularvalignment="middle">
18499 <column alignment="center" valignment="top">
18500 <column alignment="center" valignment="top">
18501 <column alignment="center" valignment="top">
18502 <row>
18503 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18504 \begin_inset Text
18505
18506 \begin_layout Plain Layout
18507 Befehl
18508 \end_layout
18509
18510 \end_inset
18511 </cell>
18512 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18513 \begin_inset Text
18514
18515 \begin_layout Plain Layout
18516 Ergebnis
18517 \end_layout
18518
18519 \end_inset
18520 </cell>
18521 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
18522 \begin_inset Text
18523
18524 \begin_layout Plain Layout
18525 Tastenkürzel
18526 \end_layout
18527
18528 \end_inset
18529 </cell>
18530 </row>
18531 <row>
18532 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18533 \begin_inset Text
18534
18535 \begin_layout Plain Layout
18536
18537 \backslash
18538 mathbb
18539 \series bold
18540
18541 \begin_inset space \textvisiblespace{}
18542 \end_inset
18543
18544
18545 \series default
18546 ABC
18547 \end_layout
18548
18549 \end_inset
18550 </cell>
18551 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18552 \begin_inset Text
18553
18554 \begin_layout Plain Layout
18555 \begin_inset Formula $\mathbb{ABC}$
18556 \end_inset
18557
18558
18559 \end_layout
18560
18561 \end_inset
18562 </cell>
18563 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18564 \begin_inset Text
18565
18566 \begin_layout Plain Layout
18567 Alt+Z K
18568 \end_layout
18569
18570 \end_inset
18571 </cell>
18572 </row>
18573 <row>
18574 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18575 \begin_inset Text
18576
18577 \begin_layout Plain Layout
18578
18579 \backslash
18580 mathbf
18581 \series bold
18582
18583 \begin_inset space \textvisiblespace{}
18584 \end_inset
18585
18586
18587 \series default
18588 AbC
18589 \end_layout
18590
18591 \end_inset
18592 </cell>
18593 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18594 \begin_inset Text
18595
18596 \begin_layout Plain Layout
18597 \begin_inset Formula $\mathbf{AbC}$
18598 \end_inset
18599
18600
18601 \end_layout
18602
18603 \end_inset
18604 </cell>
18605 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18606 \begin_inset Text
18607
18608 \begin_layout Plain Layout
18609 Strg+B
18610 \end_layout
18611
18612 \end_inset
18613 </cell>
18614 </row>
18615 <row>
18616 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18617 \begin_inset Text
18618
18619 \begin_layout Plain Layout
18620
18621 \backslash
18622 boldsymbol
18623 \series bold
18624
18625 \begin_inset space \textvisiblespace{}
18626 \end_inset
18627
18628
18629 \series default
18630 AbC
18631 \end_layout
18632
18633 \end_inset
18634 </cell>
18635 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18636 \begin_inset Text
18637
18638 \begin_layout Plain Layout
18639 \begin_inset Formula $\boldsymbol{AbC}$
18640 \end_inset
18641
18642
18643 \end_layout
18644
18645 \end_inset
18646 </cell>
18647 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18648 \begin_inset Text
18649
18650 \begin_layout Plain Layout
18651 Alt+Z F oder Strg+Alt+B
18652 \end_layout
18653
18654 \end_inset
18655 </cell>
18656 </row>
18657 <row>
18658 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18659 \begin_inset Text
18660
18661 \begin_layout Plain Layout
18662
18663 \backslash
18664 mathcal
18665 \series bold
18666
18667 \begin_inset space \textvisiblespace{}
18668 \end_inset
18669
18670
18671 \series default
18672 ABC
18673 \end_layout
18674
18675 \end_inset
18676 </cell>
18677 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18678 \begin_inset Text
18679
18680 \begin_layout Plain Layout
18681 \begin_inset Formula $\mathcal{ABC}$
18682 \end_inset
18683
18684
18685 \end_layout
18686
18687 \end_inset
18688 </cell>
18689 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18690 \begin_inset Text
18691
18692 \begin_layout Plain Layout
18693 Alt+Z H
18694 \end_layout
18695
18696 \end_inset
18697 </cell>
18698 </row>
18699 <row>
18700 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18701 \begin_inset Text
18702
18703 \begin_layout Plain Layout
18704
18705 \backslash
18706 mathfrak
18707 \series bold
18708
18709 \begin_inset space \textvisiblespace{}
18710 \end_inset
18711
18712
18713 \series default
18714 AbC
18715 \end_layout
18716
18717 \end_inset
18718 </cell>
18719 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18720 \begin_inset Text
18721
18722 \begin_layout Plain Layout
18723 \begin_inset Formula $\mathfrak{AbC}$
18724 \end_inset
18725
18726
18727 \end_layout
18728
18729 \end_inset
18730 </cell>
18731 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18732 \begin_inset Text
18733
18734 \begin_layout Plain Layout
18735 -
18736 \end_layout
18737
18738 \end_inset
18739 </cell>
18740 </row>
18741 <row>
18742 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18743 \begin_inset Text
18744
18745 \begin_layout Plain Layout
18746
18747 \backslash
18748 mathscr
18749 \series bold
18750
18751 \begin_inset space \textvisiblespace{}
18752 \end_inset
18753
18754
18755 \series default
18756 AbC
18757 \end_layout
18758
18759 \end_inset
18760 </cell>
18761 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18762 \begin_inset Text
18763
18764 \begin_layout Plain Layout
18765 \begin_inset Formula $\mathscr{AbC}$
18766 \end_inset
18767
18768
18769 \end_layout
18770
18771 \end_inset
18772 </cell>
18773 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
18774 \begin_inset Text
18775
18776 \begin_layout Plain Layout
18777 -
18778 \end_layout
18779
18780 \end_inset
18781 </cell>
18782 </row>
18783 </lyxtabular>
18784
18785 \end_inset
18786
18787
18788 \end_layout
18789
18790 \begin_layout Standard
18791 \align center
18792 \begin_inset Tabular
18793 <lyxtabular version="3" rows="5" columns="3">
18794 <features rotate="0" tabularvalignment="middle">
18795 <column alignment="center" valignment="top">
18796 <column alignment="center" valignment="top">
18797 <column alignment="center" valignment="top">
18798 <row>
18799 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18800 \begin_inset Text
18801
18802 \begin_layout Plain Layout
18803 Befehl
18804 \end_layout
18805
18806 \end_inset
18807 </cell>
18808 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18809 \begin_inset Text
18810
18811 \begin_layout Plain Layout
18812 Ergebnis
18813 \end_layout
18814
18815 \end_inset
18816 </cell>
18817 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
18818 \begin_inset Text
18819
18820 \begin_layout Plain Layout
18821 Tastenkürzel
18822 \end_layout
18823
18824 \end_inset
18825 </cell>
18826 </row>
18827 <row>
18828 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18829 \begin_inset Text
18830
18831 \begin_layout Plain Layout
18832
18833 \backslash
18834 mathit
18835 \series bold
18836
18837 \begin_inset space \textvisiblespace{}
18838 \end_inset
18839
18840
18841 \series default
18842 AbC
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 \begin_inset Formula $\mathit{AbC}$
18852 \end_inset
18853
18854
18855 \end_layout
18856
18857 \end_inset
18858 </cell>
18859 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18860 \begin_inset Text
18861
18862 \begin_layout Plain Layout
18863 -
18864 \end_layout
18865
18866 \end_inset
18867 </cell>
18868 </row>
18869 <row>
18870 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18871 \begin_inset Text
18872
18873 \begin_layout Plain Layout
18874
18875 \backslash
18876 mathrm
18877 \series bold
18878
18879 \begin_inset space \textvisiblespace{}
18880 \end_inset
18881
18882
18883 \series default
18884 AbC
18885 \end_layout
18886
18887 \end_inset
18888 </cell>
18889 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18890 \begin_inset Text
18891
18892 \begin_layout Plain Layout
18893 \begin_inset Formula $\mathrm{AbC}$
18894 \end_inset
18895
18896
18897 \end_layout
18898
18899 \end_inset
18900 </cell>
18901 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18902 \begin_inset Text
18903
18904 \begin_layout Plain Layout
18905 Alt+Z R
18906 \end_layout
18907
18908 \end_inset
18909 </cell>
18910 </row>
18911 <row>
18912 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18913 \begin_inset Text
18914
18915 \begin_layout Plain Layout
18916
18917 \backslash
18918 mathsf
18919 \series bold
18920
18921 \begin_inset space \textvisiblespace{}
18922 \end_inset
18923
18924
18925 \series default
18926 AbC
18927 \end_layout
18928
18929 \end_inset
18930 </cell>
18931 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18932 \begin_inset Text
18933
18934 \begin_layout Plain Layout
18935 \begin_inset Formula $\mathsf{AbC}$
18936 \end_inset
18937
18938
18939 \end_layout
18940
18941 \end_inset
18942 </cell>
18943 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18944 \begin_inset Text
18945
18946 \begin_layout Plain Layout
18947 Alt+Z S
18948 \end_layout
18949
18950 \end_inset
18951 </cell>
18952 </row>
18953 <row>
18954 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18955 \begin_inset Text
18956
18957 \begin_layout Plain Layout
18958
18959 \backslash
18960 mathtt
18961 \series bold
18962
18963 \begin_inset space \textvisiblespace{}
18964 \end_inset
18965
18966
18967 \series default
18968 AbC
18969 \end_layout
18970
18971 \end_inset
18972 </cell>
18973 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18974 \begin_inset Text
18975
18976 \begin_layout Plain Layout
18977 \begin_inset Formula $\mathtt{AbC}$
18978 \end_inset
18979
18980
18981 \end_layout
18982
18983 \end_inset
18984 </cell>
18985 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
18986 \begin_inset Text
18987
18988 \begin_layout Plain Layout
18989 Alt+Z C
18990 \end_layout
18991
18992 \end_inset
18993 </cell>
18994 </row>
18995 </lyxtabular>
18996
18997 \end_inset
18998
18999
19000 \end_layout
19001
19002 \begin_layout Standard
19003 \begin_inset Note Greyedout
19004 status open
19005
19006 \begin_layout Plain Layout
19007
19008 \series bold
19009 Achtung:
19010 \series default
19011  Die Stile 
19012 \series bold
19013
19014 \backslash
19015 mathbb
19016 \series default
19017  und 
19018 \series bold
19019
19020 \backslash
19021 mathcal
19022 \series default
19023  können nur für Großbuchstaben verwendet werden.
19024 \end_layout
19025
19026 \end_inset
19027
19028
19029 \end_layout
19030
19031 \begin_layout Standard
19032 Voreingestellt ist der Stil 
19033 \series bold
19034
19035 \backslash
19036 mathnormal
19037 \series default
19038 .
19039 \end_layout
19040
19041 \begin_layout Standard
19042 Die Stilbefehle wirken auch auf Buchstaben in mathematischen Konstruktionen:
19043 \begin_inset Formula 
19044 \[
19045 \mathfrak{A=\frac{b}{C}}
19046 \]
19047
19048 \end_inset
19049
19050
19051 \end_layout
19052
19053 \begin_layout Standard
19054 Zeichen im mathematischen Textmodus erscheinen nicht in einem der Matheschriftst
19055 ile, sondern in dem Textschriftstil 
19056 \series bold
19057
19058 \backslash
19059 textrm
19060 \series default
19061 .
19062  Dass deren Stil nicht über den Textstil Dialog geändert werden kann ist
19063  ein Fehler in LyX.
19064 \begin_inset Foot
19065 status collapsed
19066
19067 \begin_layout Plain Layout
19068 \begin_inset CommandInset href
19069 LatexCommand href
19070 name "LyX-Fehler #4629"
19071 target "http://www.lyx.org/trac/ticket/4629"
19072
19073 \end_inset
19074
19075
19076 \end_layout
19077
19078 \end_inset
19079
19080
19081 \end_layout
19082
19083 \begin_layout Standard
19084 Anstelle der Stilbefehle kann man auch den Dialog 
19085 \family sans
19086 Bearbeiten\SpecialChar \menuseparator
19087 Mathe\SpecialChar \menuseparator
19088 Text-Stil
19089 \family default
19090  oder den Mathe-Werkzeugleistenknopf 
19091 \begin_inset Info
19092 type  "icon"
19093 arg   "math-insert \\font"
19094 \end_inset
19095
19096  verwenden.
19097 \end_layout
19098
19099 \begin_layout Subsection
19100 Fett gedruckte Formeln
19101 \begin_inset CommandInset label
19102 LatexCommand label
19103 name "sub:Fett-gedruckte-Formeln"
19104
19105 \end_inset
19106
19107
19108 \begin_inset Index idx
19109 status collapsed
19110
19111 \begin_layout Plain Layout
19112 Formel ! fett gedruckte
19113 \end_layout
19114
19115 \end_inset
19116
19117
19118 \end_layout
19119
19120 \begin_layout Standard
19121 Möchte man komplette Formeln fett setzen, kann man nicht den im vorigen
19122  Kapitel angegebenen Befehl 
19123 \series bold
19124
19125 \backslash
19126 mathbf
19127 \series default
19128  verwenden, denn dieser wirkt nicht auf kleine griechische Buchstaben.
19129  Außerdem setzt er lateinische Buchstaben immer aufrecht, was man an folgender
19130  Formel gut erkennt:
19131 \end_layout
19132
19133 \begin_layout Standard
19134 \begin_inset Formula 
19135 \[
19136 \mathbf{\int_{n}^{2}f(\theta)=\Gamma}\qquad\textrm{Formel mit \textbackslash mathbf}
19137 \]
19138
19139 \end_inset
19140
19141
19142 \end_layout
19143
19144 \begin_layout Standard
19145 Um die Formel korrekt darzustellen, verwendet man den Befehl 
19146 \series bold
19147
19148 \backslash
19149 boldsymbol
19150 \series default
19151 :
19152 \begin_inset Formula 
19153 \[
19154 \boldsymbol{\int_{n}^{2}f(\theta)=\Gamma\qquad\textrm{Formel mit \textbackslash boldsymbol}}
19155 \]
19156
19157 \end_inset
19158
19159 Es gibt auch die Möglichkeit die Formel in eine 
19160 \series bold
19161 boldmath-Umgebung
19162 \series default
19163  zu setzen.
19164  Diese Umgebung wird erzeugt, indem man im TeX-Modus den Befehl 
19165 \series bold
19166
19167 \backslash
19168 boldmath
19169 \series default
19170
19171 \begin_inset Index idx
19172 status collapsed
19173
19174 \begin_layout Plain Layout
19175 Befehle ! B ! 
19176 \backslash
19177 boldmath
19178 \end_layout
19179
19180 \end_inset
19181
19182  eingibt.
19183  Um die Umgebung wieder zu beenden, gibt man im TeX-Modus den Befehl 
19184 \series bold
19185
19186 \backslash
19187 unboldmath
19188 \series default
19189
19190 \begin_inset Index idx
19191 status collapsed
19192
19193 \begin_layout Plain Layout
19194 Befehle ! U ! 
19195 \backslash
19196 unboldmath
19197 \end_layout
19198
19199 \end_inset
19200
19201  ein.
19202 \begin_inset ERT
19203 status collapsed
19204
19205 \begin_layout Plain Layout
19206
19207
19208 \backslash
19209 boldmath 
19210 \end_layout
19211
19212 \end_inset
19213
19214
19215 \begin_inset Formula 
19216 \[
19217 \int_{n}^{2}f(\theta)=\Gamma\qquad\textrm{Formel in boldmath-Umgebung}
19218 \]
19219
19220 \end_inset
19221
19222
19223 \begin_inset ERT
19224 status collapsed
19225
19226 \begin_layout Plain Layout
19227
19228
19229 \backslash
19230 unboldmath 
19231 \end_layout
19232
19233 \end_inset
19234
19235
19236 \end_layout
19237
19238 \begin_layout Subsection
19239 Farbige Formeln
19240 \begin_inset Index idx
19241 status collapsed
19242
19243 \begin_layout Plain Layout
19244 Formel ! farbige
19245 \end_layout
19246
19247 \end_inset
19248
19249
19250 \end_layout
19251
19252 \begin_layout Standard
19253 Formeln können wie normaler Text gefärbt werden: Markieren Sie eine Formel
19254  oder Formelteile und verwenden dann den 
19255 \family sans
19256 Textstil
19257 \family default
19258  Dialog.
19259  Hier ist eine Formel in Magenta:
19260 \begin_inset Formula 
19261 \[
19262 {\color{magenta}\int A\,\mathrm{d}x=\frac{\sqrt[5]{B}}{\ln\left(\frac{1}{3}\right)}}
19263 \]
19264
19265 \end_inset
19266
19267
19268 \end_layout
19269
19270 \begin_layout Standard
19271 Man kann auch eigene Farben definieren, wie in 
19272 \begin_inset CommandInset ref
19273 LatexCommand ref
19274 reference "sub:Farbige-Boxen"
19275
19276 \end_inset
19277
19278  erklärt ist.
19279  Diese können dann mit dem TeX-Code Befehl 
19280 \series bold
19281
19282 \backslash
19283 textcolor
19284 \series default
19285
19286 \begin_inset Index idx
19287 status collapsed
19288
19289 \begin_layout Plain Layout
19290 Befehle! T ! 
19291 \backslash
19292 textcolor
19293 \end_layout
19294
19295 \end_inset
19296
19297  verwendet werden, dass folgendes Schema besitzt:
19298 \end_layout
19299
19300 \begin_layout Standard
19301
19302 \series bold
19303
19304 \backslash
19305 textcolor{Farbe}{Zeichen oder Formel}
19306 \end_layout
19307
19308 \begin_layout Standard
19309 Das folgende Beispiel wurde komplett dunkelgrün und teilweise rot eingefärbt:
19310 \end_layout
19311
19312 \begin_layout Standard
19313 \begin_inset ERT
19314 status collapsed
19315
19316 \begin_layout Plain Layout
19317
19318
19319 \backslash
19320 textcolor{dunkelgruen}{
19321 \end_layout
19322
19323 \end_inset
19324
19325
19326 \begin_inset Formula 
19327 \[
19328 \int A\,\mathrm{d}x=\frac{{\color{red}\sqrt[5]{B}}}{\ln\left(\frac{1}{3}\right)}
19329 \]
19330
19331 \end_inset
19332
19333
19334 \begin_inset ERT
19335 status collapsed
19336
19337 \begin_layout Plain Layout
19338
19339 }
19340 \end_layout
19341
19342 \end_inset
19343
19344
19345 \end_layout
19346
19347 \begin_layout Standard
19348 Aufgrund eines Fehlers in LyX können nur komplette Formeln mit selbst definierte
19349 n Farben gefärbt werden.
19350 \begin_inset Foot
19351 status collapsed
19352
19353 \begin_layout Plain Layout
19354 \begin_inset CommandInset href
19355 LatexCommand href
19356 name "LyX-bug #5269"
19357 target "http://www.lyx.org/trac/ticket/5269"
19358
19359 \end_inset
19360
19361
19362 \end_layout
19363
19364 \end_inset
19365
19366
19367 \end_layout
19368
19369 \begin_layout Subsection
19370 Schriftgrößen
19371 \begin_inset CommandInset label
19372 LatexCommand label
19373 name "sub:Schriftgrößen"
19374
19375 \end_inset
19376
19377
19378 \begin_inset Index idx
19379 status collapsed
19380
19381 \begin_layout Plain Layout
19382 Schriften ! Schriftgrößen
19383 \end_layout
19384
19385 \end_inset
19386
19387
19388 \end_layout
19389
19390 \begin_layout Standard
19391 Für Zeichen in einer Formel gibt es, analog zu Textzeichen, folgende Größenbefeh
19392 le:
19393 \end_layout
19394
19395 \begin_layout Standard
19396
19397 \series bold
19398
19399 \backslash
19400 Huge
19401 \series default
19402
19403 \series bold
19404
19405 \backslash
19406 huge
19407 \series default
19408
19409 \series bold
19410
19411 \backslash
19412 LARGE
19413 \series default
19414
19415 \series bold
19416
19417 \backslash
19418 Large
19419 \series default
19420
19421 \series bold
19422
19423 \backslash
19424 large
19425 \series default
19426
19427 \series bold
19428
19429 \backslash
19430 normalsize
19431 \series default
19432
19433 \series bold
19434
19435 \backslash
19436 small
19437 \series default
19438
19439 \series bold
19440
19441 \backslash
19442 footnotesize
19443 \series default
19444 ,
19445 \begin_inset Newline linebreak
19446 \end_inset
19447
19448
19449 \series bold
19450
19451 \backslash
19452 scriptsize
19453 \series default
19454  und 
19455 \series bold
19456
19457 \backslash
19458 tiny
19459 \end_layout
19460
19461 \begin_layout Standard
19462 Welche Größe die Befehle produzieren, hängt von der Dokumentschriftgröße
19463  ab, die dem Befehl 
19464 \series bold
19465
19466 \backslash
19467 normalsize
19468 \series default
19469  entspricht.
19470  Die anderen Befehle produzieren kleinere oder größere Schriften als 
19471 \series bold
19472
19473 \backslash
19474 normalsize
19475 \series default
19476 .
19477  Die Schriftgröße kann jedoch einen bestimmten Wert nicht übertreffen.
19478  Beträgt z.
19479 \begin_inset space \thinspace{}
19480 \end_inset
19481
19482 B.
19483  die Dokumentschriftgröße 12
19484 \begin_inset space \thinspace{}
19485 \end_inset
19486
19487 pt, produziert der Befehl 
19488 \series bold
19489
19490 \backslash
19491 Huge
19492 \series default
19493  dasselbe wie 
19494 \series bold
19495
19496 \backslash
19497 huge
19498 \series default
19499 .
19500  
19501 \end_layout
19502
19503 \begin_layout Standard
19504 Ein Größenbefehl wird im TeX-Modus vor der Formel eingegeben und legt die
19505  Größe aller nachfolgenden Formel- und Textzeichen fest.
19506  Um wieder zur Ausgangsgröße zurückzukehren, gibt man nach der Formel im
19507  TeX-Modus den Befehl 
19508 \series bold
19509
19510 \backslash
19511 normalsize
19512 \series default
19513  ein.
19514 \end_layout
19515
19516 \begin_layout Standard
19517 Innerhalb einer Formel kann die Größe mit den folgenden Größenbefehlen oder
19518  dem Mathe-Werkzeugleistenknopf 
19519 \begin_inset Info
19520 type  "icon"
19521 arg   "math-insert \\style"
19522 \end_inset
19523
19524  geändert werden:
19525 \end_layout
19526
19527 \begin_layout Standard
19528 \noindent
19529 \align center
19530 \begin_inset Tabular
19531 <lyxtabular version="3" rows="5" columns="2">
19532 <features rotate="0" tabularvalignment="middle">
19533 <column alignment="center" valignment="top">
19534 <column alignment="center" valignment="top">
19535 <row>
19536 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19537 \begin_inset Text
19538
19539 \begin_layout Plain Layout
19540 Befehl
19541 \end_layout
19542
19543 \end_inset
19544 </cell>
19545 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19546 \begin_inset Text
19547
19548 \begin_layout Plain Layout
19549 Ergebnis
19550 \begin_inset Note Note
19551 status collapsed
19552
19553 \begin_layout Plain Layout
19554
19555 \series bold
19556
19557 \backslash
19558 raisebox
19559 \series default
19560  dient nur als Abstandhalter.
19561 \end_layout
19562
19563 \end_inset
19564
19565
19566 \end_layout
19567
19568 \end_inset
19569 </cell>
19570 </row>
19571 <row>
19572 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19573 \begin_inset Text
19574
19575 \begin_layout Plain Layout
19576
19577 \backslash
19578 displaystyle
19579 \begin_inset Index idx
19580 status collapsed
19581
19582 \begin_layout Plain Layout
19583 Befehle ! D ! 
19584 \backslash
19585 displaystyle
19586 \end_layout
19587
19588 \end_inset
19589
19590
19591 \end_layout
19592
19593 \end_inset
19594 </cell>
19595 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19596 \begin_inset Text
19597
19598 \begin_layout Plain Layout
19599 \begin_inset Formula $\raisebox{6.5mm}{}{\displaystyle E_{\mathrm{pot_{1}}}=\frac{K}{l+\frac{m}{n_{2}}}}\raisebox{-5.5mm}{}$
19600 \end_inset
19601
19602
19603 \end_layout
19604
19605 \end_inset
19606 </cell>
19607 </row>
19608 <row>
19609 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19610 \begin_inset Text
19611
19612 \begin_layout Plain Layout
19613
19614 \backslash
19615 textstyle
19616 \end_layout
19617
19618 \end_inset
19619 </cell>
19620 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19621 \begin_inset Text
19622
19623 \begin_layout Plain Layout
19624 \begin_inset Formula $\raisebox{4.5mm}{}{\textstyle E_{\mathrm{pot_{1}}}=\frac{K}{l+\frac{m}{n_{2}}}}\raisebox{-4mm}{}$
19625 \end_inset
19626
19627
19628 \end_layout
19629
19630 \end_inset
19631 </cell>
19632 </row>
19633 <row>
19634 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19635 \begin_inset Text
19636
19637 \begin_layout Plain Layout
19638
19639 \backslash
19640 scriptstyle
19641 \end_layout
19642
19643 \end_inset
19644 </cell>
19645 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19646 \begin_inset Text
19647
19648 \begin_layout Plain Layout
19649 \begin_inset Formula $\raisebox{4.5mm}{}{\scriptstyle E_{\mathrm{pot_{1}}}=\frac{K}{l+\frac{m}{n_{2}}}}\raisebox{-3.5mm}{}$
19650 \end_inset
19651
19652
19653 \end_layout
19654
19655 \end_inset
19656 </cell>
19657 </row>
19658 <row>
19659 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19660 \begin_inset Text
19661
19662 \begin_layout Plain Layout
19663
19664 \backslash
19665 scriptscriptstyle
19666 \end_layout
19667
19668 \end_inset
19669 </cell>
19670 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19671 \begin_inset Text
19672
19673 \begin_layout Plain Layout
19674 \begin_inset Formula $\raisebox{4.5mm}{}{\scriptscriptstyle E_{\mathrm{pot_{1}}}=\frac{K}{l+\frac{m}{n_{2}}}}\raisebox{-3.5mm}{}$
19675 \end_inset
19676
19677
19678 \end_layout
19679
19680 \end_inset
19681 </cell>
19682 </row>
19683 </lyxtabular>
19684
19685 \end_inset
19686
19687
19688 \end_layout
19689
19690 \begin_layout Standard
19691 Nachdem diese Befehle eingegeben wurden, erscheint eine blaues Kästchen
19692  in das die Formelteile eingegeben werden.
19693 \end_layout
19694
19695 \begin_layout Standard
19696 Es gibt eine weitere Möglichkeit die Schriftgröße zu ändern, die allerdings
19697  nur für Symbole oder Buchstaben im mathematischen Text funktioniert.
19698  Dazu wird einer der obigen Textgrößenbefehle im mathematischen Textmodus
19699  eingegeben.
19700  Alle diesem Befehl folgenden Zeichen bis zum Ende des mathematischen Textes
19701  oder bis zu einem anderen Größenbefehl haben dann die angegebene Größe.
19702  Dazu zwei Beispiele:
19703 \begin_inset VSpace -2mm
19704 \end_inset
19705
19706
19707 \end_layout
19708
19709 \begin_layout Standard
19710 \begin_inset ERT
19711 status collapsed
19712
19713 \begin_layout Plain Layout
19714
19715
19716 \backslash
19717 huge 
19718 \end_layout
19719
19720 \end_inset
19721
19722
19723 \begin_inset Formula 
19724 \[
19725 A=\frac{B}{c}\cdot\maltese
19726 \]
19727
19728 \end_inset
19729
19730
19731 \begin_inset Formula 
19732 \[
19733 \maltese A\textrm{\Large\maltese\textit{A}}\textrm{\tiny\maltese\textit{A}}
19734 \]
19735
19736 \end_inset
19737
19738
19739 \begin_inset ERT
19740 status collapsed
19741
19742 \begin_layout Plain Layout
19743
19744
19745 \backslash
19746 normalsize 
19747 \end_layout
19748
19749 \end_inset
19750
19751
19752 \end_layout
19753
19754 \begin_layout Standard
19755 \begin_inset VSpace medskip
19756 \end_inset
19757
19758 Vor beiden Formeln wurde der Befehl 
19759 \series bold
19760
19761 \backslash
19762 huge
19763 \series default
19764  eingegeben.
19765  Der Befehl für die zweite Formel lautet:
19766 \begin_inset Newline newline
19767 \end_inset
19768
19769
19770 \series bold
19771
19772 \backslash
19773 maltese
19774 \begin_inset space \textvisiblespace{}
19775 \end_inset
19776
19777 A M-m m 
19778 \backslash
19779 Large
19780 \begin_inset space \textvisiblespace{}
19781 \end_inset
19782
19783
19784 \backslash
19785 maltese
19786 \begin_inset space \textvisiblespace{}
19787 \end_inset
19788
19789
19790 \backslash
19791 textit
19792 \begin_inset space \textvisiblespace{}
19793 \end_inset
19794
19795 A
19796 \begin_inset Formula $\to$
19797 \end_inset
19798
19799
19800 \begin_inset Formula $\to$
19801 \end_inset
19802
19803
19804 \begin_inset Newline newline
19805 \end_inset
19806
19807
19808 \begin_inset space \hspace*{}
19809 \length 1cm
19810 \end_inset
19811
19812 M-m
19813 \series default
19814  
19815 \series bold
19816
19817 \backslash
19818 tiny
19819 \begin_inset space \textvisiblespace{}
19820 \end_inset
19821
19822
19823 \backslash
19824 maltese
19825 \begin_inset space \textvisiblespace{}
19826 \end_inset
19827
19828
19829 \backslash
19830 textit
19831 \begin_inset space \textvisiblespace{}
19832 \end_inset
19833
19834 A
19835 \end_layout
19836
19837 \begin_layout Standard
19838 Kann ein Symbol nicht in verschiedenen Größen dargestellt werden, wird es
19839  immer in der Standardgröße dargestellt.
19840 \end_layout
19841
19842 \begin_layout Section
19843 Griechische Buchstaben
19844 \begin_inset Index idx
19845 status collapsed
19846
19847 \begin_layout Plain Layout
19848 griechische Buchstaben
19849 \end_layout
19850
19851 \end_inset
19852
19853
19854 \end_layout
19855
19856 \begin_layout Standard
19857 Griechischen Buchstaben können auch über den Mathe-Werkzeugleistenknopf
19858  
19859 \begin_inset Info
19860 type  "icon"
19861 arg   "math-insert \\alpha"
19862 \end_inset
19863
19864  eingefügt werden.
19865  Alle internationalen Schriftsatz-Normen geben vor, dass griechische Buchstaben
19866  in Formeln aufrecht gesetzt werden.
19867  In einigen Sprachen, wie z.
19868 \begin_inset space \thinspace{}
19869 \end_inset
19870
19871 B: Französisch oder Russisch, werden sie dennoch manchmal aufrecht gesetzt.
19872 \end_layout
19873
19874 \begin_layout Subsection
19875 Kleine Buchstaben
19876 \begin_inset Index idx
19877 status collapsed
19878
19879 \begin_layout Plain Layout
19880 griechische Buchstaben ! kleine
19881 \end_layout
19882
19883 \end_inset
19884
19885
19886 \end_layout
19887
19888 \begin_layout Standard
19889 \begin_inset space \hfill{}
19890 \end_inset
19891
19892
19893 \begin_inset Tabular
19894 <lyxtabular version="3" rows="11" columns="2">
19895 <features rotate="0" tabularvalignment="middle">
19896 <column alignment="center" valignment="top" width="0pt">
19897 <column alignment="center" valignment="top" width="0pt">
19898 <row>
19899 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19900 \begin_inset Text
19901
19902 \begin_layout Plain Layout
19903 Befehl
19904 \end_layout
19905
19906 \end_inset
19907 </cell>
19908 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19909 \begin_inset Text
19910
19911 \begin_layout Plain Layout
19912 Ergebnis
19913 \end_layout
19914
19915 \end_inset
19916 </cell>
19917 </row>
19918 <row>
19919 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19920 \begin_inset Text
19921
19922 \begin_layout Plain Layout
19923
19924 \backslash
19925 alpha
19926 \end_layout
19927
19928 \end_inset
19929 </cell>
19930 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19931 \begin_inset Text
19932
19933 \begin_layout Plain Layout
19934 \begin_inset Formula $\alpha$
19935 \end_inset
19936
19937
19938 \end_layout
19939
19940 \end_inset
19941 </cell>
19942 </row>
19943 <row>
19944 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19945 \begin_inset Text
19946
19947 \begin_layout Plain Layout
19948
19949 \backslash
19950 beta
19951 \end_layout
19952
19953 \end_inset
19954 </cell>
19955 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19956 \begin_inset Text
19957
19958 \begin_layout Plain Layout
19959 \begin_inset Formula $\beta$
19960 \end_inset
19961
19962
19963 \end_layout
19964
19965 \end_inset
19966 </cell>
19967 </row>
19968 <row>
19969 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19970 \begin_inset Text
19971
19972 \begin_layout Plain Layout
19973
19974 \backslash
19975 gamma
19976 \end_layout
19977
19978 \end_inset
19979 </cell>
19980 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19981 \begin_inset Text
19982
19983 \begin_layout Plain Layout
19984 \begin_inset Formula $\gamma$
19985 \end_inset
19986
19987
19988 \end_layout
19989
19990 \end_inset
19991 </cell>
19992 </row>
19993 <row>
19994 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19995 \begin_inset Text
19996
19997 \begin_layout Plain Layout
19998
19999 \backslash
20000 delta
20001 \end_layout
20002
20003 \end_inset
20004 </cell>
20005 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20006 \begin_inset Text
20007
20008 \begin_layout Plain Layout
20009 \begin_inset Formula $\delta$
20010 \end_inset
20011
20012
20013 \end_layout
20014
20015 \end_inset
20016 </cell>
20017 </row>
20018 <row>
20019 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20020 \begin_inset Text
20021
20022 \begin_layout Plain Layout
20023
20024 \backslash
20025 epsilon
20026 \end_layout
20027
20028 \end_inset
20029 </cell>
20030 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20031 \begin_inset Text
20032
20033 \begin_layout Plain Layout
20034 \begin_inset Formula $\epsilon$
20035 \end_inset
20036
20037
20038 \end_layout
20039
20040 \end_inset
20041 </cell>
20042 </row>
20043 <row>
20044 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20045 \begin_inset Text
20046
20047 \begin_layout Plain Layout
20048
20049 \backslash
20050 varepsilon
20051 \end_layout
20052
20053 \end_inset
20054 </cell>
20055 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20056 \begin_inset Text
20057
20058 \begin_layout Plain Layout
20059 \begin_inset Formula $\varepsilon$
20060 \end_inset
20061
20062
20063 \end_layout
20064
20065 \end_inset
20066 </cell>
20067 </row>
20068 <row>
20069 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20070 \begin_inset Text
20071
20072 \begin_layout Plain Layout
20073
20074 \backslash
20075 zeta
20076 \end_layout
20077
20078 \end_inset
20079 </cell>
20080 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20081 \begin_inset Text
20082
20083 \begin_layout Plain Layout
20084 \begin_inset Formula $\zeta$
20085 \end_inset
20086
20087
20088 \end_layout
20089
20090 \end_inset
20091 </cell>
20092 </row>
20093 <row>
20094 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20095 \begin_inset Text
20096
20097 \begin_layout Plain Layout
20098
20099 \backslash
20100 eta
20101 \end_layout
20102
20103 \end_inset
20104 </cell>
20105 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20106 \begin_inset Text
20107
20108 \begin_layout Plain Layout
20109 \begin_inset Formula $\eta$
20110 \end_inset
20111
20112
20113 \end_layout
20114
20115 \end_inset
20116 </cell>
20117 </row>
20118 <row>
20119 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20120 \begin_inset Text
20121
20122 \begin_layout Plain Layout
20123
20124 \backslash
20125 theta
20126 \end_layout
20127
20128 \end_inset
20129 </cell>
20130 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20131 \begin_inset Text
20132
20133 \begin_layout Plain Layout
20134 \begin_inset Formula $\theta$
20135 \end_inset
20136
20137
20138 \end_layout
20139
20140 \end_inset
20141 </cell>
20142 </row>
20143 <row>
20144 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20145 \begin_inset Text
20146
20147 \begin_layout Plain Layout
20148
20149 \backslash
20150 vartheta
20151 \end_layout
20152
20153 \end_inset
20154 </cell>
20155 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20156 \begin_inset Text
20157
20158 \begin_layout Plain Layout
20159 \begin_inset Formula $\vartheta$
20160 \end_inset
20161
20162
20163 \end_layout
20164
20165 \end_inset
20166 </cell>
20167 </row>
20168 </lyxtabular>
20169
20170 \end_inset
20171
20172
20173 \begin_inset space \hfill{}
20174 \end_inset
20175
20176
20177 \begin_inset Tabular
20178 <lyxtabular version="3" rows="12" columns="2">
20179 <features rotate="0" tabularvalignment="middle">
20180 <column alignment="center" valignment="top" width="0pt">
20181 <column alignment="center" valignment="top" width="0pt">
20182 <row>
20183 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20184 \begin_inset Text
20185
20186 \begin_layout Plain Layout
20187 Befehl
20188 \end_layout
20189
20190 \end_inset
20191 </cell>
20192 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20193 \begin_inset Text
20194
20195 \begin_layout Plain Layout
20196 Ergebnis
20197 \end_layout
20198
20199 \end_inset
20200 </cell>
20201 </row>
20202 <row>
20203 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20204 \begin_inset Text
20205
20206 \begin_layout Plain Layout
20207
20208 \backslash
20209 iota
20210 \end_layout
20211
20212 \end_inset
20213 </cell>
20214 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20215 \begin_inset Text
20216
20217 \begin_layout Plain Layout
20218 \begin_inset Formula $\iota$
20219 \end_inset
20220
20221
20222 \end_layout
20223
20224 \end_inset
20225 </cell>
20226 </row>
20227 <row>
20228 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20229 \begin_inset Text
20230
20231 \begin_layout Plain Layout
20232
20233 \backslash
20234 kappa
20235 \end_layout
20236
20237 \end_inset
20238 </cell>
20239 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20240 \begin_inset Text
20241
20242 \begin_layout Plain Layout
20243 \begin_inset Formula $\kappa$
20244 \end_inset
20245
20246
20247 \end_layout
20248
20249 \end_inset
20250 </cell>
20251 </row>
20252 <row>
20253 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20254 \begin_inset Text
20255
20256 \begin_layout Plain Layout
20257
20258 \backslash
20259 varkappa
20260 \end_layout
20261
20262 \end_inset
20263 </cell>
20264 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20265 \begin_inset Text
20266
20267 \begin_layout Plain Layout
20268 \begin_inset Formula $\varkappa$
20269 \end_inset
20270
20271
20272 \end_layout
20273
20274 \end_inset
20275 </cell>
20276 </row>
20277 <row>
20278 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20279 \begin_inset Text
20280
20281 \begin_layout Plain Layout
20282
20283 \backslash
20284 lambda
20285 \end_layout
20286
20287 \end_inset
20288 </cell>
20289 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20290 \begin_inset Text
20291
20292 \begin_layout Plain Layout
20293 \begin_inset Formula $\lambda$
20294 \end_inset
20295
20296
20297 \end_layout
20298
20299 \end_inset
20300 </cell>
20301 </row>
20302 <row>
20303 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20304 \begin_inset Text
20305
20306 \begin_layout Plain Layout
20307
20308 \backslash
20309 mu
20310 \end_layout
20311
20312 \end_inset
20313 </cell>
20314 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20315 \begin_inset Text
20316
20317 \begin_layout Plain Layout
20318 \begin_inset Formula $\mu$
20319 \end_inset
20320
20321
20322 \end_layout
20323
20324 \end_inset
20325 </cell>
20326 </row>
20327 <row>
20328 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20329 \begin_inset Text
20330
20331 \begin_layout Plain Layout
20332
20333 \backslash
20334 nu
20335 \end_layout
20336
20337 \end_inset
20338 </cell>
20339 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20340 \begin_inset Text
20341
20342 \begin_layout Plain Layout
20343 \begin_inset Formula $\nu$
20344 \end_inset
20345
20346
20347 \end_layout
20348
20349 \end_inset
20350 </cell>
20351 </row>
20352 <row>
20353 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20354 \begin_inset Text
20355
20356 \begin_layout Plain Layout
20357
20358 \backslash
20359 xi
20360 \end_layout
20361
20362 \end_inset
20363 </cell>
20364 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20365 \begin_inset Text
20366
20367 \begin_layout Plain Layout
20368 \begin_inset Formula $\xi$
20369 \end_inset
20370
20371
20372 \end_layout
20373
20374 \end_inset
20375 </cell>
20376 </row>
20377 <row>
20378 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20379 \begin_inset Text
20380
20381 \begin_layout Plain Layout
20382 o
20383 \end_layout
20384
20385 \end_inset
20386 </cell>
20387 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20388 \begin_inset Text
20389
20390 \begin_layout Plain Layout
20391 \begin_inset Formula $o$
20392 \end_inset
20393
20394
20395 \end_layout
20396
20397 \end_inset
20398 </cell>
20399 </row>
20400 <row>
20401 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20402 \begin_inset Text
20403
20404 \begin_layout Plain Layout
20405
20406 \backslash
20407 pi
20408 \end_layout
20409
20410 \end_inset
20411 </cell>
20412 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20413 \begin_inset Text
20414
20415 \begin_layout Plain Layout
20416 \begin_inset Formula $\pi$
20417 \end_inset
20418
20419
20420 \end_layout
20421
20422 \end_inset
20423 </cell>
20424 </row>
20425 <row>
20426 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20427 \begin_inset Text
20428
20429 \begin_layout Plain Layout
20430
20431 \backslash
20432 varpi
20433 \end_layout
20434
20435 \end_inset
20436 </cell>
20437 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20438 \begin_inset Text
20439
20440 \begin_layout Plain Layout
20441 \begin_inset Formula $\varpi$
20442 \end_inset
20443
20444
20445 \end_layout
20446
20447 \end_inset
20448 </cell>
20449 </row>
20450 <row>
20451 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20452 \begin_inset Text
20453
20454 \begin_layout Plain Layout
20455
20456 \backslash
20457 rho
20458 \end_layout
20459
20460 \end_inset
20461 </cell>
20462 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20463 \begin_inset Text
20464
20465 \begin_layout Plain Layout
20466 \begin_inset Formula $\rho$
20467 \end_inset
20468
20469
20470 \end_layout
20471
20472 \end_inset
20473 </cell>
20474 </row>
20475 </lyxtabular>
20476
20477 \end_inset
20478
20479
20480 \begin_inset space \hfill{}
20481 \end_inset
20482
20483
20484 \begin_inset Tabular
20485 <lyxtabular version="3" rows="11" columns="2">
20486 <features rotate="0" tabularvalignment="middle">
20487 <column alignment="center" valignment="top" width="0pt">
20488 <column alignment="center" valignment="top" width="0pt">
20489 <row>
20490 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20491 \begin_inset Text
20492
20493 \begin_layout Plain Layout
20494 Befehl
20495 \end_layout
20496
20497 \end_inset
20498 </cell>
20499 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20500 \begin_inset Text
20501
20502 \begin_layout Plain Layout
20503 Ergebnis
20504 \end_layout
20505
20506 \end_inset
20507 </cell>
20508 </row>
20509 <row>
20510 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20511 \begin_inset Text
20512
20513 \begin_layout Plain Layout
20514
20515 \backslash
20516 varrho
20517 \end_layout
20518
20519 \end_inset
20520 </cell>
20521 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20522 \begin_inset Text
20523
20524 \begin_layout Plain Layout
20525 \begin_inset Formula $\varrho$
20526 \end_inset
20527
20528
20529 \end_layout
20530
20531 \end_inset
20532 </cell>
20533 </row>
20534 <row>
20535 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20536 \begin_inset Text
20537
20538 \begin_layout Plain Layout
20539
20540 \backslash
20541 sigma
20542 \end_layout
20543
20544 \end_inset
20545 </cell>
20546 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20547 \begin_inset Text
20548
20549 \begin_layout Plain Layout
20550 \begin_inset Formula $\sigma$
20551 \end_inset
20552
20553
20554 \end_layout
20555
20556 \end_inset
20557 </cell>
20558 </row>
20559 <row>
20560 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20561 \begin_inset Text
20562
20563 \begin_layout Plain Layout
20564
20565 \backslash
20566 varsigma
20567 \end_layout
20568
20569 \end_inset
20570 </cell>
20571 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20572 \begin_inset Text
20573
20574 \begin_layout Plain Layout
20575 \begin_inset Formula $\varsigma$
20576 \end_inset
20577
20578
20579 \end_layout
20580
20581 \end_inset
20582 </cell>
20583 </row>
20584 <row>
20585 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20586 \begin_inset Text
20587
20588 \begin_layout Plain Layout
20589
20590 \backslash
20591 tau
20592 \end_layout
20593
20594 \end_inset
20595 </cell>
20596 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20597 \begin_inset Text
20598
20599 \begin_layout Plain Layout
20600 \begin_inset Formula $\tau$
20601 \end_inset
20602
20603
20604 \end_layout
20605
20606 \end_inset
20607 </cell>
20608 </row>
20609 <row>
20610 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20611 \begin_inset Text
20612
20613 \begin_layout Plain Layout
20614
20615 \backslash
20616 upsilon
20617 \end_layout
20618
20619 \end_inset
20620 </cell>
20621 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20622 \begin_inset Text
20623
20624 \begin_layout Plain Layout
20625 \begin_inset Formula $\upsilon$
20626 \end_inset
20627
20628
20629 \end_layout
20630
20631 \end_inset
20632 </cell>
20633 </row>
20634 <row>
20635 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20636 \begin_inset Text
20637
20638 \begin_layout Plain Layout
20639
20640 \backslash
20641 phi
20642 \end_layout
20643
20644 \end_inset
20645 </cell>
20646 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20647 \begin_inset Text
20648
20649 \begin_layout Plain Layout
20650 \begin_inset Formula $\phi$
20651 \end_inset
20652
20653
20654 \end_layout
20655
20656 \end_inset
20657 </cell>
20658 </row>
20659 <row>
20660 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20661 \begin_inset Text
20662
20663 \begin_layout Plain Layout
20664
20665 \backslash
20666 varphi
20667 \end_layout
20668
20669 \end_inset
20670 </cell>
20671 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20672 \begin_inset Text
20673
20674 \begin_layout Plain Layout
20675 \begin_inset Formula $\varphi$
20676 \end_inset
20677
20678
20679 \end_layout
20680
20681 \end_inset
20682 </cell>
20683 </row>
20684 <row>
20685 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20686 \begin_inset Text
20687
20688 \begin_layout Plain Layout
20689
20690 \backslash
20691 chi
20692 \end_layout
20693
20694 \end_inset
20695 </cell>
20696 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20697 \begin_inset Text
20698
20699 \begin_layout Plain Layout
20700 \begin_inset Formula $\chi$
20701 \end_inset
20702
20703
20704 \end_layout
20705
20706 \end_inset
20707 </cell>
20708 </row>
20709 <row>
20710 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20711 \begin_inset Text
20712
20713 \begin_layout Plain Layout
20714
20715 \backslash
20716 psi
20717 \end_layout
20718
20719 \end_inset
20720 </cell>
20721 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20722 \begin_inset Text
20723
20724 \begin_layout Plain Layout
20725 \begin_inset Formula $\psi$
20726 \end_inset
20727
20728
20729 \end_layout
20730
20731 \end_inset
20732 </cell>
20733 </row>
20734 <row>
20735 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20736 \begin_inset Text
20737
20738 \begin_layout Plain Layout
20739
20740 \backslash
20741 omega
20742 \end_layout
20743
20744 \end_inset
20745 </cell>
20746 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20747 \begin_inset Text
20748
20749 \begin_layout Plain Layout
20750 \begin_inset Formula $\omega$
20751 \end_inset
20752
20753
20754 \end_layout
20755
20756 \end_inset
20757 </cell>
20758 </row>
20759 </lyxtabular>
20760
20761 \end_inset
20762
20763
20764 \begin_inset space \hfill{}
20765 \end_inset
20766
20767
20768 \end_layout
20769
20770 \begin_layout Standard
20771 \begin_inset VSpace medskip
20772 \end_inset
20773
20774 Wie man spezielle, aufrechte griechische Buchstaben erstellt, ist in 
20775 \begin_inset CommandInset ref
20776 LatexCommand ref
20777 reference "sub:Aufrechte-kleine-griechische"
20778
20779 \end_inset
20780
20781  beschrieben.
20782 \end_layout
20783
20784 \begin_layout Subsection
20785 Große Buchstaben
20786 \begin_inset Index idx
20787 status collapsed
20788
20789 \begin_layout Plain Layout
20790 griechische Buchstaben ! große
20791 \end_layout
20792
20793 \end_inset
20794
20795
20796 \end_layout
20797
20798 \begin_layout Standard
20799 \begin_inset space \hfill{}
20800 \end_inset
20801
20802
20803 \begin_inset Tabular
20804 <lyxtabular version="3" rows="7" columns="2">
20805 <features rotate="0" tabularvalignment="middle">
20806 <column alignment="center" valignment="top" width="0pt">
20807 <column alignment="center" valignment="top" width="0pt">
20808 <row>
20809 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20810 \begin_inset Text
20811
20812 \begin_layout Plain Layout
20813 Befehl
20814 \end_layout
20815
20816 \end_inset
20817 </cell>
20818 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20819 \begin_inset Text
20820
20821 \begin_layout Plain Layout
20822 Ergebnis
20823 \end_layout
20824
20825 \end_inset
20826 </cell>
20827 </row>
20828 <row>
20829 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20830 \begin_inset Text
20831
20832 \begin_layout Plain Layout
20833
20834 \backslash
20835 Gamma
20836 \end_layout
20837
20838 \end_inset
20839 </cell>
20840 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20841 \begin_inset Text
20842
20843 \begin_layout Plain Layout
20844 \begin_inset Formula $\Gamma$
20845 \end_inset
20846
20847
20848 \end_layout
20849
20850 \end_inset
20851 </cell>
20852 </row>
20853 <row>
20854 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20855 \begin_inset Text
20856
20857 \begin_layout Plain Layout
20858
20859 \backslash
20860 Delta
20861 \end_layout
20862
20863 \end_inset
20864 </cell>
20865 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20866 \begin_inset Text
20867
20868 \begin_layout Plain Layout
20869 \begin_inset Formula $\Delta$
20870 \end_inset
20871
20872
20873 \end_layout
20874
20875 \end_inset
20876 </cell>
20877 </row>
20878 <row>
20879 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20880 \begin_inset Text
20881
20882 \begin_layout Plain Layout
20883
20884 \backslash
20885 Theta
20886 \end_layout
20887
20888 \end_inset
20889 </cell>
20890 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20891 \begin_inset Text
20892
20893 \begin_layout Plain Layout
20894 \begin_inset Formula $\Theta$
20895 \end_inset
20896
20897
20898 \end_layout
20899
20900 \end_inset
20901 </cell>
20902 </row>
20903 <row>
20904 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20905 \begin_inset Text
20906
20907 \begin_layout Plain Layout
20908
20909 \backslash
20910 Lambda
20911 \end_layout
20912
20913 \end_inset
20914 </cell>
20915 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20916 \begin_inset Text
20917
20918 \begin_layout Plain Layout
20919 \begin_inset Formula $\Lambda$
20920 \end_inset
20921
20922
20923 \end_layout
20924
20925 \end_inset
20926 </cell>
20927 </row>
20928 <row>
20929 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20930 \begin_inset Text
20931
20932 \begin_layout Plain Layout
20933
20934 \backslash
20935 Xi
20936 \end_layout
20937
20938 \end_inset
20939 </cell>
20940 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20941 \begin_inset Text
20942
20943 \begin_layout Plain Layout
20944 \begin_inset Formula $\Xi$
20945 \end_inset
20946
20947
20948 \end_layout
20949
20950 \end_inset
20951 </cell>
20952 </row>
20953 <row>
20954 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20955 \begin_inset Text
20956
20957 \begin_layout Plain Layout
20958
20959 \backslash
20960 Pi
20961 \end_layout
20962
20963 \end_inset
20964 </cell>
20965 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20966 \begin_inset Text
20967
20968 \begin_layout Plain Layout
20969 \begin_inset Formula $\Pi$
20970 \end_inset
20971
20972
20973 \end_layout
20974
20975 \end_inset
20976 </cell>
20977 </row>
20978 </lyxtabular>
20979
20980 \end_inset
20981
20982
20983 \begin_inset space \hfill{}
20984 \end_inset
20985
20986
20987 \begin_inset Tabular
20988 <lyxtabular version="3" rows="6" columns="2">
20989 <features rotate="0" tabularvalignment="middle">
20990 <column alignment="center" valignment="top" width="0pt">
20991 <column alignment="center" valignment="top" width="0pt">
20992 <row>
20993 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20994 \begin_inset Text
20995
20996 \begin_layout Plain Layout
20997 Befehl
20998 \end_layout
20999
21000 \end_inset
21001 </cell>
21002 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21003 \begin_inset Text
21004
21005 \begin_layout Plain Layout
21006 Ergebnis
21007 \end_layout
21008
21009 \end_inset
21010 </cell>
21011 </row>
21012 <row>
21013 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21014 \begin_inset Text
21015
21016 \begin_layout Plain Layout
21017
21018 \backslash
21019 Sigma
21020 \end_layout
21021
21022 \end_inset
21023 </cell>
21024 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21025 \begin_inset Text
21026
21027 \begin_layout Plain Layout
21028 \begin_inset Formula $\Sigma$
21029 \end_inset
21030
21031
21032 \end_layout
21033
21034 \end_inset
21035 </cell>
21036 </row>
21037 <row>
21038 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21039 \begin_inset Text
21040
21041 \begin_layout Plain Layout
21042
21043 \backslash
21044 Upsilon
21045 \end_layout
21046
21047 \end_inset
21048 </cell>
21049 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21050 \begin_inset Text
21051
21052 \begin_layout Plain Layout
21053 \begin_inset Formula $\Upsilon$
21054 \end_inset
21055
21056
21057 \end_layout
21058
21059 \end_inset
21060 </cell>
21061 </row>
21062 <row>
21063 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21064 \begin_inset Text
21065
21066 \begin_layout Plain Layout
21067
21068 \backslash
21069 Phi
21070 \end_layout
21071
21072 \end_inset
21073 </cell>
21074 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21075 \begin_inset Text
21076
21077 \begin_layout Plain Layout
21078 \begin_inset Formula $\Phi$
21079 \end_inset
21080
21081
21082 \end_layout
21083
21084 \end_inset
21085 </cell>
21086 </row>
21087 <row>
21088 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21089 \begin_inset Text
21090
21091 \begin_layout Plain Layout
21092
21093 \backslash
21094 Psi
21095 \end_layout
21096
21097 \end_inset
21098 </cell>
21099 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21100 \begin_inset Text
21101
21102 \begin_layout Plain Layout
21103 \begin_inset Formula $\Psi$
21104 \end_inset
21105
21106
21107 \end_layout
21108
21109 \end_inset
21110 </cell>
21111 </row>
21112 <row>
21113 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21114 \begin_inset Text
21115
21116 \begin_layout Plain Layout
21117
21118 \backslash
21119 Omega
21120 \end_layout
21121
21122 \end_inset
21123 </cell>
21124 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21125 \begin_inset Text
21126
21127 \begin_layout Plain Layout
21128 \begin_inset Formula $\Omega$
21129 \end_inset
21130
21131
21132 \end_layout
21133
21134 \end_inset
21135 </cell>
21136 </row>
21137 </lyxtabular>
21138
21139 \end_inset
21140
21141
21142 \begin_inset space \hfill{}
21143 \end_inset
21144
21145
21146 \end_layout
21147
21148 \begin_layout Standard
21149 \begin_inset VSpace medskip
21150 \end_inset
21151
21152 Dass die großen griechischen Buchstaben aufrecht erscheinen, ist einem Fehler
21153  geschuldet, der während der Entwicklung von TeX gemacht wurde.
21154  Um korrekte kursive Großbuchstaben zu erhalten, beginnt man einen Befehl
21155  mit 
21156 \series bold
21157 var
21158 \series default
21159 .
21160  So ergibt z.
21161 \begin_inset space \thinspace{}
21162 \end_inset
21163
21164 B.
21165  der Befehl 
21166 \series bold
21167
21168 \backslash
21169 varGamma
21170 \series default
21171  
21172 \begin_inset Formula $\varGamma$
21173 \end_inset
21174
21175 .
21176  Eine andere Methode ist das Laden des Pakets 
21177 \series bold
21178 fixmath
21179 \series default
21180
21181 \begin_inset Foot
21182 status collapsed
21183
21184 \begin_layout Plain Layout
21185
21186 \series bold
21187 fixmath
21188 \series default
21189  ist Teil des LaTeX-Paketes 
21190 \series bold
21191 was
21192 \series default
21193
21194 \begin_inset Index idx
21195 status collapsed
21196
21197 \begin_layout Plain Layout
21198 Pakete ! was
21199 \begin_inset ERT
21200 status collapsed
21201
21202 \begin_layout Plain Layout
21203
21204
21205 \backslash
21206 vspace{4mm}
21207 \end_layout
21208
21209 \end_inset
21210
21211
21212 \end_layout
21213
21214 \end_inset
21215
21216 .
21217 \end_layout
21218
21219 \end_inset
21220
21221
21222 \begin_inset Index idx
21223 status collapsed
21224
21225 \begin_layout Plain Layout
21226 Pakete ! fixmath
21227 \end_layout
21228
21229 \end_inset
21230
21231  mit der LaTeX-Vorspannzeile
21232 \end_layout
21233
21234 \begin_layout Standard
21235
21236 \series bold
21237
21238 \backslash
21239 usepackage{fixmath}
21240 \end_layout
21241
21242 \begin_layout Standard
21243 Dann werden alle großen griechischen Buchstaben im Dokument automatisch
21244  kursiv ausgegeben.
21245 \end_layout
21246
21247 \begin_layout Subsection
21248 Fett gedruckte Buchstaben
21249 \begin_inset Index idx
21250 status collapsed
21251
21252 \begin_layout Plain Layout
21253 griechische Buchstaben ! fett gedruckte
21254 \end_layout
21255
21256 \end_inset
21257
21258
21259 \end_layout
21260
21261 \begin_layout Standard
21262 Griechische lassen sich nicht wie lateinische Buchstaben in verschiedenen
21263  Schriftstilen darstellen.
21264  Es besteht nur die Möglichkeit, sie mit dem Befehl 
21265 \series bold
21266
21267 \backslash
21268 boldsymbol
21269 \series default
21270
21271 \begin_inset Index idx
21272 status collapsed
21273
21274 \begin_layout Plain Layout
21275 Befehle ! B ! 
21276 \backslash
21277 boldsymbol
21278 \end_layout
21279
21280 \end_inset
21281
21282  fett gedruckt auszugeben.
21283 \end_layout
21284
21285 \begin_layout Standard
21286 \align center
21287 \begin_inset Tabular
21288 <lyxtabular version="3" rows="3" columns="2">
21289 <features rotate="0" tabularvalignment="middle">
21290 <column alignment="center" valignment="top">
21291 <column alignment="center" valignment="top">
21292 <row>
21293 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21294 \begin_inset Text
21295
21296 \begin_layout Plain Layout
21297 Befehl
21298 \end_layout
21299
21300 \end_inset
21301 </cell>
21302 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21303 \begin_inset Text
21304
21305 \begin_layout Plain Layout
21306 Ergebnis
21307 \end_layout
21308
21309 \end_inset
21310 </cell>
21311 </row>
21312 <row>
21313 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21314 \begin_inset Text
21315
21316 \begin_layout Plain Layout
21317
21318 \backslash
21319 Upsilon
21320 \backslash
21321 boldsymbol
21322 \backslash
21323 Upsilon
21324 \end_layout
21325
21326 \end_inset
21327 </cell>
21328 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21329 \begin_inset Text
21330
21331 \begin_layout Plain Layout
21332 \begin_inset Formula $\Upsilon\boldsymbol{\Upsilon}$
21333 \end_inset
21334
21335
21336 \end_layout
21337
21338 \end_inset
21339 </cell>
21340 </row>
21341 <row>
21342 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21343 \begin_inset Text
21344
21345 \begin_layout Plain Layout
21346
21347 \backslash
21348 theta
21349 \backslash
21350 boldsymbol
21351 \backslash
21352 theta
21353 \end_layout
21354
21355 \end_inset
21356 </cell>
21357 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21358 \begin_inset Text
21359
21360 \begin_layout Plain Layout
21361 \begin_inset Formula $\theta\boldsymbol{\theta}$
21362 \end_inset
21363
21364
21365 \end_layout
21366
21367 \end_inset
21368 </cell>
21369 </row>
21370 </lyxtabular>
21371
21372 \end_inset
21373
21374
21375 \end_layout
21376
21377 \begin_layout Section
21378 Symbole
21379 \begin_inset ERT
21380 status collapsed
21381
21382 \begin_layout Plain Layout
21383
21384
21385 \backslash
21386 texorpdfstring{
21387 \end_layout
21388
21389 \end_inset
21390
21391
21392 \begin_inset Foot
21393 status collapsed
21394
21395 \begin_layout Plain Layout
21396 Eine Liste mit sämtlichen Symbolen der meisten LaTeX-Pakete findet man in
21397  
21398 \begin_inset CommandInset citation
21399 LatexCommand cite
21400 key "Symbole"
21401
21402 \end_inset
21403
21404 .
21405 \end_layout
21406
21407 \end_inset
21408
21409
21410 \begin_inset ERT
21411 status collapsed
21412
21413 \begin_layout Plain Layout
21414
21415 }{}
21416 \end_layout
21417
21418 \end_inset
21419
21420
21421 \begin_inset Note Note
21422 status collapsed
21423
21424 \begin_layout Plain Layout
21425
21426 \series bold
21427
21428 \backslash
21429 texorpdfstring
21430 \series default
21431  dient dazu, dass die Fußnote nicht mit im pdf-Lesezeichen erscheint.
21432 \end_layout
21433
21434 \begin_layout Plain Layout
21435 Näheres zu 
21436 \series bold
21437
21438 \backslash
21439 texorpdfstring
21440 \series default
21441  steht in Kapitel 
21442 \begin_inset CommandInset ref
21443 LatexCommand ref
21444 reference "sub:Formeln-in-Überschriften"
21445
21446 \end_inset
21447
21448 .
21449 \end_layout
21450
21451 \end_inset
21452
21453
21454 \begin_inset Index idx
21455 status collapsed
21456
21457 \begin_layout Plain Layout
21458 Symbole
21459 \end_layout
21460
21461 \end_inset
21462
21463
21464 \end_layout
21465
21466 \begin_layout Standard
21467 Viele der im Folgenden aufgelisteten Symbole können auch über die Mathe-Werkzeug\SpecialChar \-
21468
21469 leistenknöpfe 
21470 \begin_inset Info
21471 type  "icon"
21472 arg   "math-insert \\nabla"
21473 \end_inset
21474
21475  und 
21476 \begin_inset Info
21477 type  "icon"
21478 arg   "math-insert \\digamma"
21479 \end_inset
21480
21481  eingefügt werden.
21482 \end_layout
21483
21484 \begin_layout Subsection
21485 Mathematische Symbole
21486 \begin_inset CommandInset label
21487 LatexCommand label
21488 name "sub:Mathematische-Symbole"
21489
21490 \end_inset
21491
21492
21493 \begin_inset Index idx
21494 status collapsed
21495
21496 \begin_layout Plain Layout
21497 Symbole ! mathematische
21498 \end_layout
21499
21500 \end_inset
21501
21502
21503 \end_layout
21504
21505 \begin_layout Standard
21506 \begin_inset space \hfill{}
21507 \end_inset
21508
21509
21510 \begin_inset Tabular
21511 <lyxtabular version="3" rows="10" columns="2">
21512 <features rotate="0" tabularvalignment="middle">
21513 <column alignment="center" valignment="top" width="0pt">
21514 <column alignment="center" valignment="top" width="0pt">
21515 <row>
21516 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21517 \begin_inset Text
21518
21519 \begin_layout Plain Layout
21520 Befehl
21521 \end_layout
21522
21523 \end_inset
21524 </cell>
21525 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21526 \begin_inset Text
21527
21528 \begin_layout Plain Layout
21529 Ergebnis
21530 \end_layout
21531
21532 \end_inset
21533 </cell>
21534 </row>
21535 <row>
21536 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21537 \begin_inset Text
21538
21539 \begin_layout Plain Layout
21540
21541 \backslash
21542 neg
21543 \end_layout
21544
21545 \end_inset
21546 </cell>
21547 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21548 \begin_inset Text
21549
21550 \begin_layout Plain Layout
21551 \begin_inset Formula $\neg$
21552 \end_inset
21553
21554
21555 \end_layout
21556
21557 \end_inset
21558 </cell>
21559 </row>
21560 <row>
21561 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21562 \begin_inset Text
21563
21564 \begin_layout Plain Layout
21565
21566 \backslash
21567 Im
21568 \end_layout
21569
21570 \end_inset
21571 </cell>
21572 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21573 \begin_inset Text
21574
21575 \begin_layout Plain Layout
21576 \begin_inset Formula $\Im$
21577 \end_inset
21578
21579
21580 \end_layout
21581
21582 \end_inset
21583 </cell>
21584 </row>
21585 <row>
21586 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21587 \begin_inset Text
21588
21589 \begin_layout Plain Layout
21590
21591 \backslash
21592 Re
21593 \end_layout
21594
21595 \end_inset
21596 </cell>
21597 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21598 \begin_inset Text
21599
21600 \begin_layout Plain Layout
21601 \begin_inset Formula $\Re$
21602 \end_inset
21603
21604
21605 \end_layout
21606
21607 \end_inset
21608 </cell>
21609 </row>
21610 <row>
21611 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21612 \begin_inset Text
21613
21614 \begin_layout Plain Layout
21615
21616 \backslash
21617 aleph
21618 \end_layout
21619
21620 \end_inset
21621 </cell>
21622 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21623 \begin_inset Text
21624
21625 \begin_layout Plain Layout
21626 \begin_inset Formula $\aleph$
21627 \end_inset
21628
21629
21630 \end_layout
21631
21632 \end_inset
21633 </cell>
21634 </row>
21635 <row>
21636 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21637 \begin_inset Text
21638
21639 \begin_layout Plain Layout
21640
21641 \backslash
21642 partial
21643 \end_layout
21644
21645 \end_inset
21646 </cell>
21647 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21648 \begin_inset Text
21649
21650 \begin_layout Plain Layout
21651 \begin_inset Formula $\partial$
21652 \end_inset
21653
21654
21655 \end_layout
21656
21657 \end_inset
21658 </cell>
21659 </row>
21660 <row>
21661 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21662 \begin_inset Text
21663
21664 \begin_layout Plain Layout
21665
21666 \backslash
21667 infty
21668 \end_layout
21669
21670 \end_inset
21671 </cell>
21672 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21673 \begin_inset Text
21674
21675 \begin_layout Plain Layout
21676 \begin_inset Formula $\infty$
21677 \end_inset
21678
21679
21680 \end_layout
21681
21682 \end_inset
21683 </cell>
21684 </row>
21685 <row>
21686 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21687 \begin_inset Text
21688
21689 \begin_layout Plain Layout
21690
21691 \backslash
21692 wp
21693 \end_layout
21694
21695 \end_inset
21696 </cell>
21697 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21698 \begin_inset Text
21699
21700 \begin_layout Plain Layout
21701 \begin_inset Formula $\wp$
21702 \end_inset
21703
21704
21705 \end_layout
21706
21707 \end_inset
21708 </cell>
21709 </row>
21710 <row>
21711 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21712 \begin_inset Text
21713
21714 \begin_layout Plain Layout
21715
21716 \backslash
21717 imath
21718 \end_layout
21719
21720 \end_inset
21721 </cell>
21722 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21723 \begin_inset Text
21724
21725 \begin_layout Plain Layout
21726 \begin_inset Formula $\imath$
21727 \end_inset
21728
21729
21730 \end_layout
21731
21732 \end_inset
21733 </cell>
21734 </row>
21735 <row>
21736 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21737 \begin_inset Text
21738
21739 \begin_layout Plain Layout
21740
21741 \backslash
21742 jmath
21743 \end_layout
21744
21745 \end_inset
21746 </cell>
21747 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21748 \begin_inset Text
21749
21750 \begin_layout Plain Layout
21751 \begin_inset Formula $\jmath$
21752 \end_inset
21753
21754
21755 \end_layout
21756
21757 \end_inset
21758 </cell>
21759 </row>
21760 </lyxtabular>
21761
21762 \end_inset
21763
21764
21765 \begin_inset space \hfill{}
21766 \end_inset
21767
21768
21769 \begin_inset Tabular
21770 <lyxtabular version="3" rows="10" columns="2">
21771 <features rotate="0" tabularvalignment="middle">
21772 <column alignment="center" valignment="top" width="0pt">
21773 <column alignment="center" valignment="top" width="0pt">
21774 <row>
21775 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21776 \begin_inset Text
21777
21778 \begin_layout Plain Layout
21779 Befehl
21780 \end_layout
21781
21782 \end_inset
21783 </cell>
21784 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21785 \begin_inset Text
21786
21787 \begin_layout Plain Layout
21788 Ergebnis
21789 \begin_inset Note Note
21790 status collapsed
21791
21792 \begin_layout Plain Layout
21793
21794 \series bold
21795
21796 \backslash
21797 raisebox
21798 \series default
21799  dient nur als Abstandhalter.
21800 \end_layout
21801
21802 \end_inset
21803
21804
21805 \end_layout
21806
21807 \end_inset
21808 </cell>
21809 </row>
21810 <row>
21811 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21812 \begin_inset Text
21813
21814 \begin_layout Plain Layout
21815
21816 \backslash
21817 forall
21818 \end_layout
21819
21820 \end_inset
21821 </cell>
21822 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21823 \begin_inset Text
21824
21825 \begin_layout Plain Layout
21826 \begin_inset Formula $\forall$
21827 \end_inset
21828
21829
21830 \end_layout
21831
21832 \end_inset
21833 </cell>
21834 </row>
21835 <row>
21836 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21837 \begin_inset Text
21838
21839 \begin_layout Plain Layout
21840
21841 \backslash
21842 exists
21843 \end_layout
21844
21845 \end_inset
21846 </cell>
21847 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21848 \begin_inset Text
21849
21850 \begin_layout Plain Layout
21851 \begin_inset Formula $\exists$
21852 \end_inset
21853
21854
21855 \end_layout
21856
21857 \end_inset
21858 </cell>
21859 </row>
21860 <row>
21861 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21862 \begin_inset Text
21863
21864 \begin_layout Plain Layout
21865
21866 \backslash
21867 nexists
21868 \end_layout
21869
21870 \end_inset
21871 </cell>
21872 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21873 \begin_inset Text
21874
21875 \begin_layout Plain Layout
21876 \begin_inset Formula $\nexists$
21877 \end_inset
21878
21879
21880 \end_layout
21881
21882 \end_inset
21883 </cell>
21884 </row>
21885 <row>
21886 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21887 \begin_inset Text
21888
21889 \begin_layout Plain Layout
21890
21891 \backslash
21892 emptyset
21893 \end_layout
21894
21895 \end_inset
21896 </cell>
21897 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21898 \begin_inset Text
21899
21900 \begin_layout Plain Layout
21901 \begin_inset Formula $\emptyset$
21902 \end_inset
21903
21904
21905 \end_layout
21906
21907 \end_inset
21908 </cell>
21909 </row>
21910 <row>
21911 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21912 \begin_inset Text
21913
21914 \begin_layout Plain Layout
21915
21916 \backslash
21917 varnothing
21918 \end_layout
21919
21920 \end_inset
21921 </cell>
21922 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21923 \begin_inset Text
21924
21925 \begin_layout Plain Layout
21926 \begin_inset Formula $\varnothing$
21927 \end_inset
21928
21929
21930 \end_layout
21931
21932 \end_inset
21933 </cell>
21934 </row>
21935 <row>
21936 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21937 \begin_inset Text
21938
21939 \begin_layout Plain Layout
21940
21941 \backslash
21942 dag
21943 \end_layout
21944
21945 \end_inset
21946 </cell>
21947 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21948 \begin_inset Text
21949
21950 \begin_layout Plain Layout
21951 \begin_inset Formula $\dag$
21952 \end_inset
21953
21954
21955 \end_layout
21956
21957 \end_inset
21958 </cell>
21959 </row>
21960 <row>
21961 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21962 \begin_inset Text
21963
21964 \begin_layout Plain Layout
21965
21966 \backslash
21967 ddag
21968 \end_layout
21969
21970 \end_inset
21971 </cell>
21972 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21973 \begin_inset Text
21974
21975 \begin_layout Plain Layout
21976 \begin_inset Formula $\ddag$
21977 \end_inset
21978
21979
21980 \end_layout
21981
21982 \end_inset
21983 </cell>
21984 </row>
21985 <row>
21986 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21987 \begin_inset Text
21988
21989 \begin_layout Plain Layout
21990
21991 \backslash
21992 complement
21993 \end_layout
21994
21995 \end_inset
21996 </cell>
21997 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21998 \begin_inset Text
21999
22000 \begin_layout Plain Layout
22001 \begin_inset ERT
22002 status collapsed
22003
22004 \begin_layout Plain Layout
22005
22006
22007 \backslash
22008 raisebox{-0.8mm}{
22009 \end_layout
22010
22011 \end_inset
22012
22013
22014 \begin_inset Formula $\complement$
22015 \end_inset
22016
22017
22018 \begin_inset ERT
22019 status collapsed
22020
22021 \begin_layout Plain Layout
22022
22023 }
22024 \end_layout
22025
22026 \end_inset
22027
22028
22029 \end_layout
22030
22031 \end_inset
22032 </cell>
22033 </row>
22034 <row>
22035 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22036 \begin_inset Text
22037
22038 \begin_layout Plain Layout
22039
22040 \backslash
22041 Bbbk
22042 \end_layout
22043
22044 \end_inset
22045 </cell>
22046 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22047 \begin_inset Text
22048
22049 \begin_layout Plain Layout
22050 \begin_inset Formula $\Bbbk$
22051 \end_inset
22052
22053
22054 \end_layout
22055
22056 \end_inset
22057 </cell>
22058 </row>
22059 </lyxtabular>
22060
22061 \end_inset
22062
22063
22064 \begin_inset space \hfill{}
22065 \end_inset
22066
22067
22068 \begin_inset Tabular
22069 <lyxtabular version="3" rows="10" columns="2">
22070 <features rotate="0" tabularvalignment="middle">
22071 <column alignment="center" valignment="top" width="0pt">
22072 <column alignment="center" valignment="top" width="0pt">
22073 <row>
22074 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22075 \begin_inset Text
22076
22077 \begin_layout Plain Layout
22078 Befehl
22079 \end_layout
22080
22081 \end_inset
22082 </cell>
22083 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22084 \begin_inset Text
22085
22086 \begin_layout Plain Layout
22087 Ergebnis
22088 \end_layout
22089
22090 \end_inset
22091 </cell>
22092 </row>
22093 <row>
22094 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22095 \begin_inset Text
22096
22097 \begin_layout Plain Layout
22098
22099 \backslash
22100 prime
22101 \end_layout
22102
22103 \end_inset
22104 </cell>
22105 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22106 \begin_inset Text
22107
22108 \begin_layout Plain Layout
22109 \begin_inset Formula $\prime$
22110 \end_inset
22111
22112
22113 \end_layout
22114
22115 \end_inset
22116 </cell>
22117 </row>
22118 <row>
22119 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22120 \begin_inset Text
22121
22122 \begin_layout Plain Layout
22123
22124 \backslash
22125 backprime
22126 \end_layout
22127
22128 \end_inset
22129 </cell>
22130 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22131 \begin_inset Text
22132
22133 \begin_layout Plain Layout
22134 \begin_inset Formula $\backprime$
22135 \end_inset
22136
22137
22138 \end_layout
22139
22140 \end_inset
22141 </cell>
22142 </row>
22143 <row>
22144 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22145 \begin_inset Text
22146
22147 \begin_layout Plain Layout
22148
22149 \backslash
22150 mho
22151 \end_layout
22152
22153 \end_inset
22154 </cell>
22155 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22156 \begin_inset Text
22157
22158 \begin_layout Plain Layout
22159 \begin_inset Formula $\mho$
22160 \end_inset
22161
22162
22163 \end_layout
22164
22165 \end_inset
22166 </cell>
22167 </row>
22168 <row>
22169 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22170 \begin_inset Text
22171
22172 \begin_layout Plain Layout
22173
22174 \backslash
22175 triangle
22176 \end_layout
22177
22178 \end_inset
22179 </cell>
22180 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22181 \begin_inset Text
22182
22183 \begin_layout Plain Layout
22184 \begin_inset Formula $\triangle$
22185 \end_inset
22186
22187
22188 \end_layout
22189
22190 \end_inset
22191 </cell>
22192 </row>
22193 <row>
22194 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22195 \begin_inset Text
22196
22197 \begin_layout Plain Layout
22198
22199 \backslash
22200 angle
22201 \end_layout
22202
22203 \end_inset
22204 </cell>
22205 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22206 \begin_inset Text
22207
22208 \begin_layout Plain Layout
22209 \begin_inset Formula $\angle$
22210 \end_inset
22211
22212
22213 \end_layout
22214
22215 \end_inset
22216 </cell>
22217 </row>
22218 <row>
22219 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22220 \begin_inset Text
22221
22222 \begin_layout Plain Layout
22223
22224 \backslash
22225 measuredangle
22226 \end_layout
22227
22228 \end_inset
22229 </cell>
22230 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22231 \begin_inset Text
22232
22233 \begin_layout Plain Layout
22234 \begin_inset Formula $\measuredangle$
22235 \end_inset
22236
22237
22238 \end_layout
22239
22240 \end_inset
22241 </cell>
22242 </row>
22243 <row>
22244 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22245 \begin_inset Text
22246
22247 \begin_layout Plain Layout
22248
22249 \backslash
22250 sphericalangle
22251 \end_layout
22252
22253 \end_inset
22254 </cell>
22255 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22256 \begin_inset Text
22257
22258 \begin_layout Plain Layout
22259 \begin_inset Formula $\sphericalangle$
22260 \end_inset
22261
22262
22263 \end_layout
22264
22265 \end_inset
22266 </cell>
22267 </row>
22268 <row>
22269 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22270 \begin_inset Text
22271
22272 \begin_layout Plain Layout
22273
22274 \backslash
22275 top
22276 \end_layout
22277
22278 \end_inset
22279 </cell>
22280 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22281 \begin_inset Text
22282
22283 \begin_layout Plain Layout
22284 \begin_inset Formula $\top$
22285 \end_inset
22286
22287
22288 \end_layout
22289
22290 \end_inset
22291 </cell>
22292 </row>
22293 <row>
22294 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22295 \begin_inset Text
22296
22297 \begin_layout Plain Layout
22298
22299 \backslash
22300 bot
22301 \end_layout
22302
22303 \end_inset
22304 </cell>
22305 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22306 \begin_inset Text
22307
22308 \begin_layout Plain Layout
22309 \begin_inset Formula $\bot$
22310 \end_inset
22311
22312
22313 \end_layout
22314
22315 \end_inset
22316 </cell>
22317 </row>
22318 </lyxtabular>
22319
22320 \end_inset
22321
22322
22323 \begin_inset space \hfill{}
22324 \end_inset
22325
22326
22327 \end_layout
22328
22329 \begin_layout Subsection
22330 Sonstige Symbole
22331 \begin_inset CommandInset label
22332 LatexCommand label
22333 name "sub:Sonstige-Symbole"
22334
22335 \end_inset
22336
22337
22338 \begin_inset Index idx
22339 status collapsed
22340
22341 \begin_layout Plain Layout
22342 Symbole ! sonstige
22343 \end_layout
22344
22345 \end_inset
22346
22347
22348 \end_layout
22349
22350 \begin_layout Standard
22351 \begin_inset VSpace -7mm
22352 \end_inset
22353
22354
22355 \end_layout
22356
22357 \begin_layout Standard
22358 \noindent
22359 \align center
22360 \begin_inset Tabular
22361 <lyxtabular version="3" rows="10" columns="2">
22362 <features rotate="0" tabularvalignment="middle">
22363 <column alignment="center" valignment="top" width="0pt">
22364 <column alignment="center" valignment="top" width="0pt">
22365 <row>
22366 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22367 \begin_inset Text
22368
22369 \begin_layout Plain Layout
22370 Befehl
22371 \end_layout
22372
22373 \end_inset
22374 </cell>
22375 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22376 \begin_inset Text
22377
22378 \begin_layout Plain Layout
22379 Ergebnis
22380 \end_layout
22381
22382 \end_inset
22383 </cell>
22384 </row>
22385 <row>
22386 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22387 \begin_inset Text
22388
22389 \begin_layout Plain Layout
22390
22391 \backslash
22392 flat
22393 \end_layout
22394
22395 \end_inset
22396 </cell>
22397 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22398 \begin_inset Text
22399
22400 \begin_layout Plain Layout
22401 \begin_inset Formula $\flat$
22402 \end_inset
22403
22404
22405 \end_layout
22406
22407 \end_inset
22408 </cell>
22409 </row>
22410 <row>
22411 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22412 \begin_inset Text
22413
22414 \begin_layout Plain Layout
22415
22416 \backslash
22417 natural
22418 \end_layout
22419
22420 \end_inset
22421 </cell>
22422 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22423 \begin_inset Text
22424
22425 \begin_layout Plain Layout
22426 \begin_inset Formula $\natural$
22427 \end_inset
22428
22429
22430 \end_layout
22431
22432 \end_inset
22433 </cell>
22434 </row>
22435 <row>
22436 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22437 \begin_inset Text
22438
22439 \begin_layout Plain Layout
22440
22441 \backslash
22442 sharp
22443 \end_layout
22444
22445 \end_inset
22446 </cell>
22447 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22448 \begin_inset Text
22449
22450 \begin_layout Plain Layout
22451 \begin_inset Formula $\sharp$
22452 \end_inset
22453
22454
22455 \end_layout
22456
22457 \end_inset
22458 </cell>
22459 </row>
22460 <row>
22461 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22462 \begin_inset Text
22463
22464 \begin_layout Plain Layout
22465
22466 \backslash
22467 surd
22468 \end_layout
22469
22470 \end_inset
22471 </cell>
22472 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22473 \begin_inset Text
22474
22475 \begin_layout Plain Layout
22476 \begin_inset Formula $\surd$
22477 \end_inset
22478
22479
22480 \end_layout
22481
22482 \end_inset
22483 </cell>
22484 </row>
22485 <row>
22486 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22487 \begin_inset Text
22488
22489 \begin_layout Plain Layout
22490
22491 \backslash
22492 checkmark
22493 \end_layout
22494
22495 \end_inset
22496 </cell>
22497 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22498 \begin_inset Text
22499
22500 \begin_layout Plain Layout
22501 \begin_inset Formula $\checkmark$
22502 \end_inset
22503
22504
22505 \end_layout
22506
22507 \end_inset
22508 </cell>
22509 </row>
22510 <row>
22511 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22512 \begin_inset Text
22513
22514 \begin_layout Plain Layout
22515
22516 \backslash
22517 yen
22518 \end_layout
22519
22520 \end_inset
22521 </cell>
22522 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22523 \begin_inset Text
22524
22525 \begin_layout Plain Layout
22526 \begin_inset Formula $\yen$
22527 \end_inset
22528
22529
22530 \end_layout
22531
22532 \end_inset
22533 </cell>
22534 </row>
22535 <row>
22536 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22537 \begin_inset Text
22538
22539 \begin_layout Plain Layout
22540
22541 \backslash
22542 pounds
22543 \end_layout
22544
22545 \end_inset
22546 </cell>
22547 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22548 \begin_inset Text
22549
22550 \begin_layout Plain Layout
22551 \begin_inset Formula $\pounds$
22552 \end_inset
22553
22554
22555 \end_layout
22556
22557 \end_inset
22558 </cell>
22559 </row>
22560 <row>
22561 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22562 \begin_inset Text
22563
22564 \begin_layout Plain Layout
22565 $
22566 \end_layout
22567
22568 \end_inset
22569 </cell>
22570 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22571 \begin_inset Text
22572
22573 \begin_layout Plain Layout
22574 \begin_inset Formula $\$$
22575 \end_inset
22576
22577
22578 \end_layout
22579
22580 \end_inset
22581 </cell>
22582 </row>
22583 <row>
22584 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22585 \begin_inset Text
22586
22587 \begin_layout Plain Layout
22588 §
22589 \end_layout
22590
22591 \end_inset
22592 </cell>
22593 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22594 \begin_inset Text
22595
22596 \begin_layout Plain Layout
22597 \begin_inset Formula $§$
22598 \end_inset
22599
22600
22601 \end_layout
22602
22603 \end_inset
22604 </cell>
22605 </row>
22606 </lyxtabular>
22607
22608 \end_inset
22609
22610
22611 \begin_inset Tabular
22612 <lyxtabular version="3" rows="10" columns="2">
22613 <features rotate="0" tabularvalignment="middle">
22614 <column alignment="center" valignment="top">
22615 <column alignment="center" valignment="top">
22616 <row>
22617 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22618 \begin_inset Text
22619
22620 \begin_layout Plain Layout
22621 Befehl
22622 \end_layout
22623
22624 \end_inset
22625 </cell>
22626 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22627 \begin_inset Text
22628
22629 \begin_layout Plain Layout
22630 Ergebnis
22631 \end_layout
22632
22633 \end_inset
22634 </cell>
22635 </row>
22636 <row>
22637 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22638 \begin_inset Text
22639
22640 \begin_layout Plain Layout
22641
22642 \backslash
22643 hbar
22644 \end_layout
22645
22646 \end_inset
22647 </cell>
22648 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22649 \begin_inset Text
22650
22651 \begin_layout Plain Layout
22652 \begin_inset Formula $\hbar$
22653 \end_inset
22654
22655
22656 \end_layout
22657
22658 \end_inset
22659 </cell>
22660 </row>
22661 <row>
22662 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22663 \begin_inset Text
22664
22665 \begin_layout Plain Layout
22666
22667 \backslash
22668 hslash
22669 \end_layout
22670
22671 \end_inset
22672 </cell>
22673 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22674 \begin_inset Text
22675
22676 \begin_layout Plain Layout
22677 \begin_inset Formula $\hslash$
22678 \end_inset
22679
22680
22681 \end_layout
22682
22683 \end_inset
22684 </cell>
22685 </row>
22686 <row>
22687 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22688 \begin_inset Text
22689
22690 \begin_layout Plain Layout
22691
22692 \backslash
22693 clubsuit
22694 \end_layout
22695
22696 \end_inset
22697 </cell>
22698 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22699 \begin_inset Text
22700
22701 \begin_layout Plain Layout
22702 \begin_inset Formula $\clubsuit$
22703 \end_inset
22704
22705
22706 \end_layout
22707
22708 \end_inset
22709 </cell>
22710 </row>
22711 <row>
22712 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22713 \begin_inset Text
22714
22715 \begin_layout Plain Layout
22716
22717 \backslash
22718 spadesuit
22719 \end_layout
22720
22721 \end_inset
22722 </cell>
22723 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22724 \begin_inset Text
22725
22726 \begin_layout Plain Layout
22727 \begin_inset Formula $\spadesuit$
22728 \end_inset
22729
22730
22731 \end_layout
22732
22733 \end_inset
22734 </cell>
22735 </row>
22736 <row>
22737 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22738 \begin_inset Text
22739
22740 \begin_layout Plain Layout
22741
22742 \backslash
22743 bigstar
22744 \end_layout
22745
22746 \end_inset
22747 </cell>
22748 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22749 \begin_inset Text
22750
22751 \begin_layout Plain Layout
22752 \begin_inset Formula $\bigstar$
22753 \end_inset
22754
22755
22756 \end_layout
22757
22758 \end_inset
22759 </cell>
22760 </row>
22761 <row>
22762 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22763 \begin_inset Text
22764
22765 \begin_layout Plain Layout
22766
22767 \backslash
22768 blacklozenge
22769 \end_layout
22770
22771 \end_inset
22772 </cell>
22773 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22774 \begin_inset Text
22775
22776 \begin_layout Plain Layout
22777 \begin_inset Formula $\blacklozenge$
22778 \end_inset
22779
22780
22781 \end_layout
22782
22783 \end_inset
22784 </cell>
22785 </row>
22786 <row>
22787 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22788 \begin_inset Text
22789
22790 \begin_layout Plain Layout
22791
22792 \backslash
22793 blacktriangle
22794 \end_layout
22795
22796 \end_inset
22797 </cell>
22798 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22799 \begin_inset Text
22800
22801 \begin_layout Plain Layout
22802 \begin_inset Formula $\blacktriangle$
22803 \end_inset
22804
22805
22806 \end_layout
22807
22808 \end_inset
22809 </cell>
22810 </row>
22811 <row>
22812 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22813 \begin_inset Text
22814
22815 \begin_layout Plain Layout
22816
22817 \backslash
22818 blacktiangledown
22819 \end_layout
22820
22821 \end_inset
22822 </cell>
22823 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22824 \begin_inset Text
22825
22826 \begin_layout Plain Layout
22827 \begin_inset Formula $\blacktriangledown$
22828 \end_inset
22829
22830
22831 \end_layout
22832
22833 \end_inset
22834 </cell>
22835 </row>
22836 <row>
22837 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22838 \begin_inset Text
22839
22840 \begin_layout Plain Layout
22841
22842 \backslash
22843 bullet
22844 \end_layout
22845
22846 \end_inset
22847 </cell>
22848 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22849 \begin_inset Text
22850
22851 \begin_layout Plain Layout
22852 \begin_inset Formula $\bullet$
22853 \end_inset
22854
22855
22856 \end_layout
22857
22858 \end_inset
22859 </cell>
22860 </row>
22861 </lyxtabular>
22862
22863 \end_inset
22864
22865
22866 \begin_inset Tabular
22867 <lyxtabular version="3" rows="10" columns="2">
22868 <features rotate="0" tabularvalignment="middle">
22869 <column alignment="center" valignment="top" width="0pt">
22870 <column alignment="center" valignment="top" width="0pt">
22871 <row>
22872 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22873 \begin_inset Text
22874
22875 \begin_layout Plain Layout
22876 Befehl
22877 \end_layout
22878
22879 \end_inset
22880 </cell>
22881 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22882 \begin_inset Text
22883
22884 \begin_layout Plain Layout
22885 Ergebnis
22886 \end_layout
22887
22888 \end_inset
22889 </cell>
22890 </row>
22891 <row>
22892 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22893 \begin_inset Text
22894
22895 \begin_layout Plain Layout
22896
22897 \backslash
22898 diamondsuit
22899 \end_layout
22900
22901 \end_inset
22902 </cell>
22903 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22904 \begin_inset Text
22905
22906 \begin_layout Plain Layout
22907 \begin_inset Formula $\diamondsuit$
22908 \end_inset
22909
22910
22911 \end_layout
22912
22913 \end_inset
22914 </cell>
22915 </row>
22916 <row>
22917 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22918 \begin_inset Text
22919
22920 \begin_layout Plain Layout
22921
22922 \backslash
22923 Diamond
22924 \end_layout
22925
22926 \end_inset
22927 </cell>
22928 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22929 \begin_inset Text
22930
22931 \begin_layout Plain Layout
22932 \begin_inset Formula $\Diamond$
22933 \end_inset
22934
22935
22936 \end_layout
22937
22938 \end_inset
22939 </cell>
22940 </row>
22941 <row>
22942 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22943 \begin_inset Text
22944
22945 \begin_layout Plain Layout
22946
22947 \backslash
22948 heartsuit
22949 \end_layout
22950
22951 \end_inset
22952 </cell>
22953 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22954 \begin_inset Text
22955
22956 \begin_layout Plain Layout
22957 \begin_inset Formula $\heartsuit$
22958 \end_inset
22959
22960
22961 \end_layout
22962
22963 \end_inset
22964 </cell>
22965 </row>
22966 <row>
22967 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22968 \begin_inset Text
22969
22970 \begin_layout Plain Layout
22971
22972 \backslash
22973 P
22974 \end_layout
22975
22976 \end_inset
22977 </cell>
22978 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22979 \begin_inset Text
22980
22981 \begin_layout Plain Layout
22982 \begin_inset Formula $\P$
22983 \end_inset
22984
22985
22986 \end_layout
22987
22988 \end_inset
22989 </cell>
22990 </row>
22991 <row>
22992 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22993 \begin_inset Text
22994
22995 \begin_layout Plain Layout
22996
22997 \backslash
22998 copyright
22999 \end_layout
23000
23001 \end_inset
23002 </cell>
23003 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
23004 \begin_inset Text
23005
23006 \begin_layout Plain Layout
23007 \begin_inset Formula $\copyright$
23008 \end_inset
23009
23010
23011 \end_layout
23012
23013 \end_inset
23014 </cell>
23015 </row>
23016 <row>
23017 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
23018 \begin_inset Text
23019
23020 \begin_layout Plain Layout
23021
23022 \backslash
23023 circledR
23024 \end_layout
23025
23026 \end_inset
23027 </cell>
23028 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
23029 \begin_inset Text
23030
23031 \begin_layout Plain Layout
23032 \begin_inset Formula $\circledR$
23033 \end_inset
23034
23035
23036 \end_layout
23037
23038 \end_inset
23039 </cell>
23040 </row>
23041 <row>
23042 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
23043 \begin_inset Text
23044
23045 \begin_layout Plain Layout
23046
23047 \backslash
23048 maltese
23049 \end_layout
23050
23051 \end_inset
23052 </cell>
23053 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
23054 \begin_inset Text
23055
23056 \begin_layout Plain Layout
23057 \begin_inset Formula $\maltese$
23058 \end_inset
23059
23060
23061 \end_layout
23062
23063 \end_inset
23064 </cell>
23065 </row>
23066 <row>
23067 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
23068 \begin_inset Text
23069
23070 \begin_layout Plain Layout
23071
23072 \backslash
23073 diagup
23074 \end_layout
23075
23076 \end_inset
23077 </cell>
23078 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
23079 \begin_inset Text
23080
23081 \begin_layout Plain Layout
23082 \begin_inset Formula $\diagup$
23083 \end_inset
23084
23085
23086 \end_layout
23087
23088 \end_inset
23089 </cell>
23090 </row>
23091 <row>
23092 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
23093 \begin_inset Text
23094
23095 \begin_layout Plain Layout
23096
23097 \backslash
23098 diagdown
23099 \end_layout
23100
23101 \end_inset
23102 </cell>
23103 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
23104 \begin_inset Text
23105
23106 \begin_layout Plain Layout
23107 \begin_inset Formula $\diagdown$
23108 \end_inset
23109
23110
23111 \end_layout
23112
23113 \end_inset
23114 </cell>
23115 </row>
23116 </lyxtabular>
23117
23118 \end_inset
23119
23120
23121 \end_layout
23122
23123 \begin_layout Standard
23124 \begin_inset VSpace medskip
23125 \end_inset
23126
23127
23128 \end_layout
23129
23130 \begin_layout Standard
23131 Einige Symbole können in unterschiedlicher Größe dargestellt werden, siehe
23132  
23133 \begin_inset CommandInset ref
23134 LatexCommand ref
23135 reference "sub:Schriftgrößen"
23136
23137 \end_inset
23138
23139 .
23140 \end_layout
23141
23142 \begin_layout Subsection
23143 Das Euro-Symbol €
23144 \begin_inset Index idx
23145 status collapsed
23146
23147 \begin_layout Plain Layout
23148 Symbole ! Euro-Symbol
23149 \end_layout
23150
23151 \end_inset
23152
23153
23154 \begin_inset Index idx
23155 status collapsed
23156
23157 \begin_layout Plain Layout
23158
23159 \backslash
23160 @
23161 \begin_inset ERT
23162 status collapsed
23163
23164 \begin_layout Plain Layout
23165
23166
23167 \backslash
23168 officialeuro
23169 \end_layout
23170
23171 \end_inset
23172
23173
23174 \end_layout
23175
23176 \end_inset
23177
23178
23179 \end_layout
23180
23181 \begin_layout Standard
23182 Wenn man in einer Formel das Euro-Symbol verwenden will, muss man das LaTeX-Pake
23183
23184 \series bold
23185 eurosym
23186 \series default
23187
23188 \begin_inset Index idx
23189 status collapsed
23190
23191 \begin_layout Plain Layout
23192 Pakete ! eurosym
23193 \end_layout
23194
23195 \end_inset
23196
23197  installieren und dieses mit der LaTeX-Vorspannzeile
23198 \end_layout
23199
23200 \begin_layout Standard
23201
23202 \series bold
23203
23204 \backslash
23205 usepackage[gennarrow]{eurosym}
23206 \end_layout
23207
23208 \begin_layout Standard
23209 aktivieren.
23210  Das Euro-Symbol kann man nun mit dem Befehl 
23211 \series bold
23212
23213 \backslash
23214 euro
23215 \series default
23216
23217 \begin_inset Index idx
23218 status collapsed
23219
23220 \begin_layout Plain Layout
23221 Befehle ! E ! 
23222 \backslash
23223 euro
23224 \end_layout
23225
23226 \end_inset
23227
23228  aufrufen.
23229 \end_layout
23230
23231 \begin_layout Standard
23232 Das Euro-Symbol kann man direkt über die Tastatur in mathematischen Text
23233  eingeben, ohne 
23234 \series bold
23235 eurosym
23236 \series default
23237  installiert zu haben.
23238  Ist 
23239 \series bold
23240 eurosym
23241 \series default
23242  installiert, kann man 
23243 \series bold
23244
23245 \backslash
23246 euro
23247 \series default
23248  auch im TeX-Modus eingeben.
23249  Das offizielle Währungssymbol erhält man dann über den Befehl 
23250 \series bold
23251
23252 \backslash
23253 officialeuro
23254 \series default
23255
23256 \begin_inset Index idx
23257 status collapsed
23258
23259 \begin_layout Plain Layout
23260 Befehle ! O ! 
23261 \backslash
23262 officialeuro
23263 \end_layout
23264
23265 \end_inset
23266
23267 , der nur im TeX-Modus verfügbar ist.
23268 \end_layout
23269
23270 \begin_layout Standard
23271 \begin_inset ERT
23272 status collapsed
23273
23274 \begin_layout Plain Layout
23275
23276
23277 \backslash
23278 ifeurosym 
23279 \end_layout
23280
23281 \end_inset
23282
23283
23284 \begin_inset Note Note
23285 status open
23286
23287 \begin_layout Plain Layout
23288 Die folgende Tabelle erscheint nur im Ausdruck wenn das LaTeX-Paket 
23289 \series bold
23290 eurosym
23291 \series default
23292  installiert ist:
23293 \end_layout
23294
23295 \end_inset
23296
23297
23298 \end_layout
23299
23300 \begin_layout Standard
23301 Eine Übersicht der verschiedenen Euro-Symbole:
23302 \end_layout
23303
23304 \begin_layout Standard
23305 \align center
23306 \begin_inset Tabular
23307 <lyxtabular version="3" rows="4" columns="3">
23308 <features rotate="0" tabularvalignment="middle">
23309 <column alignment="center" valignment="top" width="0pt">
23310 <column alignment="center" valignment="top" width="0pt">
23311 <column alignment="center" valignment="top" width="0pt">
23312 <row>
23313 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" usebox="none">
23314 \begin_inset Text
23315
23316 \begin_layout Plain Layout
23317
23318 \end_layout
23319
23320 \end_inset
23321 </cell>
23322 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23323 \begin_inset Text
23324
23325 \begin_layout Plain Layout
23326 Befehl 
23327 \end_layout
23328
23329 \end_inset
23330 </cell>
23331 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23332 \begin_inset Text
23333
23334 \begin_layout Plain Layout
23335 Ergebnis
23336 \end_layout
23337
23338 \end_inset
23339 </cell>
23340 </row>
23341 <row>
23342 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23343 \begin_inset Text
23344
23345 \begin_layout Plain Layout
23346 Formel
23347 \end_layout
23348
23349 \end_inset
23350 </cell>
23351 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23352 \begin_inset Text
23353
23354 \begin_layout Plain Layout
23355
23356 \backslash
23357 euro
23358 \end_layout
23359
23360 \end_inset
23361 </cell>
23362 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23363 \begin_inset Text
23364
23365 \begin_layout Plain Layout
23366 \begin_inset Formula $\euro$
23367 \end_inset
23368
23369
23370 \end_layout
23371
23372 \end_inset
23373 </cell>
23374 </row>
23375 <row>
23376 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23377 \begin_inset Text
23378
23379 \begin_layout Plain Layout
23380 mathematischer Text
23381 \end_layout
23382
23383 \end_inset
23384 </cell>
23385 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23386 \begin_inset Text
23387
23388 \begin_layout Plain Layout
23389
23390 \end_layout
23391
23392 \end_inset
23393 </cell>
23394 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23395 \begin_inset Text
23396
23397 \begin_layout Plain Layout
23398 \begin_inset Formula $\mbox{€}$
23399 \end_inset
23400
23401
23402 \end_layout
23403
23404 \end_inset
23405 </cell>
23406 </row>
23407 <row>
23408 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23409 \begin_inset Text
23410
23411 \begin_layout Plain Layout
23412 TeX-Modus
23413 \end_layout
23414
23415 \end_inset
23416 </cell>
23417 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23418 \begin_inset Text
23419
23420 \begin_layout Plain Layout
23421
23422 \backslash
23423 officialeuro
23424 \end_layout
23425
23426 \end_inset
23427 </cell>
23428 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23429 \begin_inset Text
23430
23431 \begin_layout Plain Layout
23432 \begin_inset ERT
23433 status collapsed
23434
23435 \begin_layout Plain Layout
23436
23437
23438 \backslash
23439 officialeuro
23440 \end_layout
23441
23442 \end_inset
23443
23444
23445 \end_layout
23446
23447 \end_inset
23448 </cell>
23449 </row>
23450 </lyxtabular>
23451
23452 \end_inset
23453
23454
23455 \end_layout
23456
23457 \begin_layout Standard
23458 \begin_inset ERT
23459 status collapsed
23460
23461 \begin_layout Plain Layout
23462
23463
23464 \backslash
23465 else 
23466 \end_layout
23467
23468 \end_inset
23469
23470
23471 \begin_inset Note Note
23472 status open
23473
23474 \begin_layout Plain Layout
23475 Folgendes erscheint im Ausdruck wenn das LaTeX-Paket 
23476 \series bold
23477 eurosym
23478 \series default
23479  nicht installiert ist:
23480 \end_layout
23481
23482 \end_inset
23483
23484
23485 \end_layout
23486
23487 \begin_layout Standard
23488 Das LaTeX-Paket 
23489 \series bold
23490 eurosym 
23491 \series default
23492 muss installiert sein, um den Rest dieses Abschnitts im Ausdruck zu sehen.
23493 \end_layout
23494
23495 \begin_layout Standard
23496 \begin_inset ERT
23497 status collapsed
23498
23499 \begin_layout Plain Layout
23500
23501
23502 \backslash
23503 fi 
23504 \end_layout
23505
23506 \end_inset
23507
23508
23509 \end_layout
23510
23511 \begin_layout Section
23512 Relationen
23513 \begin_inset CommandInset label
23514 LatexCommand label
23515 name "sec:Relationen"
23516
23517 \end_inset
23518
23519
23520 \begin_inset Index idx
23521 status collapsed
23522
23523 \begin_layout Plain Layout
23524 Relationen
23525 \end_layout
23526
23527 \end_inset
23528
23529
23530 \begin_inset Index idx
23531 status collapsed
23532
23533 \begin_layout Plain Layout
23534 Vergleiche|see
23535 \begin_inset ERT
23536 status collapsed
23537
23538 \begin_layout Plain Layout
23539
23540 {
23541 \end_layout
23542
23543 \end_inset
23544
23545 Relationen
23546 \begin_inset ERT
23547 status collapsed
23548
23549 \begin_layout Plain Layout
23550
23551 }
23552 \end_layout
23553
23554 \end_inset
23555
23556
23557 \end_layout
23558
23559 \end_inset
23560
23561
23562 \end_layout
23563
23564 \begin_layout Standard
23565 Alle folgenden Relationen können auch über den Mathe-Werkzeugleistenknopf
23566  
23567 \begin_inset Info
23568 type  "icon"
23569 arg   "math-insert \\leq"
23570 \end_inset
23571
23572  eingefügt werden.
23573 \end_layout
23574
23575 \begin_layout Standard
23576 \begin_inset space \hfill{}
23577 \end_inset
23578
23579
23580 \begin_inset Tabular
23581 <lyxtabular version="3" rows="17" columns="2">
23582 <features rotate="0" tabularvalignment="middle">
23583 <column alignment="center" valignment="top" width="0pt">
23584 <column alignment="center" valignment="top" width="0pt">
23585 <row>
23586 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23587 \begin_inset Text
23588
23589 \begin_layout Plain Layout
23590 Befehl
23591 \end_layout
23592
23593 \end_inset
23594 </cell>
23595 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23596 \begin_inset Text
23597
23598 \begin_layout Plain Layout
23599 Ergebnis
23600 \end_layout
23601
23602 \end_inset
23603 </cell>
23604 </row>
23605 <row>
23606 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23607 \begin_inset Text
23608
23609 \begin_layout Plain Layout
23610 <
23611 \end_layout
23612
23613 \end_inset
23614 </cell>
23615 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23616 \begin_inset Text
23617
23618 \begin_layout Plain Layout
23619 \begin_inset Formula $<$
23620 \end_inset
23621
23622
23623 \end_layout
23624
23625 \end_inset
23626 </cell>
23627 </row>
23628 <row>
23629 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23630 \begin_inset Text
23631
23632 \begin_layout Plain Layout
23633
23634 \backslash
23635 le
23636 \end_layout
23637
23638 \end_inset
23639 </cell>
23640 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23641 \begin_inset Text
23642
23643 \begin_layout Plain Layout
23644 \begin_inset Formula $\le$
23645 \end_inset
23646
23647
23648 \end_layout
23649
23650 \end_inset
23651 </cell>
23652 </row>
23653 <row>
23654 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23655 \begin_inset Text
23656
23657 \begin_layout Plain Layout
23658
23659 \backslash
23660 ll
23661 \end_layout
23662
23663 \end_inset
23664 </cell>
23665 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23666 \begin_inset Text
23667
23668 \begin_layout Plain Layout
23669 \begin_inset Formula $\ll$
23670 \end_inset
23671
23672
23673 \end_layout
23674
23675 \end_inset
23676 </cell>
23677 </row>
23678 <row>
23679 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23680 \begin_inset Text
23681
23682 \begin_layout Plain Layout
23683
23684 \backslash
23685 prec
23686 \end_layout
23687
23688 \end_inset
23689 </cell>
23690 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23691 \begin_inset Text
23692
23693 \begin_layout Plain Layout
23694 \begin_inset Formula $\prec$
23695 \end_inset
23696
23697
23698 \end_layout
23699
23700 \end_inset
23701 </cell>
23702 </row>
23703 <row>
23704 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23705 \begin_inset Text
23706
23707 \begin_layout Plain Layout
23708
23709 \backslash
23710 preceq
23711 \end_layout
23712
23713 \end_inset
23714 </cell>
23715 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23716 \begin_inset Text
23717
23718 \begin_layout Plain Layout
23719 \begin_inset Formula $\preceq$
23720 \end_inset
23721
23722
23723 \end_layout
23724
23725 \end_inset
23726 </cell>
23727 </row>
23728 <row>
23729 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23730 \begin_inset Text
23731
23732 \begin_layout Plain Layout
23733
23734 \backslash
23735 subset
23736 \end_layout
23737
23738 \end_inset
23739 </cell>
23740 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23741 \begin_inset Text
23742
23743 \begin_layout Plain Layout
23744 \begin_inset Formula $\subset$
23745 \end_inset
23746
23747
23748 \end_layout
23749
23750 \end_inset
23751 </cell>
23752 </row>
23753 <row>
23754 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23755 \begin_inset Text
23756
23757 \begin_layout Plain Layout
23758
23759 \backslash
23760 subseteq
23761 \end_layout
23762
23763 \end_inset
23764 </cell>
23765 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23766 \begin_inset Text
23767
23768 \begin_layout Plain Layout
23769 \begin_inset Formula $\subseteq$
23770 \end_inset
23771
23772
23773 \end_layout
23774
23775 \end_inset
23776 </cell>
23777 </row>
23778 <row>
23779 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23780 \begin_inset Text
23781
23782 \begin_layout Plain Layout
23783
23784 \backslash
23785 sqsubseteq
23786 \end_layout
23787
23788 \end_inset
23789 </cell>
23790 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23791 \begin_inset Text
23792
23793 \begin_layout Plain Layout
23794 \begin_inset Formula $\sqsubseteq$
23795 \end_inset
23796
23797
23798 \end_layout
23799
23800 \end_inset
23801 </cell>
23802 </row>
23803 <row>
23804 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23805 \begin_inset Text
23806
23807 \begin_layout Plain Layout
23808
23809 \backslash
23810 in
23811 \end_layout
23812
23813 \end_inset
23814 </cell>
23815 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23816 \begin_inset Text
23817
23818 \begin_layout Plain Layout
23819 \begin_inset Formula $\in$
23820 \end_inset
23821
23822
23823 \end_layout
23824
23825 \end_inset
23826 </cell>
23827 </row>
23828 <row>
23829 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23830 \begin_inset Text
23831
23832 \begin_layout Plain Layout
23833
23834 \backslash
23835 vdash
23836 \end_layout
23837
23838 \end_inset
23839 </cell>
23840 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23841 \begin_inset Text
23842
23843 \begin_layout Plain Layout
23844 \begin_inset Formula $\vdash$
23845 \end_inset
23846
23847
23848 \end_layout
23849
23850 \end_inset
23851 </cell>
23852 </row>
23853 <row>
23854 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23855 \begin_inset Text
23856
23857 \begin_layout Plain Layout
23858
23859 \backslash
23860 smile
23861 \end_layout
23862
23863 \end_inset
23864 </cell>
23865 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23866 \begin_inset Text
23867
23868 \begin_layout Plain Layout
23869 \begin_inset Formula $\smile$
23870 \end_inset
23871
23872
23873 \end_layout
23874
23875 \end_inset
23876 </cell>
23877 </row>
23878 <row>
23879 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23880 \begin_inset Text
23881
23882 \begin_layout Plain Layout
23883
23884 \backslash
23885 lhd
23886 \end_layout
23887
23888 \end_inset
23889 </cell>
23890 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23891 \begin_inset Text
23892
23893 \begin_layout Plain Layout
23894 \begin_inset Formula $\lhd$
23895 \end_inset
23896
23897
23898 \end_layout
23899
23900 \end_inset
23901 </cell>
23902 </row>
23903 <row>
23904 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23905 \begin_inset Text
23906
23907 \begin_layout Plain Layout
23908
23909 \backslash
23910 unlhd
23911 \end_layout
23912
23913 \end_inset
23914 </cell>
23915 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23916 \begin_inset Text
23917
23918 \begin_layout Plain Layout
23919 \begin_inset Formula $\unlhd$
23920 \end_inset
23921
23922
23923 \end_layout
23924
23925 \end_inset
23926 </cell>
23927 </row>
23928 <row>
23929 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23930 \begin_inset Text
23931
23932 \begin_layout Plain Layout
23933
23934 \backslash
23935 gtrless
23936 \end_layout
23937
23938 \end_inset
23939 </cell>
23940 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23941 \begin_inset Text
23942
23943 \begin_layout Plain Layout
23944 \begin_inset Formula $\gtrless$
23945 \end_inset
23946
23947
23948 \end_layout
23949
23950 \end_inset
23951 </cell>
23952 </row>
23953 <row>
23954 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23955 \begin_inset Text
23956
23957 \begin_layout Plain Layout
23958
23959 \backslash
23960 mid
23961 \end_layout
23962
23963 \end_inset
23964 </cell>
23965 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23966 \begin_inset Text
23967
23968 \begin_layout Plain Layout
23969 \begin_inset Formula $\mid$
23970 \end_inset
23971
23972
23973 \end_layout
23974
23975 \end_inset
23976 </cell>
23977 </row>
23978 <row>
23979 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23980 \begin_inset Text
23981
23982 \begin_layout Plain Layout
23983
23984 \backslash
23985 nmid
23986 \end_layout
23987
23988 \end_inset
23989 </cell>
23990 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23991 \begin_inset Text
23992
23993 \begin_layout Plain Layout
23994 \begin_inset Formula $\nmid$
23995 \end_inset
23996
23997
23998 \end_layout
23999
24000 \end_inset
24001 </cell>
24002 </row>
24003 </lyxtabular>
24004
24005 \end_inset
24006
24007
24008 \begin_inset space \hfill{}
24009 \end_inset
24010
24011
24012 \begin_inset Tabular
24013 <lyxtabular version="3" rows="17" columns="2">
24014 <features rotate="0" tabularvalignment="middle">
24015 <column alignment="center" valignment="top" width="0pt">
24016 <column alignment="center" valignment="top" width="0pt">
24017 <row>
24018 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24019 \begin_inset Text
24020
24021 \begin_layout Plain Layout
24022 Befehl
24023 \end_layout
24024
24025 \end_inset
24026 </cell>
24027 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24028 \begin_inset Text
24029
24030 \begin_layout Plain Layout
24031 Ergebnis
24032 \end_layout
24033
24034 \end_inset
24035 </cell>
24036 </row>
24037 <row>
24038 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24039 \begin_inset Text
24040
24041 \begin_layout Plain Layout
24042 =
24043 \end_layout
24044
24045 \end_inset
24046 </cell>
24047 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24048 \begin_inset Text
24049
24050 \begin_layout Plain Layout
24051 \begin_inset Formula $=$
24052 \end_inset
24053
24054
24055 \end_layout
24056
24057 \end_inset
24058 </cell>
24059 </row>
24060 <row>
24061 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24062 \begin_inset Text
24063
24064 \begin_layout Plain Layout
24065
24066 \backslash
24067 not=
24068 \end_layout
24069
24070 \end_inset
24071 </cell>
24072 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24073 \begin_inset Text
24074
24075 \begin_layout Plain Layout
24076 \begin_inset Formula $\not=$
24077 \end_inset
24078
24079
24080 \end_layout
24081
24082 \end_inset
24083 </cell>
24084 </row>
24085 <row>
24086 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24087 \begin_inset Text
24088
24089 \begin_layout Plain Layout
24090
24091 \backslash
24092 equiv
24093 \end_layout
24094
24095 \end_inset
24096 </cell>
24097 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24098 \begin_inset Text
24099
24100 \begin_layout Plain Layout
24101 \begin_inset Formula $\equiv$
24102 \end_inset
24103
24104
24105 \end_layout
24106
24107 \end_inset
24108 </cell>
24109 </row>
24110 <row>
24111 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24112 \begin_inset Text
24113
24114 \begin_layout Plain Layout
24115
24116 \backslash
24117 sim
24118 \end_layout
24119
24120 \end_inset
24121 </cell>
24122 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24123 \begin_inset Text
24124
24125 \begin_layout Plain Layout
24126 \begin_inset Formula $\sim$
24127 \end_inset
24128
24129
24130 \end_layout
24131
24132 \end_inset
24133 </cell>
24134 </row>
24135 <row>
24136 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24137 \begin_inset Text
24138
24139 \begin_layout Plain Layout
24140
24141 \backslash
24142 simeq
24143 \end_layout
24144
24145 \end_inset
24146 </cell>
24147 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24148 \begin_inset Text
24149
24150 \begin_layout Plain Layout
24151 \begin_inset Formula $\simeq$
24152 \end_inset
24153
24154
24155 \end_layout
24156
24157 \end_inset
24158 </cell>
24159 </row>
24160 <row>
24161 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24162 \begin_inset Text
24163
24164 \begin_layout Plain Layout
24165
24166 \backslash
24167 approx
24168 \end_layout
24169
24170 \end_inset
24171 </cell>
24172 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24173 \begin_inset Text
24174
24175 \begin_layout Plain Layout
24176 \begin_inset Formula $\approx$
24177 \end_inset
24178
24179
24180 \end_layout
24181
24182 \end_inset
24183 </cell>
24184 </row>
24185 <row>
24186 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24187 \begin_inset Text
24188
24189 \begin_layout Plain Layout
24190
24191 \backslash
24192 cong
24193 \end_layout
24194
24195 \end_inset
24196 </cell>
24197 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24198 \begin_inset Text
24199
24200 \begin_layout Plain Layout
24201 \begin_inset Formula $\cong$
24202 \end_inset
24203
24204
24205 \end_layout
24206
24207 \end_inset
24208 </cell>
24209 </row>
24210 <row>
24211 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24212 \begin_inset Text
24213
24214 \begin_layout Plain Layout
24215
24216 \backslash
24217 bowtie
24218 \end_layout
24219
24220 \end_inset
24221 </cell>
24222 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24223 \begin_inset Text
24224
24225 \begin_layout Plain Layout
24226 \begin_inset Formula $\bowtie$
24227 \end_inset
24228
24229
24230 \end_layout
24231
24232 \end_inset
24233 </cell>
24234 </row>
24235 <row>
24236 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24237 \begin_inset Text
24238
24239 \begin_layout Plain Layout
24240
24241 \backslash
24242 notin
24243 \end_layout
24244
24245 \end_inset
24246 </cell>
24247 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24248 \begin_inset Text
24249
24250 \begin_layout Plain Layout
24251 \begin_inset Formula $\notin$
24252 \end_inset
24253
24254
24255 \end_layout
24256
24257 \end_inset
24258 </cell>
24259 </row>
24260 <row>
24261 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24262 \begin_inset Text
24263
24264 \begin_layout Plain Layout
24265
24266 \backslash
24267 perp
24268 \end_layout
24269
24270 \end_inset
24271 </cell>
24272 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24273 \begin_inset Text
24274
24275 \begin_layout Plain Layout
24276 \begin_inset Formula $\perp$
24277 \end_inset
24278
24279
24280 \end_layout
24281
24282 \end_inset
24283 </cell>
24284 </row>
24285 <row>
24286 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24287 \begin_inset Text
24288
24289 \begin_layout Plain Layout
24290
24291 \backslash
24292 propto
24293 \end_layout
24294
24295 \end_inset
24296 </cell>
24297 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24298 \begin_inset Text
24299
24300 \begin_layout Plain Layout
24301 \begin_inset Formula $\propto$
24302 \end_inset
24303
24304
24305 \end_layout
24306
24307 \end_inset
24308 </cell>
24309 </row>
24310 <row>
24311 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24312 \begin_inset Text
24313
24314 \begin_layout Plain Layout
24315
24316 \backslash
24317 asymp
24318 \end_layout
24319
24320 \end_inset
24321 </cell>
24322 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24323 \begin_inset Text
24324
24325 \begin_layout Plain Layout
24326 \begin_inset Formula $\asymp$
24327 \end_inset
24328
24329
24330 \end_layout
24331
24332 \end_inset
24333 </cell>
24334 </row>
24335 <row>
24336 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24337 \begin_inset Text
24338
24339 \begin_layout Plain Layout
24340
24341 \backslash
24342 doteq
24343 \end_layout
24344
24345 \end_inset
24346 </cell>
24347 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24348 \begin_inset Text
24349
24350 \begin_layout Plain Layout
24351 \begin_inset Formula $\doteq$
24352 \end_inset
24353
24354
24355 \end_layout
24356
24357 \end_inset
24358 </cell>
24359 </row>
24360 <row>
24361 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24362 \begin_inset Text
24363
24364 \begin_layout Plain Layout
24365
24366 \backslash
24367 circeq
24368 \end_layout
24369
24370 \end_inset
24371 </cell>
24372 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24373 \begin_inset Text
24374
24375 \begin_layout Plain Layout
24376 \begin_inset Formula $\circeq$
24377 \end_inset
24378
24379
24380 \end_layout
24381
24382 \end_inset
24383 </cell>
24384 </row>
24385 <row>
24386 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24387 \begin_inset Text
24388
24389 \begin_layout Plain Layout
24390
24391 \backslash
24392 models
24393 \end_layout
24394
24395 \end_inset
24396 </cell>
24397 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24398 \begin_inset Text
24399
24400 \begin_layout Plain Layout
24401 \begin_inset Formula $\models$
24402 \end_inset
24403
24404
24405 \end_layout
24406
24407 \end_inset
24408 </cell>
24409 </row>
24410 <row>
24411 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24412 \begin_inset Text
24413
24414 \begin_layout Plain Layout
24415
24416 \backslash
24417 widehat=
24418 \end_layout
24419
24420 \end_inset
24421 </cell>
24422 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24423 \begin_inset Text
24424
24425 \begin_layout Plain Layout
24426 \begin_inset Formula $\widehat{=}$
24427 \end_inset
24428
24429
24430 \end_layout
24431
24432 \end_inset
24433 </cell>
24434 </row>
24435 </lyxtabular>
24436
24437 \end_inset
24438
24439
24440 \begin_inset space \hfill{}
24441 \end_inset
24442
24443
24444 \begin_inset Tabular
24445 <lyxtabular version="3" rows="17" columns="2">
24446 <features rotate="0" tabularvalignment="middle">
24447 <column alignment="center" valignment="top" width="0pt">
24448 <column alignment="center" valignment="top" width="0pt">
24449 <row>
24450 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24451 \begin_inset Text
24452
24453 \begin_layout Plain Layout
24454 Befehl
24455 \end_layout
24456
24457 \end_inset
24458 </cell>
24459 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24460 \begin_inset Text
24461
24462 \begin_layout Plain Layout
24463 Ergebnis
24464 \end_layout
24465
24466 \end_inset
24467 </cell>
24468 </row>
24469 <row>
24470 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24471 \begin_inset Text
24472
24473 \begin_layout Plain Layout
24474 >
24475 \end_layout
24476
24477 \end_inset
24478 </cell>
24479 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24480 \begin_inset Text
24481
24482 \begin_layout Plain Layout
24483 \begin_inset Formula $>$
24484 \end_inset
24485
24486
24487 \end_layout
24488
24489 \end_inset
24490 </cell>
24491 </row>
24492 <row>
24493 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24494 \begin_inset Text
24495
24496 \begin_layout Plain Layout
24497
24498 \backslash
24499 ge
24500 \end_layout
24501
24502 \end_inset
24503 </cell>
24504 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24505 \begin_inset Text
24506
24507 \begin_layout Plain Layout
24508 \begin_inset Formula $\ge$
24509 \end_inset
24510
24511
24512 \end_layout
24513
24514 \end_inset
24515 </cell>
24516 </row>
24517 <row>
24518 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24519 \begin_inset Text
24520
24521 \begin_layout Plain Layout
24522
24523 \backslash
24524 gg
24525 \end_layout
24526
24527 \end_inset
24528 </cell>
24529 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24530 \begin_inset Text
24531
24532 \begin_layout Plain Layout
24533 \begin_inset Formula $\gg$
24534 \end_inset
24535
24536
24537 \end_layout
24538
24539 \end_inset
24540 </cell>
24541 </row>
24542 <row>
24543 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24544 \begin_inset Text
24545
24546 \begin_layout Plain Layout
24547
24548 \backslash
24549 succ
24550 \end_layout
24551
24552 \end_inset
24553 </cell>
24554 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24555 \begin_inset Text
24556
24557 \begin_layout Plain Layout
24558 \begin_inset Formula $\succ$
24559 \end_inset
24560
24561
24562 \end_layout
24563
24564 \end_inset
24565 </cell>
24566 </row>
24567 <row>
24568 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24569 \begin_inset Text
24570
24571 \begin_layout Plain Layout
24572
24573 \backslash
24574 succeq
24575 \end_layout
24576
24577 \end_inset
24578 </cell>
24579 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24580 \begin_inset Text
24581
24582 \begin_layout Plain Layout
24583 \begin_inset Formula $\succeq$
24584 \end_inset
24585
24586
24587 \end_layout
24588
24589 \end_inset
24590 </cell>
24591 </row>
24592 <row>
24593 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24594 \begin_inset Text
24595
24596 \begin_layout Plain Layout
24597
24598 \backslash
24599 supset
24600 \end_layout
24601
24602 \end_inset
24603 </cell>
24604 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24605 \begin_inset Text
24606
24607 \begin_layout Plain Layout
24608 \begin_inset Formula $\supset$
24609 \end_inset
24610
24611
24612 \end_layout
24613
24614 \end_inset
24615 </cell>
24616 </row>
24617 <row>
24618 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24619 \begin_inset Text
24620
24621 \begin_layout Plain Layout
24622
24623 \backslash
24624 supseteq
24625 \end_layout
24626
24627 \end_inset
24628 </cell>
24629 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24630 \begin_inset Text
24631
24632 \begin_layout Plain Layout
24633 \begin_inset Formula $\supseteq$
24634 \end_inset
24635
24636
24637 \end_layout
24638
24639 \end_inset
24640 </cell>
24641 </row>
24642 <row>
24643 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24644 \begin_inset Text
24645
24646 \begin_layout Plain Layout
24647
24648 \backslash
24649 sqsupseteq
24650 \end_layout
24651
24652 \end_inset
24653 </cell>
24654 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24655 \begin_inset Text
24656
24657 \begin_layout Plain Layout
24658 \begin_inset Formula $\sqsupseteq$
24659 \end_inset
24660
24661
24662 \end_layout
24663
24664 \end_inset
24665 </cell>
24666 </row>
24667 <row>
24668 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24669 \begin_inset Text
24670
24671 \begin_layout Plain Layout
24672
24673 \backslash
24674 ni
24675 \end_layout
24676
24677 \end_inset
24678 </cell>
24679 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24680 \begin_inset Text
24681
24682 \begin_layout Plain Layout
24683 \begin_inset Formula $\ni$
24684 \end_inset
24685
24686
24687 \end_layout
24688
24689 \end_inset
24690 </cell>
24691 </row>
24692 <row>
24693 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24694 \begin_inset Text
24695
24696 \begin_layout Plain Layout
24697
24698 \backslash
24699 dashv
24700 \end_layout
24701
24702 \end_inset
24703 </cell>
24704 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24705 \begin_inset Text
24706
24707 \begin_layout Plain Layout
24708 \begin_inset Formula $\dashv$
24709 \end_inset
24710
24711
24712 \end_layout
24713
24714 \end_inset
24715 </cell>
24716 </row>
24717 <row>
24718 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24719 \begin_inset Text
24720
24721 \begin_layout Plain Layout
24722
24723 \backslash
24724 frown
24725 \end_layout
24726
24727 \end_inset
24728 </cell>
24729 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24730 \begin_inset Text
24731
24732 \begin_layout Plain Layout
24733 \begin_inset Formula $\frown$
24734 \end_inset
24735
24736
24737 \end_layout
24738
24739 \end_inset
24740 </cell>
24741 </row>
24742 <row>
24743 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24744 \begin_inset Text
24745
24746 \begin_layout Plain Layout
24747
24748 \backslash
24749 rhd
24750 \end_layout
24751
24752 \end_inset
24753 </cell>
24754 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24755 \begin_inset Text
24756
24757 \begin_layout Plain Layout
24758 \begin_inset Formula $\rhd$
24759 \end_inset
24760
24761
24762 \end_layout
24763
24764 \end_inset
24765 </cell>
24766 </row>
24767 <row>
24768 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24769 \begin_inset Text
24770
24771 \begin_layout Plain Layout
24772
24773 \backslash
24774 unrhd
24775 \end_layout
24776
24777 \end_inset
24778 </cell>
24779 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24780 \begin_inset Text
24781
24782 \begin_layout Plain Layout
24783 \begin_inset Formula $\unrhd$
24784 \end_inset
24785
24786
24787 \end_layout
24788
24789 \end_inset
24790 </cell>
24791 </row>
24792 <row>
24793 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24794 \begin_inset Text
24795
24796 \begin_layout Plain Layout
24797
24798 \backslash
24799 lessgtr
24800 \end_layout
24801
24802 \end_inset
24803 </cell>
24804 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24805 \begin_inset Text
24806
24807 \begin_layout Plain Layout
24808 \begin_inset Formula $\lessgtr$
24809 \end_inset
24810
24811
24812 \end_layout
24813
24814 \end_inset
24815 </cell>
24816 </row>
24817 <row>
24818 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24819 \begin_inset Text
24820
24821 \begin_layout Plain Layout
24822
24823 \backslash
24824 parallel
24825 \end_layout
24826
24827 \end_inset
24828 </cell>
24829 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24830 \begin_inset Text
24831
24832 \begin_layout Plain Layout
24833 \begin_inset Formula $\parallel$
24834 \end_inset
24835
24836
24837 \end_layout
24838
24839 \end_inset
24840 </cell>
24841 </row>
24842 <row>
24843 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24844 \begin_inset Text
24845
24846 \begin_layout Plain Layout
24847
24848 \backslash
24849 nparallel
24850 \end_layout
24851
24852 \end_inset
24853 </cell>
24854 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24855 \begin_inset Text
24856
24857 \begin_layout Plain Layout
24858 \begin_inset Formula $\nparallel$
24859 \end_inset
24860
24861
24862 \end_layout
24863
24864 \end_inset
24865 </cell>
24866 </row>
24867 </lyxtabular>
24868
24869 \end_inset
24870
24871
24872 \begin_inset space \hfill{}
24873 \end_inset
24874
24875
24876 \end_layout
24877
24878 \begin_layout Standard
24879 \begin_inset VSpace medskip
24880 \end_inset
24881
24882 Die Zeichen 
24883 \series bold
24884
24885 \backslash
24886 lhd
24887 \series default
24888  bzw.
24889 \begin_inset space \space{}
24890 \end_inset
24891
24892
24893 \series bold
24894
24895 \backslash
24896 rhd
24897 \series default
24898  sind größer als die gleich aussehenden Operatoren
24899 \begin_inset Newline linebreak
24900 \end_inset
24901
24902
24903 \series bold
24904
24905 \backslash
24906 triangleleft
24907 \series default
24908  bzw.
24909 \begin_inset space \space{}
24910 \end_inset
24911
24912
24913 \series bold
24914
24915 \backslash
24916 triangleright
24917 \series default
24918 .
24919 \end_layout
24920
24921 \begin_layout Standard
24922 LyX unterstützt auch viele spezielle Relationen.
24923  Drücken Sie den Mathe-Werkzeugleistenknopf 
24924 \begin_inset Info
24925 type  "icon"
24926 arg   "math-insert \\leqq"
24927 \end_inset
24928
24929  um eine Liste dieser Relationen zu sehen.
24930 \end_layout
24931
24932 \begin_layout Standard
24933 Relationen sind im Gegensatz zu Symbolen immer von Leerraum umgeben.
24934 \end_layout
24935
24936 \begin_layout Standard
24937 Relationen mit Beschriftungen können mit Hilfe des Befehls 
24938 \series bold
24939
24940 \backslash
24941 stackrel
24942 \series default
24943
24944 \begin_inset Index idx
24945 status collapsed
24946
24947 \begin_layout Plain Layout
24948 Befehle ! S ! 
24949 \backslash
24950 stackrel
24951 \end_layout
24952
24953 \end_inset
24954
24955  erstellt werden:
24956 \end_layout
24957
24958 \begin_layout Standard
24959 \align center
24960 \begin_inset Tabular
24961 <lyxtabular version="3" rows="2" columns="2">
24962 <features rotate="0" tabularvalignment="middle">
24963 <column alignment="center" valignment="top">
24964 <column alignment="center" valignment="top">
24965 <row>
24966 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24967 \begin_inset Text
24968
24969 \begin_layout Plain Layout
24970 Befehl
24971 \end_layout
24972
24973 \end_inset
24974 </cell>
24975 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24976 \begin_inset Text
24977
24978 \begin_layout Plain Layout
24979 Ergebnis
24980 \begin_inset Note Note
24981 status collapsed
24982
24983 \begin_layout Plain Layout
24984
24985 \series bold
24986
24987 \backslash
24988 raisebox
24989 \series default
24990  dient nur als Abstandhalter.
24991 \end_layout
24992
24993 \end_inset
24994
24995
24996 \end_layout
24997
24998 \end_inset
24999 </cell>
25000 </row>
25001 <row>
25002 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25003 \begin_inset Text
25004
25005 \begin_layout Plain Layout
25006 A(r)
25007 \backslash
25008 stackrel
25009 \begin_inset space \textvisiblespace{}
25010 \end_inset
25011
25012 r
25013 \backslash
25014 to
25015 \backslash
25016 infty
25017 \begin_inset space \textvisiblespace{}
25018 \end_inset
25019
25020
25021 \begin_inset Formula $\downarrow$
25022 \end_inset
25023
25024
25025 \backslash
25026 approx
25027 \begin_inset space \textvisiblespace{}
25028 \end_inset
25029
25030
25031 \begin_inset space \textvisiblespace{}
25032 \end_inset
25033
25034 B
25035 \end_layout
25036
25037 \end_inset
25038 </cell>
25039 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25040 \begin_inset Text
25041
25042 \begin_layout Plain Layout
25043 \begin_inset Formula $\raisebox{5mm}{}A(r)\stackrel{r\to\infty}{\approx}B$
25044 \end_inset
25045
25046
25047 \end_layout
25048
25049 \end_inset
25050 </cell>
25051 </row>
25052 </lyxtabular>
25053
25054 \end_inset
25055
25056
25057 \end_layout
25058
25059 \begin_layout Section
25060 Funktionen
25061 \end_layout
25062
25063 \begin_layout Subsection
25064 Vordefinierte Funktionen
25065 \begin_inset CommandInset label
25066 LatexCommand label
25067 name "sub:Vordefinierte-Funktionen"
25068
25069 \end_inset
25070
25071
25072 \begin_inset Index idx
25073 status collapsed
25074
25075 \begin_layout Plain Layout
25076 Funktionen ! vordefinierte
25077 \end_layout
25078
25079 \end_inset
25080
25081
25082 \end_layout
25083
25084 \begin_layout Standard
25085 Allgemein werden in mathematischen Ausdrücken Variablen 
25086 \shape italic
25087 kursiv
25088 \shape default
25089  gesetzt, Funktionsnamen hingegen nicht, denn 
25090 \begin_inset Formula $sin$
25091 \end_inset
25092
25093  könnte als 
25094 \begin_inset Formula $s\cdot i\cdot n$
25095 \end_inset
25096
25097  missverstanden werden.
25098  Aus diesem Grund gibt es vordefinierte Funktionen, die zusätzlich von Vorfaktor
25099 en etwas abgesetzt sind.
25100  Sie werden als Befehle mit einem Backslash vor dem Funktionsnamen eingefügt.
25101 \end_layout
25102
25103 \begin_layout Standard
25104 \align center
25105 \begin_inset Tabular
25106 <lyxtabular version="3" rows="2" columns="4">
25107 <features rotate="0" tabularvalignment="middle">
25108 <column alignment="center" valignment="top" width="0pt">
25109 <column alignment="center" valignment="top" width="0pt">
25110 <column alignment="center" valignment="top" width="0pt">
25111 <column alignment="center" valignment="top" width="0pt">
25112 <row>
25113 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25114 \begin_inset Text
25115
25116 \begin_layout Plain Layout
25117 Befehl
25118 \end_layout
25119
25120 \end_inset
25121 </cell>
25122 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25123 \begin_inset Text
25124
25125 \begin_layout Plain Layout
25126 Ergebnis
25127 \end_layout
25128
25129 \end_inset
25130 </cell>
25131 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25132 \begin_inset Text
25133
25134 \begin_layout Plain Layout
25135 Befehl
25136 \end_layout
25137
25138 \end_inset
25139 </cell>
25140 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25141 \begin_inset Text
25142
25143 \begin_layout Plain Layout
25144 Ergebnis
25145 \end_layout
25146
25147 \end_inset
25148 </cell>
25149 </row>
25150 <row>
25151 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25152 \begin_inset Text
25153
25154 \begin_layout Plain Layout
25155 Asin(x)+B
25156 \end_layout
25157
25158 \end_inset
25159 </cell>
25160 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25161 \begin_inset Text
25162
25163 \begin_layout Plain Layout
25164 \begin_inset Formula $Asin(x)+B$
25165 \end_inset
25166
25167
25168 \end_layout
25169
25170 \end_inset
25171 </cell>
25172 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25173 \begin_inset Text
25174
25175 \begin_layout Plain Layout
25176 A
25177 \backslash
25178 sin(x)+B
25179 \end_layout
25180
25181 \end_inset
25182 </cell>
25183 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25184 \begin_inset Text
25185
25186 \begin_layout Plain Layout
25187 \begin_inset Formula $A\sin(x)+B$
25188 \end_inset
25189
25190
25191 \end_layout
25192
25193 \end_inset
25194 </cell>
25195 </row>
25196 </lyxtabular>
25197
25198 \end_inset
25199
25200
25201 \end_layout
25202
25203 \begin_layout Standard
25204 Folgende Funktionen sind vordefiniert:
25205 \end_layout
25206
25207 \begin_layout Standard
25208 \begin_inset VSpace -2mm
25209 \end_inset
25210
25211
25212 \end_layout
25213
25214 \begin_layout Standard
25215 \align center
25216 \begin_inset Tabular
25217 <lyxtabular version="3" rows="9" columns="4">
25218 <features rotate="0" tabularvalignment="middle">
25219 <column alignment="center" valignment="top" width="0pt">
25220 <column alignment="center" valignment="top" width="0pt">
25221 <column alignment="center" valignment="top" width="0pt">
25222 <column alignment="center" valignment="top" width="0pt">
25223 <row>
25224 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25225 \begin_inset Text
25226
25227 \begin_layout Plain Layout
25228 Befehl
25229 \end_layout
25230
25231 \end_inset
25232 </cell>
25233 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25234 \begin_inset Text
25235
25236 \begin_layout Plain Layout
25237 Befehl
25238 \end_layout
25239
25240 \end_inset
25241 </cell>
25242 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25243 \begin_inset Text
25244
25245 \begin_layout Plain Layout
25246 Befehl
25247 \end_layout
25248
25249 \end_inset
25250 </cell>
25251 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25252 \begin_inset Text
25253
25254 \begin_layout Plain Layout
25255 Befehl
25256 \end_layout
25257
25258 \end_inset
25259 </cell>
25260 </row>
25261 <row>
25262 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25263 \begin_inset Text
25264
25265 \begin_layout Plain Layout
25266
25267 \backslash
25268 sin
25269 \end_layout
25270
25271 \end_inset
25272 </cell>
25273 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25274 \begin_inset Text
25275
25276 \begin_layout Plain Layout
25277
25278 \backslash
25279 sinh
25280 \end_layout
25281
25282 \end_inset
25283 </cell>
25284 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25285 \begin_inset Text
25286
25287 \begin_layout Plain Layout
25288
25289 \backslash
25290 arcsin
25291 \end_layout
25292
25293 \end_inset
25294 </cell>
25295 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25296 \begin_inset Text
25297
25298 \begin_layout Plain Layout
25299
25300 \backslash
25301 sup
25302 \end_layout
25303
25304 \end_inset
25305 </cell>
25306 </row>
25307 <row>
25308 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25309 \begin_inset Text
25310
25311 \begin_layout Plain Layout
25312
25313 \backslash
25314 cos
25315 \end_layout
25316
25317 \end_inset
25318 </cell>
25319 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25320 \begin_inset Text
25321
25322 \begin_layout Plain Layout
25323
25324 \backslash
25325 cosh
25326 \end_layout
25327
25328 \end_inset
25329 </cell>
25330 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25331 \begin_inset Text
25332
25333 \begin_layout Plain Layout
25334
25335 \backslash
25336 arccos
25337 \end_layout
25338
25339 \end_inset
25340 </cell>
25341 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25342 \begin_inset Text
25343
25344 \begin_layout Plain Layout
25345
25346 \backslash
25347 inf
25348 \end_layout
25349
25350 \end_inset
25351 </cell>
25352 </row>
25353 <row>
25354 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25355 \begin_inset Text
25356
25357 \begin_layout Plain Layout
25358
25359 \backslash
25360 tan
25361 \end_layout
25362
25363 \end_inset
25364 </cell>
25365 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25366 \begin_inset Text
25367
25368 \begin_layout Plain Layout
25369
25370 \backslash
25371 tanh
25372 \end_layout
25373
25374 \end_inset
25375 </cell>
25376 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25377 \begin_inset Text
25378
25379 \begin_layout Plain Layout
25380
25381 \backslash
25382 arctan
25383 \end_layout
25384
25385 \end_inset
25386 </cell>
25387 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25388 \begin_inset Text
25389
25390 \begin_layout Plain Layout
25391
25392 \backslash
25393 lim
25394 \end_layout
25395
25396 \end_inset
25397 </cell>
25398 </row>
25399 <row>
25400 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25401 \begin_inset Text
25402
25403 \begin_layout Plain Layout
25404
25405 \backslash
25406 cot
25407 \end_layout
25408
25409 \end_inset
25410 </cell>
25411 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25412 \begin_inset Text
25413
25414 \begin_layout Plain Layout
25415
25416 \backslash
25417 coth
25418 \end_layout
25419
25420 \end_inset
25421 </cell>
25422 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25423 \begin_inset Text
25424
25425 \begin_layout Plain Layout
25426
25427 \backslash
25428 arg
25429 \end_layout
25430
25431 \end_inset
25432 </cell>
25433 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25434 \begin_inset Text
25435
25436 \begin_layout Plain Layout
25437
25438 \backslash
25439 liminf
25440 \end_layout
25441
25442 \end_inset
25443 </cell>
25444 </row>
25445 <row>
25446 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25447 \begin_inset Text
25448
25449 \begin_layout Plain Layout
25450
25451 \backslash
25452 sec
25453 \end_layout
25454
25455 \end_inset
25456 </cell>
25457 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25458 \begin_inset Text
25459
25460 \begin_layout Plain Layout
25461
25462 \backslash
25463 min
25464 \end_layout
25465
25466 \end_inset
25467 </cell>
25468 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25469 \begin_inset Text
25470
25471 \begin_layout Plain Layout
25472
25473 \backslash
25474 deg
25475 \end_layout
25476
25477 \end_inset
25478 </cell>
25479 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25480 \begin_inset Text
25481
25482 \begin_layout Plain Layout
25483
25484 \backslash
25485 limsup
25486 \end_layout
25487
25488 \end_inset
25489 </cell>
25490 </row>
25491 <row>
25492 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25493 \begin_inset Text
25494
25495 \begin_layout Plain Layout
25496
25497 \backslash
25498 csc
25499 \end_layout
25500
25501 \end_inset
25502 </cell>
25503 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25504 \begin_inset Text
25505
25506 \begin_layout Plain Layout
25507
25508 \backslash
25509 max
25510 \end_layout
25511
25512 \end_inset
25513 </cell>
25514 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25515 \begin_inset Text
25516
25517 \begin_layout Plain Layout
25518
25519 \backslash
25520 det
25521 \end_layout
25522
25523 \end_inset
25524 </cell>
25525 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25526 \begin_inset Text
25527
25528 \begin_layout Plain Layout
25529
25530 \backslash
25531 Pr
25532 \end_layout
25533
25534 \end_inset
25535 </cell>
25536 </row>
25537 <row>
25538 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25539 \begin_inset Text
25540
25541 \begin_layout Plain Layout
25542
25543 \backslash
25544 ln
25545 \end_layout
25546
25547 \end_inset
25548 </cell>
25549 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25550 \begin_inset Text
25551
25552 \begin_layout Plain Layout
25553
25554 \backslash
25555 exp
25556 \end_layout
25557
25558 \end_inset
25559 </cell>
25560 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25561 \begin_inset Text
25562
25563 \begin_layout Plain Layout
25564
25565 \backslash
25566 dim
25567 \end_layout
25568
25569 \end_inset
25570 </cell>
25571 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25572 \begin_inset Text
25573
25574 \begin_layout Plain Layout
25575
25576 \backslash
25577 hom
25578 \end_layout
25579
25580 \end_inset
25581 </cell>
25582 </row>
25583 <row>
25584 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25585 \begin_inset Text
25586
25587 \begin_layout Plain Layout
25588
25589 \backslash
25590 lg
25591 \end_layout
25592
25593 \end_inset
25594 </cell>
25595 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25596 \begin_inset Text
25597
25598 \begin_layout Plain Layout
25599
25600 \backslash
25601 log
25602 \end_layout
25603
25604 \end_inset
25605 </cell>
25606 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25607 \begin_inset Text
25608
25609 \begin_layout Plain Layout
25610
25611 \backslash
25612 ker
25613 \end_layout
25614
25615 \end_inset
25616 </cell>
25617 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25618 \begin_inset Text
25619
25620 \begin_layout Plain Layout
25621
25622 \backslash
25623 gcd
25624 \end_layout
25625
25626 \end_inset
25627 </cell>
25628 </row>
25629 </lyxtabular>
25630
25631 \end_inset
25632
25633
25634 \end_layout
25635
25636 \begin_layout Standard
25637 Sie können auch über den Mathe-Werkzeugleistenknopf 
25638 \begin_inset Info
25639 type  "icon"
25640 arg   "math-insert \\functions"
25641 \end_inset
25642
25643  eingefügt werden.
25644 \end_layout
25645
25646 \begin_layout Subsection
25647 Selbst definierte Funktionen
25648 \begin_inset Index idx
25649 status collapsed
25650
25651 \begin_layout Plain Layout
25652 Funktionen ! selbstdefinierte
25653 \end_layout
25654
25655 \end_inset
25656
25657
25658 \end_layout
25659
25660 \begin_layout Standard
25661 Will man eine Funktion verwenden, die nicht vordefiniert ist, wie z.
25662 \begin_inset space \thinspace{}
25663 \end_inset
25664
25665 B.
25666  die Signumfunktion sgn(x), hat man zwei Möglichkeiten:
25667 \end_layout
25668
25669 \begin_layout Itemize
25670 Man definiert die Funktion selbst.
25671  Dazu gibt man im LaTeX-Vorspann die Zeile
25672 \begin_inset Newline newline
25673 \end_inset
25674
25675
25676 \begin_inset VSpace -3mm
25677 \end_inset
25678
25679
25680 \begin_inset Newline newline
25681 \end_inset
25682
25683
25684 \series bold
25685
25686 \backslash
25687 DeclareMathOperator{
25688 \backslash
25689 sgn}{sgn}
25690 \series default
25691
25692 \begin_inset Index idx
25693 status collapsed
25694
25695 \begin_layout Plain Layout
25696 Befehle ! D ! 
25697 \backslash
25698 dbinom@
25699 \backslash
25700 DeclareMathOperator
25701 \end_layout
25702
25703 \end_inset
25704
25705
25706 \begin_inset Newline newline
25707 \end_inset
25708
25709
25710 \begin_inset VSpace -2mm
25711 \end_inset
25712
25713
25714 \begin_inset Newline newline
25715 \end_inset
25716
25717 ein
25718 \begin_inset Foot
25719 status collapsed
25720
25721 \begin_layout Plain Layout
25722 Näheres zu 
25723 \series bold
25724
25725 \backslash
25726 DeclareMathOperator
25727 \series default
25728  siehe 
25729 \begin_inset CommandInset ref
25730 LatexCommand ref
25731 reference "sub:Selbstdefinierte-Operatoren"
25732
25733 \end_inset
25734
25735 .
25736 \end_layout
25737
25738 \end_inset
25739
25740 .
25741  Nun kann man mit dem Befehl 
25742 \series bold
25743
25744 \backslash
25745 sgn
25746 \series default
25747  die neu definierte Funktion aufrufen.
25748 \end_layout
25749
25750 \begin_layout Itemize
25751 Man schreibt die Formel wie gewohnt, markiert den Formelnamen, also in unserem
25752  Beispiel die Buchstaben 
25753 \emph on
25754 sgn
25755 \emph default
25756 , und wandelt ihn in in mathematischen Text um.
25757  Zwischen Vorfaktor und Funktion fügt man einen kleinen Leerraum ein.
25758 \end_layout
25759
25760 \begin_layout Standard
25761 Das Ergebnis ist bei beiden Methoden dasselbe wie bei einer vordefinierten
25762  Funktion
25763 \begin_inset Foot
25764 status collapsed
25765
25766 \begin_layout Plain Layout
25767 Selbst definierte Funktionen werden in LyX rot, vordefinierte schwarz angezeigt.
25768 \end_layout
25769
25770 \end_inset
25771
25772 :
25773 \end_layout
25774
25775 \begin_layout Standard
25776 \align center
25777 \begin_inset Tabular
25778 <lyxtabular version="3" rows="3" columns="2">
25779 <features rotate="0" tabularvalignment="middle">
25780 <column alignment="center" valignment="top" width="0pt">
25781 <column alignment="center" valignment="top" width="0pt">
25782 <row>
25783 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25784 \begin_inset Text
25785
25786 \begin_layout Plain Layout
25787 Befehl
25788 \end_layout
25789
25790 \end_inset
25791 </cell>
25792 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25793 \begin_inset Text
25794
25795 \begin_layout Plain Layout
25796 Ergebnis
25797 \end_layout
25798
25799 \end_inset
25800 </cell>
25801 </row>
25802 <row>
25803 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25804 \begin_inset Text
25805
25806 \begin_layout Plain Layout
25807 A
25808 \backslash
25809 sgn(x)+B
25810 \end_layout
25811
25812 \end_inset
25813 </cell>
25814 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25815 \begin_inset Text
25816
25817 \begin_layout Plain Layout
25818 \begin_inset Formula $A\sgn(x)+B$
25819 \end_inset
25820
25821
25822 \end_layout
25823
25824 \end_inset
25825 </cell>
25826 </row>
25827 <row>
25828 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25829 \begin_inset Text
25830
25831 \begin_layout Plain Layout
25832 A
25833 \backslash
25834 ,
25835 \begin_inset Formula $\underbrace{\textrm{sgn}}_{\textrm{Alt-m}\,\textrm{m}}$
25836 \end_inset
25837
25838 (x)+B
25839 \end_layout
25840
25841 \end_inset
25842 </cell>
25843 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25844 \begin_inset Text
25845
25846 \begin_layout Plain Layout
25847 \begin_inset Formula $A\,\textrm{sgn}(x)+B$
25848 \end_inset
25849
25850
25851 \end_layout
25852
25853 \end_inset
25854 </cell>
25855 </row>
25856 </lyxtabular>
25857
25858 \end_inset
25859
25860
25861 \end_layout
25862
25863 \begin_layout Standard
25864 Die erste Methode ist besser geeignet, wenn die selbst definierte Funktion
25865  mehrfach verwendet werden soll.
25866 \end_layout
25867
25868 \begin_layout Subsection
25869 Grenzwerte
25870 \begin_inset Index idx
25871 status collapsed
25872
25873 \begin_layout Plain Layout
25874 Grenzwerte
25875 \end_layout
25876
25877 \end_inset
25878
25879
25880 \end_layout
25881
25882 \begin_layout Standard
25883 Für Grenzwerte sind außer 
25884 \series bold
25885
25886 \backslash
25887 lim
25888 \series default
25889
25890 \begin_inset Index idx
25891 status collapsed
25892
25893 \begin_layout Plain Layout
25894 Befehle ! L ! 
25895 \backslash
25896 lim
25897 \end_layout
25898
25899 \end_inset
25900
25901
25902 \series bold
25903
25904 \backslash
25905 liminf
25906 \series default
25907  und 
25908 \series bold
25909
25910 \backslash
25911 limsup
25912 \series default
25913  noch folgende Funktionen definiert:
25914 \end_layout
25915
25916 \begin_layout Standard
25917 \align center
25918 \begin_inset Tabular
25919 <lyxtabular version="3" rows="5" columns="2">
25920 <features rotate="0" tabularvalignment="middle">
25921 <column alignment="center" valignment="top">
25922 <column alignment="center" valignment="top">
25923 <row>
25924 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25925 \begin_inset Text
25926
25927 \begin_layout Plain Layout
25928 Befehl
25929 \end_layout
25930
25931 \end_inset
25932 </cell>
25933 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25934 \begin_inset Text
25935
25936 \begin_layout Plain Layout
25937 Ergebnis
25938 \begin_inset Note Note
25939 status collapsed
25940
25941 \begin_layout Plain Layout
25942
25943 \series bold
25944
25945 \backslash
25946 raisebox
25947 \series default
25948  dient nur als Abstandhalter.
25949 \end_layout
25950
25951 \end_inset
25952
25953
25954 \end_layout
25955
25956 \end_inset
25957 </cell>
25958 </row>
25959 <row>
25960 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25961 \begin_inset Text
25962
25963 \begin_layout Plain Layout
25964
25965 \backslash
25966 varliminf
25967 \end_layout
25968
25969 \end_inset
25970 </cell>
25971 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25972 \begin_inset Text
25973
25974 \begin_layout Plain Layout
25975 \begin_inset Formula $\varliminf$
25976 \end_inset
25977
25978
25979 \end_layout
25980
25981 \end_inset
25982 </cell>
25983 </row>
25984 <row>
25985 <cell alignment="center" valignment="top" leftline="true" usebox="none">
25986 \begin_inset Text
25987
25988 \begin_layout Plain Layout
25989
25990 \backslash
25991 varlimsup
25992 \end_layout
25993
25994 \end_inset
25995 </cell>
25996 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
25997 \begin_inset Text
25998
25999 \begin_layout Plain Layout
26000 \begin_inset Formula $\varlimsup$
26001 \end_inset
26002
26003
26004 \end_layout
26005
26006 \end_inset
26007 </cell>
26008 </row>
26009 <row>
26010 <cell alignment="center" valignment="top" leftline="true" usebox="none">
26011 \begin_inset Text
26012
26013 \begin_layout Plain Layout
26014
26015 \backslash
26016 varprojlim
26017 \end_layout
26018
26019 \end_inset
26020 </cell>
26021 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
26022 \begin_inset Text
26023
26024 \begin_layout Plain Layout
26025 \begin_inset Formula $\varprojlim$
26026 \end_inset
26027
26028
26029 \end_layout
26030
26031 \end_inset
26032 </cell>
26033 </row>
26034 <row>
26035 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
26036 \begin_inset Text
26037
26038 \begin_layout Plain Layout
26039
26040 \backslash
26041 varinjlim
26042 \end_layout
26043
26044 \end_inset
26045 </cell>
26046 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
26047 \begin_inset Text
26048
26049 \begin_layout Plain Layout
26050 \begin_inset Formula $\varinjlim$
26051 \end_inset
26052
26053
26054 \begin_inset Formula $\raisebox{-2.5mm}{}$
26055 \end_inset
26056
26057
26058 \end_layout
26059
26060 \end_inset
26061 </cell>
26062 </row>
26063 </lyxtabular>
26064
26065 \end_inset
26066
26067
26068 \end_layout
26069
26070 \begin_layout Standard
26071 \begin_inset VSpace medskip
26072 \end_inset
26073
26074 Der Grenzwert wird durch Tiefstellen erzeugt.
26075  Bei einer eingebetteten Formel wird er rechts neben die Funktion gesetzt:
26076 \end_layout
26077
26078 \begin_layout Standard
26079 \align center
26080 \begin_inset Tabular
26081 <lyxtabular version="3" rows="2" columns="2">
26082 <features rotate="0" tabularvalignment="middle">
26083 <column alignment="center" valignment="top" width="0pt">
26084 <column alignment="center" valignment="top" width="0pt">
26085 <row>
26086 <cell alignment="center" valignment="top" usebox="none">
26087 \begin_inset Text
26088
26089 \begin_layout Plain Layout
26090 Befehl
26091 \end_layout
26092
26093 \end_inset
26094 </cell>
26095 <cell alignment="center" valignment="top" usebox="none">
26096 \begin_inset Text
26097
26098 \begin_layout Plain Layout
26099 \begin_inset space \hspace{}
26100 \length 1cm
26101 \end_inset
26102
26103 Ergebnis
26104 \begin_inset Note Note
26105 status collapsed
26106
26107 \begin_layout Plain Layout
26108 Der Leerraum und 
26109 \series bold
26110
26111 \backslash
26112 raisebox
26113 \series default
26114  dienen nur als Abstandhalter.
26115 \end_layout
26116
26117 \end_inset
26118
26119
26120 \end_layout
26121
26122 \end_inset
26123 </cell>
26124 </row>
26125 <row>
26126 <cell alignment="center" valignment="top" usebox="none">
26127 \begin_inset Text
26128
26129 \begin_layout Plain Layout
26130
26131 \backslash
26132 lim_x
26133 \backslash
26134 to
26135 \begin_inset space \textvisiblespace{}
26136 \end_inset
26137
26138 A
26139 \begin_inset space \textvisiblespace{}
26140 \end_inset
26141
26142 x=B
26143 \end_layout
26144
26145 \end_inset
26146 </cell>
26147 <cell alignment="center" valignment="top" usebox="none">
26148 \begin_inset Text
26149
26150 \begin_layout Plain Layout
26151 \begin_inset Formula $\hspace{1cm}\raisebox{5mm}{}\lim_{x\to A}x=B$
26152 \end_inset
26153
26154
26155 \end_layout
26156
26157 \end_inset
26158 </cell>
26159 </row>
26160 </lyxtabular>
26161
26162 \end_inset
26163
26164
26165 \end_layout
26166
26167 \begin_layout Standard
26168 In einer abgesetzten Formel steht der Grenzwert wie gewohnt darunter:
26169 \begin_inset Formula 
26170 \[
26171 \lim_{x\to A}x=B
26172 \]
26173
26174 \end_inset
26175
26176
26177 \end_layout
26178
26179 \begin_layout Standard
26180 \begin_inset VSpace medskip
26181 \end_inset
26182
26183
26184 \end_layout
26185
26186 \begin_layout Standard
26187 Wie man den Schriftsatz von Grenzen einstellt, ist in 
26188 \begin_inset CommandInset ref
26189 LatexCommand ref
26190 reference "sub:Operatorgrenzen"
26191
26192 \end_inset
26193
26194  erklärt.
26195 \end_layout
26196
26197 \begin_layout Subsection
26198 Modulo-Funktionen
26199 \begin_inset Index idx
26200 status collapsed
26201
26202 \begin_layout Plain Layout
26203 Funktionen ! Modulo-
26204 \end_layout
26205
26206 \end_inset
26207
26208
26209 \end_layout
26210
26211 \begin_layout Standard
26212 Eine Besonderheit stellt die Modulo-Funktion dar, denn es gibt sie in vier
26213  Varianten.
26214 \end_layout
26215
26216 \begin_layout Standard
26217 Die Varianten in einer abgesetzten Formel:
26218 \begin_inset Formula 
26219 \begin{align*}
26220 \underline{\textrm{Befehl}\raisebox{-0.9mm}{}} &  & \underline{\textrm{Ergebnis}}\\
26221 \mathrm{a\backslash mod\textrm{␣}b} &  & a\mod b\\
26222 \mathrm{a\backslash pmod\textrm{␣}b} &  & a\pmod b\\
26223 \mathrm{a\backslash bmod\textrm{␣}b} &  & a\bmod b\\
26224 \mathrm{a\backslash pod\textrm{␣}b} &  & a\pod b
26225 \end{align*}
26226
26227 \end_inset
26228
26229
26230 \end_layout
26231
26232 \begin_layout Standard
26233 In einer eingebetteten Formel wird bei allen Varianten vor den Funktionsnamen
26234  weniger Leerraum gesetzt.
26235  Standardmäßig beachten die Modulo-Funktionen nur das erste, folgende Zeichen.
26236  Um mehrere Zeichen zu verwenden, muss man sie in TeX-Klammern setzen:
26237 \begin_inset Formula 
26238 \begin{align*}
26239 \underline{\textrm{Befehl}\raisebox{-0.9mm}{}} &  & \underline{\textrm{Ergebnis}}\\
26240 \mathrm{a\backslash pod\textrm{␣}bcd} &  & a\pod bcd\\
26241 \mathrm{a\backslash pod\backslash\{bc\to d} &  & a\pod{bc}d
26242 \end{align*}
26243
26244 \end_inset
26245
26246
26247 \end_layout
26248
26249 \begin_layout Section
26250 Sonderzeichen
26251 \begin_inset Index idx
26252 status collapsed
26253
26254 \begin_layout Plain Layout
26255 Sonderzeichen
26256 \end_layout
26257
26258 \end_inset
26259
26260
26261 \end_layout
26262
26263 \begin_layout Standard
26264 Die Zeichen ^ und _ erzeugen normalerweise Exponenten bzw.
26265 \begin_inset space \space{}
26266 \end_inset
26267
26268 Indizes.
26269  Um diese Zeichen zu erhalten, müssen sie mit einem 
26270 \backslash
26271  eingegeben werden:
26272 \end_layout
26273
26274 \begin_layout Standard
26275 \noindent
26276 \align center
26277 \begin_inset Tabular
26278 <lyxtabular version="3" rows="3" columns="2">
26279 <features rotate="0" tabularvalignment="middle">
26280 <column alignment="block" valignment="top">
26281 <column alignment="block" valignment="top">
26282 <row>
26283 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26284 \begin_inset Text
26285
26286 \begin_layout Plain Layout
26287 Befehl
26288 \end_layout
26289
26290 \end_inset
26291 </cell>
26292 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26293 \begin_inset Text
26294
26295 \begin_layout Plain Layout
26296 Ergebnis
26297 \end_layout
26298
26299 \end_inset
26300 </cell>
26301 </row>
26302 <row>
26303 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26304 \begin_inset Text
26305
26306 \begin_layout Plain Layout
26307
26308 \backslash
26309 ^
26310 \begin_inset space \textvisiblespace{}
26311 \end_inset
26312
26313
26314 \end_layout
26315
26316 \end_inset
26317 </cell>
26318 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26319 \begin_inset Text
26320
26321 \begin_layout Plain Layout
26322 \begin_inset Formula $\mathcircumflex$
26323 \end_inset
26324
26325
26326 \end_layout
26327
26328 \end_inset
26329 </cell>
26330 </row>
26331 <row>
26332 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26333 \begin_inset Text
26334
26335 \begin_layout Plain Layout
26336
26337 \backslash
26338 _
26339 \end_layout
26340
26341 \end_inset
26342 </cell>
26343 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26344 \begin_inset Text
26345
26346 \begin_layout Plain Layout
26347 \begin_inset Formula $\_$
26348 \end_inset
26349
26350
26351 \end_layout
26352
26353 \end_inset
26354 </cell>
26355 </row>
26356 </lyxtabular>
26357
26358 \end_inset
26359
26360
26361 \end_layout
26362
26363 \begin_layout Subsection
26364 Sonderzeichen im mathematischen Text
26365 \end_layout
26366
26367 \begin_layout Standard
26368 Die folgenden Befehle können nur im mathematischen Textmodus oder im TeX-Modus
26369  verwendet werden:
26370 \end_layout
26371
26372 \begin_layout Standard
26373 \begin_inset space \hfill{}
26374 \end_inset
26375
26376
26377 \begin_inset Tabular
26378 <lyxtabular version="3" rows="8" columns="2">
26379 <features rotate="0" tabularvalignment="middle">
26380 <column alignment="block" valignment="top">
26381 <column alignment="block" valignment="top">
26382 <row>
26383 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26384 \begin_inset Text
26385
26386 \begin_layout Plain Layout
26387 Befehl
26388 \end_layout
26389
26390 \end_inset
26391 </cell>
26392 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26393 \begin_inset Text
26394
26395 \begin_layout Plain Layout
26396 Ergebnis
26397 \end_layout
26398
26399 \end_inset
26400 </cell>
26401 </row>
26402 <row>
26403 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26404 \begin_inset Text
26405
26406 \begin_layout Plain Layout
26407
26408 \backslash
26409 oe
26410 \end_layout
26411
26412 \end_inset
26413 </cell>
26414 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26415 \begin_inset Text
26416
26417 \begin_layout Plain Layout
26418 \begin_inset Formula $\textrm{œ}$
26419 \end_inset
26420
26421
26422 \end_layout
26423
26424 \end_inset
26425 </cell>
26426 </row>
26427 <row>
26428 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26429 \begin_inset Text
26430
26431 \begin_layout Plain Layout
26432
26433 \backslash
26434 OE
26435 \end_layout
26436
26437 \end_inset
26438 </cell>
26439 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26440 \begin_inset Text
26441
26442 \begin_layout Plain Layout
26443 \begin_inset Formula $\textrm{Œ}$
26444 \end_inset
26445
26446
26447 \end_layout
26448
26449 \end_inset
26450 </cell>
26451 </row>
26452 <row>
26453 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26454 \begin_inset Text
26455
26456 \begin_layout Plain Layout
26457
26458 \backslash
26459 ae
26460 \end_layout
26461
26462 \end_inset
26463 </cell>
26464 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26465 \begin_inset Text
26466
26467 \begin_layout Plain Layout
26468 \begin_inset Formula $\textrm{æ}$
26469 \end_inset
26470
26471
26472 \end_layout
26473
26474 \end_inset
26475 </cell>
26476 </row>
26477 <row>
26478 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26479 \begin_inset Text
26480
26481 \begin_layout Plain Layout
26482
26483 \backslash
26484 AE
26485 \end_layout
26486
26487 \end_inset
26488 </cell>
26489 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26490 \begin_inset Text
26491
26492 \begin_layout Plain Layout
26493 \begin_inset Formula $\textrm{Æ}$
26494 \end_inset
26495
26496
26497 \end_layout
26498
26499 \end_inset
26500 </cell>
26501 </row>
26502 <row>
26503 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26504 \begin_inset Text
26505
26506 \begin_layout Plain Layout
26507
26508 \backslash
26509 aa
26510 \end_layout
26511
26512 \end_inset
26513 </cell>
26514 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26515 \begin_inset Text
26516
26517 \begin_layout Plain Layout
26518 \begin_inset Formula $\textrm{\aa}$
26519 \end_inset
26520
26521
26522 \end_layout
26523
26524 \end_inset
26525 </cell>
26526 </row>
26527 <row>
26528 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26529 \begin_inset Text
26530
26531 \begin_layout Plain Layout
26532
26533 \backslash
26534 AA
26535 \begin_inset Index idx
26536 status collapsed
26537
26538 \begin_layout Plain Layout
26539
26540 \backslash
26541 @
26542 \begin_inset ERT
26543 status collapsed
26544
26545 \begin_layout Plain Layout
26546
26547
26548 \backslash
26549 textrm{
26550 \backslash
26551 AA}
26552 \end_layout
26553
26554 \end_inset
26555
26556
26557 \end_layout
26558
26559 \end_inset
26560
26561
26562 \end_layout
26563
26564 \end_inset
26565 </cell>
26566 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26567 \begin_inset Text
26568
26569 \begin_layout Plain Layout
26570 \begin_inset Formula $\textrm{Å}$
26571 \end_inset
26572
26573
26574 \end_layout
26575
26576 \end_inset
26577 </cell>
26578 </row>
26579 <row>
26580 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
26581 \begin_inset Text
26582
26583 \begin_layout Plain Layout
26584
26585 \backslash
26586 i
26587 \end_layout
26588
26589 \end_inset
26590 </cell>
26591 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
26592 \begin_inset Text
26593
26594 \begin_layout Plain Layout
26595 \begin_inset Formula $\textrm{ı}$
26596 \end_inset
26597
26598
26599 \end_layout
26600
26601 \end_inset
26602 </cell>
26603 </row>
26604 </lyxtabular>
26605
26606 \end_inset
26607
26608
26609 \begin_inset space \hfill{}
26610 \end_inset
26611
26612
26613 \begin_inset Tabular
26614 <lyxtabular version="3" rows="8" columns="2">
26615 <features rotate="0" tabularvalignment="middle">
26616 <column alignment="block" valignment="top">
26617 <column alignment="center" valignment="top">
26618 <row>
26619 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26620 \begin_inset Text
26621
26622 \begin_layout Plain Layout
26623 Befehl
26624 \begin_inset Note Note
26625 status collapsed
26626
26627 \begin_layout Plain Layout
26628 Der Leerraum von 0
26629 \begin_inset space \thinspace{}
26630 \end_inset
26631
26632 mm dient nur zur Trennung,da sonst im Ausdruck ¡ bzw.
26633 \begin_inset space \space{}
26634 \end_inset
26635
26636 ¿ erscheinen würde.
26637 \end_layout
26638
26639 \end_inset
26640
26641
26642 \end_layout
26643
26644 \end_inset
26645 </cell>
26646 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26647 \begin_inset Text
26648
26649 \begin_layout Plain Layout
26650 Ergebnis
26651 \end_layout
26652
26653 \end_inset
26654 </cell>
26655 </row>
26656 <row>
26657 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26658 \begin_inset Text
26659
26660 \begin_layout Plain Layout
26661
26662 \backslash
26663 o
26664 \end_layout
26665
26666 \end_inset
26667 </cell>
26668 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26669 \begin_inset Text
26670
26671 \begin_layout Plain Layout
26672 \begin_inset Formula $\textrm{ø}$
26673 \end_inset
26674
26675
26676 \end_layout
26677
26678 \end_inset
26679 </cell>
26680 </row>
26681 <row>
26682 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26683 \begin_inset Text
26684
26685 \begin_layout Plain Layout
26686
26687 \backslash
26688 O
26689 \end_layout
26690
26691 \end_inset
26692 </cell>
26693 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26694 \begin_inset Text
26695
26696 \begin_layout Plain Layout
26697 \begin_inset Formula $\textrm{Ø}$
26698 \end_inset
26699
26700
26701 \end_layout
26702
26703 \end_inset
26704 </cell>
26705 </row>
26706 <row>
26707 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26708 \begin_inset Text
26709
26710 \begin_layout Plain Layout
26711
26712 \backslash
26713 l
26714 \end_layout
26715
26716 \end_inset
26717 </cell>
26718 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26719 \begin_inset Text
26720
26721 \begin_layout Plain Layout
26722 \begin_inset Formula $\textrm{ł}$
26723 \end_inset
26724
26725
26726 \end_layout
26727
26728 \end_inset
26729 </cell>
26730 </row>
26731 <row>
26732 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26733 \begin_inset Text
26734
26735 \begin_layout Plain Layout
26736
26737 \backslash
26738 L
26739 \end_layout
26740
26741 \end_inset
26742 </cell>
26743 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26744 \begin_inset Text
26745
26746 \begin_layout Plain Layout
26747 \begin_inset Formula $\textrm{Ł}$
26748 \end_inset
26749
26750
26751 \end_layout
26752
26753 \end_inset
26754 </cell>
26755 </row>
26756 <row>
26757 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26758 \begin_inset Text
26759
26760 \begin_layout Plain Layout
26761 !
26762 \begin_inset space \hspace{}
26763 \length 0mm
26764 \end_inset
26765
26766 `
26767 \begin_inset space \textvisiblespace{}
26768 \end_inset
26769
26770
26771 \end_layout
26772
26773 \end_inset
26774 </cell>
26775 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26776 \begin_inset Text
26777
26778 \begin_layout Plain Layout
26779 \begin_inset Formula $\textrm{!`}$
26780 \end_inset
26781
26782
26783 \end_layout
26784
26785 \end_inset
26786 </cell>
26787 </row>
26788 <row>
26789 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
26790 \begin_inset Text
26791
26792 \begin_layout Plain Layout
26793 ?
26794 \begin_inset space \hspace{}
26795 \length 0mm
26796 \end_inset
26797
26798 `
26799 \begin_inset space \textvisiblespace{}
26800 \end_inset
26801
26802
26803 \end_layout
26804
26805 \end_inset
26806 </cell>
26807 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
26808 \begin_inset Text
26809
26810 \begin_layout Plain Layout
26811 \begin_inset Formula $\textrm{?`}$
26812 \end_inset
26813
26814
26815 \end_layout
26816
26817 \end_inset
26818 </cell>
26819 </row>
26820 <row>
26821 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
26822 \begin_inset Text
26823
26824 \begin_layout Plain Layout
26825
26826 \backslash
26827 j
26828 \end_layout
26829
26830 \end_inset
26831 </cell>
26832 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
26833 \begin_inset Text
26834
26835 \begin_layout Plain Layout
26836 \begin_inset Formula $\textrm{ȷ}$
26837 \end_inset
26838
26839
26840 \end_layout
26841
26842 \end_inset
26843 </cell>
26844 </row>
26845 </lyxtabular>
26846
26847 \end_inset
26848
26849
26850 \begin_inset space \hfill{}
26851 \end_inset
26852
26853
26854 \end_layout
26855
26856 \begin_layout Standard
26857 Die Zeichen 
26858 \begin_inset Formula $\textrm{\textrm{Å}}$
26859 \end_inset
26860
26861  und 
26862 \begin_inset Formula $\textrm{\textrm{Ø}}$
26863 \end_inset
26864
26865  können auch über den Mathe-Werkzeugleistenknopf 
26866 \begin_inset Info
26867 type  "icon"
26868 arg   "math-insert \\digamma"
26869 \end_inset
26870
26871  eingefügt werden.
26872 \end_layout
26873
26874 \begin_layout Standard
26875 Eine Ausnahme bilden die Befehle 
26876 \series bold
26877 !
26878 \begin_inset space \hspace{}
26879 \length 0mm
26880 \end_inset
26881
26882 `
26883 \series default
26884  und 
26885 \series bold
26886 ?
26887 \begin_inset space \hspace{}
26888 \length 0mm
26889 \end_inset
26890
26891 `
26892 \series default
26893 , denn man kann sie in LyX direkt in den Text eingeben.
26894 \end_layout
26895
26896 \begin_layout Subsection
26897 Akzente im Text
26898 \begin_inset CommandInset label
26899 LatexCommand label
26900 name "sub:Sonderzeichen-Akzente"
26901
26902 \end_inset
26903
26904
26905 \begin_inset Index idx
26906 status collapsed
26907
26908 \begin_layout Plain Layout
26909 Akzente ! im Text
26910 \end_layout
26911
26912 \end_inset
26913
26914
26915 \end_layout
26916
26917 \begin_layout Standard
26918 Man kann mit den folgenden Befehlen sämtliche Buchstaben akzentuieren.
26919  Die Befehle müssen dazu im TeX-Modus eingegeben werden.
26920 \end_layout
26921
26922 \begin_layout Standard
26923 \begin_inset space \hfill{}
26924 \end_inset
26925
26926
26927 \begin_inset Tabular
26928 <lyxtabular version="3" rows="8" columns="2">
26929 <features rotate="0" tabularvalignment="middle">
26930 <column alignment="block" valignment="top">
26931 <column alignment="block" valignment="top">
26932 <row>
26933 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26934 \begin_inset Text
26935
26936 \begin_layout Plain Layout
26937 Befehl
26938 \end_layout
26939
26940 \end_inset
26941 </cell>
26942 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26943 \begin_inset Text
26944
26945 \begin_layout Plain Layout
26946 Ergebnis
26947 \end_layout
26948
26949 \end_inset
26950 </cell>
26951 </row>
26952 <row>
26953 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26954 \begin_inset Text
26955
26956 \begin_layout Plain Layout
26957
26958 \backslash
26959
26960 \begin_inset Quotes grd
26961 \end_inset
26962
26963 e
26964 \end_layout
26965
26966 \end_inset
26967 </cell>
26968 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26969 \begin_inset Text
26970
26971 \begin_layout Plain Layout
26972 \begin_inset ERT
26973 status collapsed
26974
26975 \begin_layout Plain Layout
26976
26977
26978 \backslash
26979 "e
26980 \end_layout
26981
26982 \end_inset
26983
26984
26985 \end_layout
26986
26987 \end_inset
26988 </cell>
26989 </row>
26990 <row>
26991 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26992 \begin_inset Text
26993
26994 \begin_layout Plain Layout
26995
26996 \backslash
26997 `e
26998 \end_layout
26999
27000 \end_inset
27001 </cell>
27002 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27003 \begin_inset Text
27004
27005 \begin_layout Plain Layout
27006 \begin_inset ERT
27007 status collapsed
27008
27009 \begin_layout Plain Layout
27010
27011
27012 \backslash
27013 `e
27014 \end_layout
27015
27016 \end_inset
27017
27018
27019 \end_layout
27020
27021 \end_inset
27022 </cell>
27023 </row>
27024 <row>
27025 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27026 \begin_inset Text
27027
27028 \begin_layout Plain Layout
27029
27030 \backslash
27031 ^
27032 \begin_inset space \textvisiblespace{}
27033 \end_inset
27034
27035 e
27036 \end_layout
27037
27038 \end_inset
27039 </cell>
27040 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27041 \begin_inset Text
27042
27043 \begin_layout Plain Layout
27044 \begin_inset ERT
27045 status collapsed
27046
27047 \begin_layout Plain Layout
27048
27049
27050 \backslash
27051 ^e
27052 \end_layout
27053
27054 \end_inset
27055
27056
27057 \end_layout
27058
27059 \end_inset
27060 </cell>
27061 </row>
27062 <row>
27063 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27064 \begin_inset Text
27065
27066 \begin_layout Plain Layout
27067
27068 \backslash
27069 =e
27070 \end_layout
27071
27072 \end_inset
27073 </cell>
27074 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27075 \begin_inset Text
27076
27077 \begin_layout Plain Layout
27078 \begin_inset ERT
27079 status collapsed
27080
27081 \begin_layout Plain Layout
27082
27083
27084 \backslash
27085 =e
27086 \end_layout
27087
27088 \end_inset
27089
27090
27091 \end_layout
27092
27093 \end_inset
27094 </cell>
27095 </row>
27096 <row>
27097 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27098 \begin_inset Text
27099
27100 \begin_layout Plain Layout
27101
27102 \backslash
27103 u
27104 \begin_inset space \textvisiblespace{}
27105 \end_inset
27106
27107 e
27108 \end_layout
27109
27110 \end_inset
27111 </cell>
27112 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27113 \begin_inset Text
27114
27115 \begin_layout Plain Layout
27116 \begin_inset ERT
27117 status collapsed
27118
27119 \begin_layout Plain Layout
27120
27121
27122 \backslash
27123 u e
27124 \end_layout
27125
27126 \end_inset
27127
27128
27129 \end_layout
27130
27131 \end_inset
27132 </cell>
27133 </row>
27134 <row>
27135 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27136 \begin_inset Text
27137
27138 \begin_layout Plain Layout
27139
27140 \backslash
27141 b
27142 \begin_inset space \textvisiblespace{}
27143 \end_inset
27144
27145 e
27146 \end_layout
27147
27148 \end_inset
27149 </cell>
27150 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27151 \begin_inset Text
27152
27153 \begin_layout Plain Layout
27154 \begin_inset ERT
27155 status collapsed
27156
27157 \begin_layout Plain Layout
27158
27159
27160 \backslash
27161 b e
27162 \end_layout
27163
27164 \end_inset
27165
27166
27167 \end_layout
27168
27169 \end_inset
27170 </cell>
27171 </row>
27172 <row>
27173 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
27174 \begin_inset Text
27175
27176 \begin_layout Plain Layout
27177
27178 \backslash
27179 t
27180 \begin_inset space \textvisiblespace{}
27181 \end_inset
27182
27183 ee
27184 \end_layout
27185
27186 \end_inset
27187 </cell>
27188 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
27189 \begin_inset Text
27190
27191 \begin_layout Plain Layout
27192 \begin_inset ERT
27193 status collapsed
27194
27195 \begin_layout Plain Layout
27196
27197
27198 \backslash
27199 t ee
27200 \end_layout
27201
27202 \end_inset
27203
27204
27205 \end_layout
27206
27207 \end_inset
27208 </cell>
27209 </row>
27210 </lyxtabular>
27211
27212 \end_inset
27213
27214
27215 \begin_inset space \hfill{}
27216 \end_inset
27217
27218
27219 \begin_inset Tabular
27220 <lyxtabular version="3" rows="8" columns="2">
27221 <features rotate="0" tabularvalignment="middle">
27222 <column alignment="block" valignment="top">
27223 <column alignment="center" valignment="top">
27224 <row>
27225 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27226 \begin_inset Text
27227
27228 \begin_layout Plain Layout
27229 Befehl
27230 \end_layout
27231
27232 \end_inset
27233 </cell>
27234 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27235 \begin_inset Text
27236
27237 \begin_layout Plain Layout
27238 Ergebnis
27239 \end_layout
27240
27241 \end_inset
27242 </cell>
27243 </row>
27244 <row>
27245 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27246 \begin_inset Text
27247
27248 \begin_layout Plain Layout
27249
27250 \backslash
27251 H
27252 \begin_inset space \textvisiblespace{}
27253 \end_inset
27254
27255 e
27256 \end_layout
27257
27258 \end_inset
27259 </cell>
27260 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27261 \begin_inset Text
27262
27263 \begin_layout Plain Layout
27264 \begin_inset ERT
27265 status collapsed
27266
27267 \begin_layout Plain Layout
27268
27269
27270 \backslash
27271 H e
27272 \end_layout
27273
27274 \end_inset
27275
27276
27277 \end_layout
27278
27279 \end_inset
27280 </cell>
27281 </row>
27282 <row>
27283 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27284 \begin_inset Text
27285
27286 \begin_layout Plain Layout
27287
27288 \backslash
27289 'e
27290 \end_layout
27291
27292 \end_inset
27293 </cell>
27294 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27295 \begin_inset Text
27296
27297 \begin_layout Plain Layout
27298 \begin_inset ERT
27299 status collapsed
27300
27301 \begin_layout Plain Layout
27302
27303
27304 \backslash
27305 'e
27306 \end_layout
27307
27308 \end_inset
27309
27310
27311 \end_layout
27312
27313 \end_inset
27314 </cell>
27315 </row>
27316 <row>
27317 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27318 \begin_inset Text
27319
27320 \begin_layout Plain Layout
27321
27322 \backslash
27323 ~e
27324 \begin_inset Index idx
27325 status collapsed
27326
27327 \begin_layout Plain Layout
27328 Tilde
27329 \end_layout
27330
27331 \end_inset
27332
27333
27334 \end_layout
27335
27336 \end_inset
27337 </cell>
27338 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27339 \begin_inset Text
27340
27341 \begin_layout Plain Layout
27342 \begin_inset ERT
27343 status collapsed
27344
27345 \begin_layout Plain Layout
27346
27347
27348 \backslash
27349 ~e
27350 \end_layout
27351
27352 \end_inset
27353
27354
27355 \end_layout
27356
27357 \end_inset
27358 </cell>
27359 </row>
27360 <row>
27361 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27362 \begin_inset Text
27363
27364 \begin_layout Plain Layout
27365
27366 \backslash
27367 .e
27368 \end_layout
27369
27370 \end_inset
27371 </cell>
27372 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27373 \begin_inset Text
27374
27375 \begin_layout Plain Layout
27376 \begin_inset ERT
27377 status collapsed
27378
27379 \begin_layout Plain Layout
27380
27381
27382 \backslash
27383 .e
27384 \end_layout
27385
27386 \end_inset
27387
27388
27389 \end_layout
27390
27391 \end_inset
27392 </cell>
27393 </row>
27394 <row>
27395 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27396 \begin_inset Text
27397
27398 \begin_layout Plain Layout
27399
27400 \backslash
27401 v
27402 \begin_inset space \textvisiblespace{}
27403 \end_inset
27404
27405 e
27406 \end_layout
27407
27408 \end_inset
27409 </cell>
27410 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27411 \begin_inset Text
27412
27413 \begin_layout Plain Layout
27414 \begin_inset ERT
27415 status collapsed
27416
27417 \begin_layout Plain Layout
27418
27419
27420 \backslash
27421 v e
27422 \end_layout
27423
27424 \end_inset
27425
27426
27427 \end_layout
27428
27429 \end_inset
27430 </cell>
27431 </row>
27432 <row>
27433 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
27434 \begin_inset Text
27435
27436 \begin_layout Plain Layout
27437
27438 \backslash
27439 d
27440 \begin_inset space \textvisiblespace{}
27441 \end_inset
27442
27443 e
27444 \end_layout
27445
27446 \end_inset
27447 </cell>
27448 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
27449 \begin_inset Text
27450
27451 \begin_layout Plain Layout
27452 \begin_inset ERT
27453 status collapsed
27454
27455 \begin_layout Plain Layout
27456
27457
27458 \backslash
27459 d e
27460 \end_layout
27461
27462 \end_inset
27463
27464
27465 \end_layout
27466
27467 \end_inset
27468 </cell>
27469 </row>
27470 <row>
27471 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
27472 \begin_inset Text
27473
27474 \begin_layout Plain Layout
27475
27476 \backslash
27477 c
27478 \begin_inset space \textvisiblespace{}
27479 \end_inset
27480
27481 e
27482 \end_layout
27483
27484 \end_inset
27485 </cell>
27486 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
27487 \begin_inset Text
27488
27489 \begin_layout Plain Layout
27490 \begin_inset ERT
27491 status collapsed
27492
27493 \begin_layout Plain Layout
27494
27495
27496 \backslash
27497 c e
27498 \end_layout
27499
27500 \end_inset
27501
27502
27503 \end_layout
27504
27505 \end_inset
27506 </cell>
27507 </row>
27508 </lyxtabular>
27509
27510 \end_inset
27511
27512
27513 \begin_inset space \hfill{}
27514 \end_inset
27515
27516
27517 \end_layout
27518
27519 \begin_layout Standard
27520 \begin_inset VSpace medskip
27521 \end_inset
27522
27523 Mit dem Befehl 
27524 \series bold
27525
27526 \backslash
27527 t
27528 \series default
27529  können auch zwei verschiedene Zeichen akzentuiert werden.
27530  Der Befehl 
27531 \series bold
27532
27533 \backslash
27534 t
27535 \begin_inset space \textvisiblespace{}
27536 \end_inset
27537
27538 sz
27539 \series default
27540  ergibt: 
27541 \begin_inset ERT
27542 status collapsed
27543
27544 \begin_layout Plain Layout
27545
27546
27547 \backslash
27548 t sz
27549 \end_layout
27550
27551 \end_inset
27552
27553
27554 \end_layout
27555
27556 \begin_layout Standard
27557 Die Akzente 
27558 \series bold
27559 `
27560 \series default
27561  , 
27562 \series bold
27563 '
27564 \series default
27565  und 
27566 \series bold
27567 ^
27568 \series default
27569  können in Verbindung mit Selbstlauten auch direkt über die Tastatur eingegeben
27570  werden ohne den TeX-Modus zu benutzen.
27571  Dasselbe gilt für die Tilde
27572 \begin_inset Foot
27573 status collapsed
27574
27575 \begin_layout Plain Layout
27576 Gilt nur für Tastaturen, bei denen die Tilde als Akzent definiert ist.
27577 \end_layout
27578
27579 \end_inset
27580
27581  
27582 \series bold
27583 ~
27584 \series default
27585  in Verbindung mit 
27586 \emph on
27587 a
27588 \emph default
27589  , 
27590 \emph on
27591 n
27592 \emph default
27593  oder 
27594 \emph on
27595 o
27596 \emph default
27597 .
27598 \end_layout
27599
27600 \begin_layout Standard
27601 Die Befehle 
27602 \series bold
27603
27604 \backslash
27605 b
27606 \series default
27607  , 
27608 \series bold
27609
27610 \backslash
27611 c
27612 \series default
27613  , 
27614 \series bold
27615
27616 \backslash
27617 d
27618 \series default
27619  , 
27620 \series bold
27621
27622 \backslash
27623 H
27624 \series default
27625  , 
27626 \series bold
27627
27628 \backslash
27629 t
27630 \series default
27631  , 
27632 \series bold
27633
27634 \backslash
27635 u
27636 \series default
27637  , 
27638 \series bold
27639
27640 \backslash
27641 v
27642 \series default
27643  und direkt über die Tastatur eingegebene Akzente sind auch im mathematischen
27644  Textmodus verfügbar.
27645  Für die restlichen Akzente gibt es in Formeln spezielle Mathebefehle, siehe
27646  
27647 \begin_inset CommandInset ref
27648 LatexCommand ref
27649 reference "sub:Akzente-für-ein"
27650
27651 \end_inset
27652
27653 .
27654 \end_layout
27655
27656 \begin_layout Standard
27657 \begin_inset VSpace bigskip
27658 \end_inset
27659
27660 Des Weiteren kann man mit dem Befehl 
27661 \series bold
27662
27663 \backslash
27664 textcircled
27665 \series default
27666
27667 \begin_inset Index idx
27668 status collapsed
27669
27670 \begin_layout Plain Layout
27671 Befehle ! T ! 
27672 \backslash
27673 textcircled
27674 \end_layout
27675
27676 \end_inset
27677
27678 , ähnlich dem Copyrightsymbol, sämtliche Zahlen und Buchstaben in einen
27679  Kreis setzen, quasi mit einem Kreis akzentuieren.
27680 \end_layout
27681
27682 \begin_layout Standard
27683 \align center
27684 \begin_inset Tabular
27685 <lyxtabular version="3" rows="3" columns="2">
27686 <features rotate="0" tabularvalignment="middle">
27687 <column alignment="center" valignment="top">
27688 <column alignment="center" valignment="top">
27689 <row>
27690 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27691 \begin_inset Text
27692
27693 \begin_layout Plain Layout
27694 Befehl
27695 \end_layout
27696
27697 \end_inset
27698 </cell>
27699 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27700 \begin_inset Text
27701
27702 \begin_layout Plain Layout
27703 Ergebnis
27704 \begin_inset Note Note
27705 status collapsed
27706
27707 \begin_layout Plain Layout
27708
27709 \series bold
27710
27711 \backslash
27712 raisebox
27713 \series default
27714  in der Formel dient nur als Abstandhalter.
27715 \end_layout
27716
27717 \end_inset
27718
27719
27720 \end_layout
27721
27722 \end_inset
27723 </cell>
27724 </row>
27725 <row>
27726 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27727 \begin_inset Text
27728
27729 \begin_layout Plain Layout
27730
27731 \backslash
27732 textcircled{w}
27733 \end_layout
27734
27735 \end_inset
27736 </cell>
27737 <cell multicolumn="1" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27738 \begin_inset Text
27739
27740 \begin_layout Plain Layout
27741 \begin_inset ERT
27742 status collapsed
27743
27744 \begin_layout Plain Layout
27745
27746
27747 \backslash
27748 textcircled{w}
27749 \end_layout
27750
27751 \end_inset
27752
27753
27754 \end_layout
27755
27756 \end_inset
27757 </cell>
27758 </row>
27759 <row>
27760 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27761 \begin_inset Text
27762
27763 \begin_layout Plain Layout
27764
27765 \backslash
27766 Large 
27767 \backslash
27768 textcircled{
27769 \backslash
27770 normalsize
27771 \backslash
27772 protect
27773 \backslash
27774 raisebox{-1.5pt}{W}}
27775 \end_layout
27776
27777 \end_inset
27778 </cell>
27779 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27780 \begin_inset Text
27781
27782 \begin_layout Plain Layout
27783 \begin_inset Formula $\raisebox{4.5mm}{}$
27784 \end_inset
27785
27786
27787 \begin_inset ERT
27788 status collapsed
27789
27790 \begin_layout Plain Layout
27791
27792
27793 \backslash
27794 Large 
27795 \backslash
27796 textcircled{
27797 \backslash
27798 normalsize
27799 \backslash
27800 protect
27801 \backslash
27802 raisebox{-1.5pt}W}
27803 \end_layout
27804
27805 \end_inset
27806
27807
27808 \begin_inset Formula $\raisebox{-2mm}{}$
27809 \end_inset
27810
27811
27812 \end_layout
27813
27814 \end_inset
27815 </cell>
27816 </row>
27817 </lyxtabular>
27818
27819 \end_inset
27820
27821
27822 \end_layout
27823
27824 \begin_layout Standard
27825 Man muss darauf achten, dass das Zeichen in einen Kreis passt.
27826  
27827 \series bold
27828
27829 \backslash
27830 Large
27831 \series default
27832
27833 \begin_inset Foot
27834 status collapsed
27835
27836 \begin_layout Plain Layout
27837 siehe 
27838 \begin_inset CommandInset ref
27839 LatexCommand ref
27840 reference "sub:Schriftgrößen"
27841
27842 \end_inset
27843
27844
27845 \end_layout
27846
27847 \end_inset
27848
27849  bestimmt dabei die Größe des Kreises.
27850  Mit Hilfe von 
27851 \series bold
27852
27853 \backslash
27854 raisebox
27855 \series default
27856
27857 \begin_inset Foot
27858 status collapsed
27859
27860 \begin_layout Plain Layout
27861 siehe 
27862 \begin_inset CommandInset ref
27863 LatexCommand ref
27864 reference "sub:Boxen-ohne-Rahmen"
27865
27866 \end_inset
27867
27868
27869 \end_layout
27870
27871 \end_inset
27872
27873  kann man das Zeichen zentrieren.
27874 \end_layout
27875
27876 \begin_layout Subsection
27877 Minuskelziffern
27878 \begin_inset Index idx
27879 status collapsed
27880
27881 \begin_layout Plain Layout
27882 Minuskelziffern
27883 \end_layout
27884
27885 \end_inset
27886
27887
27888 \end_layout
27889
27890 \begin_layout Standard
27891 Minuskelziffern werden mit dem Befehl 
27892 \series bold
27893
27894 \backslash
27895 oldstylenums
27896 \series default
27897
27898 \begin_inset Index idx
27899 status collapsed
27900
27901 \begin_layout Plain Layout
27902 Befehle ! O ! 
27903 \backslash
27904 oldstylenums
27905 \end_layout
27906
27907 \end_inset
27908
27909  erzeugt.
27910  Der Befehl ist sowohl in einer Formel als auch im TeX-Modus verwendbar.
27911  Das Befehlsschema lautet:
27912 \end_layout
27913
27914 \begin_layout Standard
27915
27916 \series bold
27917
27918 \backslash
27919 oldstylenums{Ziffer}
27920 \end_layout
27921
27922 \begin_layout Standard
27923 Der Befehl 
27924 \series bold
27925
27926 \backslash
27927 oldstylenums{0123456789
27928 \series default
27929  ergibt: 
27930 \begin_inset Formula $\oldstylenums{0123456789}$
27931 \end_inset
27932
27933
27934 \end_layout
27935
27936 \begin_layout Section
27937 Formelstile
27938 \begin_inset CommandInset label
27939 LatexCommand label
27940 name "sec:Formelstile"
27941
27942 \end_inset
27943
27944
27945 \begin_inset Index idx
27946 status collapsed
27947
27948 \begin_layout Plain Layout
27949 Formel ! Stile
27950 \end_layout
27951
27952 \end_inset
27953
27954
27955 \end_layout
27956
27957 \begin_layout Itemize
27958 Für abgesetzte Formeln gibt es zwei verschiedene Anordnungsstile:
27959 \end_layout
27960
27961 \begin_deeper
27962 \begin_layout Description
27963 Zentriert ist der voreingestellte Standard
27964 \end_layout
27965
27966 \begin_layout Description
27967 Eingerückt dazu muss im Menü 
27968 \family sans
27969 Dokument\SpecialChar \menuseparator
27970 Einstellungen
27971 \family default
27972  unter 
27973 \family sans
27974 Dokumentklasse
27975 \family default
27976  die Option 
27977 \series bold
27978 fleqn
27979 \series default
27980  eingeben werden
27981 \end_layout
27982
27983 \begin_layout Standard
27984 Wird 
27985 \series bold
27986 Eingerückt
27987 \series default
27988  verwendet, kann mit der Länge 
27989 \series bold
27990
27991 \backslash
27992 mathindent
27993 \series default
27994
27995 \begin_inset Index idx
27996 status collapsed
27997
27998 \begin_layout Plain Layout
27999 Befehle ! M ! 
28000 \backslash
28001 mathindent
28002 \end_layout
28003
28004 \end_inset
28005
28006  die Einrückung eingestellt werden.
28007  Soll der Abstand 15
28008 \begin_inset space \thinspace{}
28009 \end_inset
28010
28011 mm betragen, gibt man im LaTeX-Vorspann die Zeile
28012 \end_layout
28013
28014 \begin_layout Standard
28015
28016 \series bold
28017
28018 \backslash
28019 setlength{
28020 \backslash
28021 mathindent}{15mm}
28022 \end_layout
28023
28024 \begin_layout Standard
28025 ein.
28026  Wenn keine Länge vorgegeben wird, wird der voreingestellte Wert von 30
28027 \begin_inset space \thinspace{}
28028 \end_inset
28029
28030 pt verwendet.
28031 \end_layout
28032
28033 \end_deeper
28034 \begin_layout Itemize
28035 Und zwei verschiedene Nummerierungsstile:
28036 \end_layout
28037
28038 \begin_deeper
28039 \begin_layout Description
28040 Rechts ist der voreingestellte Standard
28041 \end_layout
28042
28043 \begin_layout Description
28044 Links dazu muss im Menü 
28045 \family sans
28046 Dokument\SpecialChar \menuseparator
28047 Einstellungen
28048 \family default
28049  unter 
28050 \family sans
28051 Dokumentklasse
28052 \family default
28053  die Option 
28054 \series bold
28055 leqno
28056 \series default
28057  eingeben werden
28058 \end_layout
28059
28060 \end_deeper
28061 \begin_layout Standard
28062
28063 \series bold
28064 fleqn
28065 \series default
28066  und 
28067 \series bold
28068 leqno
28069 \series default
28070  können auch gemeinsam verwendet werden.
28071  Dazu werden beide Optionen, durch ein Komma getrennt, hintereinander geschriebe
28072 n.
28073 \end_layout
28074
28075 \begin_layout Standard
28076 Die eingestellten Stile gelten für alle abgesetzten Formeln eines Dokuments.
28077  Möchte man jedoch in einem Dokument sowohl zentrierte als auch eingerückte
28078  ausgerichtete Formeln setzen, verwendet man den Stil 
28079 \series bold
28080 Zentriert
28081 \series default
28082 .
28083  Die einzurückenden Formeln setzt man dann in eine flalign-Umgebung, siehe
28084  
28085 \begin_inset CommandInset ref
28086 LatexCommand ref
28087 reference "sub:Flalign-Umgebung"
28088
28089 \end_inset
28090
28091 .
28092 \end_layout
28093
28094 \begin_layout Section
28095 Mehrzeilige Formeln
28096 \begin_inset CommandInset label
28097 LatexCommand label
28098 name "sec:Mehrzeilige-Formeln"
28099
28100 \end_inset
28101
28102
28103 \begin_inset Index idx
28104 status collapsed
28105
28106 \begin_layout Plain Layout
28107 Formel ! mehrzeilige
28108 \end_layout
28109
28110 \end_inset
28111
28112
28113 \end_layout
28114
28115 \begin_layout Subsection
28116 Allgemeines
28117 \end_layout
28118
28119 \begin_layout Standard
28120 In LyX werden mehrzeilige Formeln erstellt, wenn man in einer Formel 
28121 \family sans
28122 Strg+Enter
28123 \family default
28124  drückt.
28125  Dies erzeugt entweder eine 
28126 \series bold
28127 eqnarray-Umgebung
28128 \series default
28129 , die in 
28130 \begin_inset CommandInset ref
28131 LatexCommand ref
28132 reference "sub:Eqnarray-Umgebung"
28133
28134 \end_inset
28135
28136  beschrieben ist oder, wenn die Option 
28137 \family sans
28138 AMS-Mathe-Paket verwenden
28139 \family default
28140  in den Dokumenteinstellungen gewählt ist, eine 
28141 \series bold
28142 align-Umgebung
28143 \series default
28144 , die in 
28145 \begin_inset CommandInset ref
28146 LatexCommand ref
28147 reference "sub:Standard-align-Umgebung"
28148
28149 \end_inset
28150
28151  beschrieben ist.
28152  Es wird empfohlen die align-Umgebung zu verwenden, denn sie erscheint in
28153  jedem Fall typographisch korrekt in der Ausgabe.
28154 \end_layout
28155
28156 \begin_layout Standard
28157 Es gibt noch weitere mehrzeilige Formelumgebungen, die über das Menü 
28158 \family sans
28159 Einfügen\SpecialChar \menuseparator
28160 Mathe
28161 \family default
28162  erstellt werden können.
28163  Diese Umgebungen werden in den folgenden Kapiteln beschrieben.
28164 \end_layout
28165
28166 \begin_layout Standard
28167 In allen mehrzeiligen Formelumgebungen erstellt man eine neue Zeile, indem
28168  man 
28169 \family sans
28170 Strg+Enter
28171 \family default
28172  drückt.
28173  Um Spalten hinzuzufügen oder zu entfernen, können die Mathe-Werkzeugleistenknöp
28174 fe 
28175 \begin_inset Info
28176 type  "icon"
28177 arg   "inset-modify tabular append-row"
28178 \end_inset
28179
28180  bzw.
28181 \begin_inset space \space{}
28182 \end_inset
28183
28184
28185 \begin_inset Info
28186 type  "icon"
28187 arg   "inset-modify tabular delete-row"
28188 \end_inset
28189
28190  oder das Menü 
28191 \family sans
28192 Bearbeiten\SpecialChar \menuseparator
28193 Zeilen & Spalten
28194 \family default
28195  verwendet werden.
28196 \end_layout
28197
28198 \begin_layout Subsubsection
28199 Zeilenabstand
28200 \begin_inset CommandInset label
28201 LatexCommand label
28202 name "sub:Zeilenabstand"
28203
28204 \end_inset
28205
28206
28207 \begin_inset Index idx
28208 status collapsed
28209
28210 \begin_layout Plain Layout
28211 Formel ! mehrzeilige ! Zeilenabstand
28212 \end_layout
28213
28214 \end_inset
28215
28216
28217 \end_layout
28218
28219 \begin_layout Standard
28220 Bei mehrzeiligen Formeln fehlt manchmal etwas Platz zwischen den Zeilen:
28221 \begin_inset Formula 
28222 \begin{eqnarray*}
28223 B^{2}(B^{2}-2r_{g}^{2}+2x_{0}^{2}-2r_{k}^{2})+4x_{0}^{2}x^{2}+4x_{0}xD & = & \textrm{-}4x^{2}B^{2}+4x_{0}xB^{2}\\
28224 4x^{2}\left(B^{2}+x_{0}^{2}\right)+4x_{0}x\left(D-B^{2}\right)+B^{2}\left(B^{2}-2r_{g}^{2}+2x_{0}^{2}-2r_{k}^{2}\right) & = & 0
28225 \end{eqnarray*}
28226
28227 \end_inset
28228
28229
28230 \end_layout
28231
28232 \begin_layout Standard
28233 In LaTeX wird zusätzlicher Zeilenabstand als optionales Argument des Zeilenumbru
28234 chbefehls angegeben.
28235  Dies ist in LyX aber nicht möglich
28236 \begin_inset Foot
28237 status collapsed
28238
28239 \begin_layout Plain Layout
28240 siehe 
28241 \begin_inset CommandInset href
28242 LatexCommand href
28243 name "LyX-Fehler #1505"
28244 target "http://www.lyx.org/trac/ticket/1505"
28245
28246 \end_inset
28247
28248
28249 \end_layout
28250
28251 \end_inset
28252
28253 , weshalb man die ganze Formel im TeX-Modus eingeben muss.
28254  Um für unser Beispiel Leerraum einzufügen, gibt man am Ende der ersten
28255  Zeile den Befehl 
28256 \series bold
28257
28258 \backslash
28259
28260 \backslash
28261 [3mm]
28262 \series default
28263  ein.
28264  Damit erhält man: 
28265 \begin_inset ERT
28266 status collapsed
28267
28268 \begin_layout Plain Layout
28269
28270
28271 \backslash
28272 begin{eqnarray*}
28273 \end_layout
28274
28275 \begin_layout Plain Layout
28276
28277 B^{2}(B^{2}-2r_{g}^{2}+2x_{0}^{2}-2r_{k}^{2})+4x_{0}^{2}x^{2}+4x_{0}xD &
28278  = & 
28279 \backslash
28280 textrm{-}4x^{2}B^{2}+4x_{0}xB^{2}
28281 \backslash
28282
28283 \backslash
28284 [3mm]
28285 \end_layout
28286
28287 \begin_layout Plain Layout
28288
28289 4x^{2}
28290 \backslash
28291 left(B^{2}+x_{0}^{2}
28292 \backslash
28293 right)+4x_{0}x
28294 \backslash
28295 left(D-B^{2}
28296 \backslash
28297 right)+B^{2}
28298 \backslash
28299 left(B^{2}-2r_{g}^{2}+2x_{0}^{2}-2r_{k}^{2}
28300 \backslash
28301 right) & = & 0
28302 \end_layout
28303
28304 \begin_layout Plain Layout
28305
28306
28307 \backslash
28308 end{eqnarray*}
28309 \end_layout
28310
28311 \end_inset
28312
28313
28314 \end_layout
28315
28316 \begin_layout Standard
28317 \begin_inset VSpace bigskip
28318 \end_inset
28319
28320 Möchte man den Zeilenabstand für alle Zeilen einer Formel festlegen, verändert
28321  man die Länge 
28322 \series bold
28323
28324 \backslash
28325 jot
28326 \series default
28327
28328 \begin_inset Index idx
28329 status collapsed
28330
28331 \begin_layout Plain Layout
28332 Befehle ! J ! 
28333 \backslash
28334 jot
28335 \end_layout
28336
28337 \end_inset
28338
28339 .
28340  Es gilt 
28341 \begin_inset Formula $\mbox{Zeilenabstand}=\mathrm{6\, pt+\backslash jot}$
28342 \end_inset
28343
28344 .
28345  Voreingestellt ist für 
28346 \series bold
28347
28348 \backslash
28349 jot
28350 \series default
28351  der Wert 3
28352 \begin_inset space \thinspace{}
28353 \end_inset
28354
28355 pt.
28356  Um wie im vorigen Beispiel 3
28357 \begin_inset space \thinspace{}
28358 \end_inset
28359
28360 mm zusätzlichen Zeilenabstand zu erzeugen, gibt man den Befehl
28361 \end_layout
28362
28363 \begin_layout Standard
28364
28365 \series bold
28366
28367 \backslash
28368 setlength{
28369 \backslash
28370 jot}{3mm+3pt}
28371 \end_layout
28372
28373 \begin_layout Standard
28374 im TeX-Modus vor der Formel ein.
28375  Das setzt voraus, dass das LaTeX-Paket 
28376 \series bold
28377 calc
28378 \series default
28379
28380 \begin_inset Foot
28381 status collapsed
28382
28383 \begin_layout Plain Layout
28384
28385 \series bold
28386 calc
28387 \series default
28388  ist Teil jeder LaTeX-Standardinstallation.
28389 \end_layout
28390
28391 \end_inset
28392
28393
28394 \begin_inset Index idx
28395 status collapsed
28396
28397 \begin_layout Plain Layout
28398 Pakete ! calc
28399 \end_layout
28400
28401 \end_inset
28402
28403  im LaTeX-Vorspann mit der Zeile
28404 \end_layout
28405
28406 \begin_layout Standard
28407
28408 \series bold
28409
28410 \backslash
28411 usepackage{calc}
28412 \end_layout
28413
28414 \begin_layout Standard
28415 geladen wurde.
28416 \end_layout
28417
28418 \begin_layout Standard
28419 Man erhält: 
28420 \begin_inset ERT
28421 status collapsed
28422
28423 \begin_layout Plain Layout
28424
28425
28426 \backslash
28427 setlength{
28428 \backslash
28429 jot}{3mm+3pt}
28430 \end_layout
28431
28432 \end_inset
28433
28434
28435 \begin_inset Formula 
28436 \begin{eqnarray*}
28437 B^{2}(B^{2}-2r_{g}^{2}+2x_{0}^{2}-2r_{k}^{2})+4x_{0}^{2}x^{2}+4x_{0}xD & = & \textrm{-}4x^{2}B^{2}+4x_{0}xB^{2}\\
28438 4x^{2}\left(B^{2}+x_{0}^{2}\right)+4x_{0}x\left(D-B^{2}\right)+B^{2}\left(B^{2}-2r_{g}^{2}+2x_{0}^{2}-2r_{k}^{2}\right) & = & 0
28439 \end{eqnarray*}
28440
28441 \end_inset
28442
28443
28444 \end_layout
28445
28446 \begin_layout Standard
28447 \begin_inset ERT
28448 status collapsed
28449
28450 \begin_layout Plain Layout
28451
28452
28453 \backslash
28454 setlength{
28455 \backslash
28456 jot}{3pt}
28457 \end_layout
28458
28459 \end_inset
28460
28461  Um wieder zum voreingestellten Abstand zu wechseln, setzt man 
28462 \series bold
28463
28464 \backslash
28465 jot
28466 \series default
28467  auf den Wert 3
28468 \begin_inset space \thinspace{}
28469 \end_inset
28470
28471 pt.
28472 \end_layout
28473
28474 \begin_layout Subsubsection
28475 Spaltenabstand
28476 \begin_inset CommandInset label
28477 LatexCommand label
28478 name "sub:Spaltenabstand"
28479
28480 \end_inset
28481
28482
28483 \begin_inset Index idx
28484 status collapsed
28485
28486 \begin_layout Plain Layout
28487 Formel ! mehrzeilige ! Spaltenabstand
28488 \end_layout
28489
28490 \end_inset
28491
28492
28493 \end_layout
28494
28495 \begin_layout Standard
28496 Mehrzeilige Formeln bilden eine Matrix.
28497  Eine Formel in der Eqnarray-Umgebung ist z.
28498 \begin_inset space \thinspace{}
28499 \end_inset
28500
28501 B.
28502  eine dreispaltige Matrix.
28503  Durch Änderung des Spaltenabstands in dieser Umgebung, kann man den Leerraum
28504  neben den Relationszeichen ändern.
28505 \end_layout
28506
28507 \begin_layout Standard
28508 Der Spaltenabstand wird mit der Länge 
28509 \series bold
28510
28511 \backslash
28512 arraycolsep
28513 \series default
28514
28515 \begin_inset Index idx
28516 status collapsed
28517
28518 \begin_layout Plain Layout
28519 Befehle ! A ! 
28520 \backslash
28521 arraycolsep
28522 \end_layout
28523
28524 \end_inset
28525
28526  festgelegt, wobei gilt:
28527 \begin_inset Newline newline
28528 \end_inset
28529
28530 Spaltenabstand = 2
28531 \begin_inset space \thinspace{}
28532 \end_inset
28533
28534
28535 \series bold
28536
28537 \backslash
28538 arraycolsep
28539 \series default
28540 .
28541 \begin_inset Newline newline
28542 \end_inset
28543
28544 Der im TeX-Modus eingegebene Befehl
28545 \end_layout
28546
28547 \begin_layout Standard
28548
28549 \series bold
28550
28551 \backslash
28552 setlength{
28553 \backslash
28554 arraycolsep}{1cm}
28555 \end_layout
28556
28557 \begin_layout Standard
28558 bewirkt also für alle folgenden Formeln einen Spaltenabstand von 2
28559 \begin_inset space \thinspace{}
28560 \end_inset
28561
28562 cm.
28563  Um wieder zum voreingestellten Abstand zurückzukehren, setzt man 
28564 \series bold
28565
28566 \backslash
28567 arraycolsep
28568 \series default
28569  auf 5
28570 \begin_inset space \thinspace{}
28571 \end_inset
28572
28573 pt.
28574 \end_layout
28575
28576 \begin_layout Standard
28577 Eine Formel mit 2
28578 \begin_inset space \thinspace{}
28579 \end_inset
28580
28581 cm Spaltenabstand:
28582 \begin_inset ERT
28583 status collapsed
28584
28585 \begin_layout Plain Layout
28586
28587
28588 \backslash
28589 setlength{
28590 \backslash
28591 arraycolsep}{1cm}
28592 \end_layout
28593
28594 \end_inset
28595
28596
28597 \begin_inset Formula 
28598 \begin{eqnarray*}
28599 A & = & B\\
28600 C & \ne & A
28601 \end{eqnarray*}
28602
28603 \end_inset
28604
28605 Eine Formel mit dem für Matrizen voreingestellten Spaltenabstand von 10
28606 \begin_inset space \thinspace{}
28607 \end_inset
28608
28609 pt:
28610 \begin_inset ERT
28611 status collapsed
28612
28613 \begin_layout Plain Layout
28614
28615
28616 \backslash
28617 setlength{
28618 \backslash
28619 arraycolsep}{5pt}
28620 \end_layout
28621
28622 \end_inset
28623
28624
28625 \begin_inset Formula 
28626 \begin{eqnarray*}
28627 A & = & B\\
28628 C & \ne & A
28629 \end{eqnarray*}
28630
28631 \end_inset
28632
28633
28634 \end_layout
28635
28636 \begin_layout Subsubsection
28637 Lange Formeln
28638 \begin_inset Index idx
28639 status collapsed
28640
28641 \begin_layout Plain Layout
28642 Formel ! lange
28643 \end_layout
28644
28645 \end_inset
28646
28647
28648 \end_layout
28649
28650 \begin_layout Standard
28651 Lange Formeln kann man wie folgt setzen:
28652 \end_layout
28653
28654 \begin_layout Itemize
28655 Ist eine Seite der Gleichung deutlich kürzer als die Zeilenbreite, wählt
28656  man man diese als linke Seite und schreibt die rechte über zwei Zeilen:
28657 \begin_inset Formula 
28658 \begin{eqnarray}
28659 H & = & W_{SB}+W_{mv}+W_{D}-\frac{\hbar^{2}}{2m_{0}}\Delta-\frac{\hbar^{2}}{2m_{1}}\Delta_{1}-\frac{\hbar^{2}}{2m_{2}}\Delta_{2}-\frac{e^{2}}{4\pi\varepsilon_{0}|\mathbf{r}-\mathbf{R}_{1}|}\nonumber \\
28660  &  & -\hspace{3pt}\frac{e^{2}}{4\pi\varepsilon_{0}|\mathbf{r}-\mathbf{R}_{2}|}+\frac{e^{2}}{4\pi\varepsilon_{0}|\mathbf{R}_{1}-\mathbf{R}_{2}|}\label{eq:kurzlang}
28661 \end{eqnarray}
28662
28663 \end_inset
28664
28665 Das Minuszeichen zu Beginn der zweiten Zeile erscheint eigentlich nicht
28666  als Operator, da es das erste Zeichen der Zeile ist.
28667  Deswegen wäre es nicht von Leerraum umgeben und ließe sich schlecht vom
28668  Bruchstrich unterscheiden.
28669  Um das zu verhindern, wurde mit dem Befehl 
28670 \series bold
28671
28672 \backslash
28673 hspace
28674 \series default
28675  3
28676 \begin_inset space \thinspace{}
28677 \end_inset
28678
28679 pt Leerraum hinter das Minuszeichen eingefügt.
28680 \begin_inset Foot
28681 status collapsed
28682
28683 \begin_layout Plain Layout
28684 mehr zu 
28685 \series bold
28686
28687 \backslash
28688 hspace
28689 \series default
28690  siehe 
28691 \begin_inset CommandInset ref
28692 LatexCommand ref
28693 reference "sub:Variabler-Leerraum"
28694
28695 \end_inset
28696
28697
28698 \end_layout
28699
28700 \end_inset
28701
28702
28703 \begin_inset Index idx
28704 status collapsed
28705
28706 \begin_layout Plain Layout
28707 Befehle ! H ! 
28708 \backslash
28709 hspace
28710 \end_layout
28711
28712 \end_inset
28713
28714
28715 \end_layout
28716
28717 \begin_layout Itemize
28718 Sind beide Seiten der Gleichung zu lang, verwendet man den Befehl 
28719 \series bold
28720
28721 \backslash
28722 lefteqn
28723 \series default
28724
28725 \begin_inset Index idx
28726 status collapsed
28727
28728 \begin_layout Plain Layout
28729 Befehle ! L ! 
28730 \backslash
28731 lefteqn
28732 \end_layout
28733
28734 \end_inset
28735
28736 .
28737  Dieser wird in die erste Spalte der ersten Zeile eingegeben und bewirkt,
28738  dass alle weiteren Eingaben die folgenden Spalten überschreiben:
28739 \begin_inset Formula 
28740 \begin{eqnarray}
28741 \lefteqn{4x^{2}\left(B^{2}+x_{0}^{2}\right)+4x_{0}x\left(D-B^{2}\right)+B^{2}\left(B^{2}-2r_{g}^{2}+2x_{0}^{2}-2r_{k}^{2}\right)+D^{2}}\nonumber \\
28742  &  & -\hspace{3pt}B^{2}-2B\sqrt{r_{g}^{2}-x^{2}+2x_{0}x-x_{0}^{2}}+r_{g}^{2}-x^{2}+2x_{0}x-x_{0}^{2}\nonumber \\
28743  &  & =B^{2}+2\left(r_{g}^{2}+2x_{0}x-x_{0}^{2}-r_{k}^{2}\right)+\frac{\left(r_{g}^{2}+2x_{0}x-x_{0}^{2}-r_{k}^{2}\right)^{2}}{B^{2}}\label{eq:lefteqn}
28744 \end{eqnarray}
28745
28746 \end_inset
28747
28748 Nachdem man 
28749 \series bold
28750
28751 \backslash
28752 lefteqn
28753 \series default
28754  eingegeben hat, befindet sich der Cursor in einem pinkfarbenen Kästchen,
28755  das gegenüber dem blauen leicht verschoben ist.
28756  In dieses wird die Formel eingegeben.
28757 \begin_inset Newline newline
28758 \end_inset
28759
28760 Der Inhalt der weiteren Zeilen wird in die zweite oder eine andere Formelspalte
28761  eingegeben.
28762  Je größer die Spaltennummer in die eingegeben wurde, desto größer ist die
28763  Einrückung.
28764 \begin_inset VSpace medskip
28765 \end_inset
28766
28767
28768 \begin_inset Newline newline
28769 \end_inset
28770
28771
28772 \begin_inset Note Greyedout
28773 status open
28774
28775 \begin_layout Plain Layout
28776 Bei der Verwendung von 
28777 \series bold
28778
28779 \backslash
28780 lefteqn
28781 \series default
28782  ist Folgendes zu beachten:
28783 \end_layout
28784
28785 \begin_layout Itemize
28786 Die Formel nutzt nicht die gesamte Seitenbreite aus.
28787  Würde man in obigem Beispiel der ersten Zeile den Term 
28788 \begin_inset Formula $-B^{2}$
28789 \end_inset
28790
28791  anfügen, befände sich dieser außerhalb des Seitenrands.
28792  Um die Breite besser auszunutzen, kann man zu Beginn der ersten Zeile negativen
28793  Leerraum einfügen.
28794 \end_layout
28795
28796 \begin_layout Itemize
28797 Aufgrund eines Fehlers in LyX kann der Cursor nicht mit der Maus in die
28798  erste Zeile gesetzt werden.
28799 \begin_inset Foot
28800 status collapsed
28801
28802 \begin_layout Plain Layout
28803 \begin_inset CommandInset href
28804 LatexCommand href
28805 name "LyX-Fehler #1429"
28806 target "http://www.lyx.org/trac/ticket/1429"
28807
28808 \end_inset
28809
28810
28811 \end_layout
28812
28813 \end_inset
28814
28815  Man kann den Cursor nur an den Anfang der Zeile setzen und ihn mit den
28816  Pfeiltasten bewegen.
28817 \end_layout
28818
28819 \end_inset
28820
28821
28822 \end_layout
28823
28824 \begin_layout Itemize
28825 Weitere Möglichkeiten lange Formeln zu setzen, bieten die in 
28826 \begin_inset CommandInset ref
28827 LatexCommand ref
28828 reference "sub:Multline-Umgebung"
28829
28830 \end_inset
28831
28832  und 
28833 \begin_inset CommandInset ref
28834 LatexCommand ref
28835 reference "sub:Mehrzeilige-Formelteile"
28836
28837 \end_inset
28838
28839  beschriebenen Umgebungen.
28840 \end_layout
28841
28842 \begin_layout Subsubsection
28843 Mehrzeilige Brüche
28844 \begin_inset CommandInset label
28845 LatexCommand label
28846 name "sub:Mehrzeilige-Brüche"
28847
28848 \end_inset
28849
28850
28851 \begin_inset Index idx
28852 status collapsed
28853
28854 \begin_layout Plain Layout
28855 Brüche ! mehrzeilige
28856 \end_layout
28857
28858 \end_inset
28859
28860
28861 \end_layout
28862
28863 \begin_layout Standard
28864 Es gibt Fälle, in denen der Zähler und/oder Nenner eines Bruches zu lang
28865  ist als dass der Bruch auf eine Zeile passt.
28866  Es ist dann notwendig einen Zeilenumbruch innerhalb des Bruches einzufügen.
28867  Dazu gibt es den Befehl 
28868 \series bold
28869
28870 \backslash
28871 splitfrac
28872 \series default
28873
28874 \begin_inset Index idx
28875 status collapsed
28876
28877 \begin_layout Plain Layout
28878 Befehle ! S ! 
28879 \backslash
28880 splitfrac
28881 \end_layout
28882
28883 \end_inset
28884
28885 .
28886  Um ihn zu aktivieren, stellt man in den Dokumenteinstellungen unter 
28887 \family sans
28888 Mathe-Optionen
28889 \family default
28890  für das Paket 
28891 \series bold
28892 mathtools
28893 \series default
28894
28895 \begin_inset Index idx
28896 status collapsed
28897
28898 \begin_layout Plain Layout
28899 Pakete ! mathtools
28900 \end_layout
28901
28902 \end_inset
28903
28904  die Option 
28905 \family sans
28906 Immer
28907 \begin_inset space ~
28908 \end_inset
28909
28910 laden
28911 \family default
28912  ein.
28913  
28914 \series bold
28915
28916 \backslash
28917 splitfrac
28918 \series default
28919  hat das Schema
28920 \end_layout
28921
28922 \begin_layout Standard
28923
28924 \series bold
28925
28926 \backslash
28927 splitfrac{erste Zeile}{zweite Zeile}
28928 \end_layout
28929
28930 \begin_layout Standard
28931 und wird als Zähler und/oder Nenner verwendet:
28932 \end_layout
28933
28934 \begin_layout Standard
28935 \begin_inset Formula 
28936 \[
28937 a=\frac{\splitfrac{xy+xy+xy+xy+xy}{+wy+wy+wy+wy}}{z}\ne\frac{\splitdfrac{xy+\frac{xy}{z}+xy+xy+xy}{+xy+xy+xy+xy}}{z}
28938 \]
28939
28940 \end_inset
28941
28942 Der Befehl für den ersten Zähler in obiger Formel lautet:
28943 \end_layout
28944
28945 \begin_layout Standard
28946
28947 \series bold
28948
28949 \backslash
28950 splitfrac{xy+xy+xy+xy+xy
28951 \begin_inset space \textvisiblespace{}
28952 \end_inset
28953
28954
28955 \backslash
28956 {+wy+wy+wy+wy
28957 \end_layout
28958
28959 \begin_layout Subsubsection
28960 Mehrzeilige Klammern
28961 \begin_inset CommandInset label
28962 LatexCommand label
28963 name "sub:Mehrzeilige-Klammern"
28964
28965 \end_inset
28966
28967
28968 \begin_inset Index idx
28969 status collapsed
28970
28971 \begin_layout Plain Layout
28972 Klammern ! mehrzeilige
28973 \end_layout
28974
28975 \end_inset
28976
28977
28978 \end_layout
28979
28980 \begin_layout Standard
28981 Bei Klammern, die über mehrere Zeilen gehen, tritt folgendes Problem auf:
28982 \begin_inset Formula 
28983 \begin{eqnarray*}
28984 A & = & \sin(x)\left[\prod_{R=1}^{\infty}\frac{1}{R}+\cdots\right.\\
28985  &  & \left.\cdots+B-D\right]
28986 \end{eqnarray*}
28987
28988 \end_inset
28989
28990
28991 \end_layout
28992
28993 \begin_layout Standard
28994 Die schließende Klammer ist kleiner als die öffnende, denn Klammern variabler
28995  Größe dürfen nicht über mehrere Zeilen gehen.
28996 \end_layout
28997
28998 \begin_layout Standard
28999 Um die Größe für die Klammer der zweiten Zeile anzupassen, beendet man die
29000  erste Zeile mit 
29001 \series bold
29002
29003 \backslash
29004 right.
29005 \series default
29006
29007 \begin_inset Index idx
29008 status collapsed
29009
29010 \begin_layout Plain Layout
29011 Befehle ! R ! 
29012 \backslash
29013 right
29014 \end_layout
29015
29016 \end_inset
29017
29018  und beginnt die zweite Zeile mit 
29019 \series bold
29020
29021 \backslash
29022 left.
29023 \begin_inset Foot
29024 status collapsed
29025
29026 \begin_layout Plain Layout
29027 mehr zu 
29028 \series bold
29029
29030 \backslash
29031 left
29032 \series default
29033  und 
29034 \series bold
29035
29036 \backslash
29037 right
29038 \series default
29039  siehe 
29040 \begin_inset CommandInset ref
29041 LatexCommand ref
29042 reference "sub:Automatische-Klammergrößen"
29043
29044 \end_inset
29045
29046
29047 \end_layout
29048
29049 \end_inset
29050
29051
29052 \series default
29053
29054 \begin_inset Index idx
29055 status collapsed
29056
29057 \begin_layout Plain Layout
29058 Befehle ! L ! 
29059 \backslash
29060 left
29061 \end_layout
29062
29063 \end_inset
29064
29065 .
29066  Nach 
29067 \series bold
29068
29069 \backslash
29070 left.
29071
29072 \series default
29073  gibt man den Befehl 
29074 \series bold
29075
29076 \backslash
29077 vphantom
29078 \series default
29079
29080 \begin_inset space \textvisiblespace{}
29081 \end_inset
29082
29083
29084 \series bold
29085
29086 \backslash
29087 prod
29088 \series default
29089 ^
29090 \begin_inset space \textvisiblespace{}
29091 \end_inset
29092
29093
29094 \series bold
29095
29096 \backslash
29097 infty
29098 \series default
29099
29100 \begin_inset space \textvisiblespace{}
29101 \end_inset
29102
29103
29104 \series bold
29105
29106 \begin_inset Formula $\downarrow$
29107 \end_inset
29108
29109 _R=1}
29110 \series default
29111
29112 \begin_inset Index idx
29113 status collapsed
29114
29115 \begin_layout Plain Layout
29116 Befehle ! V ! 
29117 \backslash
29118 vphantom
29119 \end_layout
29120
29121 \end_inset
29122
29123  ein, denn der Multiplikationsoperator mit seinen Grenzen ist das größte
29124  Symbol der ersten Zeile, und daran soll die zweite Klammer angepasst werden.
29125 \end_layout
29126
29127 \begin_layout Standard
29128 Das Ergebnis sieht so aus:
29129 \begin_inset Formula 
29130 \begin{eqnarray*}
29131 A & = & \sin(x)\left[\prod_{R=1}^{\infty}\frac{1}{R}+\cdots\right.\\
29132  &  & \left.\vphantom{\prod_{R=1}^{\infty}}\cdots+B-D\right]
29133 \end{eqnarray*}
29134
29135 \end_inset
29136
29137
29138 \end_layout
29139
29140 \begin_layout Subsection
29141 Align-Umgebungen
29142 \end_layout
29143
29144 \begin_layout Standard
29145 Align-Umgebungen können für jede Art von mehrzeiligen Formeln verwendet
29146  werden.
29147  Sie sind besonders geeignet um mehrere Formeln nebeneinander zu setzen.
29148 \end_layout
29149
29150 \begin_layout Standard
29151 Align-Umgebungen bestehen aus Spalten.
29152  Die ungeradzahligen Spalten sind rechts-, die geradzahligen linksbündig
29153  ausgerichtet.
29154  Jede Zeile einer Align-Umgebung kann nummeriert werden.
29155 \end_layout
29156
29157 \begin_layout Standard
29158 Align-Umgebung werden über das Menü 
29159 \family sans
29160 Einfügen\SpecialChar \menuseparator
29161 Mathe
29162 \family default
29163  erstellt.
29164  Über das Menü 
29165 \family sans
29166 Bearbeiten\SpecialChar \menuseparator
29167 Mathe\SpecialChar \menuseparator
29168 Formelart
29169 \begin_inset space ~
29170 \end_inset
29171
29172 ändern
29173 \family default
29174  können bereits existierende Formeln in Align-Umgebungen umgewandelt werden.
29175 \end_layout
29176
29177 \begin_layout Standard
29178 Um Spalten hinzuzufügen oder zu entfernen, können die Mathe-Werkzeugleistenknöpf
29179
29180 \begin_inset Info
29181 type  "icon"
29182 arg   "inset-modify tabular append-column"
29183 \end_inset
29184
29185  bzw.
29186 \begin_inset space \space{}
29187 \end_inset
29188
29189
29190 \begin_inset Info
29191 type  "icon"
29192 arg   "inset-modify tabular delete-column"
29193 \end_inset
29194
29195  oder das Menü 
29196 \family sans
29197 Bearbeiten\SpecialChar \menuseparator
29198 Zeilen & Spalten
29199 \family default
29200  verwendet werden.
29201 \end_layout
29202
29203 \begin_layout Subsubsection
29204 Standard align-Umgebung
29205 \begin_inset CommandInset label
29206 LatexCommand label
29207 name "sub:Standard-align-Umgebung"
29208
29209 \end_inset
29210
29211
29212 \begin_inset Index idx
29213 status collapsed
29214
29215 \begin_layout Plain Layout
29216 Formel ! mehrzeilige ! align-Umgebung
29217 \end_layout
29218
29219 \end_inset
29220
29221
29222 \end_layout
29223
29224 \begin_layout Standard
29225 Diese Align-Umgebung wird erstellt, indem man in einer Formel 
29226 \family sans
29227 Strg+Enter
29228 \family default
29229  drückt oder das Menü 
29230 \family sans
29231 Einfügen\SpecialChar \menuseparator
29232 Mathe\SpecialChar \menuseparator
29233 AMS align-Umge\SpecialChar \-
29234 bung
29235 \family default
29236  aufruft.
29237 \end_layout
29238
29239 \begin_layout Standard
29240 Ein Beispiel für zwei nebeneinander stehende Formeln, die mit einer vierspaltige
29241 n align-Umgebung erzeugt wurden:
29242 \begin_inset Formula 
29243 \begin{align*}
29244 A & =\sin(B) & C & =D\\
29245 C & \ne A & B & \ne D
29246 \end{align*}
29247
29248 \end_inset
29249
29250 Wie man sieht, werden die Formeln in dieser Umgebung so angeordnet, als
29251  würde sich vor der ersten und hinter jeder geraden Spalte ein 
29252 \series bold
29253
29254 \backslash
29255 hfill
29256 \begin_inset Foot
29257 status collapsed
29258
29259 \begin_layout Plain Layout
29260 mehr zu 
29261 \series bold
29262
29263 \backslash
29264 hfill
29265 \series default
29266  siehe 
29267 \begin_inset CommandInset ref
29268 LatexCommand ref
29269 reference "sub:Variabler-Leerraum"
29270
29271 \end_inset
29272
29273
29274 \end_layout
29275
29276 \end_inset
29277
29278
29279 \series default
29280  befinden.
29281  Ist der Formelstil 
29282 \series bold
29283 Eingerückt
29284 \begin_inset Foot
29285 status collapsed
29286
29287 \begin_layout Plain Layout
29288 Formelstile siehe 
29289 \begin_inset CommandInset ref
29290 LatexCommand ref
29291 reference "sec:Formelstile"
29292
29293 \end_inset
29294
29295
29296 \end_layout
29297
29298 \end_inset
29299
29300
29301 \series default
29302  gewählt, wird die Formel ohne den 
29303 \series bold
29304
29305 \backslash
29306 hfill
29307 \series default
29308  vor der ersten Spalte gesetzt.
29309 \end_layout
29310
29311 \begin_layout Subsubsection
29312 Alignat-Umgebung
29313 \begin_inset Index idx
29314 status collapsed
29315
29316 \begin_layout Plain Layout
29317 Formel ! mehrzeilige ! alignat-Umgebung
29318 \end_layout
29319
29320 \end_inset
29321
29322
29323 \end_layout
29324
29325 \begin_layout Standard
29326 In der alignat-Umgebung gibt es keinen vordefinierten Spaltenabstand.
29327  Man kann ihn manuell durch die in 
29328 \begin_inset CommandInset ref
29329 LatexCommand ref
29330 reference "sub:Leerraum"
29331
29332 \end_inset
29333
29334  beschriebenen Leerräume einfügen.
29335 \end_layout
29336
29337 \begin_layout Standard
29338 Das vorige Beispiel in der alignat-Umgebung, bei dem zu Beginn der zweiten
29339  Formel 1
29340 \begin_inset space \thinspace{}
29341 \end_inset
29342
29343 cm Leerraum eingefügt wurde:
29344 \begin_inset Formula 
29345 \begin{alignat*}{2}
29346 A & =\sin(B) & \hspace{1cm}C & =D\\
29347 C & \ne A & B & \ne D
29348 \end{alignat*}
29349
29350 \end_inset
29351
29352 Weil man den Spaltenabstand für jede Spalte einzeln einstellen kann, eignet
29353  sich diese Umgebung besonders für drei und mehr nebeneinander gesetzte
29354  Formeln.
29355 \end_layout
29356
29357 \begin_layout Subsubsection
29358 Flalign-Umgebung
29359 \begin_inset CommandInset label
29360 LatexCommand label
29361 name "sub:Flalign-Umgebung"
29362
29363 \end_inset
29364
29365
29366 \begin_inset Index idx
29367 status collapsed
29368
29369 \begin_layout Plain Layout
29370 Formel ! mehrzeilige ! flalign-Umgebung
29371 \end_layout
29372
29373 \end_inset
29374
29375
29376 \end_layout
29377
29378 \begin_layout Standard
29379 Bei dieser Umgebung werden die ersten beiden Spalten immer so weit links
29380  und die letzten beiden Spalten so weit rechts wie möglich gesetzt.
29381  Dazu ein Beispiel:
29382 \begin_inset Formula 
29383 \begin{flalign*}
29384 A & =1 & B & =2 & C & =3\\
29385 X & =\textrm{-}1 & Y & =\textrm{-}2 & Z & =4
29386 \end{flalign*}
29387
29388 \end_inset
29389
29390
29391 \end_layout
29392
29393 \begin_layout Standard
29394 Erzeugt man eine flalign-Umgebung mit ungerader Spaltenanzahl und gibt in
29395  die letzte Spalte eine leere TeX-Klammer ein, kann man einzelne Formeln
29396  im Dokument links setzen obwohl der Formelstil 
29397 \series bold
29398 Zentriert
29399 \series default
29400  eingestellt ist.
29401  Als Beispiel die eingerückte ausgerichtete Formel 
29402 \begin_inset CommandInset ref
29403 LatexCommand eqref
29404 reference "eq:VolInt"
29405
29406 \end_inset
29407
29408 :
29409 \begin_inset Formula 
29410 \begin{flalign}
29411 \hspace{30pt}\iiint\limits _{V}X\,\mathrm{d}V & =U & {}
29412 \end{flalign}
29413
29414 \end_inset
29415
29416 In den ersten beiden Spalten befindet sich die Formel.
29417  Damit sie wie beim Formelstil 
29418 \series bold
29419 Eingerückt
29420 \series default
29421  vom Rand etwas abgesetzt ist, wurde zu Beginn der ersten Spalte 30
29422 \begin_inset space \thinspace{}
29423 \end_inset
29424
29425 pt Leerraum eingefügt.
29426 \end_layout
29427
29428 \begin_layout Subsection
29429 Eqnarray-Umgebung
29430 \begin_inset CommandInset label
29431 LatexCommand label
29432 name "sub:Eqnarray-Umgebung"
29433
29434 \end_inset
29435
29436
29437 \begin_inset Index idx
29438 status collapsed
29439
29440 \begin_layout Plain Layout
29441 Formel ! mehrzeilige ! Eqnarray-Umgebung
29442 \end_layout
29443
29444 \end_inset
29445
29446
29447 \end_layout
29448
29449 \begin_layout Standard
29450 Hat man diese Umgebung erzeugt, erscheinen drei blaue Kästchen.
29451  Der Inhalt des ersten Kästchens wird rechtsbündig, der des letzten linksbündig
29452  ausgerichtet.
29453  Der Inhalt des mittleren Kästchens erscheint zentriert und etwas kleiner,
29454  da dieses Kästchen nur für Relationzeichen gedacht ist.
29455 \begin_inset Formula 
29456 \begin{eqnarray*}
29457 \frac{ABC}{D} & \frac{ABC}{D} & \frac{ABC}{D}\\
29458 AB & AB & AB\\
29459 A & = & A
29460 \end{eqnarray*}
29461
29462 \end_inset
29463
29464
29465 \end_layout
29466
29467 \begin_layout Subsection
29468 Gather-Umgebung
29469 \begin_inset Index idx
29470 status collapsed
29471
29472 \begin_layout Plain Layout
29473 Formel ! mehrzeilige ! Gather-Umgebung
29474 \end_layout
29475
29476 \end_inset
29477
29478
29479 \end_layout
29480
29481 \begin_layout Standard
29482 Diese Umgebung besteht nur aus einer Spalte, deren Inhalt zentriert ist.
29483  Jede Zeile kann nummeriert werden.
29484 \begin_inset Formula 
29485 \begin{gather}
29486 A=1\\
29487 X=\textrm{-}1
29488 \end{gather}
29489
29490 \end_inset
29491
29492
29493 \end_layout
29494
29495 \begin_layout Subsection
29496 Multline-Umgebung
29497 \begin_inset CommandInset label
29498 LatexCommand label
29499 name "sub:Multline-Umgebung"
29500
29501 \end_inset
29502
29503
29504 \begin_inset Index idx
29505 status collapsed
29506
29507 \begin_layout Plain Layout
29508 Formel ! mehrzeilige ! Multline-Umgebung
29509 \end_layout
29510
29511 \end_inset
29512
29513
29514 \end_layout
29515
29516 \begin_layout Standard
29517 Die multline-Umgebung besteht wie die Gather-Umgebung nur aus einer Spalte.
29518  Jedoch ist die erste Zeile links, die letzte rechts ausgerichtet.
29519  Alle anderen Zeilen sind zentriert.
29520  Dadurch eignet sich diese Umgebung besonders für lange Formeln.
29521  Als Beispiel Formel 
29522 \begin_inset CommandInset ref
29523 LatexCommand eqref
29524 reference "eq:lefteqn"
29525
29526 \end_inset
29527
29528  in der multline-Umgebung:
29529 \begin_inset Formula 
29530 \begin{multline}
29531 4x^{2}\left(B^{2}+x_{0}^{2}\right)+4x_{0}x\left(D-B^{2}\right)+B^{2}\left(B^{2}-2r_{g}^{2}+2x_{0}^{2}-2r_{k}^{2}\right)+D^{2}\\
29532 -B^{2}-2B\sqrt{r_{g}^{2}-x^{2}+2x_{0}x-x_{0}^{2}}+r_{g}^{2}-x^{2}+2x_{0}x-x_{0}^{2}\\
29533 =B^{2}+2\left(r_{g}^{2}+2x_{0}x-x_{0}^{2}-r_{k}^{2}\right)+\frac{\left(r_{g}^{2}+2x_{0}x-x_{0}^{2}-r_{k}^{2}\right)^{2}}{B^{2}}
29534 \end{multline}
29535
29536 \end_inset
29537
29538
29539 \end_layout
29540
29541 \begin_layout Standard
29542 In der Ausgabe erscheint nur die letzte (erste) Zeile einer multline-Umgebung
29543  nummeriert, wenn rechts (links) nummeriert wird.
29544 \begin_inset Foot
29545 status collapsed
29546
29547 \begin_layout Plain Layout
29548 Nummerierungsstile siehe 
29549 \begin_inset CommandInset ref
29550 LatexCommand ref
29551 reference "sec:Formelstile"
29552
29553 \end_inset
29554
29555
29556 \end_layout
29557
29558 \end_inset
29559
29560
29561 \end_layout
29562
29563 \begin_layout Standard
29564 Mit den Befehlen 
29565 \series bold
29566
29567 \backslash
29568 shoveright
29569 \series default
29570
29571 \begin_inset Index idx
29572 status collapsed
29573
29574 \begin_layout Plain Layout
29575 Befehle ! S ! 
29576 \backslash
29577 shoveright
29578 \end_layout
29579
29580 \end_inset
29581
29582  und 
29583 \series bold
29584
29585 \backslash
29586 shoveleft
29587 \series default
29588
29589 \begin_inset Index idx
29590 status collapsed
29591
29592 \begin_layout Plain Layout
29593 Befehle ! S ! 
29594 \backslash
29595 shoveleft
29596 \end_layout
29597
29598 \end_inset
29599
29600  kann eine zentrierte Zeile rechts bzw.
29601 \begin_inset space \space{}
29602 \end_inset
29603
29604 links ausgerichtet werden.
29605  Die Befehle werden folgendermaßen verwendet:
29606 \end_layout
29607
29608 \begin_layout Standard
29609
29610 \series bold
29611
29612 \backslash
29613 shoveright{Zeileninhalt}
29614 \series default
29615  bzw.
29616 \begin_inset space \space{}
29617 \end_inset
29618
29619
29620 \series bold
29621
29622 \backslash
29623 shoveleft{Zeileninhalt}
29624 \end_layout
29625
29626 \begin_layout Standard
29627 \begin_inset VSpace medskip
29628 \end_inset
29629
29630 Die Länge 
29631 \series bold
29632
29633 \backslash
29634 multlinegap
29635 \series default
29636
29637 \begin_inset Index idx
29638 status collapsed
29639
29640 \begin_layout Plain Layout
29641 Befehle ! M ! 
29642 \backslash
29643 multlinegap
29644 \end_layout
29645
29646 \end_inset
29647
29648  legt den Abstand der ersten Zeile vom linken Seitenrand fest.
29649  Voreingestellt ist die Länge 0
29650 \begin_inset space \thinspace{}
29651 \end_inset
29652
29653 pt.
29654 \end_layout
29655
29656 \begin_layout Standard
29657 Als Beispiel obige Formel, vor der im TeX-Modus der Befehl
29658 \end_layout
29659
29660 \begin_layout Standard
29661
29662 \series bold
29663
29664 \backslash
29665 setlength{
29666 \backslash
29667 multlinegap}{2cm}
29668 \end_layout
29669
29670 \begin_layout Standard
29671 eingegeben wurde:
29672 \begin_inset ERT
29673 status collapsed
29674
29675 \begin_layout Plain Layout
29676
29677
29678 \backslash
29679 setlength{
29680 \backslash
29681 multlinegap}{2cm}
29682 \end_layout
29683
29684 \end_inset
29685
29686
29687 \begin_inset Formula 
29688 \begin{multline}
29689 4x^{2}\left(B^{2}+x_{0}^{2}\right)+4x_{0}x\left(D-B^{2}\right)+B^{2}\left(B^{2}-2r_{g}^{2}+2x_{0}^{2}-2r_{k}^{2}\right)+D^{2}\\
29690 \shoveleft{-B^{2}-2B\sqrt{r_{g}^{2}-x^{2}+2x_{0}x-x_{0}^{2}}+r_{g}^{2}-x^{2}+2x_{0}x-x_{0}^{2}}\\
29691 =B^{2}+2\left(r_{g}^{2}+2x_{0}x-x_{0}^{2}-r_{k}^{2}\right)+\frac{\left(r_{g}^{2}+2x_{0}x-x_{0}^{2}-r_{k}^{2}\right)^{2}}{B^{2}}
29692 \end{multline}
29693
29694 \end_inset
29695
29696
29697 \begin_inset ERT
29698 status collapsed
29699
29700 \begin_layout Plain Layout
29701
29702
29703 \backslash
29704 setlength{
29705 \backslash
29706 multlinegap}{0pt}
29707 \end_layout
29708
29709 \end_inset
29710
29711
29712 \end_layout
29713
29714 \begin_layout Standard
29715 Die zweite Zeile wurde mit 
29716 \series bold
29717
29718 \backslash
29719 shoveleft
29720 \series default
29721  linksbündig ausgerichtet.
29722 \end_layout
29723
29724 \begin_layout Subsection
29725 Mehrzeilige Formelteile
29726 \begin_inset CommandInset label
29727 LatexCommand label
29728 name "sub:Mehrzeilige-Formelteile"
29729
29730 \end_inset
29731
29732
29733 \begin_inset Index idx
29734 status collapsed
29735
29736 \begin_layout Plain Layout
29737 Formel ! mehrzeilige ! Formelteile
29738 \end_layout
29739
29740 \end_inset
29741
29742
29743 \end_layout
29744
29745 \begin_layout Standard
29746 Möchte man nur Teile einer Formel mehrzeilig darstellen, verwendet man eine
29747  der folgenden Umgebungen: 
29748 \series bold
29749 aligned
29750 \series default
29751
29752 \series bold
29753 alignedat
29754 \series default
29755
29756 \series bold
29757 gathered
29758 \series default
29759  oder 
29760 \series bold
29761 split
29762 \series default
29763 .
29764  Sie können über das Menü 
29765 \family sans
29766 Einfügen\SpecialChar \menuseparator
29767 Mathe
29768 \family default
29769  oder mit Befehlen eingefügt werden, wie in diesem Abschnitt beschrieben.
29770 \end_layout
29771
29772 \begin_layout Standard
29773 Die ersten drei haben dieselben Eigenschaften wie die entsprechenden mehrzeilige
29774 n Formel\SpecialChar \-
29775 umgebungen.
29776  Man kann jedoch zusätzlich weitere Formelteile daneben setzen.
29777  Dazu ein Beispiel:
29778 \begin_inset Formula 
29779 \[
29780 \left.\begin{aligned}\Delta x\Delta p & \ge\frac{\hbar}{2}\\
29781 \Delta E\Delta t & \ge\frac{\hbar}{2}
29782 \end{aligned}
29783 \right\} \textrm{Unbestimmtheitsrelationen}
29784 \]
29785
29786 \end_inset
29787
29788
29789 \end_layout
29790
29791 \begin_layout Standard
29792 Um diese Formel zu erhalten, wird eine abgesetzte Formel erstellt, in die
29793  der Befehl 
29794 \series bold
29795
29796 \backslash
29797 aligned
29798 \series default
29799
29800 \begin_inset Index idx
29801 status collapsed
29802
29803 \begin_layout Plain Layout
29804 Befehle ! A ! 
29805 \backslash
29806 aligned
29807 \end_layout
29808
29809 \end_inset
29810
29811  eingegeben wird.
29812  Es erscheint eine lila Box um das blaue Formelkästchen in der man nun Spalten
29813  und Zeilen hinzufügen kann.
29814  Außerhalb der mehrzeiligen Umgebung können Formelteile, wie die Klammer,
29815  gesetzt werden.
29816 \end_layout
29817
29818 \begin_layout Standard
29819 Die aligned-Umgebung eignet sich auch für lange Formeln, deren Zeilen horizontal
29820  ausgerichtet sind.
29821  Verwendet man aligned in einer abgesetzten Formel, hat das den Vorteil,
29822  dass die Formelnummer vertikal mittig hinter den Zeilen steht.
29823  Als Beispiel Formel 
29824 \begin_inset CommandInset ref
29825 LatexCommand eqref
29826 reference "eq:kurzlang"
29827
29828 \end_inset
29829
29830  in der aligned-Umgebung:
29831 \begin_inset Formula 
29832 \begin{equation}
29833 \begin{aligned}H=\; & W_{SB}+W_{mv}+W_{D}-\frac{\hbar^{2}}{2m_{0}}\Delta-\frac{\hbar^{2}}{2m_{1}}\Delta_{1}-\frac{\hbar^{2}}{2m_{2}}\Delta_{2}-\frac{e^{2}}{4\pi\varepsilon_{0}|\mathbf{r}-\mathbf{R}_{1}|}\\
29834  & -\hspace{3pt}\frac{e^{2}}{4\pi\varepsilon_{0}|\mathbf{r}-\mathbf{R}_{2}|}+\frac{e^{2}}{4\pi\varepsilon_{0}|\mathbf{R}_{1}-\mathbf{R}_{2}|}
29835 \end{aligned}
29836 \end{equation}
29837
29838 \end_inset
29839
29840
29841 \end_layout
29842
29843 \begin_layout Standard
29844 Möchte man die Umgebung 
29845 \series bold
29846 alignedat
29847 \series default
29848
29849 \series bold
29850 gathered
29851 \series default
29852  oder 
29853 \series bold
29854 split
29855 \series default
29856  verwenden, gibt man den Befehl 
29857 \series bold
29858
29859 \backslash
29860 alignedat
29861 \series default
29862 ,
29863 \begin_inset Index idx
29864 status collapsed
29865
29866 \begin_layout Plain Layout
29867 Befehle ! A ! 
29868 \backslash
29869 alignedat
29870 \end_layout
29871
29872 \end_inset
29873
29874  
29875 \series bold
29876
29877 \backslash
29878 gathered
29879 \series default
29880
29881 \begin_inset Index idx
29882 status collapsed
29883
29884 \begin_layout Plain Layout
29885 Befehle ! G ! 
29886 \backslash
29887 gathered
29888 \end_layout
29889
29890 \end_inset
29891
29892  bzw.
29893 \begin_inset space \space{}
29894 \end_inset
29895
29896
29897 \series bold
29898
29899 \backslash
29900 split
29901 \series default
29902
29903 \begin_inset Index idx
29904 status collapsed
29905
29906 \begin_layout Plain Layout
29907 Befehle ! S ! 
29908 \backslash
29909 split
29910 \end_layout
29911
29912 \end_inset
29913
29914  ein.
29915  Die split-Umgebung hat dieselben Eigenschaften wie die aligned-Umgebung,
29916  jedoch darf sie nur zwei Spalten enthalten.
29917 \end_layout
29918
29919 \begin_layout Subsection
29920 Text in mehrzeiligen Formeln
29921 \begin_inset CommandInset label
29922 LatexCommand label
29923 name "sub:Text-in-mehrzeiligen"
29924
29925 \end_inset
29926
29927
29928 \begin_inset Index idx
29929 status collapsed
29930
29931 \begin_layout Plain Layout
29932 Text ! in Formeln
29933 \end_layout
29934
29935 \end_inset
29936
29937
29938 \begin_inset Index idx
29939 status collapsed
29940
29941 \begin_layout Plain Layout
29942 Formel ! mehrzeilige ! Text
29943 \end_layout
29944
29945 \end_inset
29946
29947
29948 \end_layout
29949
29950 \begin_layout Standard
29951 Bei den Align-Umgebungen sowie der multline- und gather-Umgebung besteht
29952  die Möglichkeit Text einzufügen, der in einer eigenen Zeile erscheint und
29953  die Ausrichtung der Spalten nicht beeinflusst.
29954  Dazu wird der Befehl 
29955 \series bold
29956
29957 \backslash
29958 intertext
29959 \series default
29960
29961 \begin_inset Index idx
29962 status collapsed
29963
29964 \begin_layout Plain Layout
29965 Befehle ! I ! 
29966 \backslash
29967 intertext
29968 \end_layout
29969
29970 \end_inset
29971
29972  nach folgendem Schema benutzt:
29973 \end_layout
29974
29975 \begin_layout Standard
29976
29977 \series bold
29978
29979 \backslash
29980 intertext{Text}
29981 \end_layout
29982
29983 \begin_layout Standard
29984 Der Text sollte nicht länger als eine Zeile sein, da er nicht umgebrochen
29985  werden kann.
29986  Weil LyX 
29987 \series bold
29988
29989 \backslash
29990 intertext
29991 \series default
29992  noch nicht direkt unterstützt, schreibt man den Text als mathematischen
29993  Text.
29994  
29995 \series bold
29996
29997 \backslash
29998 intertext
29999 \series default
30000  muss dabei zu Beginn einer Zeile stehen und erscheint in der Ausgabe über
30001  dieser Zeile.
30002  Ein Beispiel bei dem der Text zu Beginn der zweiten Zeile eingegeben wurde:
30003 \begin_inset Formula 
30004 \begin{align}
30005 I & =a\sqrt{2}\int_{0}^{2\pi}\sqrt{1+\cos(\phi)}\;\mathrm{d}\phi\\
30006 \intertext{\text{Integrand ist symmetrisch zu \ensuremath{\phi=\pi}, daher}} & =2a\sqrt{2}\int_{0}^{\pi}\sqrt{1+\cos(\phi)}\;\mathrm{d}\phi
30007 \end{align}
30008
30009 \end_inset
30010
30011
30012 \end_layout
30013
30014 \begin_layout Standard
30015
30016 \series bold
30017
30018 \backslash
30019 intertext
30020 \series default
30021  erzeugt immer etwas vertikalen Leerraum zwischen dem Text und den Formelzeilen.
30022  Um dies zu vermeiden, stellt man in den Dokumenteinstellungen unter 
30023 \family sans
30024 Mathe-Optionen
30025 \family default
30026  für das Paket 
30027 \series bold
30028 mathtools
30029 \series default
30030
30031 \begin_inset Index idx
30032 status collapsed
30033
30034 \begin_layout Plain Layout
30035 Pakete ! mathtools
30036 \end_layout
30037
30038 \end_inset
30039
30040  die Option 
30041 \family sans
30042 Immer
30043 \begin_inset space ~
30044 \end_inset
30045
30046 laden
30047 \family default
30048  ein.
30049  Man kann nun den Befehl 
30050 \series bold
30051
30052 \backslash
30053 shortintertext
30054 \series default
30055
30056 \begin_inset Index idx
30057 status collapsed
30058
30059 \begin_layout Plain Layout
30060 Befehle ! S ! 
30061 \backslash
30062 shortintertext
30063 \end_layout
30064
30065 \end_inset
30066
30067  statt 
30068 \series bold
30069
30070 \backslash
30071 intertext
30072 \series default
30073  verwenden:
30074 \begin_inset Formula 
30075 \begin{align}
30076 I & =a\sqrt{2}\int_{0}^{2\pi}\sqrt{1+\cos(\phi)}\;\mathrm{d}\phi\\
30077 \shortintertext{\text{Integrand ist symmetrisch zu \ensuremath{\phi=\pi}, daher}} & =2a\sqrt{2}\int_{0}^{\pi}\sqrt{1+\cos(\phi)}\;\mathrm{d}\phi
30078 \end{align}
30079
30080 \end_inset
30081
30082
30083 \end_layout
30084
30085 \begin_layout Section
30086 Formelnummerierung
30087 \begin_inset Index idx
30088 status collapsed
30089
30090 \begin_layout Plain Layout
30091 Formelnummerierung
30092 \end_layout
30093
30094 \end_inset
30095
30096
30097 \begin_inset Index idx
30098 status collapsed
30099
30100 \begin_layout Plain Layout
30101 Formel ! Nummerierung|see
30102 \begin_inset ERT
30103 status collapsed
30104
30105 \begin_layout Plain Layout
30106
30107 {
30108 \end_layout
30109
30110 \end_inset
30111
30112 Formelnummerierung
30113 \begin_inset ERT
30114 status collapsed
30115
30116 \begin_layout Plain Layout
30117
30118 }
30119 \end_layout
30120
30121 \end_inset
30122
30123
30124 \end_layout
30125
30126 \end_inset
30127
30128
30129 \end_layout
30130
30131 \begin_layout Subsection
30132 Allgemeines
30133 \end_layout
30134
30135 \begin_layout Standard
30136 Nummerierte Formeln können mit dem Menü 
30137 \family sans
30138 Einfügen\SpecialChar \menuseparator
30139 Mathe\SpecialChar \menuseparator
30140 Nummerierte
30141 \begin_inset space ~
30142 \end_inset
30143
30144 Formel
30145 \family default
30146  (Tastenkürzel 
30147 \family sans
30148 Strg+Alt
30149 \begin_inset space ~
30150 \end_inset
30151
30152 N
30153 \family default
30154 ) erstellt, bestehende Formeln über das Menü 
30155 \family sans
30156 Bearbeiten\SpecialChar \menuseparator
30157 Mathe\SpecialChar \menuseparator
30158 Nummerierung
30159 \begin_inset space ~
30160 \end_inset
30161
30162 an/aus
30163 \family default
30164  (Tastenkürzel 
30165 \family sans
30166 Alt+M
30167 \begin_inset space ~
30168 \end_inset
30169
30170 N
30171 \family default
30172 ) nummeriert werden.
30173  Die Formelnummer erscheint in LyX hinter der Formel als Raute in runden
30174  Klammern.
30175  Im Ausdruck erscheint anstelle der Raute die Formelnummer.
30176 \end_layout
30177
30178 \begin_layout Standard
30179 Wird in mehrzeiligen Formeln die Nummerierung angeschaltet, werden alle
30180  Zeilen nummeriert.
30181  Man kann jedoch über das Menü 
30182 \family sans
30183 Bearbeiten\SpecialChar \menuseparator
30184 Mathe\SpecialChar \menuseparator
30185 Zeilennummerierung an/aus
30186 \family default
30187  (Tastenkürzel 
30188 \family sans
30189 Alt+M
30190 \begin_inset space ~
30191 \end_inset
30192
30193 Shift+N
30194 \family default
30195 ) für jede Zeile die Nummerierung festlegen.
30196 \end_layout
30197
30198 \begin_layout Standard
30199 Außer eingebetteten können alle Formeln in zwei verschiedenen Stilen nummeriert
30200  werden, siehe 
30201 \begin_inset CommandInset ref
30202 LatexCommand ref
30203 reference "sec:Formelstile"
30204
30205 \end_inset
30206
30207 .
30208 \end_layout
30209
30210 \begin_layout Subsection
30211 Querverweise
30212 \begin_inset Index idx
30213 status collapsed
30214
30215 \begin_layout Plain Layout
30216 Querverweise ! auf Formeln
30217 \end_layout
30218
30219 \end_inset
30220
30221
30222 \end_layout
30223
30224 \begin_layout Standard
30225 Es kann auf alle Formeln verwiesen werden, die eine Marke besitzen.
30226  Eine Marke wird mit dem Menü 
30227 \family sans
30228 Einfügen\SpecialChar \menuseparator
30229 Marke
30230 \family default
30231  oder dem Werkzeugleistenknopf 
30232 \begin_inset Info
30233 type  "icon"
30234 arg   "label-insert"
30235 \end_inset
30236
30237  gesetzt.
30238  Dabei muss sich der Cursor in einer abgesetzten Formel befinden.
30239  Alternativ klickt man mit rechts auf die Formel und wählt 
30240 \family sans
30241 Formelmarke
30242 \family default
30243 .
30244  Es erscheint ein Eingabefeld mit dem voreingestellten Eintrag 
30245 \series bold
30246 eq:
30247 \series default
30248 , nachdem der eigentliche Markenname eingegeben wird.
30249  Der voreingestellte Eintrag steht für 
30250 \begin_inset Quotes gld
30251 \end_inset
30252
30253 equation
30254 \begin_inset Quotes grd
30255 \end_inset
30256
30257  und erleichtert bei größeren Dokumenten die Zuordnung, dass die Marke zu
30258  einer Formel und nicht zu einem Kapitel gehört.
30259  Um eine Marke zu ändern, wählt man wieder das Menü 
30260 \family sans
30261 Einfügen\SpecialChar \menuseparator
30262 Marke
30263 \family default
30264  oder man klickt mit rechts auf eine Formel und dann auf 
30265 \family sans
30266 Formelmarke
30267 \family default
30268 .
30269 \end_layout
30270
30271 \begin_layout Standard
30272 Der Name der Marke erscheint in LyX in zwei runden Klammern hinter der Formel.
30273  Eine Formel mit Marke wird immer nummeriert.
30274 \end_layout
30275
30276 \begin_layout Standard
30277 Querverweise werden mit dem Menü 
30278 \family sans
30279 Einfügen\SpecialChar \menuseparator
30280 Querverweis
30281 \family default
30282  oder dem Werkzeugleistenknopf 
30283 \begin_inset Info
30284 type  "icon"
30285 arg   "dialog-show-new-inset ref"
30286 \end_inset
30287
30288  eingefügt.
30289  Ein Querverweis auf Formeln erscheint im Ausdruck als Formelnummer.
30290  Wenn man im Querverweis Dialogfenster das Format 
30291 \series bold
30292 (<Querverweis>)
30293 \series default
30294  wählt, erscheint der Querverweis als Formelnummer in Klammern.
30295 \begin_inset Newline newline
30296 \end_inset
30297
30298 Drückt man in LyX mit der rechten Maustaste auf einen Querverweis, gelangt
30299  man zur Formel auf die verwiesen wird.
30300 \end_layout
30301
30302 \begin_layout Standard
30303 Als Beispiel folgen Querverweise zu Formeln aus diesem Kapitel:
30304 \begin_inset Note Note
30305 status open
30306
30307 \begin_layout Plain Layout
30308 Man beachte die unterschiedlichen Querverweistypen.
30309 \end_layout
30310
30311 \end_inset
30312
30313
30314 \end_layout
30315
30316 \begin_layout Standard
30317 Die Gleichungen 
30318 \begin_inset CommandInset ref
30319 LatexCommand eqref
30320 reference "eq:tag"
30321
30322 \end_inset
30323
30324  und 
30325 \begin_inset CommandInset ref
30326 LatexCommand eqref
30327 reference "eq:c"
30328
30329 \end_inset
30330
30331  sind äquivalent.
30332  In (
30333 \begin_inset CommandInset ref
30334 LatexCommand ref
30335 reference "eq:Lat"
30336
30337 \end_inset
30338
30339 ) werden im Gegensatz zu (
30340 \begin_inset CommandInset ref
30341 LatexCommand ref
30342 reference "eq:Roem"
30343
30344 \end_inset
30345
30346 ) große lateinische Buchstaben zur Nummerierung verwendet.
30347 \end_layout
30348
30349 \begin_layout Standard
30350 \begin_inset VSpace medskip
30351 \end_inset
30352
30353 Ist im Argument von 
30354 \series bold
30355
30356 \backslash
30357 tag
30358 \begin_inset Foot
30359 status collapsed
30360
30361 \begin_layout Plain Layout
30362
30363 \series bold
30364
30365 \backslash
30366 tag
30367 \series default
30368  ist in 
30369 \begin_inset CommandInset ref
30370 LatexCommand ref
30371 reference "sub:Benutzerdefinierte-Nummerierung"
30372
30373 \end_inset
30374
30375  beschrieben.
30376 \end_layout
30377
30378 \end_inset
30379
30380
30381 \series default
30382  wie in 
30383 \begin_inset CommandInset ref
30384 LatexCommand ref
30385 reference "sub:Absatzboxen"
30386
30387 \end_inset
30388
30389  eine Box angegeben, kann nicht auf die Formel verwiesen werden.
30390 \end_layout
30391
30392 \begin_layout Subsection
30393 Unternummerierung
30394 \begin_inset Index idx
30395 status collapsed
30396
30397 \begin_layout Plain Layout
30398 Formelnummerierung ! Unternummerierung
30399 \end_layout
30400
30401 \end_inset
30402
30403
30404 \end_layout
30405
30406 \begin_layout Standard
30407 Möchte man Formeln weiter untergliedern, kann man das mit Hilfe der Befehle
30408  
30409 \begin_inset Newline newline
30410 \end_inset
30411
30412
30413 \series bold
30414
30415 \backslash
30416 begin{subequations}
30417 \series default
30418  und 
30419 \series bold
30420
30421 \backslash
30422 end{subequations}
30423 \series default
30424  erreichen.
30425  Beide Befehle werden im TeX-Modus eingegeben.
30426 \end_layout
30427
30428 \begin_layout Standard
30429 Dazu ein Beispiel:
30430 \begin_inset Formula 
30431 \begin{equation}
30432 A=C-B\label{eq:a}
30433 \end{equation}
30434
30435 \end_inset
30436
30437
30438 \begin_inset ERT
30439 status collapsed
30440
30441 \begin_layout Plain Layout
30442
30443
30444 \backslash
30445 addtocounter{equation}{-1}
30446 \end_layout
30447
30448 \end_inset
30449
30450
30451 \begin_inset ERT
30452 status collapsed
30453
30454 \begin_layout Plain Layout
30455
30456
30457 \backslash
30458 begin{subequations}
30459 \end_layout
30460
30461 \end_inset
30462
30463
30464 \begin_inset VSpace -5mm
30465 \end_inset
30466
30467
30468 \begin_inset Formula 
30469 \begin{equation}
30470 B=C-A\label{eq:b}
30471 \end{equation}
30472
30473 \end_inset
30474
30475
30476 \begin_inset Formula 
30477 \begin{equation}
30478 C=A+B\label{eq:c}
30479 \end{equation}
30480
30481 \end_inset
30482
30483
30484 \end_layout
30485
30486 \begin_layout Standard
30487 \begin_inset ERT
30488 status collapsed
30489
30490 \begin_layout Plain Layout
30491
30492
30493 \backslash
30494 end{subequations}
30495 \end_layout
30496
30497 \end_inset
30498
30499
30500 \end_layout
30501
30502 \begin_layout Standard
30503 Um das Beispiel zu erstellen, geht man folgendermaßen vor:
30504 \end_layout
30505
30506 \begin_layout Enumerate
30507 erste Formel eingeben
30508 \end_layout
30509
30510 \begin_layout Enumerate
30511
30512 \series bold
30513
30514 \backslash
30515 addtocounter{equation}{-1} 
30516 \backslash
30517 begin{subequations}
30518 \begin_inset Index idx
30519 status collapsed
30520
30521 \begin_layout Plain Layout
30522 Befehle ! A ! 
30523 \backslash
30524 addtocounter
30525 \end_layout
30526
30527 \end_inset
30528
30529
30530 \begin_inset Newline newline
30531 \end_inset
30532
30533
30534 \series default
30535 nach der ersten Formel einfügen
30536 \end_layout
30537
30538 \begin_layout Enumerate
30539 zweite Formel eingeben
30540 \end_layout
30541
30542 \begin_layout Enumerate
30543 dritte Formel eingeben
30544 \end_layout
30545
30546 \begin_layout Enumerate
30547
30548 \series bold
30549
30550 \backslash
30551 end{subequations}
30552 \series default
30553  nach der dritten Formel einfügen
30554 \end_layout
30555
30556 \begin_layout Standard
30557 Jede Formel, die zwischen den Befehlen 
30558 \series bold
30559
30560 \backslash
30561 begin
30562 \series default
30563  und 
30564 \series bold
30565
30566 \backslash
30567 end
30568 \series default
30569  steht, wird mit a, b, c, \SpecialChar \ldots{}
30570  untergliedert.
30571  Bei mehrzeiligen Formeln wird jede Zeile untergliedert.
30572  Alle untergliederten Formeln gelten als 
30573 \emph on
30574 eine
30575 \emph default
30576  nummerierte Formel.
30577  Da jede nummerierte Formel den Formelzähler 
30578 \series bold
30579 equation
30580 \series default
30581  um Eins erhöht, ist der Befehl 
30582 \series bold
30583
30584 \backslash
30585 addtocounter
30586 \series default
30587  notwendig um den Zähler wieder zu erniedrigen.
30588  Ansonsten würden die Formeln 
30589 \begin_inset CommandInset ref
30590 LatexCommand eqref
30591 reference "eq:a"
30592
30593 \end_inset
30594
30595
30596 \begin_inset CommandInset ref
30597 LatexCommand eqref
30598 reference "eq:b"
30599
30600 \end_inset
30601
30602
30603 \begin_inset CommandInset ref
30604 LatexCommand eqref
30605 reference "eq:c"
30606
30607 \end_inset
30608
30609  als 
30610 \begin_inset CommandInset ref
30611 LatexCommand eqref
30612 reference "eq:a"
30613
30614 \end_inset
30615
30616
30617 \begin_inset CommandInset ref
30618 LatexCommand eqref
30619 reference "eq:d"
30620
30621 \end_inset
30622
30623
30624 \begin_inset CommandInset ref
30625 LatexCommand eqref
30626 reference "eq:f"
30627
30628 \end_inset
30629
30630  nummeriert werden.
30631 \end_layout
30632
30633 \begin_layout Standard
30634 Durch die Eingabe der Befehle im TeX-Modus wird zwischen den ersten beiden
30635  Formeln automatisch etwas Leerraum erstellt.
30636  Um dies rückgängig zu machen, fügt man nach dem Befehl 
30637 \series bold
30638
30639 \backslash
30640 begin{subequations}
30641 \series default
30642  -5
30643 \begin_inset space \thinspace{}
30644 \end_inset
30645
30646 mm vertikalen Leerraum ein.
30647  Ist der Formelstil 
30648 \series bold
30649 Eingerückt
30650 \begin_inset Foot
30651 status collapsed
30652
30653 \begin_layout Plain Layout
30654 Formelstile siehe 
30655 \begin_inset CommandInset ref
30656 LatexCommand ref
30657 reference "sec:Formelstile"
30658
30659 \end_inset
30660
30661
30662 \end_layout
30663
30664 \end_inset
30665
30666
30667 \series default
30668  gewählt, fügt man -7
30669 \begin_inset space \thinspace{}
30670 \end_inset
30671
30672 mm Leerraum ein.
30673 \end_layout
30674
30675 \begin_layout Standard
30676 Hier ist ein Beispiel für mehrzeilige Formeln, bei dem die Nummerierung
30677  der zweiten Zeile abgeschaltet wurde:
30678 \begin_inset ERT
30679 status collapsed
30680
30681 \begin_layout Plain Layout
30682
30683
30684 \backslash
30685 begin{subequations}
30686 \end_layout
30687
30688 \end_inset
30689
30690
30691 \begin_inset Formula 
30692 \begin{eqnarray}
30693 A & = & (B-Z)^{2}=(B-Z)(B-Z)\label{eq:d}\\
30694  & = & B^{2}-ZB-BZ+Z^{²}\nonumber \\
30695  & = & B^{2}-2BZ+Z^{2}\label{eq:f}
30696 \end{eqnarray}
30697
30698 \end_inset
30699
30700
30701 \begin_inset ERT
30702 status collapsed
30703
30704 \begin_layout Plain Layout
30705
30706
30707 \backslash
30708 end{subequations}
30709 \end_layout
30710
30711 \end_inset
30712
30713
30714 \end_layout
30715
30716 \begin_layout Subsection
30717 Benutzerdefinierte Nummerierung
30718 \begin_inset CommandInset label
30719 LatexCommand label
30720 name "sub:Benutzerdefinierte-Nummerierung"
30721
30722 \end_inset
30723
30724
30725 \begin_inset Index idx
30726 status collapsed
30727
30728 \begin_layout Plain Layout
30729 Formelnummerierung ! benutzerdefinierte
30730 \end_layout
30731
30732 \end_inset
30733
30734
30735 \end_layout
30736
30737 \begin_layout Standard
30738 \begin_inset Index idx
30739 status collapsed
30740
30741 \begin_layout Plain Layout
30742 Formelnummerierung ! eigene Klammern
30743 \end_layout
30744
30745 \end_inset
30746
30747 Bei der Standardnummerierung werden um die Formelnummern runde Klammern
30748  gesetzt.
30749  Will man diese Klammern z.
30750 \begin_inset space \thinspace{}
30751 \end_inset
30752
30753 B.
30754  durch senkrechte Striche ersetzen, gibt man im LaTeX-Vorspann Folgendes
30755  an:
30756 \end_layout
30757
30758 \begin_layout Standard
30759
30760 \series bold
30761
30762 \backslash
30763 def
30764 \backslash
30765 tagform@#1{
30766 \backslash
30767 maketag@@@{|#1|}}
30768 \series default
30769
30770 \begin_inset Note Note
30771 status collapsed
30772
30773 \begin_layout Plain Layout
30774 Dieses Makro ist zum Testen bereits im LaTeX-Vorspann angegeben.
30775  Damit es wirksam wird, muss das Prozentzeichen am Zeilenbeginn entfernt
30776  werden.
30777 \end_layout
30778
30779 \end_inset
30780
30781
30782 \end_layout
30783
30784 \begin_layout Standard
30785 Möchte man andere Zeichen haben, ersetzt man die Striche neben 
30786 \series bold
30787 #1
30788 \series default
30789  durch ein oder mehrere gewünschte Zeichen.
30790  Möchte man nur die Formelnummer haben, lässt man die Striche weg.
30791 \end_layout
30792
30793 \begin_layout Standard
30794 \begin_inset VSpace bigskip
30795 \end_inset
30796
30797 Soll statt einer fortlaufenden Nummer ein beliebiger Ausdruck in den Klammern
30798  hinter der Formel stehen, benutzt man den Befehl 
30799 \series bold
30800
30801 \backslash
30802 tag
30803 \series default
30804
30805 \begin_inset Index idx
30806 status collapsed
30807
30808 \begin_layout Plain Layout
30809 Befehle ! T ! 
30810 \backslash
30811 tag
30812 \end_layout
30813
30814 \end_inset
30815
30816 :
30817 \begin_inset Formula 
30818 \begin{equation}
30819 A+B=C\tag{etwas}\label{eq:tag}
30820 \end{equation}
30821
30822 \end_inset
30823
30824  In diesem Beispiel wurde in der Formel der Befehl 
30825 \series bold
30826
30827 \backslash
30828 tag
30829 \series default
30830
30831 \begin_inset space \textvisiblespace{}
30832 \end_inset
30833
30834
30835 \series bold
30836 etwas
30837 \series default
30838  eingegeben.
30839 \end_layout
30840
30841 \begin_layout Standard
30842 Gibt man stattdessen 
30843 \series bold
30844
30845 \backslash
30846 tag*
30847 \series default
30848
30849 \begin_inset space \textvisiblespace{}
30850 \end_inset
30851
30852
30853 \series bold
30854 etwas
30855 \series default
30856  ein, verhindert der Stern die Klammern um den Ausdruck:
30857 \begin_inset Formula 
30858 \[
30859 A+B=C\tag*{etwas}
30860 \]
30861
30862 \end_inset
30863
30864
30865 \end_layout
30866
30867 \begin_layout Standard
30868 \begin_inset VSpace bigskip
30869 \end_inset
30870
30871 Möchte man die Formelnummerierung neu starten wenn ein neuer Dokumentteil
30872  oder 
30873 \begin_inset ERT
30874 status collapsed
30875
30876 \begin_layout Plain Layout
30877
30878
30879 \backslash
30880 mbox{
30881 \end_layout
30882
30883 \end_inset
30884
30885 -abschnitt
30886 \begin_inset ERT
30887 status collapsed
30888
30889 \begin_layout Plain Layout
30890
30891 }
30892 \end_layout
30893
30894 \end_inset
30895
30896
30897 \begin_inset Note Note
30898 status collapsed
30899
30900 \begin_layout Plain Layout
30901 Der Befehl 
30902 \series bold
30903
30904 \backslash
30905 mbox
30906 \series default
30907  verhindert, dass am Bindestrich umgebrochen wird.
30908 \end_layout
30909
30910 \end_inset
30911
30912  beginnt, verwendet man folgende LaTeX-Vorspannzeile:
30913 \end_layout
30914
30915 \begin_layout Standard
30916
30917 \series bold
30918
30919 \backslash
30920 @addtoreset{equation}{part}
30921 \series default
30922
30923 \begin_inset Index idx
30924 status collapsed
30925
30926 \begin_layout Plain Layout
30927 Befehle ! 
30928 \begin_inset ERT
30929 status collapsed
30930
30931 \begin_layout Plain Layout
30932
30933 "
30934 \end_layout
30935
30936 \end_inset
30937
30938 @
30939 \begin_inset ERT
30940 status collapsed
30941
30942 \begin_layout Plain Layout
30943
30944 "
30945 \end_layout
30946
30947 \end_inset
30948
30949  ! 
30950 \backslash
30951
30952 \begin_inset ERT
30953 status collapsed
30954
30955 \begin_layout Plain Layout
30956
30957 "
30958 \end_layout
30959
30960 \end_inset
30961
30962 @
30963 \begin_inset ERT
30964 status collapsed
30965
30966 \begin_layout Plain Layout
30967
30968 "
30969 \end_layout
30970
30971 \end_inset
30972
30973 addtoreset
30974 \end_layout
30975
30976 \end_inset
30977
30978
30979 \begin_inset Newline newline
30980 \end_inset
30981
30982 bzw.
30983 \begin_inset Newline newline
30984 \end_inset
30985
30986
30987 \series bold
30988
30989 \backslash
30990 @addtoreset{equation}{section}
30991 \end_layout
30992
30993 \begin_layout Standard
30994 Um diese Befehle im TeX-Modus benutzen zu können, muss das 
30995 \begin_inset Quotes gld
30996 \end_inset
30997
30998 @
30999 \begin_inset Quotes grd
31000 \end_inset
31001
31002  Zeichen für LaTeX mit dem Befehl 
31003 \series bold
31004
31005 \backslash
31006 makeatletter
31007 \series default
31008  
31009 \begin_inset Quotes gld
31010 \end_inset
31011
31012 aktiv
31013 \begin_inset Quotes grd
31014 \end_inset
31015
31016  gemacht werden.
31017  Der Befehl 
31018 \series bold
31019
31020 \backslash
31021 makeatother
31022 \series default
31023  macht dies wieder rückgängig.
31024  Daher ist die Befehlssequenz im TeX-Modus:
31025 \end_layout
31026
31027 \begin_layout Standard
31028
31029 \series bold
31030
31031 \backslash
31032 makeatletter
31033 \begin_inset Newline newline
31034 \end_inset
31035
31036
31037 \backslash
31038 @addtoreset{equation}{section}
31039 \begin_inset Newline newline
31040 \end_inset
31041
31042
31043 \backslash
31044 makeatother
31045 \end_layout
31046
31047 \begin_layout Standard
31048 Im LaTeX-Vorspann können 
31049 \series bold
31050
31051 \backslash
31052 makeatletter
31053 \series default
31054  und 
31055 \series bold
31056
31057 \backslash
31058 makeatother
31059 \series default
31060  weggelassen werden, da LyX sie automatisch intern einfügt.
31061 \end_layout
31062
31063 \begin_layout Standard
31064 Um 
31065 \series bold
31066
31067 \backslash
31068 @addtoreset
31069 \series default
31070  rückgängig zu machen, muss die Datei 
31071 \series bold
31072 remreset.sty
31073 \series default
31074
31075 \begin_inset Foot
31076 status collapsed
31077
31078 \begin_layout Plain Layout
31079
31080 \series bold
31081 remreset
31082 \series default
31083  ist Teil des LaTeX-Paketes 
31084 \series bold
31085 carlisle
31086 \series default
31087
31088 \begin_inset Index idx
31089 status collapsed
31090
31091 \begin_layout Plain Layout
31092 Pakete ! carlisle
31093 \end_layout
31094
31095 \end_inset
31096
31097 , das Teil jeder LaTeX-Standardinstallation ist.
31098 \end_layout
31099
31100 \end_inset
31101
31102
31103 \begin_inset Index idx
31104 status collapsed
31105
31106 \begin_layout Plain Layout
31107 Pakete ! remreset
31108 \end_layout
31109
31110 \end_inset
31111
31112  im LaTeX-Vorspann mit der Zeile
31113 \end_layout
31114
31115 \begin_layout Standard
31116
31117 \series bold
31118
31119 \backslash
31120 usepackage{remreset}
31121 \end_layout
31122
31123 \begin_layout Standard
31124 geladen werden.
31125  Dann kann der Befehl 
31126 \series bold
31127
31128 \backslash
31129 @removefromreset
31130 \series default
31131
31132 \begin_inset Index idx
31133 status collapsed
31134
31135 \begin_layout Plain Layout
31136 Befehle ! 
31137 \begin_inset ERT
31138 status collapsed
31139
31140 \begin_layout Plain Layout
31141
31142 "
31143 \end_layout
31144
31145 \end_inset
31146
31147 @
31148 \begin_inset ERT
31149 status collapsed
31150
31151 \begin_layout Plain Layout
31152
31153 "
31154 \end_layout
31155
31156 \end_inset
31157
31158  ! 
31159 \backslash
31160
31161 \begin_inset ERT
31162 status collapsed
31163
31164 \begin_layout Plain Layout
31165
31166 "
31167 \end_layout
31168
31169 \end_inset
31170
31171 @
31172 \begin_inset ERT
31173 status collapsed
31174
31175 \begin_layout Plain Layout
31176
31177 "
31178 \end_layout
31179
31180 \end_inset
31181
31182 removefromreset
31183 \end_layout
31184
31185 \end_inset
31186
31187  mit dem selben Schema wie 
31188 \series bold
31189
31190 \backslash
31191 @addtoreset
31192 \series default
31193  benutzt werden.
31194 \end_layout
31195
31196 \begin_layout Standard
31197 \begin_inset VSpace bigskip
31198 \end_inset
31199
31200 Oftmals möchte man Formeln in folgender Art nummerieren:
31201 \end_layout
31202
31203 \begin_layout Standard
31204
31205 \family typewriter
31206 (Kapitelnummer.Formelnummer)
31207 \end_layout
31208
31209 \begin_layout Standard
31210 Dabei soll die Formelnummer bei jedem Kapitel wieder mit Eins beginnen.
31211 \end_layout
31212
31213 \begin_layout Standard
31214 Für diesen Fall gibt es den Befehl 
31215 \series bold
31216
31217 \backslash
31218 numberwithin
31219 \series default
31220
31221 \begin_inset Index idx
31222 status collapsed
31223
31224 \begin_layout Plain Layout
31225 Befehle ! N ! 
31226 \backslash
31227 numberwithin
31228 \end_layout
31229
31230 \end_inset
31231
31232 , der nach folgendem Schema benutzt wird:
31233 \end_layout
31234
31235 \begin_layout Standard
31236
31237 \series bold
31238
31239 \backslash
31240 numberwithin{Zähler}{Gliederung}
31241 \end_layout
31242
31243 \begin_layout Standard
31244 Zähler gibt an, welche Nummerierung betroffen ist.
31245  Gliederung gibt an, welche Nummer vor dem Punkt steht.
31246 \end_layout
31247
31248 \begin_layout Standard
31249 In unserem Fall gibt man demnach folgende LaTeX-Vorspann- oder TeX-Code-Zeile
31250  ein:
31251 \end_layout
31252
31253 \begin_layout Standard
31254
31255 \series bold
31256
31257 \backslash
31258 numberwithin{equation}{section}
31259 \end_layout
31260
31261 \begin_layout Standard
31262 Das ist das Ergebnis:
31263 \begin_inset ERT
31264 status collapsed
31265
31266 \begin_layout Plain Layout
31267
31268
31269 \backslash
31270 numberwithin{equation}{section}
31271 \end_layout
31272
31273 \end_inset
31274
31275
31276 \begin_inset Formula 
31277 \begin{equation}
31278 A+B=C
31279 \end{equation}
31280
31281 \end_inset
31282
31283
31284 \end_layout
31285
31286 \begin_layout Standard
31287 Möchte man z.
31288 \begin_inset space \thinspace{}
31289 \end_inset
31290
31291 B.
31292  Tabellen nummerieren, so dass die Nummer des Teils vor dem Punkt steht,
31293  gibt man 
31294 \series bold
31295
31296 \backslash
31297 numberwithin{table}{part}
31298 \series default
31299  ein.
31300 \end_layout
31301
31302 \begin_layout Standard
31303 Um wieder auf Standardnummerierung umzuschalten oder um diese Art der Nummerieru
31304 ng zu vermeiden wenn sie von der Dokumentklasse vorgegeben ist, gibt man
31305  folgenden Befehl als TeX-Code oder als LaTeX-Vorspannzeile ein:
31306 \end_layout
31307
31308 \begin_layout Standard
31309
31310 \series bold
31311
31312 \backslash
31313 renewcommand{
31314 \backslash
31315 theequation}{
31316 \backslash
31317 arabic{equation}}
31318 \begin_inset Index idx
31319 status collapsed
31320
31321 \begin_layout Plain Layout
31322 Befehle ! A ! 
31323 \backslash
31324 arabic
31325 \end_layout
31326
31327 \end_inset
31328
31329
31330 \series default
31331
31332 \begin_inset ERT
31333 status collapsed
31334
31335 \begin_layout Plain Layout
31336
31337
31338 \backslash
31339 renewcommand{
31340 \backslash
31341 theequation}{
31342 \backslash
31343 arabic{equation}}
31344 \end_layout
31345
31346 \end_inset
31347
31348
31349 \series bold
31350
31351 \begin_inset Newline newline
31352 \end_inset
31353
31354
31355 \series default
31356 bzw.
31357 \series bold
31358
31359 \begin_inset Newline newline
31360 \end_inset
31361
31362
31363 \backslash
31364 renewcommand{
31365 \backslash
31366 thetable}{
31367 \backslash
31368 arabic{table}}
31369 \end_layout
31370
31371 \begin_layout Standard
31372
31373 \series bold
31374
31375 \backslash
31376 numberwithin
31377 \series default
31378  benutzt intern den oben beschriebenen Befehl 
31379 \series bold
31380
31381 \backslash
31382 @addtoreset
31383 \series default
31384 , der ebenfalls rückgängig gemacht werden muss.
31385 \begin_inset ERT
31386 status collapsed
31387
31388 \begin_layout Plain Layout
31389
31390
31391 \backslash
31392 makeatletter
31393 \end_layout
31394
31395 \begin_layout Plain Layout
31396
31397
31398 \backslash
31399 @removefromreset{equation}{section}
31400 \end_layout
31401
31402 \begin_layout Plain Layout
31403
31404
31405 \backslash
31406 makeatother
31407 \end_layout
31408
31409 \end_inset
31410
31411
31412 \end_layout
31413
31414 \begin_layout Subsection
31415 Nummerierung mit römischen Zahlen und Buchstaben
31416 \begin_inset Index idx
31417 status collapsed
31418
31419 \begin_layout Plain Layout
31420 Formelnummerierung ! mit Buchstaben
31421 \end_layout
31422
31423 \end_inset
31424
31425
31426 \begin_inset Index idx
31427 status collapsed
31428
31429 \begin_layout Plain Layout
31430 Formelnummerierung ! mit römischen Zahlen
31431 \end_layout
31432
31433 \end_inset
31434
31435
31436 \end_layout
31437
31438 \begin_layout Standard
31439 Formeln können auch mit römischen Zahlen und lateinischen Buchstaben nummeriert
31440  werden.
31441  Um z.
31442 \begin_inset space \thinspace{}
31443 \end_inset
31444
31445 B.
31446  mit kleinen römischen Zahlen zu nummerieren, gibt man vor der Formel im
31447  TeX-Modus den Befehl
31448 \end_layout
31449
31450 \begin_layout Standard
31451
31452 \series bold
31453
31454 \backslash
31455 renewcommand{
31456 \backslash
31457 theequation}{
31458 \backslash
31459 roman{equation}}
31460 \end_layout
31461
31462 \begin_layout Standard
31463 ein.
31464  
31465 \series bold
31466
31467 \backslash
31468 renewcommand
31469 \series default
31470
31471 \begin_inset Index idx
31472 status collapsed
31473
31474 \begin_layout Plain Layout
31475 Befehle ! R ! 
31476 \backslash
31477 renewcommand
31478 \end_layout
31479
31480 \end_inset
31481
31482  weist dem vordefinierten Befehl 
31483 \series bold
31484
31485 \backslash
31486 theequation
31487 \series default
31488  den Befehl
31489 \begin_inset Newline linebreak
31490 \end_inset
31491
31492
31493 \series bold
31494
31495 \backslash
31496 roman{equation}
31497 \series default
31498  zu.
31499 \begin_inset Foot
31500 status collapsed
31501
31502 \begin_layout Plain Layout
31503 Der Befehl 
31504 \series bold
31505
31506 \backslash
31507 renewcommand
31508 \series default
31509  besitzt dasselbe Schema wie der in 
31510 \begin_inset CommandInset ref
31511 LatexCommand ref
31512 reference "sub:Der-Befehl-newcommand"
31513
31514 \end_inset
31515
31516  beschriebene Befehl
31517 \begin_inset Newline newline
31518 \end_inset
31519
31520
31521 \series bold
31522
31523 \backslash
31524 newcommand
31525 \series default
31526 .
31527 \end_layout
31528
31529 \end_inset
31530
31531  
31532 \series bold
31533 equation
31534 \series default
31535  ist der Formelzähler.
31536  Stellt man einem Zähler den Befehl 
31537 \series bold
31538
31539 \backslash
31540 the
31541 \series default
31542  voran, bewirkt dies, dass der Wert des Zählers als arabische Zahl ausgegeben
31543  wird.
31544  Gibt man an, dass eine Formel nummeriert wird, setzt LaTeX intern den Befehl
31545  
31546 \series bold
31547
31548 \backslash
31549 theequation
31550 \series default
31551  hinter die Formel.
31552  
31553 \series bold
31554
31555 \backslash
31556 roman{equation}
31557 \begin_inset Index idx
31558 status collapsed
31559
31560 \begin_layout Plain Layout
31561 Befehle ! R ! 
31562 \backslash
31563 roman
31564 \end_layout
31565
31566 \end_inset
31567
31568
31569 \series default
31570  bewirkt, dass der Formelzähler als kleine römische Zahl erscheint.
31571 \end_layout
31572
31573 \begin_layout Standard
31574 Alle Formeln nach dem 
31575 \series bold
31576
31577 \backslash
31578 renewcommand
31579 \series default
31580 -Befehl werden nun römisch nummeriert.
31581  Um auf Nummerierung mit großen römischen Zahlen umzuschalten, gibt man
31582  den Befehl erneut ein, ersetzt aber 
31583 \series bold
31584
31585 \backslash
31586 roman
31587 \series default
31588  durch 
31589 \series bold
31590
31591 \backslash
31592 Roman
31593 \series default
31594
31595 \begin_inset Index idx
31596 status collapsed
31597
31598 \begin_layout Plain Layout
31599 Befehle ! R ! 
31600 \backslash
31601 roman@
31602 \backslash
31603 Roman
31604 \end_layout
31605
31606 \end_inset
31607
31608 .
31609  Für die 
31610 \begin_inset Quotes gld
31611 \end_inset
31612
31613 Nummerierung
31614 \begin_inset Quotes grd
31615 \end_inset
31616
31617  mit lateinischen Buchstaben gibt es den Befehl 
31618 \series bold
31619
31620 \backslash
31621 alph
31622 \series default
31623
31624 \begin_inset Index idx
31625 status collapsed
31626
31627 \begin_layout Plain Layout
31628 Befehle ! A ! 
31629 \backslash
31630 alph
31631 \end_layout
31632
31633 \end_inset
31634
31635  für kleine und 
31636 \series bold
31637
31638 \backslash
31639 Alph
31640 \series default
31641
31642 \begin_inset Index idx
31643 status collapsed
31644
31645 \begin_layout Plain Layout
31646 Befehle ! A ! 
31647 \backslash
31648 alph@
31649 \backslash
31650 Alph
31651 \end_layout
31652
31653 \end_inset
31654
31655  für große Buchstaben.
31656 \end_layout
31657
31658 \begin_layout Standard
31659 \begin_inset Note Greyedout
31660 status open
31661
31662 \begin_layout Plain Layout
31663
31664 \series bold
31665 \color none
31666 Achtung:
31667 \series default
31668  Es können nur maximal 26
31669 \begin_inset space ~
31670 \end_inset
31671
31672 Formeln in einem Dokument mit lateinischen Buchstaben nummeriert werden.
31673 \end_layout
31674
31675 \end_inset
31676
31677
31678 \end_layout
31679
31680 \begin_layout Standard
31681 \begin_inset ERT
31682 status collapsed
31683
31684 \begin_layout Plain Layout
31685
31686
31687 \backslash
31688 renewcommand{
31689 \backslash
31690 theequation}{
31691 \backslash
31692 roman{equation}}
31693 \end_layout
31694
31695 \end_inset
31696
31697
31698 \end_layout
31699
31700 \begin_layout Standard
31701 \begin_inset Formula 
31702 \begin{equation}
31703 A=\textrm{römisch}
31704 \end{equation}
31705
31706 \end_inset
31707
31708
31709 \begin_inset ERT
31710 status collapsed
31711
31712 \begin_layout Plain Layout
31713
31714
31715 \backslash
31716 renewcommand{
31717 \backslash
31718 theequation}{
31719 \backslash
31720 Roman{equation}}
31721 \end_layout
31722
31723 \end_inset
31724
31725
31726 \begin_inset Formula 
31727 \begin{equation}
31728 B=\textrm{Römisch}\label{eq:Roem}
31729 \end{equation}
31730
31731 \end_inset
31732
31733
31734 \begin_inset ERT
31735 status collapsed
31736
31737 \begin_layout Plain Layout
31738
31739
31740 \backslash
31741 renewcommand{
31742 \backslash
31743 theequation}{
31744 \backslash
31745 alph{equation}}
31746 \end_layout
31747
31748 \end_inset
31749
31750
31751 \begin_inset Formula 
31752 \begin{equation}
31753 C=\textrm{lateinisch}
31754 \end{equation}
31755
31756 \end_inset
31757
31758
31759 \begin_inset ERT
31760 status collapsed
31761
31762 \begin_layout Plain Layout
31763
31764
31765 \backslash
31766 renewcommand{
31767 \backslash
31768 theequation}{
31769 \backslash
31770 Alph{equation}}
31771 \end_layout
31772
31773 \end_inset
31774
31775
31776 \begin_inset Formula 
31777 \begin{equation}
31778 D=\textrm{Lateinisch}\label{eq:Lat}
31779 \end{equation}
31780
31781 \end_inset
31782
31783
31784 \end_layout
31785
31786 \begin_layout Standard
31787 Um wieder auf Standardnummerierung umzuschalten, gibt man folgenden Befehl
31788  ein:
31789 \end_layout
31790
31791 \begin_layout Standard
31792
31793 \series bold
31794
31795 \backslash
31796 renewcommand{
31797 \backslash
31798 theequation}{
31799 \backslash
31800 arabic{equation}}
31801 \begin_inset Index idx
31802 status collapsed
31803
31804 \begin_layout Plain Layout
31805 Befehle ! A ! 
31806 \backslash
31807 arabic
31808 \end_layout
31809
31810 \end_inset
31811
31812
31813 \end_layout
31814
31815 \begin_layout Standard
31816 \begin_inset ERT
31817 status collapsed
31818
31819 \begin_layout Plain Layout
31820
31821
31822 \backslash
31823 renewcommand{
31824 \backslash
31825 theequation}{
31826 \backslash
31827 arabic{equation}}
31828 \end_layout
31829
31830 \end_inset
31831
31832
31833 \begin_inset Formula 
31834 \begin{equation}
31835 E=\textrm{arabisch}
31836 \end{equation}
31837
31838 \end_inset
31839
31840
31841 \end_layout
31842
31843 \begin_layout Standard
31844 \begin_inset VSpace medskip
31845 \end_inset
31846
31847 Wie man sieht, werden die Formeln unabhängig von der Nummerierungsart durchnumme
31848 riert.
31849  Soll beim Wechsel der Nummerierungsart die Nummerierung wieder mit Eins
31850  beginnen, müssen neue Formelzähler angelegt werden.
31851  Eine Beschreibung dazu findet man in der Datei 
31852 \begin_inset CommandInset href
31853 LatexCommand href
31854 name "Formelnummerierung.lyx"
31855 target "run:Formelnummerierung.lyx"
31856
31857 \end_inset
31858
31859 .
31860 \end_layout
31861
31862 \begin_layout Section
31863 Chemische Symbole und Reaktionsgleichungen
31864 \begin_inset CommandInset label
31865 LatexCommand label
31866 name "sub:Chemische-Symbole-und"
31867
31868 \end_inset
31869
31870
31871 \begin_inset Index idx
31872 status collapsed
31873
31874 \begin_layout Plain Layout
31875 chemische Zeichen ! Symbole
31876 \end_layout
31877
31878 \end_inset
31879
31880
31881 \begin_inset Index idx
31882 status collapsed
31883
31884 \begin_layout Plain Layout
31885 Reaktionsgleichungen
31886 \end_layout
31887
31888 \end_inset
31889
31890
31891 \begin_inset Index idx
31892 status collapsed
31893
31894 \begin_layout Plain Layout
31895 Symbole ! chemische
31896 \end_layout
31897
31898 \end_inset
31899
31900
31901 \end_layout
31902
31903 \begin_layout Standard
31904 Ein Beispieltext aus der Chemie:
31905 \end_layout
31906
31907 \begin_layout Quote
31908 Das 
31909 \begin_inset Formula $\mathrm{SO_{4}^{2-}}$
31910 \end_inset
31911
31912 -Ion verbindet sich mit zwei 
31913 \begin_inset Formula $\mathrm{Na^{+}}$
31914 \end_inset
31915
31916 -Ionen zu Natriumsulfat 
31917 \begin_inset Formula $\left(\mathrm{Na_{2}SO_{4}}\right)$
31918 \end_inset
31919
31920 .
31921  Die Reaktionsgleichung dazu lautet:
31922 \begin_inset Formula 
31923 \begin{equation}
31924 \mathrm{2\, Na^{+}+SO_{4}^{2-}\longrightarrow Na_{2}SO_{4}}\label{eq:chemische-Reaktion}
31925 \end{equation}
31926
31927 \end_inset
31928
31929
31930 \end_layout
31931
31932 \begin_layout Standard
31933 Diese Reaktionsgleichung kann direkt als Formel erstellt werden.
31934  Damit die Symbole nicht kursiv erscheinen, markiert man sämtliche Zeichen
31935  in der Formel und wandelt diese mit der Tastenkombination 
31936 \family sans
31937 Alt+Z
31938 \begin_inset space ~
31939 \end_inset
31940
31941 R
31942 \family default
31943  in den aufrechten Schriftstil um.
31944 \begin_inset Foot
31945 status collapsed
31946
31947 \begin_layout Plain Layout
31948 Schriftstile siehe 
31949 \begin_inset CommandInset ref
31950 LatexCommand ref
31951 reference "sub:Schriftstile"
31952
31953 \end_inset
31954
31955
31956 \end_layout
31957
31958 \end_inset
31959
31960
31961 \end_layout
31962
31963 \begin_layout Standard
31964 Eine komfortablerer Weg chemische Formeln zu setzen, ist es den Befehl
31965 \series bold
31966  
31967 \backslash
31968 ce
31969 \series default
31970
31971 \begin_inset Index idx
31972 status collapsed
31973
31974 \begin_layout Plain Layout
31975 Befehle ! C ! 
31976 \backslash
31977 ce
31978 \end_layout
31979
31980 \end_inset
31981
31982  zu benutzen.
31983  Dieser ist verfügbar, wenn das LaTeX-Paket 
31984 \series bold
31985 mhchem
31986 \series default
31987
31988 \begin_inset Index idx
31989 status collapsed
31990
31991 \begin_layout Plain Layout
31992 Pakete ! mhchem
31993 \end_layout
31994
31995 \end_inset
31996
31997  installiert ist.
31998  Nachdem 
31999 \series bold
32000
32001 \backslash
32002 ce
32003 \series default
32004  in eine Formel eingefügt wurde, erscheint eine neue blaue Box in die chemische
32005  Formeln in intuitiver Weise eingegeben werden können.
32006 \end_layout
32007
32008 \begin_layout Standard
32009 \align center
32010 \begin_inset Tabular
32011 <lyxtabular version="3" rows="9" columns="2">
32012 <features rotate="0" tabularvalignment="middle">
32013 <column alignment="center" valignment="top">
32014 <column alignment="center" valignment="top">
32015 <row>
32016 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
32017 \begin_inset Text
32018
32019 \begin_layout Plain Layout
32020 Befehl
32021 \end_layout
32022
32023 \end_inset
32024 </cell>
32025 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
32026 \begin_inset Text
32027
32028 \begin_layout Plain Layout
32029 Ergebnis
32030 \begin_inset Note Note
32031 status collapsed
32032
32033 \begin_layout Plain Layout
32034
32035 \series bold
32036
32037 \backslash
32038 raisebox
32039 \series default
32040  dient nur als Abstandhalter.
32041 \end_layout
32042
32043 \end_inset
32044
32045
32046 \end_layout
32047
32048 \end_inset
32049 </cell>
32050 </row>
32051 <row>
32052 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
32053 \begin_inset Text
32054
32055 \begin_layout Plain Layout
32056
32057 \backslash
32058 ce
32059 \begin_inset space \textvisiblespace{}
32060 \end_inset
32061
32062 H2CO3
32063 \end_layout
32064
32065 \end_inset
32066 </cell>
32067 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
32068 \begin_inset Text
32069
32070 \begin_layout Plain Layout
32071 \begin_inset Formula $\raisebox{4.5mm}{}\ce{H2CO3}\raisebox{-2mm}{}$
32072 \end_inset
32073
32074
32075 \end_layout
32076
32077 \end_inset
32078 </cell>
32079 </row>
32080 <row>
32081 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
32082 \begin_inset Text
32083
32084 \begin_layout Plain Layout
32085
32086 \backslash
32087 ce
32088 \begin_inset space \textvisiblespace{}
32089 \end_inset
32090
32091 SO4^2-
32092 \end_layout
32093
32094 \end_inset
32095 </cell>
32096 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
32097 \begin_inset Text
32098
32099 \begin_layout Plain Layout
32100 \begin_inset Formula $\raisebox{5mm}{}\ce{SO4^{2-}}\raisebox{-2mm}{}$
32101 \end_inset
32102
32103
32104 \end_layout
32105
32106 \end_inset
32107 </cell>
32108 </row>
32109 <row>
32110 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
32111 \begin_inset Text
32112
32113 \begin_layout Plain Layout
32114
32115 \backslash
32116 ce
32117 \begin_inset space \textvisiblespace{}
32118 \end_inset
32119
32120 (NH4)2S
32121 \end_layout
32122
32123 \end_inset
32124 </cell>
32125 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
32126 \begin_inset Text
32127
32128 \begin_layout Plain Layout
32129 \begin_inset Formula $\raisebox{4.5mm}{}\ce{(NH4)2S}\raisebox{-2mm}{}$
32130 \end_inset
32131
32132
32133 \end_layout
32134
32135 \end_inset
32136 </cell>
32137 </row>
32138 <row>
32139 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
32140 \begin_inset Text
32141
32142 \begin_layout Plain Layout
32143
32144 \backslash
32145 ce
32146 \begin_inset space \textvisiblespace{}
32147 \end_inset
32148
32149 KCr(SO4)2.12H2O
32150 \end_layout
32151
32152 \end_inset
32153 </cell>
32154 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
32155 \begin_inset Text
32156
32157 \begin_layout Plain Layout
32158 \begin_inset Formula $\raisebox{4.5mm}{}\ce{KCr(SO4)2.12H2O}\raisebox{-2mm}{}$
32159 \end_inset
32160
32161
32162 \end_layout
32163
32164 \end_inset
32165 </cell>
32166 </row>
32167 <row>
32168 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
32169 \begin_inset Text
32170
32171 \begin_layout Plain Layout
32172
32173 \backslash
32174 ce
32175 \begin_inset space \textvisiblespace{}
32176 \end_inset
32177
32178 A-B
32179 \backslash
32180 dbond
32181 \begin_inset space \textvisiblespace{}
32182 \end_inset
32183
32184 C
32185 \backslash
32186 tbond
32187 \begin_inset space \textvisiblespace{}
32188 \end_inset
32189
32190 D
32191 \end_layout
32192
32193 \end_inset
32194 </cell>
32195 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
32196 \begin_inset Text
32197
32198 \begin_layout Plain Layout
32199 \begin_inset Formula $\raisebox{4.5mm}{}\ce{A-B\dbond C\tbond D}\raisebox{-2mm}{}$
32200 \end_inset
32201
32202
32203 \end_layout
32204
32205 \end_inset
32206 </cell>
32207 </row>
32208 <row>
32209 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
32210 \begin_inset Text
32211
32212 \begin_layout Plain Layout
32213
32214 \backslash
32215 ce
32216 \begin_inset space \textvisiblespace{}
32217 \end_inset
32218
32219 ^227
32220 \begin_inset Formula $\downarrow$
32221 \end_inset
32222
32223 _90
32224 \begin_inset Formula $\to$
32225 \end_inset
32226
32227 Th+
32228 \end_layout
32229
32230 \end_inset
32231 </cell>
32232 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
32233 \begin_inset Text
32234
32235 \begin_layout Plain Layout
32236 \begin_inset Formula $\raisebox{5mm}{}\ce{_{90}^{227}Th+}\raisebox{-2mm}{}$
32237 \end_inset
32238
32239
32240 \end_layout
32241
32242 \end_inset
32243 </cell>
32244 </row>
32245 <row>
32246 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
32247 \begin_inset Text
32248
32249 \begin_layout Plain Layout
32250
32251 \backslash
32252 ce
32253 \begin_inset space \textvisiblespace{}
32254 \end_inset
32255
32256 CO2
32257 \begin_inset space \textvisiblespace{}
32258 \end_inset
32259
32260 +
32261 \begin_inset space \textvisiblespace{}
32262 \end_inset
32263
32264 C
32265 \begin_inset space \textvisiblespace{}
32266 \end_inset
32267
32268 <=>
32269 \begin_inset space \textvisiblespace{}
32270 \end_inset
32271
32272 2CO
32273 \end_layout
32274
32275 \end_inset
32276 </cell>
32277 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
32278 \begin_inset Text
32279
32280 \begin_layout Plain Layout
32281 \begin_inset Formula $\raisebox{4.5mm}{}\ce{CO2 + C <=> 2CO}\raisebox{-2mm}{}$
32282 \end_inset
32283
32284
32285 \end_layout
32286
32287 \end_inset
32288 </cell>
32289 </row>
32290 <row>
32291 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
32292 \begin_inset Text
32293
32294 \begin_layout Plain Layout
32295
32296 \backslash
32297 ce
32298 \begin_inset space \textvisiblespace{}
32299 \end_inset
32300
32301 CO2
32302 \begin_inset space \textvisiblespace{}
32303 \end_inset
32304
32305 +
32306 \begin_inset space \textvisiblespace{}
32307 \end_inset
32308
32309 C
32310 \begin_inset space \textvisiblespace{}
32311 \end_inset
32312
32313 ->[
32314 \backslash
32315 alpha][
32316 \backslash
32317 beta]
32318 \begin_inset space \textvisiblespace{}
32319 \end_inset
32320
32321 2CO}
32322 \end_layout
32323
32324 \end_inset
32325 </cell>
32326 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
32327 \begin_inset Text
32328
32329 \begin_layout Plain Layout
32330 \begin_inset Formula $\raisebox{5mm}{}\ce{CO2 + C ->[\alpha][\beta] 2CO}\raisebox{-4mm}{}$
32331 \end_inset
32332
32333
32334 \end_layout
32335
32336 \end_inset
32337 </cell>
32338 </row>
32339 </lyxtabular>
32340
32341 \end_inset
32342
32343
32344 \end_layout
32345
32346 \begin_layout Standard
32347 \begin_inset Note Greyedout
32348 status open
32349
32350 \begin_layout Plain Layout
32351
32352 \series bold
32353 \color none
32354 Achtung:
32355 \series default
32356  Wenn eine Formel in eine 
32357 \series bold
32358
32359 \backslash
32360 ce
32361 \series default
32362 -Box eingefügt wird, führt dies zu LaTeX-Fehlern.
32363  In diesem Fall muss daher TeX-Code verwendet werden, wie z.
32364 \begin_inset space \thinspace{}
32365 \end_inset
32366
32367 B.
32368  für
32369 \begin_inset Newline newline
32370 \end_inset
32371
32372
32373 \series bold
32374
32375 \backslash
32376 ce{$
32377 \backslash
32378 mu
32379 \backslash
32380 hyphen$Cl}
32381 \series default
32382
32383 \begin_inset ERT
32384 status collapsed
32385
32386 \begin_layout Plain Layout
32387
32388
32389 \backslash
32390 ce{$
32391 \backslash
32392 mu
32393 \backslash
32394 hyphen$Cl}
32395 \end_layout
32396
32397 \end_inset
32398
32399  
32400 \end_layout
32401
32402 \end_inset
32403
32404
32405 \end_layout
32406
32407 \begin_layout Standard
32408 \begin_inset Note Greyedout
32409 status open
32410
32411 \begin_layout Plain Layout
32412
32413 \series bold
32414 \color none
32415 Achtung:
32416 \series default
32417  Es ist nicht möglich in LyX das Zeichen ^ zu verwenden um einen Pfeil nach
32418  oben zu bekommen, wie es im 
32419 \series bold
32420 mhchem
32421 \series default
32422 -Handbuch steht.
32423  Man verwendet stattdessen einen kleinen negativen Leerraum gefolgt vom
32424  Befehl 
32425 \series bold
32426
32427 \backslash
32428 uparrow
32429 \series default
32430 :
32431 \begin_inset Newline newline
32432 \end_inset
32433
32434
32435 \begin_inset Formula $\ce{Fe + 2H+ -> Fe^{2+} + H2\negthinspace\uparrow}$
32436 \end_inset
32437
32438
32439 \end_layout
32440
32441 \end_inset
32442
32443
32444 \end_layout
32445
32446 \begin_layout Standard
32447 Wird 
32448 \series bold
32449
32450 \backslash
32451 ce
32452 \series default
32453  benutzt, lautet der Befehl für Gleichung
32454 \begin_inset space ~
32455 \end_inset
32456
32457
32458 \begin_inset CommandInset ref
32459 LatexCommand eqref
32460 reference "eq:chemische-Reaktion"
32461
32462 \end_inset
32463
32464 :
32465 \begin_inset Newline newline
32466 \end_inset
32467
32468
32469 \series bold
32470  
32471 \backslash
32472 ce
32473 \series default
32474
32475 \begin_inset space \textvisiblespace{}
32476 \end_inset
32477
32478
32479 \series bold
32480 2Na+
32481 \series default
32482
32483 \begin_inset space \textvisiblespace{}
32484 \end_inset
32485
32486
32487 \series bold
32488 +
32489 \series default
32490
32491 \begin_inset space \textvisiblespace{}
32492 \end_inset
32493
32494
32495 \series bold
32496 SO4^2-
32497 \series default
32498
32499 \begin_inset space \textvisiblespace{}
32500 \end_inset
32501
32502
32503 \begin_inset space \textvisiblespace{}
32504 \end_inset
32505
32506
32507 \series bold
32508 ->
32509 \series default
32510
32511 \begin_inset space \textvisiblespace{}
32512 \end_inset
32513
32514
32515 \series bold
32516 Na2SO4
32517 \end_layout
32518
32519 \begin_layout Standard
32520 Um mehrzeilige chemische Gleichungen zu erzeugen, wird zuerst eine mehrzeilige
32521  Formel erstellt, wie in 
32522 \begin_inset CommandInset ref
32523 LatexCommand ref
32524 reference "sec:Mehrzeilige-Formeln"
32525
32526 \end_inset
32527
32528  beschrieben.
32529  Anschließend wird in jeder kleinen blauen Box der Formel der Befehl 
32530 \series bold
32531
32532 \backslash
32533 ce
32534 \series default
32535  verwendet.
32536  
32537 \begin_inset CommandInset ref
32538 LatexCommand eqref
32539 reference "eq:TEOS-Reaktion-1"
32540
32541 \end_inset
32542
32543  und 
32544 \begin_inset CommandInset ref
32545 LatexCommand eqref
32546 reference "eq:TEOS-Reaktion-2"
32547
32548 \end_inset
32549
32550  sind ein Beispiel für eine mehrstufige chemische Reaktion, bei der jede
32551  Gleichung eine eigene Nummer hat.
32552 \begin_inset Formula 
32553 \begin{eqnarray}
32554 \ce{TEOS + 4O} & \ce{->} & \ce{Si(OH)4 + 4C2H4O}\label{eq:TEOS-Reaktion-1}\\
32555 \ce{Si(OH)4} & \ce{->} & \ce{SiO2 + 2H2O}\label{eq:TEOS-Reaktion-2}
32556 \end{eqnarray}
32557
32558 \end_inset
32559
32560
32561 \end_layout
32562
32563 \begin_layout Standard
32564 Außer 
32565 \series bold
32566
32567 \backslash
32568 ce
32569 \series default
32570  bietet das Paket 
32571 \series bold
32572 mhchem
32573 \series default
32574  noch den Befehl 
32575 \series bold
32576
32577 \backslash
32578 cf
32579 \series default
32580
32581 \begin_inset Index idx
32582 status collapsed
32583
32584 \begin_layout Plain Layout
32585 Befehle ! C ! 
32586 \backslash
32587 cf
32588 \end_layout
32589
32590 \end_inset
32591
32592  für spezielle Fälle.
32593  Mehr über 
32594 \series bold
32595
32596 \backslash
32597 cf
32598 \series default
32599  und weitere Beispiele sind in der Dokumentation von 
32600 \series bold
32601 mhchem
32602 \series default
32603  zu finden, 
32604 \begin_inset CommandInset citation
32605 LatexCommand cite
32606 key "mhchem"
32607
32608 \end_inset
32609
32610 .
32611 \end_layout
32612
32613 \begin_layout Section
32614 Diagramme
32615 \end_layout
32616
32617 \begin_layout Standard
32618 LyX unterstützt zwei Typen kommutativer Diagramme: 
32619 \series bold
32620 amscd
32621 \series default
32622  und 
32623 \series bold
32624 xymatrix
32625 \series default
32626 , die im Folgenden erläutert sind.
32627 \end_layout
32628
32629 \begin_layout Subsection
32630 amscd Diagramme
32631 \begin_inset Index idx
32632 status collapsed
32633
32634 \begin_layout Plain Layout
32635 Diagramme ! amscd
32636 \end_layout
32637
32638 \end_inset
32639
32640
32641 \end_layout
32642
32643 \begin_layout Standard
32644 Diagramme dieses Typs stellen Beziehungen mittels horizontaler und vertikaler
32645  Linien oder Pfeilen dar:
32646 \begin_inset Formula 
32647 \[
32648 \begin{CD}A@>>>B@>>>C\\
32649 @AAA@.@VVV\\
32650 F@<<<E@<<<D
32651 \end{CD}
32652 \]
32653
32654 \end_inset
32655
32656
32657 \end_layout
32658
32659 \begin_layout Standard
32660 Um sie zu erstellen, gibt man in einer Formel den Befehl 
32661 \series bold
32662
32663 \backslash
32664 CD
32665 \begin_inset Index idx
32666 status collapsed
32667
32668 \begin_layout Plain Layout
32669 Befehle ! C ! 
32670 \backslash
32671 CD
32672 \end_layout
32673
32674 \end_inset
32675
32676
32677 \series default
32678  ein.
32679  Es erscheint ein blaues Kästchen mit zwei gestrichelten Linien, in das
32680  man die weiteren Befehle eingibt.
32681  Mit 
32682 \series bold
32683
32684 \begin_inset ERT
32685 status collapsed
32686
32687 \begin_layout Plain Layout
32688
32689
32690 \backslash
32691 mbox{
32692 \end_layout
32693
32694 \end_inset
32695
32696
32697 \family sans
32698 \series default
32699 Strg+Enter
32700 \family default
32701 \series bold
32702
32703 \begin_inset ERT
32704 status collapsed
32705
32706 \begin_layout Plain Layout
32707
32708 }
32709 \end_layout
32710
32711 \end_inset
32712
32713
32714 \series default
32715  wird eine neue Zeile erstellt.
32716  Horizontale Beziehungen werden in ungerade Zeilen, vertikale in gerade
32717  Zeilen der Formel eingegeben.
32718 \end_layout
32719
32720 \begin_layout Standard
32721 Zum Erstellen der Beziehungen gibt es folgende Befehle:
32722 \end_layout
32723
32724 \begin_layout Itemize
32725
32726 \series bold
32727 @<<<
32728 \series default
32729  erstellt einen Linkspfeil, 
32730 \series bold
32731 @>>>
32732 \series default
32733  einen Rechtspfeil und 
32734 \series bold
32735 @=
32736 \series default
32737  ein langes Gleichheitszeichen
32738 \end_layout
32739
32740 \begin_layout Itemize
32741
32742 \series bold
32743 @AAA
32744 \series default
32745  erstellt einen Pfeil nach oben, 
32746 \series bold
32747 @VVV
32748 \series default
32749  einen Pfeil nach unten und 
32750 \series bold
32751 @|
32752 \series default
32753  ein senkrechtes Gleichheitszeichen
32754 \end_layout
32755
32756 \begin_layout Itemize
32757
32758 \series bold
32759 @.
32760
32761 \series default
32762  dient als Platzhalter für nicht vorhandene Beziehungen
32763 \end_layout
32764
32765 \begin_layout Standard
32766 Alle Pfeile sind wie folgt beschriftbar:
32767 \end_layout
32768
32769 \begin_layout Itemize
32770 Wird bei horizontalen Pfeilen zwischen dem ersten und zweiten < bzw.
32771 \begin_inset space \space{}
32772 \end_inset
32773
32774 > Text eingegeben, erscheint er über dem Pfeil.
32775  Wird der Text zwischen dem zweiten und dritten < bzw.
32776 \begin_inset space \space{}
32777 \end_inset
32778
32779 > eingegeben, erscheint er unter dem Pfeil.
32780 \end_layout
32781
32782 \begin_layout Itemize
32783 Wird bei vertikalen Pfeilen Text zwischen erstem und zweitem A bzw.
32784 \begin_inset space \space{}
32785 \end_inset
32786
32787 V eingegeben, erscheint er links neben dem Pfeil.
32788  Bei Eingabe zwischen zweitem und drittem A bzw.
32789 \begin_inset space \space{}
32790 \end_inset
32791
32792 V erscheint er rechts daneben.
32793  Enthält der Text ein A oder V, müssen diese Buchstaben in eine TeX-Klammer
32794  gesetzt werden.
32795 \end_layout
32796
32797 \begin_layout Standard
32798 Als Beispiel ein Diagramm mit allen möglichen Beziehungen:
32799 \end_layout
32800
32801 \begin_layout Standard
32802 \begin_inset Formula 
32803 \[
32804 \begin{CD}A@>j>>B@>>k>C@=F\\
32805 @AmAA@.@VV{V}V@|\\
32806 D@<<j<E@>k>>F@=C
32807 \end{CD}
32808 \]
32809
32810 \end_inset
32811
32812
32813 \end_layout
32814
32815 \begin_layout Standard
32816 Der Befehl dazu lautet:
32817 \begin_inset Newline newline
32818 \end_inset
32819
32820
32821 \series bold
32822
32823 \backslash
32824 CD
32825 \begin_inset space \textvisiblespace{}
32826 \end_inset
32827
32828 A@>j>>B@>>k>C@=F Strg+Enter
32829 \begin_inset Newline newline
32830 \end_inset
32831
32832
32833 \begin_inset Phantom HPhantom
32834 status open
32835
32836 \begin_layout Plain Layout
32837
32838 \series bold
32839
32840 \backslash
32841 CD
32842 \begin_inset space \textvisiblespace{}
32843 \end_inset
32844
32845
32846 \end_layout
32847
32848 \end_inset
32849
32850 @AmAA@.@VV
32851 \backslash
32852 {V
32853 \series default
32854
32855 \begin_inset Formula $\to$
32856 \end_inset
32857
32858
32859 \series bold
32860 V@| Strg+Enter
32861 \begin_inset Newline newline
32862 \end_inset
32863
32864
32865 \begin_inset Phantom HPhantom
32866 status open
32867
32868 \begin_layout Plain Layout
32869
32870 \series bold
32871
32872 \backslash
32873 CD
32874 \begin_inset space \textvisiblespace{}
32875 \end_inset
32876
32877
32878 \end_layout
32879
32880 \end_inset
32881
32882 D@<<j<E@>k>>F@=C
32883 \end_layout
32884
32885 \begin_layout Subsection
32886 xymatrix Diagramme
32887 \begin_inset Index idx
32888 status collapsed
32889
32890 \begin_layout Plain Layout
32891 Diagramme ! xymatrix
32892 \end_layout
32893
32894 \end_inset
32895
32896
32897 \end_layout
32898
32899 \begin_layout Standard
32900 Um Xymatrizen nutzen zu können, muss das LaTeX-Paket 
32901 \series bold
32902 xypic
32903 \series default
32904  installiert sein.
32905  Eine Xymatrix wird erstellt, indem der Befehl 
32906 \series bold
32907
32908 \backslash
32909 xymatrix
32910 \series default
32911  in eine Formel eingegeben wird.
32912  Dann können Sie neue Matrixspalten und -zeilen wie bei normalen Matrizen
32913  hinzufügen, siehe 
32914 \begin_inset CommandInset ref
32915 LatexCommand ref
32916 reference "sec:Matrizen"
32917
32918 \end_inset
32919
32920 .
32921 \end_layout
32922
32923 \begin_layout Standard
32924 Im Gegensatz zu amscd Diagrammen, unterstützen Xymatrixen diagonale und
32925  gekrümmte Pfeile und vieles mehr.
32926  Alle Möglichkeiten kommutative Diagramme und Dekorationen zu erzeugen,
32927  sind im Detail im 
32928 \emph on
32929 XY-pic-Handbuch
32930 \emph default
32931  erklärt, dass im Menü 
32932 \family sans
32933 Hilfe\SpecialChar \menuseparator
32934 Spezielle
32935 \begin_inset space ~
32936 \end_inset
32937
32938 Handbücher
32939 \family default
32940  zu finden ist.
32941 \end_layout
32942
32943 \begin_layout Subsection
32944
32945 \noun on
32946 Feynman
32947 \noun default
32948  Diagramme
32949 \begin_inset Index idx
32950 status collapsed
32951
32952 \begin_layout Plain Layout
32953 Diagramme ! Feynman
32954 \end_layout
32955
32956 \end_inset
32957
32958
32959 \end_layout
32960
32961 \begin_layout Standard
32962 Um 
32963 \noun on
32964 Feynman-
32965 \noun default
32966 Diagrammen nutzen zu können, muss das LaTeX-Paket 
32967 \series bold
32968 feyn
32969 \series default
32970  installiert sein.
32971  Ein 
32972 \noun on
32973 Feynman-
32974 \noun default
32975 Diagramm wird erstellt, indem der Befehl 
32976 \series bold
32977
32978 \backslash
32979 Diagram
32980 \series default
32981  in eine Formel eingegeben wird.
32982  Dann können Sie neue Matrixspalten und -zeilen wie bei normalen Matrizen
32983  hinzufügen, siehe 
32984 \begin_inset CommandInset ref
32985 LatexCommand ref
32986 reference "sec:Matrizen"
32987
32988 \end_inset
32989
32990 .
32991 \end_layout
32992
32993 \begin_layout Standard
32994 Beispiele wie man in LyX 
32995 \noun on
32996 Feynman-
32997 \noun default
32998 Diagramme erstellt sind im 
32999 \emph on
33000 Feynman-Diagramm Handbuch
33001 \emph default
33002  gegeben, dass im Menü 
33003 \family sans
33004 Hilfe\SpecialChar \menuseparator
33005 Spezielle
33006 \begin_inset space ~
33007 \end_inset
33008
33009 Handbücher
33010 \family default
33011  zu finden ist.
33012 \end_layout
33013
33014 \begin_layout Section
33015 Benutzerdefinierte Befehle
33016 \begin_inset CommandInset label
33017 LatexCommand label
33018 name "sec:Benutzerdefinierte-Befehle"
33019
33020 \end_inset
33021
33022
33023 \begin_inset Index idx
33024 status collapsed
33025
33026 \begin_layout Plain Layout
33027 benutzerdefinierte Befehle
33028 \end_layout
33029
33030 \end_inset
33031
33032
33033 \end_layout
33034
33035 \begin_layout Standard
33036 \begin_inset Note Greyedout
33037 status open
33038
33039 \begin_layout Plain Layout
33040
33041 \series bold
33042 Achtung: 
33043 \series default
33044 Die Namen von benutzerdefinierten Befehlen und Makros dürfen nur aus lateinische
33045 n Buchstaben bestehen.
33046 \end_layout
33047
33048 \end_inset
33049
33050
33051 \end_layout
33052
33053 \begin_layout Subsection
33054 Der Befehl 
33055 \backslash
33056 newcommand
33057 \begin_inset CommandInset label
33058 LatexCommand label
33059 name "sub:Der-Befehl-newcommand"
33060
33061 \end_inset
33062
33063
33064 \begin_inset Index idx
33065 status collapsed
33066
33067 \begin_layout Plain Layout
33068 benutzerdefinierte Befehle ! 
33069 \backslash
33070 newcommand
33071 \end_layout
33072
33073 \end_inset
33074
33075
33076 \begin_inset Index idx
33077 status collapsed
33078
33079 \begin_layout Plain Layout
33080 Befehle ! N ! 
33081 \backslash
33082 newcommand
33083 \end_layout
33084
33085 \end_inset
33086
33087
33088 \end_layout
33089
33090 \begin_layout Standard
33091 Viele der LaTeX-Befehle sind für den ständigen Gebrauch viel zu lang.
33092  Man kann sich aber mit dem Befehl 
33093 \series bold
33094
33095 \backslash
33096 newcommand
33097 \series default
33098  neue kürzere Befehle definieren.
33099 \end_layout
33100
33101 \begin_layout Standard
33102 Das Befehlsschema von 
33103 \series bold
33104
33105 \backslash
33106 newcommand
33107 \series default
33108  lautet:
33109 \end_layout
33110
33111 \begin_layout Standard
33112
33113 \series bold
33114
33115 \backslash
33116 newcommand{neuer Befehlsname}[Argumentanzahl][optionaler
33117 \series default
33118  
33119 \series bold
33120 Wert]
33121 \begin_inset Newline newline
33122 \end_inset
33123
33124
33125 \begin_inset Phantom HPhantom
33126 status open
33127
33128 \begin_layout Plain Layout
33129
33130 \series bold
33131
33132 \backslash
33133 newcommand
33134 \end_layout
33135
33136 \end_inset
33137
33138 {Befehlsdefinition}
33139 \end_layout
33140
33141 \begin_layout Standard
33142 \begin_inset Note Greyedout
33143 status open
33144
33145 \begin_layout Plain Layout
33146
33147 \series bold
33148 Achtung:
33149 \series default
33150  Es muss darauf geachtet werden, dass der Befehlsname nicht schon im Dokument
33151  oder von benutzten LaTeX-Paketen verwendet wird.
33152  Definiert man beispielsweise für 
33153 \series bold
33154
33155 \backslash
33156 Leftarrow
33157 \series default
33158  den Befehl 
33159 \series bold
33160
33161 \backslash
33162 le
33163 \series default
33164 , erhält man eine Fehlermeldung, denn 
33165 \series bold
33166
33167 \backslash
33168 le
33169 \series default
33170  ist schon für 
33171 \begin_inset Quotes gld
33172 \end_inset
33173
33174
33175 \begin_inset Formula $\le$
33176 \end_inset
33177
33178
33179 \begin_inset Quotes grd
33180 \end_inset
33181
33182  definiert.
33183 \end_layout
33184
33185 \end_inset
33186
33187
33188 \end_layout
33189
33190 \begin_layout Standard
33191 Die Argumentanzahl ist eine ganze Zahl im Bereich 0
33192 \begin_inset space \thinspace{}
33193 \end_inset
33194
33195 -
33196 \begin_inset space \thinspace{}
33197 \end_inset
33198
33199 9 und gibt an, wie viele Argumente der neue Befehl haben soll.
33200  Als optionalen Wert kann man den Wert für ein optionales Argument voreinstellen.
33201  Wenn man dies macht, bedeutet das gleichzeitig, dass das 
33202 \emph on
33203 erste
33204 \emph default
33205  Argument des neuen Befehls ein optionales ist.
33206 \end_layout
33207
33208 \begin_layout Standard
33209 Es folgen einige Beispiele:
33210 \end_layout
33211
33212 \begin_layout Itemize
33213 Will man für 
33214 \series bold
33215
33216 \backslash
33217 Longrightarrow
33218 \series default
33219  den Befehl 
33220 \series bold
33221
33222 \backslash
33223 gr
33224 \series default
33225  definieren, lautet die LaTeX-Vor\SpecialChar \-
33226 spannzeile:
33227 \begin_inset VSpace medskip
33228 \end_inset
33229
33230
33231 \begin_inset Newline newline
33232 \end_inset
33233
33234
33235 \series bold
33236
33237 \backslash
33238 newcommand{
33239 \backslash
33240 gr}{
33241 \backslash
33242 Longrightarrow}
33243 \end_layout
33244
33245 \begin_layout Itemize
33246 Um für den Befehl 
33247 \series bold
33248
33249 \backslash
33250 underline
33251 \series default
33252  den Befehl 
33253 \series bold
33254
33255 \backslash
33256 us
33257 \series default
33258  zu definieren, muss das Argument (was unterstrichen werden soll) berücksichtigt
33259  werden.
33260  Dazu sieht die Vorspannzeile wie folgt aus:
33261 \begin_inset VSpace medskip
33262 \end_inset
33263
33264
33265 \begin_inset Newline newline
33266 \end_inset
33267
33268
33269 \series bold
33270
33271 \backslash
33272 newcommand{
33273 \backslash
33274 us}[1]{
33275 \backslash
33276 underline{#1}}
33277 \series default
33278
33279 \begin_inset VSpace medskip
33280 \end_inset
33281
33282
33283 \begin_inset Newline newline
33284 \end_inset
33285
33286 Das Zeichen 
33287 \series bold
33288 #
33289 \series default
33290  fungiert als Argumentplatzhalter, die 
33291 \series bold
33292 1
33293 \series default
33294  dahinter gibt an, dass es der Platzhalter für das erste Argument ist.
33295 \end_layout
33296
33297 \begin_layout Itemize
33298 Für 
33299 \series bold
33300
33301 \backslash
33302 framebox
33303 \series default
33304  kann man z.
33305 \begin_inset space \thinspace{}
33306 \end_inset
33307
33308 B.
33309  den Befehl 
33310 \series bold
33311
33312 \backslash
33313 fb
33314 \series default
33315  definieren:
33316 \begin_inset VSpace medskip
33317 \end_inset
33318
33319
33320 \begin_inset Newline newline
33321 \end_inset
33322
33323
33324 \series bold
33325
33326 \backslash
33327 newcommand{
33328 \backslash
33329 fb}[3]{
33330 \backslash
33331 framebox#1#2{$#3$}}
33332 \series default
33333
33334 \begin_inset VSpace medskip
33335 \end_inset
33336
33337
33338 \begin_inset Newline newline
33339 \end_inset
33340
33341 Die beiden Dollarzeichen erstellen hierbei die für 
33342 \series bold
33343
33344 \backslash
33345 framebox
33346 \series default
33347  geforderte weitere Formel, siehe 
33348 \begin_inset CommandInset ref
33349 LatexCommand ref
33350 reference "sub:Boxen-mit-Rahmen"
33351
33352 \end_inset
33353
33354 .
33355 \end_layout
33356
33357 \begin_layout Itemize
33358 Um einen neuen Befehl für 
33359 \series bold
33360
33361 \backslash
33362 fcolorbox
33363 \series default
33364  zu erstellen, bei dem die Farbe der Box nicht mehr angegeben werden muss,
33365  definiert man das Argument für die Farbe als optional:
33366 \begin_inset VSpace medskip
33367 \end_inset
33368
33369
33370 \begin_inset Newline newline
33371 \end_inset
33372
33373
33374 \series bold
33375
33376 \backslash
33377 newcommand{
33378 \backslash
33379 cb}[3][white]{
33380 \backslash
33381 fcolorbox{#2}{#1}{$#3$}}
33382 \series default
33383
33384 \begin_inset VSpace medskip
33385 \end_inset
33386
33387
33388 \begin_inset Newline newline
33389 \end_inset
33390
33391 Gibt man bei der Verwendung von 
33392 \series bold
33393
33394 \backslash
33395 cb
33396 \series default
33397  die Farbe nicht an, wird die voreingestellte Farbe 
33398 \series bold
33399 white
33400 \series default
33401  verwendet.
33402 \end_layout
33403
33404 \begin_layout Standard
33405 Ein Test der neu definierten Befehle:
33406 \end_layout
33407
33408 \begin_layout Standard
33409 \align center
33410 \begin_inset Tabular
33411 <lyxtabular version="3" rows="6" columns="2">
33412 <features rotate="0" tabularvalignment="middle">
33413 <column alignment="center" valignment="top">
33414 <column alignment="center" valignment="top">
33415 <row>
33416 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
33417 \begin_inset Text
33418
33419 \begin_layout Plain Layout
33420 Befehl
33421 \end_layout
33422
33423 \end_inset
33424 </cell>
33425 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
33426 \begin_inset Text
33427
33428 \begin_layout Plain Layout
33429 Ergebnis
33430 \begin_inset Note Note
33431 status collapsed
33432
33433 \begin_layout Plain Layout
33434
33435 \series bold
33436
33437 \backslash
33438 raisebox
33439 \series default
33440  dient nur als Abstandhalter.
33441 \end_layout
33442
33443 \end_inset
33444
33445
33446 \end_layout
33447
33448 \end_inset
33449 </cell>
33450 </row>
33451 <row>
33452 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33453 \begin_inset Text
33454
33455 \begin_layout Plain Layout
33456 A
33457 \backslash
33458 gr
33459 \begin_inset space \textvisiblespace{}
33460 \end_inset
33461
33462 B
33463 \end_layout
33464
33465 \end_inset
33466 </cell>
33467 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33468 \begin_inset Text
33469
33470 \begin_layout Plain Layout
33471 \begin_inset Formula $A\gr B$
33472 \end_inset
33473
33474
33475 \end_layout
33476
33477 \end_inset
33478 </cell>
33479 </row>
33480 <row>
33481 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33482 \begin_inset Text
33483
33484 \begin_layout Plain Layout
33485
33486 \backslash
33487 us{ABcd
33488 \end_layout
33489
33490 \end_inset
33491 </cell>
33492 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33493 \begin_inset Text
33494
33495 \begin_layout Plain Layout
33496 \begin_inset Formula $\raisebox{4.5mm}{}\us{ABcd}\raisebox{-2mm}{}$
33497 \end_inset
33498
33499
33500 \end_layout
33501
33502 \end_inset
33503 </cell>
33504 </row>
33505 <row>
33506 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33507 \begin_inset Text
33508
33509 \begin_layout Plain Layout
33510
33511 \backslash
33512 fb{[2cm]
33513 \begin_inset Formula $\to$
33514 \end_inset
33515
33516
33517 \backslash
33518 {
33519 \begin_inset Formula $\to$
33520 \end_inset
33521
33522
33523 \backslash
33524 {
33525 \backslash
33526 int
33527 \begin_inset space \textvisiblespace{}
33528 \end_inset
33529
33530 A=B
33531 \end_layout
33532
33533 \end_inset
33534 </cell>
33535 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33536 \begin_inset Text
33537
33538 \begin_layout Plain Layout
33539 \begin_inset Formula $\raisebox{6mm}{}\fb{[2cm]}{}{\int A=B}\raisebox{-4mm}{}$
33540 \end_inset
33541
33542
33543 \end_layout
33544
33545 \end_inset
33546 </cell>
33547 </row>
33548 <row>
33549 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33550 \begin_inset Text
33551
33552 \begin_layout Plain Layout
33553
33554 \backslash
33555 cb{red
33556 \begin_inset Formula $\to$
33557 \end_inset
33558
33559
33560 \backslash
33561 {
33562 \backslash
33563 int
33564 \begin_inset space \textvisiblespace{}
33565 \end_inset
33566
33567 A=B
33568 \end_layout
33569
33570 \end_inset
33571 </cell>
33572 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33573 \begin_inset Text
33574
33575 \begin_layout Plain Layout
33576 \begin_inset Formula $\raisebox{6mm}{}\cb{red}{\int A=B}\raisebox{-4mm}{}$
33577 \end_inset
33578
33579
33580 \end_layout
33581
33582 \end_inset
33583 </cell>
33584 </row>
33585 <row>
33586 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
33587 \begin_inset Text
33588
33589 \begin_layout Plain Layout
33590
33591 \backslash
33592 cb[green]
33593 \backslash
33594 {red
33595 \begin_inset Formula $\to$
33596 \end_inset
33597
33598
33599 \backslash
33600 {
33601 \backslash
33602 int
33603 \begin_inset space \textvisiblespace{}
33604 \end_inset
33605
33606 A=B
33607 \end_layout
33608
33609 \end_inset
33610 </cell>
33611 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
33612 \begin_inset Text
33613
33614 \begin_layout Plain Layout
33615 \begin_inset Formula $\raisebox{6mm}{}\cb[green]{red}{\int A=B}\raisebox{-4mm}{}$
33616 \end_inset
33617
33618
33619 \end_layout
33620
33621 \end_inset
33622 </cell>
33623 </row>
33624 </lyxtabular>
33625
33626 \end_inset
33627
33628
33629 \end_layout
33630
33631 \begin_layout Subsection
33632 Mathe-Makros
33633 \begin_inset Index idx
33634 status collapsed
33635
33636 \begin_layout Plain Layout
33637 benutzerdefinierte Befehle ! Mathe-Makros
33638 \end_layout
33639
33640 \end_inset
33641
33642
33643 \begin_inset Index idx
33644 status collapsed
33645
33646 \begin_layout Plain Layout
33647 Makros
33648 \end_layout
33649
33650 \end_inset
33651
33652
33653 \end_layout
33654
33655 \begin_layout Standard
33656 Besonders praktisch sind eigene Befehle für komplexe Ausdrücke.
33657  Hat man es in einem Dokument z.
33658 \begin_inset space \thinspace{}
33659 \end_inset
33660
33661 B.
33662  häufiger mit quadratischen Gleichungen zu tun, tritt immer derselbe Lösungstyp
33663  auf.
33664  Die allgemeine Form einer quadratischen Gleichung ist
33665 \begin_inset Formula 
33666 \[
33667 0=\lambda^{2}+p\lambda+q
33668 \]
33669
33670 \end_inset
33671
33672 Die allgemeine Form der Lösung lautet
33673 \begin_inset Formula 
33674 \[
33675 \lambda_{1,2}=-\frac{p}{2}\pm\sqrt{\frac{p²}{4}-q}
33676 \]
33677
33678 \end_inset
33679
33680
33681 \end_layout
33682
33683 \begin_layout Standard
33684 Um für die Lösungsformel einen Befehl zu definieren, bei dem nur noch die
33685  drei Parameter 
33686 \begin_inset Formula $\lambda$
33687 \end_inset
33688
33689
33690 \begin_inset Formula $p$
33691 \end_inset
33692
33693  und 
33694 \begin_inset Formula $q$
33695 \end_inset
33696
33697  angegeben werden müssen und der Index von 
33698 \begin_inset Formula $\lambda$
33699 \end_inset
33700
33701  optional angeben werden kann, lautet die LaTeX-Vorspannzeile
33702 \begin_inset Newline newline
33703 \end_inset
33704
33705
33706 \series bold
33707
33708 \backslash
33709 newcommand{
33710 \backslash
33711 qG}[4][1,
33712 \backslash
33713 ,2]{#2_{#1}=-
33714 \backslash
33715 frac{#3}{2}
33716 \backslash
33717 pm
33718 \begin_inset Newline newline
33719 \end_inset
33720
33721
33722 \begin_inset Phantom HPhantom
33723 status open
33724
33725 \begin_layout Plain Layout
33726
33727 \series bold
33728
33729 \backslash
33730 newcommand
33731 \end_layout
33732
33733 \end_inset
33734
33735
33736 \backslash
33737 sqrt{
33738 \backslash
33739 frac{#3^{2}}{4}-#4}}
33740 \end_layout
33741
33742 \begin_layout Standard
33743 Um damit die Lösungsformel zu erstellen, gibt man in einer Formel den Befehl
33744  
33745 \begin_inset Newline newline
33746 \end_inset
33747
33748
33749 \series bold
33750
33751 \backslash
33752 qG{
33753 \backslash
33754 lambda
33755 \begin_inset Formula $\to$
33756 \end_inset
33757
33758
33759 \backslash
33760 {p
33761 \begin_inset Formula $\to$
33762 \end_inset
33763
33764
33765 \backslash
33766 {q 
33767 \series default
33768 ein.
33769 \end_layout
33770
33771 \begin_layout Standard
33772 Die Definition des neuen Befehls ist unintuitiv, denn man muss die Schemata
33773  aller verwendeten LaTeX-Befehle kennen, z.
33774 \begin_inset space \thinspace{}
33775 \end_inset
33776
33777 B.
33778  dass ein Bruch in LaTeX mit 
33779 \series bold
33780
33781 \backslash
33782 frac{Zähler}
33783 \begin_inset Newline linebreak
33784 \end_inset
33785
33786 {Nenner}
33787 \series default
33788  eingegeben wird.
33789  Außerdem kann man leicht eine geschweifte Klammer vergessen und man kann
33790  in LyX nicht sehen, was der neue Befehl macht.
33791  Um diesen Problemen aus dem Weg zu gehen, gibt es in LyX die Möglichkeit
33792  Mathe-Makros statt den Befehl 
33793 \series bold
33794
33795 \backslash
33796 newcommand
33797 \series default
33798  zu verwenden.
33799 \end_layout
33800
33801 \begin_layout Standard
33802 Ein Mathe-Makro wird erstellt, indem man das Menü 
33803 \family sans
33804 Einfügen\SpecialChar \menuseparator
33805 Mathe\SpecialChar \menuseparator
33806 Makro
33807 \family default
33808  oder den Werkzeugleistenknopf 
33809 \begin_inset Info
33810 type  "icon"
33811 arg   "math-macro newmacroname_newcommand"
33812 \end_inset
33813
33814  verwendet.
33815  Es erscheint die Mathe-Makro-Werkzeugleiste und folgende Box, in der das
33816  Makro definiert wird:
33817 \begin_inset Newline newline
33818 \end_inset
33819
33820
33821 \begin_inset space \hspace*{\fill}
33822 \end_inset
33823
33824
33825 \begin_inset Graphics
33826         filename ../clipart/macrobox.png
33827
33828 \end_inset
33829
33830
33831 \begin_inset space \hspace*{\fill}
33832 \end_inset
33833
33834
33835 \begin_inset Newline newline
33836 \end_inset
33837
33838
33839 \begin_inset FormulaMacro
33840 \newcommand{\qG}[4][1,\,2]{#2_{#1}=-\frac{#3}{2}\pm\sqrt{\frac{#3^{2}}{4}-#4}}
33841 \end_inset
33842
33843
33844 \backslash
33845 newmacroname ist der voreingestellte Makroname, der auf etwas sinnvolles
33846  geändert werden sollte.
33847  In das erste blaue Kästchen gibt man die gewünschte Formel ein.
33848  Einen Argumentplatzhalter fügt man mit dem Befehl 
33849 \series bold
33850
33851 \backslash
33852 #Argumentnummer
33853 \series default
33854  ein, z.
33855 \begin_inset space \thinspace{}
33856 \end_inset
33857
33858 B.
33859  
33860 \series bold
33861
33862 \backslash
33863 #1
33864 \series default
33865  oder man verwendet den Makro-Werkzeugleistenknopf 
33866 \begin_inset Info
33867 type  "icon"
33868 arg   "math-macro-add-param"
33869 \end_inset
33870
33871 .
33872  Argumentplatzhalter werden rot dargestellt.
33873  Es sind maximal 9
33874 \begin_inset space ~
33875 \end_inset
33876
33877 Argumente möglich.
33878  Optionale Argumente werden mit dem Werkzeugleistenknopf 
33879 \begin_inset Info
33880 type  "icon"
33881 arg   "math-macro-add-optional-param"
33882 \end_inset
33883
33884  erstellt.
33885  Mit dem Werkzeugleistenknopf 
33886 \begin_inset Info
33887 type  "icon"
33888 arg   "math-macro-make-optional"
33889 \end_inset
33890
33891  kann das erste nicht-optionale Argument in ein optionales verwandelt werden.
33892  Im zweiten Kästchen kann man definieren wie das Makro in LyX angezeigt
33893  werden soll.
33894  Normalerweise will man es so sehen, wie es definiert wurde, wozu man das
33895  Kästchen leer lässt.
33896  Hat man hingegen ein Makro erstellt, der auf dem Bildschirm viel Platz
33897  einnimmt, kann man in das Kästchen z.
33898 \begin_inset space \thinspace{}
33899 \end_inset
33900
33901 B.
33902 \begin_inset Newline newline
33903 \end_inset
33904
33905
33906 \series bold
33907 qG: 
33908 \backslash
33909 #1
33910 \series default
33911  
33912 \series bold
33913 ,
33914 \series default
33915  
33916 \series bold
33917
33918 \backslash
33919 #2
33920 \series default
33921  
33922 \series bold
33923 ,
33924 \series default
33925  
33926 \series bold
33927
33928 \backslash
33929 #3, 
33930 \backslash
33931 #4
33932 \begin_inset Newline newline
33933 \end_inset
33934
33935
33936 \series default
33937 eingeben.
33938  Für das Makro werden dann in LyX nur die Argumente mit dem davor stehenden
33939  Makronamen angezeigt, was für mehr Überblick im Dokument sorgt.
33940  Im Ausdruck erscheint die Formel so, wie sie im ersten Kästchen definiert
33941  wurde.
33942 \begin_inset Newline newline
33943 \end_inset
33944
33945 Das Erscheinungsbild von Makros in Formeln lässt sich außerdem für einzelne
33946  Makros ändern, indem man den Cursor in das Makro setzt und das Menü 
33947 \family sans
33948 Ansicht\SpecialChar \menuseparator
33949 Mathe-Makro
33950 \begin_inset space ~
33951 \end_inset
33952
33953 auf/zuklappen
33954 \family default
33955  verwendet.
33956 \end_layout
33957
33958 \begin_layout Standard
33959 Um ein Makro zu verwenden, gibt man in eine Formel den Makronamen als Befehl
33960  ein, in unserem Fall 
33961 \series bold
33962
33963 \backslash
33964 qG
33965 \series default
33966 .
33967  Unser Makro sieht in LyX folgendermaßen aus:
33968 \begin_inset Newline newline
33969 \end_inset
33970
33971
33972 \begin_inset space \hspace*{\fill}
33973 \end_inset
33974
33975
33976 \begin_inset Graphics
33977         filename ../clipart/macrouse.png
33978
33979 \end_inset
33980
33981
33982 \begin_inset space \hspace*{\fill}
33983 \end_inset
33984
33985
33986 \begin_inset Newline newline
33987 \end_inset
33988
33989 Hier ist unser Makro-Beispiel mit den Argumenten 
33990 \begin_inset Formula $x$
33991 \end_inset
33992
33993
33994 \begin_inset Formula $\ln(x)$
33995 \end_inset
33996
33997  und 
33998 \begin_inset Formula $B$
33999 \end_inset
34000
34001 :
34002 \end_layout
34003
34004 \begin_layout Standard
34005 \begin_inset Formula 
34006 \[
34007 \qG x{\ln(x)}B
34008 \]
34009
34010 \end_inset
34011
34012
34013 \end_layout
34014
34015 \begin_layout Standard
34016 LyX bietet im Menü 
34017 \family sans
34018 Werkzeuge\SpecialChar \menuseparator
34019 Einstellungen\SpecialChar \menuseparator
34020 Bearbeiten\SpecialChar \menuseparator
34021 Kontrolle
34022 \family default
34023  verschiedene Bearbeitungsstile für Makros an.
34024  Um den Stil zu finden, der für Sie am angenehmsten ist, wählen Sie einen
34025  Stil aus und setzen den Cursor in eine Makro-Formel um den Unterschied
34026  zu sehen.
34027 \end_layout
34028
34029 \begin_layout Standard
34030 Ein Mathe-Makro wird beim Exportieren des Dokuments intern in einen 
34031 \series bold
34032
34033 \backslash
34034 new\SpecialChar \-
34035 command
34036 \series default
34037 -Befehl umgewandelt.
34038  Der 
34039 \series bold
34040
34041 \backslash
34042 newcommand
34043 \series default
34044 -Befehl wird dabei nicht in den LaTeX-Vorspann gesetzt, so dass man daher
34045  Makros nur in Formeln verwenden kann, die sich im Dokument unterhalb der
34046  Makrodefinitionsbox befinden.
34047 \end_layout
34048
34049 \begin_layout Standard
34050 Mathe-Makros können auch direkt aus einem 
34051 \series bold
34052
34053 \backslash
34054 newcommand
34055 \series default
34056 -Befehl erstellt werden.
34057  Schreibt man z.
34058 \begin_inset space \thinspace{}
34059 \end_inset
34060
34061 B.
34062  den Befehl
34063 \series bold
34064
34065 \begin_inset Newline newline
34066 \end_inset
34067
34068
34069 \backslash
34070 newcommand{
34071 \backslash
34072 larrow}[2]{
34073 \backslash
34074 xleftarrow[#2]{#1}}
34075 \begin_inset Newline newline
34076 \end_inset
34077
34078
34079 \series default
34080 in LyX als normalen Text, markiert ihn komplett und verwendet dann das Tastenkür
34081 zel 
34082 \family sans
34083 Strg+M
34084 \family default
34085 , wird der Befehl in ein Mathe-Makro umgewandelt.
34086  Bei dieser Methode muss man jedoch aufpassen, dass der 
34087 \series bold
34088
34089 \backslash
34090 newcommand
34091 \series default
34092 -Befehl richtig geschrieben wurde, ansonsten wird ein fehlerhaftes Makro
34093  erstellt, dass später LaTeX-Fehler hervorruft.
34094 \end_layout
34095
34096 \begin_layout Standard
34097 Mathe-Makros haben im Moment noch das Problem, dass weitere Formeln in einer
34098  Makrodefinition fehlerhaft behandelt werden.
34099  Dadurch kann das Beispiel 
34100 \series bold
34101
34102 \backslash
34103 fb
34104 \series default
34105  aus 
34106 \begin_inset CommandInset ref
34107 LatexCommand ref
34108 reference "sub:Der-Befehl-newcommand"
34109
34110 \end_inset
34111
34112  nicht als Makro erzeugt werden.
34113 \end_layout
34114
34115 \begin_layout Standard
34116 Wenn der Cursor in einer Makrodefinitionsbox ist, wird die Makro-Werkzeugleiste
34117  in LyX angezeigt:
34118 \end_layout
34119
34120 \begin_layout Standard
34121 \begin_inset VSpace defskip
34122 \end_inset
34123
34124
34125 \end_layout
34126
34127 \begin_layout Standard
34128 \begin_inset Graphics
34129         filename ../clipart/MacroToolbar.png
34130
34131 \end_inset
34132
34133
34134 \begin_inset Index idx
34135 status collapsed
34136
34137 \begin_layout Plain Layout
34138 Makros ! Werkzeugleiste
34139 \end_layout
34140
34141 \end_inset
34142
34143
34144 \end_layout
34145
34146 \begin_layout Standard
34147 \begin_inset VSpace defskip
34148 \end_inset
34149
34150
34151 \end_layout
34152
34153 \begin_layout Standard
34154 Die Makro-Werkzeugleiste enthält von links nach rechts die folgenden Knöpfe:
34155 \end_layout
34156
34157 \begin_layout Standard
34158 \begin_inset VSpace defskip
34159 \end_inset
34160
34161
34162 \end_layout
34163
34164 \begin_layout Standard
34165 \begin_inset Tabular
34166 <lyxtabular version="3" rows="9" columns="2">
34167 <features rotate="0" islongtable="true" longtabularalignment="center">
34168 <column alignment="left" valignment="top">
34169 <column alignment="left" valignment="top" width="85col%">
34170 <row interlinespace="2.5mm">
34171 <cell alignment="center" valignment="top" usebox="none">
34172 \begin_inset Text
34173
34174 \begin_layout Plain Layout
34175 \begin_inset Info
34176 type  "icon"
34177 arg   "math-macro-remove-param"
34178 \end_inset
34179
34180
34181 \end_layout
34182
34183 \end_inset
34184 </cell>
34185 <cell alignment="center" valignment="top" usebox="none">
34186 \begin_inset Text
34187
34188 \begin_layout Plain Layout
34189
34190 \family sans
34191 Bearbeiten\SpecialChar \menuseparator
34192 Mathe\SpecialChar \menuseparator
34193 Makro-Definition\SpecialChar \menuseparator
34194 Letztes Argument entfernen
34195 \end_layout
34196
34197 \end_inset
34198 </cell>
34199 </row>
34200 <row interlinespace="2.5mm">
34201 <cell alignment="center" valignment="top" usebox="none">
34202 \begin_inset Text
34203
34204 \begin_layout Plain Layout
34205 \begin_inset Info
34206 type  "icon"
34207 arg   "math-macro-add-param"
34208 \end_inset
34209
34210
34211 \end_layout
34212
34213 \end_inset
34214 </cell>
34215 <cell alignment="center" valignment="top" usebox="none">
34216 \begin_inset Text
34217
34218 \begin_layout Plain Layout
34219
34220 \family sans
34221 Bearbeiten\SpecialChar \menuseparator
34222 Mathe\SpecialChar \menuseparator
34223 Makro-Definition\SpecialChar \menuseparator
34224 Argument hinzufügen
34225 \end_layout
34226
34227 \end_inset
34228 </cell>
34229 </row>
34230 <row interlinespace="2.5mm">
34231 <cell alignment="center" valignment="top" usebox="none">
34232 \begin_inset Text
34233
34234 \begin_layout Plain Layout
34235 \begin_inset Info
34236 type  "icon"
34237 arg   "math-macro-make-optional"
34238 \end_inset
34239
34240
34241 \end_layout
34242
34243 \end_inset
34244 </cell>
34245 <cell alignment="center" valignment="top" usebox="none">
34246 \begin_inset Text
34247
34248 \begin_layout Plain Layout
34249
34250 \family sans
34251 Bearbeiten\SpecialChar \menuseparator
34252 Mathe\SpecialChar \menuseparator
34253 Makro-Definition\SpecialChar \menuseparator
34254 Das erste nicht-optionale
34255 \begin_inset Newline newline
34256 \end_inset
34257
34258
34259 \begin_inset Phantom HPhantom
34260 status open
34261
34262 \begin_layout Plain Layout
34263
34264 \family sans
34265 Bearbeiten\SpecialChar \menuseparator
34266 Mathe\SpecialChar \menuseparator
34267 Makro-Definition\SpecialChar \menuseparator
34268
34269 \end_layout
34270
34271 \end_inset
34272
34273 Argument in einen optionales
34274 \begin_inset Newline newline
34275 \end_inset
34276
34277
34278 \begin_inset Phantom HPhantom
34279 status open
34280
34281 \begin_layout Plain Layout
34282
34283 \family sans
34284 Bearbeiten\SpecialChar \menuseparator
34285 Mathe\SpecialChar \menuseparator
34286 Makro-Definition\SpecialChar \menuseparator
34287
34288 \end_layout
34289
34290 \end_inset
34291
34292 ändern
34293 \end_layout
34294
34295 \end_inset
34296 </cell>
34297 </row>
34298 <row interlinespace="2.5mm">
34299 <cell alignment="center" valignment="top" usebox="none">
34300 \begin_inset Text
34301
34302 \begin_layout Plain Layout
34303 \begin_inset Info
34304 type  "icon"
34305 arg   "math-macro-make-nonoptional"
34306 \end_inset
34307
34308
34309 \end_layout
34310
34311 \end_inset
34312 </cell>
34313 <cell alignment="center" valignment="top" usebox="none">
34314 \begin_inset Text
34315
34316 \begin_layout Plain Layout
34317
34318 \family sans
34319 Bearbeiten\SpecialChar \menuseparator
34320 Mathe\SpecialChar \menuseparator
34321 Makro-Definition\SpecialChar \menuseparator
34322 Das letzte optionale Argument in
34323 \begin_inset Newline newline
34324 \end_inset
34325
34326
34327 \begin_inset Phantom HPhantom
34328 status open
34329
34330 \begin_layout Plain Layout
34331
34332 \family sans
34333 Bearbeiten\SpecialChar \menuseparator
34334 Mathe\SpecialChar \menuseparator
34335 Makro-Definition\SpecialChar \menuseparator
34336
34337 \end_layout
34338
34339 \end_inset
34340
34341 einen nicht-optionales ändern
34342 \end_layout
34343
34344 \end_inset
34345 </cell>
34346 </row>
34347 <row interlinespace="2.5mm">
34348 <cell alignment="center" valignment="top" usebox="none">
34349 \begin_inset Text
34350
34351 \begin_layout Plain Layout
34352 \begin_inset Info
34353 type  "icon"
34354 arg   "math-macro-remove-optional-param"
34355 \end_inset
34356
34357
34358 \end_layout
34359
34360 \end_inset
34361 </cell>
34362 <cell alignment="center" valignment="top" usebox="none">
34363 \begin_inset Text
34364
34365 \begin_layout Plain Layout
34366
34367 \family sans
34368 Bearbeiten\SpecialChar \menuseparator
34369 Mathe\SpecialChar \menuseparator
34370 Makro-Definition\SpecialChar \menuseparator
34371 Optionales Argument entfernen
34372 \end_layout
34373
34374 \end_inset
34375 </cell>
34376 </row>
34377 <row interlinespace="2.5mm">
34378 <cell alignment="center" valignment="top" usebox="none">
34379 \begin_inset Text
34380
34381 \begin_layout Plain Layout
34382 \begin_inset Info
34383 type  "icon"
34384 arg   "math-macro-add-optional-param"
34385 \end_inset
34386
34387
34388 \end_layout
34389
34390 \end_inset
34391 </cell>
34392 <cell alignment="center" valignment="top" usebox="none">
34393 \begin_inset Text
34394
34395 \begin_layout Plain Layout
34396
34397 \family sans
34398 Bearbeiten\SpecialChar \menuseparator
34399 Mathe\SpecialChar \menuseparator
34400 Makro-Definition\SpecialChar \menuseparator
34401 Optionales Argument einfügen
34402 \end_layout
34403
34404 \end_inset
34405 </cell>
34406 </row>
34407 <row interlinespace="2.5mm">
34408 <cell alignment="center" valignment="top" usebox="none">
34409 \begin_inset Text
34410
34411 \begin_layout Plain Layout
34412 \begin_inset Info
34413 type  "icon"
34414 arg   "math-macro-remove-greedy-param"
34415 \end_inset
34416
34417
34418 \end_layout
34419
34420 \end_inset
34421 </cell>
34422 <cell alignment="center" valignment="top" usebox="none">
34423 \begin_inset Text
34424
34425 \begin_layout Plain Layout
34426
34427 \family sans
34428 Bearbeiten\SpecialChar \menuseparator
34429 Mathe\SpecialChar \menuseparator
34430 Makro-Definition\SpecialChar \menuseparator
34431 Letztes Argument rechts entfernen
34432 \end_layout
34433
34434 \end_inset
34435 </cell>
34436 </row>
34437 <row interlinespace="2.5mm">
34438 <cell alignment="center" valignment="top" usebox="none">
34439 \begin_inset Text
34440
34441 \begin_layout Plain Layout
34442 \begin_inset Info
34443 type  "icon"
34444 arg   "math-macro-append-greedy-param"
34445 \end_inset
34446
34447
34448 \end_layout
34449
34450 \end_inset
34451 </cell>
34452 <cell alignment="center" valignment="top" usebox="none">
34453 \begin_inset Text
34454
34455 \begin_layout Plain Layout
34456
34457 \family sans
34458 Bearbeiten\SpecialChar \menuseparator
34459 Mathe\SpecialChar \menuseparator
34460 Makro-Definition\SpecialChar \menuseparator
34461 Argument von rechts hinzufügen
34462 \end_layout
34463
34464 \end_inset
34465 </cell>
34466 </row>
34467 <row interlinespace="2.5mm">
34468 <cell alignment="center" valignment="top" usebox="none">
34469 \begin_inset Text
34470
34471 \begin_layout Plain Layout
34472 \begin_inset Info
34473 type  "icon"
34474 arg   "math-macro-add-greedy-optional-param"
34475 \end_inset
34476
34477
34478 \end_layout
34479
34480 \end_inset
34481 </cell>
34482 <cell alignment="center" valignment="top" usebox="none">
34483 \begin_inset Text
34484
34485 \begin_layout Plain Layout
34486
34487 \family sans
34488 Bearbeiten\SpecialChar \menuseparator
34489 Mathe\SpecialChar \menuseparator
34490 Makro-Definition\SpecialChar \menuseparator
34491 Optionales Argument von rechts
34492 \begin_inset Newline newline
34493 \end_inset
34494
34495
34496 \begin_inset Phantom HPhantom
34497 status open
34498
34499 \begin_layout Plain Layout
34500
34501 \family sans
34502 Bearbeiten\SpecialChar \menuseparator
34503 Mathe\SpecialChar \menuseparator
34504 Makro-Definition\SpecialChar \menuseparator
34505
34506 \end_layout
34507
34508 \end_inset
34509
34510 hinzufügen
34511 \end_layout
34512
34513 \end_inset
34514 </cell>
34515 </row>
34516 </lyxtabular>
34517
34518 \end_inset
34519
34520
34521 \end_layout
34522
34523 \begin_layout Section
34524 Computeralgebrasysteme
34525 \end_layout
34526
34527 \begin_layout Standard
34528 Mit LyX ist es möglich, mathematische Ausdrücke mit externen Anwendungen
34529  oder benutzerdefinierten Skripten auszutauschen.
34530  Momentan werden folgende Anwendungen unterstützt: 
34531 \family typewriter
34532 Maple
34533 \family default
34534
34535 \family typewriter
34536 Mathematica
34537 \family default
34538
34539 \family typewriter
34540 Maxima
34541 \family default
34542  und 
34543 \family typewriter
34544 Octave
34545 \family default
34546 .
34547  Beachten Sie aber, dass die unterstützten mathematischen Ausdrücke auf
34548  sehr einfache Fälle beschränkt sind.
34549 \end_layout
34550
34551 \begin_layout Subsection
34552 Verwendung
34553 \end_layout
34554
34555 \begin_layout Standard
34556 Schreiben Sie einen Ausdruck in eine Formel, öffnen Sie das Menü 
34557 \family sans
34558 Bearbeiten\SpecialChar \menuseparator
34559 Mathe\SpecialChar \menuseparator
34560 Computer-Algebra-System verwenden
34561 \family default
34562  und wählen Sie die Anwendung, die Sie auf ihrem Computer installiert haben.
34563  Danach sollte das Ergebnis der Berechnung auf der rechten Seite zusammen
34564  mit dem 
34565 \begin_inset Quotes gld
34566 \end_inset
34567
34568 =
34569 \begin_inset Quotes grd
34570 \end_inset
34571
34572  Operator erscheinen.
34573 \end_layout
34574
34575 \begin_layout Standard
34576 Hier sind ein paar einfache Beispiele (mit Resultaten von 
34577 \family typewriter
34578 Maxima
34579 \family default
34580 ) um zu zeigen, welche Berechnungen durchgeführt werden können:
34581 \end_layout
34582
34583 \begin_layout Itemize
34584 \begin_inset Formula $\frac{37}{3}*2-\sum_{i=1}^{3}i^{i}=-\frac{22}{3}$
34585 \end_inset
34586
34587
34588 \end_layout
34589
34590 \begin_layout Itemize
34591 \begin_inset Formula $\frac{37.0}{3}=12.33333333333333$
34592 \end_inset
34593
34594
34595 \end_layout
34596
34597 \begin_layout Itemize
34598 \begin_inset Formula $\int_{1}^{2}\sin(x)dx=\cos1-\cos2$
34599 \end_inset
34600
34601
34602 \end_layout
34603
34604 \begin_layout Itemize
34605 \begin_inset Formula $\det\left[\begin{array}{ccc}
34606 1 & 6 & 7\\
34607 2 & 5 & 8\\
34608 3 & 4 & 17
34609 \end{array}\right]=-56$
34610 \end_inset
34611
34612
34613 \end_layout
34614
34615 \begin_layout Itemize
34616 \begin_inset Formula $\lim_{x\rightarrow0}\left(\frac{\sin(x)}{x}\right)=1$
34617 \end_inset
34618
34619
34620 \end_layout
34621
34622 \begin_layout Subsection
34623 Tastenkürzel
34624 \end_layout
34625
34626 \begin_layout Standard
34627 Momentan gibt es kein Tastenkürzel um Computeralgebrasysteme aufzurufen.
34628  Sie können aber einfach ein Tastenkürzel mit der LyX-Funktion 
34629 \family sans
34630 math-extern
34631 \family default
34632  verknüpfen (siehe das 
34633 \emph on
34634 LyX-Funktionen
34635 \emph default
34636  Handbuch).
34637  Man kann z.
34638 \begin_inset space \thinspace{}
34639 \end_inset
34640
34641 B.
34642  die 
34643 \family sans
34644 Enter
34645 \family default
34646 -Taste in Formeln verknüpfen.
34647  Um sie mit 
34648 \family typewriter
34649 Maxima
34650 \family default
34651  zu verknüpfen, würde man diesen Tastenkürzel-Definitionsbefehl verwenden:
34652 \end_layout
34653
34654 \begin_layout Standard
34655
34656 \series bold
34657 command-alternatives break-paragraph;math-extern maxima
34658 \end_layout
34659
34660 \begin_layout Section
34661 Verschiedenes
34662 \begin_inset Index idx
34663 status collapsed
34664
34665 \begin_layout Plain Layout
34666 Verschiedenes
34667 \end_layout
34668
34669 \end_inset
34670
34671
34672 \end_layout
34673
34674 \begin_layout Subsection
34675 Negative Zahlen
34676 \begin_inset Index idx
34677 status collapsed
34678
34679 \begin_layout Plain Layout
34680 Zahlen ! negative
34681 \end_layout
34682
34683 \end_inset
34684
34685
34686 \end_layout
34687
34688 \begin_layout Standard
34689 Negative Zahlen sehen im Formelmodus oft schlecht aus, denn das Minuszeichen
34690  vor der Ziffer wird mit der gleichen Länge wie das Zeichen der Minus-Operation
34691  dargestellt.
34692  Schreibt man dagegen eine negative Zahl im normalen Text, erscheint das
34693  Minuszeichen korrekt.
34694 \end_layout
34695
34696 \begin_layout Standard
34697 Wandelt man also das Minuszeichen in mathematischen Text um, tritt das Problem
34698  nicht mehr auf.
34699 \end_layout
34700
34701 \begin_layout Standard
34702 Ein Beispiel zur Veranschaulichung der Problematik:
34703 \end_layout
34704
34705 \begin_layout Standard
34706 \align center
34707 \begin_inset Tabular
34708 <lyxtabular version="3" rows="3" columns="2">
34709 <features rotate="0" tabularvalignment="middle">
34710 <column alignment="right" valignment="top">
34711 <column alignment="left" valignment="top">
34712 <row>
34713 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
34714 \begin_inset Text
34715
34716 \begin_layout Plain Layout
34717 normaler Text:
34718 \end_layout
34719
34720 \end_inset
34721 </cell>
34722 <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
34723 \begin_inset Text
34724
34725 \begin_layout Plain Layout
34726 x = -2
34727 \end_layout
34728
34729 \end_inset
34730 </cell>
34731 </row>
34732 <row>
34733 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
34734 \begin_inset Text
34735
34736 \begin_layout Plain Layout
34737 Formelmodus:
34738 \end_layout
34739
34740 \end_inset
34741 </cell>
34742 <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
34743 \begin_inset Text
34744
34745 \begin_layout Plain Layout
34746 \begin_inset Formula $x=-2$
34747 \end_inset
34748
34749
34750 \end_layout
34751
34752 \end_inset
34753 </cell>
34754 </row>
34755 <row>
34756 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
34757 \begin_inset Text
34758
34759 \begin_layout Plain Layout
34760 Lösung:
34761 \end_layout
34762
34763 \end_inset
34764 </cell>
34765 <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
34766 \begin_inset Text
34767
34768 \begin_layout Plain Layout
34769 \begin_inset Formula $x=\textrm{-}2$
34770 \end_inset
34771
34772
34773 \end_layout
34774
34775 \end_inset
34776 </cell>
34777 </row>
34778 </lyxtabular>
34779
34780 \end_inset
34781
34782
34783 \end_layout
34784
34785 \begin_layout Subsection
34786 Komma als Dezimaltrennzeichen
34787 \begin_inset Index idx
34788 status collapsed
34789
34790 \begin_layout Plain Layout
34791 Komma
34792 \end_layout
34793
34794 \end_inset
34795
34796
34797 \end_layout
34798
34799 \begin_layout Standard
34800 In LaTeX fungiert das Komma in einer Formel, gemäß englischer Konvention,
34801  als Gruppentrennzeichen.
34802  Es wird demnach automatisch hinter allen Kommas in Formeln ein Leerraum
34803  eingefügt.
34804 \end_layout
34805
34806 \begin_layout Standard
34807 Um dies zu verhindern, markiert man das Komma und wandelt es in mathematischen
34808  Text um (Tastenkürzel 
34809 \family sans
34810 Alt+M
34811 \begin_inset space ~
34812 \end_inset
34813
34814 M
34815 \family default
34816 ).
34817 \end_layout
34818
34819 \begin_layout Standard
34820 Um hingegen alle Formelkommas des Dokuments als Dezimaltrennzeichen zu setzen,
34821  lädt man die Datei 
34822 \series bold
34823 icomma.sty
34824 \series default
34825
34826 \begin_inset Foot
34827 status collapsed
34828
34829 \begin_layout Plain Layout
34830
34831 \series bold
34832 icomma
34833 \series default
34834  ist Teil des LaTeX-Paketes 
34835 \series bold
34836 was
34837 \series default
34838
34839 \begin_inset Index idx
34840 status collapsed
34841
34842 \begin_layout Plain Layout
34843 Pakete ! was
34844 \begin_inset ERT
34845 status collapsed
34846
34847 \begin_layout Plain Layout
34848
34849
34850 \backslash
34851 vspace{4mm}
34852 \end_layout
34853
34854 \end_inset
34855
34856
34857 \end_layout
34858
34859 \end_inset
34860
34861 .
34862 \end_layout
34863
34864 \end_inset
34865
34866
34867 \begin_inset Index idx
34868 status collapsed
34869
34870 \begin_layout Plain Layout
34871 Pakete ! icomma
34872 \end_layout
34873
34874 \end_inset
34875
34876  mit der LaTeX-Vorspannzeile
34877 \end_layout
34878
34879 \begin_layout Standard
34880
34881 \series bold
34882
34883 \backslash
34884 usepackage{icomma}
34885 \end_layout
34886
34887 \begin_layout Subsection
34888 Physikalische Vektoren
34889 \begin_inset CommandInset label
34890 LatexCommand label
34891 name "sub:Physikalische-Vektoren"
34892
34893 \end_inset
34894
34895
34896 \begin_inset Index idx
34897 status collapsed
34898
34899 \begin_layout Plain Layout
34900 Vektoren ! physikalische
34901 \end_layout
34902
34903 \end_inset
34904
34905
34906 \end_layout
34907
34908 \begin_layout Standard
34909 Vordefinierte Vektoren bietet das LaTeX-Paket 
34910 \series bold
34911 braket
34912 \series default
34913
34914 \begin_inset Index idx
34915 status collapsed
34916
34917 \begin_layout Plain Layout
34918 Pakete ! braket
34919 \end_layout
34920
34921 \end_inset
34922
34923 , das mit der LaTeX-Vorspannzeile
34924 \end_layout
34925
34926 \begin_layout Standard
34927
34928 \series bold
34929
34930 \backslash
34931 usepackage{braket}
34932 \end_layout
34933
34934 \begin_layout Standard
34935 geladen wird.
34936 \begin_inset ERT
34937 status collapsed
34938
34939 \begin_layout Plain Layout
34940
34941
34942 \backslash
34943 ifbraket 
34944 \end_layout
34945
34946 \end_inset
34947
34948
34949 \begin_inset Note Note
34950 status open
34951
34952 \begin_layout Plain Layout
34953 Die folgende Tabelle erscheint nur im Ausdruck wenn das LaTeX-Paket 
34954 \series bold
34955 braket
34956 \series default
34957  installiert ist:
34958 \end_layout
34959
34960 \end_inset
34961
34962
34963 \end_layout
34964
34965 \begin_layout Standard
34966 Folgende Befehle sind definiert:
34967 \end_layout
34968
34969 \begin_layout Standard
34970 \align center
34971 \begin_inset Tabular
34972 <lyxtabular version="3" rows="4" columns="2">
34973 <features rotate="0" tabularvalignment="middle">
34974 <column alignment="center" valignment="top">
34975 <column alignment="center" valignment="top">
34976 <row>
34977 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
34978 \begin_inset Text
34979
34980 \begin_layout Plain Layout
34981 Befehl
34982 \end_layout
34983
34984 \end_inset
34985 </cell>
34986 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
34987 \begin_inset Text
34988
34989 \begin_layout Plain Layout
34990 Ergebnis
34991 \end_layout
34992
34993 \end_inset
34994 </cell>
34995 </row>
34996 <row>
34997 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
34998 \begin_inset Text
34999
35000 \begin_layout Plain Layout
35001
35002 \backslash
35003 Bra{
35004 \backslash
35005 psi
35006 \end_layout
35007
35008 \end_inset
35009 </cell>
35010 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35011 \begin_inset Text
35012
35013 \begin_layout Plain Layout
35014 \begin_inset Formula $\Bra{\psi}$
35015 \end_inset
35016
35017
35018 \end_layout
35019
35020 \end_inset
35021 </cell>
35022 </row>
35023 <row>
35024 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35025 \begin_inset Text
35026
35027 \begin_layout Plain Layout
35028
35029 \backslash
35030 Ket{
35031 \backslash
35032 psi
35033 \end_layout
35034
35035 \end_inset
35036 </cell>
35037 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35038 \begin_inset Text
35039
35040 \begin_layout Plain Layout
35041 \begin_inset Formula $\Ket{\psi}$
35042 \end_inset
35043
35044
35045 \end_layout
35046
35047 \end_inset
35048 </cell>
35049 </row>
35050 <row>
35051 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35052 \begin_inset Text
35053
35054 \begin_layout Plain Layout
35055
35056 \backslash
35057 Braket{
35058 \backslash
35059 psi|
35060 \backslash
35061 phi
35062 \end_layout
35063
35064 \end_inset
35065 </cell>
35066 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35067 \begin_inset Text
35068
35069 \begin_layout Plain Layout
35070 \begin_inset Formula $\Braket{\psi|\phi}$
35071 \end_inset
35072
35073
35074 \end_layout
35075
35076 \end_inset
35077 </cell>
35078 </row>
35079 </lyxtabular>
35080
35081 \end_inset
35082
35083
35084 \end_layout
35085
35086 \begin_layout Standard
35087 Der Befehl 
35088 \series bold
35089
35090 \backslash
35091 Braket
35092 \series default
35093  stellt sicher, dass alle senkrechten Striche in der Größe der umgebenden
35094  Klammern gesetzt werden:
35095 \begin_inset Formula 
35096 \[
35097 \Braket{\phi|J=\frac{3}{2}\,,\, M_{J}}
35098 \]
35099
35100 \end_inset
35101
35102
35103 \begin_inset ERT
35104 status collapsed
35105
35106 \begin_layout Plain Layout
35107
35108
35109 \backslash
35110 else 
35111 \end_layout
35112
35113 \end_inset
35114
35115
35116 \begin_inset Note Note
35117 status open
35118
35119 \begin_layout Plain Layout
35120 Folgendes erscheint im Ausdruck wenn das LaTeX-Paket 
35121 \series bold
35122 braket
35123 \series default
35124  nicht installiert ist:
35125 \end_layout
35126
35127 \end_inset
35128
35129
35130 \end_layout
35131
35132 \begin_layout Standard
35133 Das LaTeX-Paket 
35134 \series bold
35135 braket 
35136 \series default
35137 muss installiert sein, um den Rest dieses Abschnitts im Ausdruck zu sehen.
35138 \end_layout
35139
35140 \begin_layout Standard
35141 \begin_inset ERT
35142 status collapsed
35143
35144 \begin_layout Plain Layout
35145
35146
35147 \backslash
35148 fi 
35149 \end_layout
35150
35151 \end_inset
35152
35153
35154 \end_layout
35155
35156 \begin_layout Standard
35157 Der Effekt von 
35158 \series bold
35159
35160 \backslash
35161 Braket
35162 \series default
35163  kann auch mit dem Befehl 
35164 \series bold
35165
35166 \backslash
35167 middle
35168 \series default
35169  erzielt werden, der in 
35170 \begin_inset CommandInset ref
35171 LatexCommand ref
35172 reference "sub:Automatische-Klammergrößen"
35173
35174 \end_inset
35175
35176  beschrieben ist.
35177 \end_layout
35178
35179 \begin_layout Subsection
35180 Selbst definierte Brüche
35181 \begin_inset CommandInset label
35182 LatexCommand label
35183 name "sub:Selbstdefinierte-Brüche"
35184
35185 \end_inset
35186
35187
35188 \begin_inset Index idx
35189 status collapsed
35190
35191 \begin_layout Plain Layout
35192 Brüche ! selbstdefinierte
35193 \end_layout
35194
35195 \end_inset
35196
35197
35198 \end_layout
35199
35200 \begin_layout Standard
35201 Um eigene Befehle für Brüche zu definieren, verwendet man den Befehl 
35202 \series bold
35203
35204 \backslash
35205 genfrac
35206 \series default
35207
35208 \begin_inset Index idx
35209 status collapsed
35210
35211 \begin_layout Plain Layout
35212 Befehle ! G ! 
35213 \backslash
35214 genfrac
35215 \end_layout
35216
35217 \end_inset
35218
35219  in folgendem Schema:
35220 \end_layout
35221
35222 \begin_layout Standard
35223
35224 \series bold
35225
35226 \backslash
35227 genfrac{linke
35228 \series default
35229  
35230 \series bold
35231 Klammer}{rechte
35232 \series default
35233  
35234 \series bold
35235 Klammer}{Bruchstrichdicke}{Ansichtsstil}
35236 \begin_inset Newline newline
35237 \end_inset
35238
35239
35240 \begin_inset Phantom HPhantom
35241 status open
35242
35243 \begin_layout Plain Layout
35244
35245 \series bold
35246
35247 \backslash
35248 genfrac
35249 \end_layout
35250
35251 \end_inset
35252
35253 {Zähler}{Nenner}
35254 \end_layout
35255
35256 \begin_layout Standard
35257 Der Ansichtsstil wird mit einer ganzen Zahl im Bereich 0
35258 \begin_inset space \thinspace{}
35259 \end_inset
35260
35261 -
35262 \begin_inset space \thinspace{}
35263 \end_inset
35264
35265 3 angegeben.
35266 \end_layout
35267
35268 \begin_layout Standard
35269 \align center
35270 \begin_inset Tabular
35271 <lyxtabular version="3" rows="5" columns="2">
35272 <features rotate="0" tabularvalignment="middle">
35273 <column alignment="center" valignment="top">
35274 <column alignment="center" valignment="top">
35275 <row>
35276 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35277 \begin_inset Text
35278
35279 \begin_layout Plain Layout
35280 Nummer
35281 \end_layout
35282
35283 \end_inset
35284 </cell>
35285 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35286 \begin_inset Text
35287
35288 \begin_layout Plain Layout
35289 Ansichtsstil
35290 \end_layout
35291
35292 \end_inset
35293 </cell>
35294 </row>
35295 <row>
35296 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35297 \begin_inset Text
35298
35299 \begin_layout Plain Layout
35300 0
35301 \end_layout
35302
35303 \end_inset
35304 </cell>
35305 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35306 \begin_inset Text
35307
35308 \begin_layout Plain Layout
35309 abgesetzte Formel
35310 \end_layout
35311
35312 \end_inset
35313 </cell>
35314 </row>
35315 <row>
35316 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35317 \begin_inset Text
35318
35319 \begin_layout Plain Layout
35320 1
35321 \end_layout
35322
35323 \end_inset
35324 </cell>
35325 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35326 \begin_inset Text
35327
35328 \begin_layout Plain Layout
35329 eingebettete Formel
35330 \end_layout
35331
35332 \end_inset
35333 </cell>
35334 </row>
35335 <row>
35336 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35337 \begin_inset Text
35338
35339 \begin_layout Plain Layout
35340 2
35341 \end_layout
35342
35343 \end_inset
35344 </cell>
35345 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35346 \begin_inset Text
35347
35348 \begin_layout Plain Layout
35349 klein
35350 \end_layout
35351
35352 \end_inset
35353 </cell>
35354 </row>
35355 <row>
35356 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35357 \begin_inset Text
35358
35359 \begin_layout Plain Layout
35360 3
35361 \end_layout
35362
35363 \end_inset
35364 </cell>
35365 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35366 \begin_inset Text
35367
35368 \begin_layout Plain Layout
35369 winzig
35370 \end_layout
35371
35372 \end_inset
35373 </cell>
35374 </row>
35375 </lyxtabular>
35376
35377 \end_inset
35378
35379
35380 \end_layout
35381
35382 \begin_layout Standard
35383 Wird nichts für den Ansichtsstil angegeben, passt sich die Größe wie bei
35384  
35385 \series bold
35386
35387 \backslash
35388 frac
35389 \series default
35390  der Umgebung an.
35391 \end_layout
35392
35393 \begin_layout Standard
35394 Wird keine Bruchstrichdicke angegeben, wird der voreingestellte Wert von
35395  0.4
35396 \begin_inset space \thinspace{}
35397 \end_inset
35398
35399 pt verwendet.
35400 \end_layout
35401
35402 \begin_layout Standard
35403 \begin_inset VSpace medskip
35404 \end_inset
35405
35406 Zum Beispiel sind die Befehle 
35407 \series bold
35408
35409 \backslash
35410 dfrac
35411 \series default
35412  und 
35413 \series bold
35414
35415 \backslash
35416 tbinom
35417 \series default
35418  aus 
35419 \begin_inset CommandInset ref
35420 LatexCommand ref
35421 reference "sub:Brüche"
35422
35423 \end_inset
35424
35425  folgendermaßen definiert:
35426 \end_layout
35427
35428 \begin_layout Standard
35429
35430 \series bold
35431
35432 \backslash
35433 newcommand{
35434 \backslash
35435 dfrac}[2]{
35436 \backslash
35437 genfrac{}{}{}{0}{#1}{#2}}
35438 \end_layout
35439
35440 \begin_layout Standard
35441 und
35442 \end_layout
35443
35444 \begin_layout Standard
35445
35446 \series bold
35447
35448 \backslash
35449 newcommand{
35450 \backslash
35451 tbinom}[2]{
35452 \backslash
35453 genfrac{(}{)}{0pt}{1}{#1}{#2}}
35454 \end_layout
35455
35456 \begin_layout Standard
35457 \begin_inset VSpace medskip
35458 \end_inset
35459
35460 Um einen Bruch zu definieren, bei dem man die Bruchstrichdicke als optionales
35461  Argument angeben kann, gibt man im LaTeX-Vorspann folgenden Befehl ein:
35462 \end_layout
35463
35464 \begin_layout Standard
35465
35466 \series bold
35467
35468 \backslash
35469 newcommand{
35470 \backslash
35471 fracS}[3][]{
35472 \backslash
35473 genfrac{}{}{#1}{}{#2}{#3}}
35474 \end_layout
35475
35476 \begin_layout Standard
35477 Dazu ein Test:
35478 \begin_inset Formula 
35479 \begin{align*}
35480 \text{Befehl} &  & \mathrm{\backslash fracS[1mm]\backslash\{A\to\backslash\{B} &  & \mathrm{\backslash fracS[5mm]\backslash\{A\to\backslash\{B}\\
35481 \text{Ergebnis} &  & \fracS[1mm]{A}{B} &  & \fracS[5mm]{A}{B}
35482 \end{align*}
35483
35484 \end_inset
35485
35486 Wie man sieht, entspricht der Abstand des Zählers und Nenners vom Strich
35487  in etwa der dreifachen Strichdicke.
35488 \end_layout
35489
35490 \begin_layout Subsection
35491 Durchgestrichene Formeln
35492 \begin_inset Index idx
35493 status collapsed
35494
35495 \begin_layout Plain Layout
35496 Formel ! durchgestrichene
35497 \end_layout
35498
35499 \end_inset
35500
35501
35502 \end_layout
35503
35504 \begin_layout Standard
35505 Es gibt vier verschiedene Arten Formeln oder Formelteile durchzustreichen:
35506 \end_layout
35507
35508 \begin_layout Standard
35509 \begin_inset ERT
35510 status collapsed
35511
35512 \begin_layout Plain Layout
35513
35514
35515 \backslash
35516 ifcancel 
35517 \end_layout
35518
35519 \end_inset
35520
35521
35522 \begin_inset Note Note
35523 status open
35524
35525 \begin_layout Plain Layout
35526 Die folgende Tabelle erscheint nur im Ausdruck wenn das LaTeX-Paket 
35527 \series bold
35528 cancel
35529 \series default
35530  installiert ist:
35531 \end_layout
35532
35533 \end_inset
35534
35535
35536 \end_layout
35537
35538 \begin_layout Standard
35539 \align center
35540 \begin_inset Tabular
35541 <lyxtabular version="3" rows="5" columns="2">
35542 <features rotate="0" tabularvalignment="middle">
35543 <column alignment="center" valignment="top">
35544 <column alignment="center" valignment="top">
35545 <row>
35546 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35547 \begin_inset Text
35548
35549 \begin_layout Plain Layout
35550 Befehl
35551 \end_layout
35552
35553 \end_inset
35554 </cell>
35555 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35556 \begin_inset Text
35557
35558 \begin_layout Plain Layout
35559 Ergebnis
35560 \begin_inset Note Note
35561 status collapsed
35562
35563 \begin_layout Plain Layout
35564 Der Leerraum und 
35565 \series bold
35566
35567 \backslash
35568 raisebox
35569 \series default
35570  dienen nur als Abstandhalter.
35571 \end_layout
35572
35573 \end_inset
35574
35575
35576 \end_layout
35577
35578 \end_inset
35579 </cell>
35580 </row>
35581 <row>
35582 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35583 \begin_inset Text
35584
35585 \begin_layout Plain Layout
35586
35587 \backslash
35588 cancel
35589 \begin_inset space \textvisiblespace{}
35590 \end_inset
35591
35592
35593 \backslash
35594 int
35595 \begin_inset space \textvisiblespace{}
35596 \end_inset
35597
35598 A=B
35599 \end_layout
35600
35601 \end_inset
35602 </cell>
35603 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35604 \begin_inset Text
35605
35606 \begin_layout Plain Layout
35607 \begin_inset Formula $\raisebox{4.5mm}{}\cancel{\int A=B}\raisebox{-2.5mm}{}$
35608 \end_inset
35609
35610
35611 \end_layout
35612
35613 \end_inset
35614 </cell>
35615 </row>
35616 <row>
35617 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35618 \begin_inset Text
35619
35620 \begin_layout Plain Layout
35621
35622 \backslash
35623 bcancel
35624 \begin_inset space \textvisiblespace{}
35625 \end_inset
35626
35627
35628 \backslash
35629 int
35630 \begin_inset space \textvisiblespace{}
35631 \end_inset
35632
35633 A=B
35634 \end_layout
35635
35636 \end_inset
35637 </cell>
35638 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35639 \begin_inset Text
35640
35641 \begin_layout Plain Layout
35642 \begin_inset Formula $\raisebox{4.5mm}{}\bcancel{\int A=B}\raisebox{-2.5mm}{}$
35643 \end_inset
35644
35645
35646 \end_layout
35647
35648 \end_inset
35649 </cell>
35650 </row>
35651 <row>
35652 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35653 \begin_inset Text
35654
35655 \begin_layout Plain Layout
35656
35657 \backslash
35658 xcancel
35659 \begin_inset space \textvisiblespace{}
35660 \end_inset
35661
35662
35663 \backslash
35664 int
35665 \begin_inset space \textvisiblespace{}
35666 \end_inset
35667
35668 A=B
35669 \end_layout
35670
35671 \end_inset
35672 </cell>
35673 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35674 \begin_inset Text
35675
35676 \begin_layout Plain Layout
35677 \begin_inset Formula $\raisebox{4.5mm}{}\xcancel{\int A=B}\raisebox{-2.5mm}{}$
35678 \end_inset
35679
35680
35681 \end_layout
35682
35683 \end_inset
35684 </cell>
35685 </row>
35686 <row>
35687 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35688 \begin_inset Text
35689
35690 \begin_layout Plain Layout
35691
35692 \backslash
35693 cancelto
35694 \begin_inset space \textvisiblespace{}
35695 \end_inset
35696
35697
35698 \backslash
35699 int
35700 \begin_inset space \textvisiblespace{}
35701 \end_inset
35702
35703 A=B
35704 \begin_inset Formula $\to$
35705 \end_inset
35706
35707 1
35708 \end_layout
35709
35710 \end_inset
35711 </cell>
35712 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35713 \begin_inset Text
35714
35715 \begin_layout Plain Layout
35716 \begin_inset Formula $\raisebox{7mm}{}\cancelto{1}{\int A=B}\raisebox{-2.5mm}{}\hspace{3mm}$
35717 \end_inset
35718
35719
35720 \end_layout
35721
35722 \end_inset
35723 </cell>
35724 </row>
35725 </lyxtabular>
35726
35727 \end_inset
35728
35729
35730 \end_layout
35731
35732 \begin_layout Standard
35733
35734 \series bold
35735
35736 \backslash
35737 cancelto
35738 \series default
35739  eignet sich besonders, wenn man das Kürzen innerhalb einer Formel darstellen
35740  will:
35741 \begin_inset Formula 
35742 \[
35743 \frac{\left(x_{0}+bB\right)^{2}}{\left(1+b^{2}\right)^{\cancelto{2}{3}}}=\frac{x_{0}^{2}+B^{2}-r_{g}^{2}}{\cancel{1+b^{2}}}
35744 \]
35745
35746 \end_inset
35747
35748
35749 \end_layout
35750
35751 \begin_layout Standard
35752 Um die Größe des 
35753 \begin_inset Quotes gld
35754 \end_inset
35755
35756 hochgestellten
35757 \begin_inset Quotes grd
35758 \end_inset
35759
35760  Werts von 
35761 \series bold
35762
35763 \backslash
35764 cancelto
35765 \series default
35766  zu ändern, kann man die LaTeX-Vorspannzeile
35767 \end_layout
35768
35769 \begin_layout Standard
35770
35771 \series bold
35772
35773 \backslash
35774 PassOptionsToPackage{Option}{cancel}
35775 \end_layout
35776
35777 \begin_layout Standard
35778 hinzufügen.
35779  
35780 \series bold
35781 Option
35782 \series default
35783  ist entweder 
35784 \series bold
35785 samesize
35786 \series default
35787 , das zur selben Größe wie die der durchgestrichenen Zeichen führt, oder
35788  
35789 \series bold
35790 Smaller
35791 \series default
35792 , das zu einer etwas kleineren Größe als die Voreinstellung führt.
35793 \end_layout
35794
35795 \begin_layout Standard
35796 Um den Durchstrich zu färben, verwendet man den Befehl
35797 \end_layout
35798
35799 \begin_layout Standard
35800
35801 \series bold
35802
35803 \backslash
35804 renewcommand{
35805 \backslash
35806 CancelColor}{
35807 \backslash
35808 color{red}}
35809 \end_layout
35810
35811 \begin_layout Standard
35812 als TeX-Code.
35813  
35814 \series bold
35815 red
35816 \series default
35817  kann durch eine Farbe der Wahl ersetzt werden.
35818 \end_layout
35819
35820 \begin_layout Standard
35821 \begin_inset ERT
35822 status collapsed
35823
35824 \begin_layout Plain Layout
35825
35826
35827 \backslash
35828 renewcommand{
35829 \backslash
35830 CancelColor}{
35831 \backslash
35832 color{red}}
35833 \end_layout
35834
35835 \end_inset
35836
35837
35838 \end_layout
35839
35840 \begin_layout Standard
35841 \begin_inset Formula 
35842 \[
35843 \frac{\left(x_{0}+bB\right)^{2}}{\left(1+b^{2}\right)^{\cancelto{2}{3}}}=\frac{x_{0}^{2}+B^{2}-r_{g}^{2}}{\cancel{1+b^{2}}}
35844 \]
35845
35846 \end_inset
35847
35848
35849 \end_layout
35850
35851 \begin_layout Standard
35852 \begin_inset ERT
35853 status collapsed
35854
35855 \begin_layout Plain Layout
35856
35857
35858 \backslash
35859 renewcommand{
35860 \backslash
35861 CancelColor}{
35862 \backslash
35863 color{black}}
35864 \end_layout
35865
35866 \end_inset
35867
35868
35869 \begin_inset Note Note
35870 status open
35871
35872 \begin_layout Plain Layout
35873 Farbe zurücksetzen
35874 \end_layout
35875
35876 \end_inset
35877
35878
35879 \end_layout
35880
35881 \begin_layout Standard
35882 Für weitere Anpassungen siehe die Dokumentation des Pakets 
35883 \series bold
35884 cancel
35885 \series default
35886
35887 \begin_inset CommandInset citation
35888 LatexCommand cite
35889 key "cancel"
35890
35891 \end_inset
35892
35893 .
35894 \begin_inset Index idx
35895 status collapsed
35896
35897 \begin_layout Plain Layout
35898 Pakete ! cancel
35899 \end_layout
35900
35901 \end_inset
35902
35903
35904 \end_layout
35905
35906 \begin_layout Standard
35907 \begin_inset ERT
35908 status collapsed
35909
35910 \begin_layout Plain Layout
35911
35912
35913 \backslash
35914 else 
35915 \end_layout
35916
35917 \end_inset
35918
35919
35920 \begin_inset Note Note
35921 status open
35922
35923 \begin_layout Plain Layout
35924 Folgendes erscheint im Ausdruck wenn das LaTeX-Paket 
35925 \series bold
35926 cancel
35927 \series default
35928  nicht installiert ist:
35929 \end_layout
35930
35931 \end_inset
35932
35933
35934 \end_layout
35935
35936 \begin_layout Standard
35937 Das LaTeX-Paket 
35938 \series bold
35939 cancel 
35940 \series default
35941 muss installiert sein, um den Rest dieses Abschnitts im Ausdruck zu sehen.
35942 \end_layout
35943
35944 \begin_layout Standard
35945 \begin_inset ERT
35946 status collapsed
35947
35948 \begin_layout Plain Layout
35949
35950
35951 \backslash
35952 fi 
35953 \end_layout
35954
35955 \end_inset
35956
35957
35958 \end_layout
35959
35960 \begin_layout Subsection
35961 Formeln in Überschriften
35962 \begin_inset CommandInset label
35963 LatexCommand label
35964 name "sub:Formeln-in-Überschriften"
35965
35966 \end_inset
35967
35968
35969 \begin_inset Index idx
35970 status collapsed
35971
35972 \begin_layout Plain Layout
35973 Formel ! in Überschriften
35974 \end_layout
35975
35976 \end_inset
35977
35978
35979 \end_layout
35980
35981 \begin_layout Standard
35982 Benutzt man Formeln in Überschriften, ist auf Folgendes zu achten:
35983 \end_layout
35984
35985 \begin_layout Standard
35986 \begin_inset Note Greyedout
35987 status open
35988
35989 \begin_layout Plain Layout
35990 Verwendet man 
35991 \series bold
35992 hyperref
35993 \series default
35994
35995 \begin_inset Index idx
35996 status collapsed
35997
35998 \begin_layout Plain Layout
35999 Pakete ! hyperref
36000 \end_layout
36001
36002 \end_inset
36003
36004  Unterstützung im den Dokumenteinstellungen unter 
36005 \family sans
36006 PDF-Eigenschaften
36007 \family default
36008 , werden PDF-Lesezeichen für jede Überschrift aus dem Inhaltsverzeichnis
36009  erzeugt.
36010  Enthält eine Überschrift Formeln, werden diese im Lesezeichentext falsch
36011  dargestellt.
36012  Denn Formeln in Lesezeichen verstoßen gegen die PDF-Konventionen.
36013 \end_layout
36014
36015 \end_inset
36016
36017
36018 \end_layout
36019
36020 \begin_layout Standard
36021 Beide Probleme lassen sich lösen, indem man am Ende der Überschrift einen
36022  Kurztitel über das Menü 
36023 \family sans
36024 Einfügen\SpecialChar \menuseparator
36025 Kurztitel
36026 \family default
36027  einfügt.
36028  Kurztitel werden als Alternative für mehrzeilige Überschriften verwendet,
36029  um das Inhaltsverzeichnis übersichtlich zu halten.
36030  Nur der Kurztitel erscheint im Inhaltsverzeichnis und damit auch im PDF-Lesezei
36031 chen.
36032 \end_layout
36033
36034 \begin_layout Standard
36035 Möchte man im Inhaltsverzeichnis eine Formel verwenden, benutzt aber 
36036 \series bold
36037 hyperref
36038 \series default
36039 , verwendet man im TeX-Modus den Befehl
36040 \end_layout
36041
36042 \begin_layout Standard
36043
36044 \series bold
36045
36046 \backslash
36047 texorpdfstring{Teil}{Alternative}
36048 \begin_inset Index idx
36049 status collapsed
36050
36051 \begin_layout Plain Layout
36052 Befehle ! T ! 
36053 \backslash
36054 texorpdfstring
36055 \end_layout
36056
36057 \end_inset
36058
36059
36060 \end_layout
36061
36062 \begin_layout Standard
36063 Teil ist der Überschriftsteil, der nicht im PDF-Lesezeichen erscheinen solle.
36064  Das können Zeichen, Formeln, Fußnoten aber auch Querverweise sein.
36065  Als Alternative kann man angeben, was stattdessen im Lesezeichen erscheinen
36066  soll.
36067 \end_layout
36068
36069 \begin_layout Standard
36070 Es folgen zwei Beispielüberschriften:
36071 \begin_inset VSpace -3mm
36072 \end_inset
36073
36074
36075 \begin_inset ERT
36076 status collapsed
36077
36078 \begin_layout Plain Layout
36079
36080
36081 \backslash
36082 boldmath 
36083 \end_layout
36084
36085 \end_inset
36086
36087
36088 \end_layout
36089
36090 \begin_layout Subsubsection
36091 Überschrift ohne Formel im Inhaltsverzeichnis 
36092 \begin_inset Formula $\sqrt{-1}=\mathrm{i}$
36093 \end_inset
36094
36095
36096 \begin_inset Argument 1
36097 status collapsed
36098
36099 \begin_layout Plain Layout
36100 Überschrift ohne Formel im Inhaltsverzeichnis
36101 \end_layout
36102
36103 \end_inset
36104
36105
36106 \end_layout
36107
36108 \begin_layout Subsubsection
36109 Überschrift mit Formel im Inhaltsverzeichnis
36110 \begin_inset ERT
36111 status collapsed
36112
36113 \begin_layout Plain Layout
36114
36115
36116 \backslash
36117 texorpdfstring{
36118 \end_layout
36119
36120 \end_inset
36121
36122  
36123 \begin_inset Formula $\sqrt{-1}=\mathrm{i}$
36124 \end_inset
36125
36126
36127 \begin_inset ERT
36128 status collapsed
36129
36130 \begin_layout Plain Layout
36131
36132 }{}
36133 \end_layout
36134
36135 \end_inset
36136
36137
36138 \end_layout
36139
36140 \begin_layout Standard
36141 \begin_inset ERT
36142 status collapsed
36143
36144 \begin_layout Plain Layout
36145
36146
36147 \backslash
36148 unboldmath 
36149 \end_layout
36150
36151 \end_inset
36152
36153 In der ersten Überschrift wurde ein Kurztitel verwendet.
36154  In der zweiten 
36155 \series bold
36156
36157 \backslash
36158 texorpdfstring
36159 \series default
36160 .
36161 \end_layout
36162
36163 \begin_layout Standard
36164 Damit die Formeln so wie der Rest der Überschrift formatiert werden, wurde
36165  die komplette Überschrift in eine 
36166 \series bold
36167 boldmath
36168 \series default
36169 -Umgebung
36170 \begin_inset Foot
36171 status collapsed
36172
36173 \begin_layout Plain Layout
36174 siehe 
36175 \begin_inset CommandInset ref
36176 LatexCommand ref
36177 reference "sub:Fett-gedruckte-Formeln"
36178
36179 \end_inset
36180
36181
36182 \end_layout
36183
36184 \end_inset
36185
36186  gesetzt.
36187 \end_layout
36188
36189 \begin_layout Subsection
36190 Formeln im mehrspaltigen Text
36191 \begin_inset Index idx
36192 status collapsed
36193
36194 \begin_layout Plain Layout
36195 Formel ! im mehrspaltigen Text
36196 \end_layout
36197
36198 \end_inset
36199
36200
36201 \end_layout
36202
36203 \begin_layout Standard
36204 Formeln im mehrspaltigen Text sind oftmals zu breit für eine Spalte und
36205  müssen daher über die gesamte Seitenbreite gesetzt werden.
36206  Dazu verwendet man das LaTeX-Paket 
36207 \series bold
36208 multicol
36209 \series default
36210
36211 \begin_inset Foot
36212 status collapsed
36213
36214 \begin_layout Plain Layout
36215
36216 \series bold
36217 multicol
36218 \series default
36219  ist Teil jeder LaTeX-Standardinstallation.
36220 \end_layout
36221
36222 \end_inset
36223
36224
36225 \begin_inset Index idx
36226 status collapsed
36227
36228 \begin_layout Plain Layout
36229 Pakete ! multicol
36230 \end_layout
36231
36232 \end_inset
36233
36234 , das mit der LaTeX-Vorspannzeile
36235 \end_layout
36236
36237 \begin_layout Standard
36238
36239 \series bold
36240
36241 \backslash
36242 usepackage{multicol}
36243 \end_layout
36244
36245 \begin_layout Standard
36246 geladen wird.
36247 \end_layout
36248
36249 \begin_layout Standard
36250 \begin_inset Note Greyedout
36251 status open
36252
36253 \begin_layout Plain Layout
36254 Dabei ist zu beachten, dass im Menü 
36255 \family sans
36256 Dokument\SpecialChar \menuseparator
36257 Einstellungen
36258 \family default
36259  unter 
36260 \family sans
36261 Textformat
36262 \family default
36263  
36264 \emph on
36265 nicht
36266 \emph default
36267  
36268 \family sans
36269 Zweispaltiges
36270 \begin_inset space ~
36271 \end_inset
36272
36273 Dokument
36274 \family default
36275  ausgewählt sein darf.
36276 \end_layout
36277
36278 \end_inset
36279
36280
36281 \end_layout
36282
36283 \begin_layout Standard
36284 Vor den mehrspaltigen Text schreibt man im TeX-Modus den Befehl
36285 \end_layout
36286
36287 \begin_layout Standard
36288
36289 \series bold
36290
36291 \backslash
36292 begin{multicols}{Spaltenanzahl}
36293 \end_layout
36294
36295 \begin_layout Standard
36296 wobei die Spaltenanzahl eine Zahl im Bereich 2
36297 \begin_inset space \thinspace{}
36298 \end_inset
36299
36300 -
36301 \begin_inset space \thinspace{}
36302 \end_inset
36303
36304 10 ist.
36305  Vor der Formel beendet man den mehrspaltigen Text mit dem Befehl
36306 \end_layout
36307
36308 \begin_layout Standard
36309
36310 \series bold
36311
36312 \backslash
36313 end{multicols}
36314 \end_layout
36315
36316 \begin_layout Standard
36317 der im TeX-Modus eingegeben wird.
36318 \end_layout
36319
36320 \begin_layout Standard
36321 Durch den Befehl wird vor der Formel automatisch etwas Leerraum erstellt.
36322  Um dies rückgängig zu machen, fügt man vor der Formel -6
36323 \begin_inset space \thinspace{}
36324 \end_inset
36325
36326 mm vertikalen Leerraum ein.
36327  Ist der Formelstil 
36328 \series bold
36329 Eingerückt
36330 \begin_inset Foot
36331 status collapsed
36332
36333 \begin_layout Plain Layout
36334 Formelstile siehe 
36335 \begin_inset CommandInset ref
36336 LatexCommand ref
36337 reference "sec:Formelstile"
36338
36339 \end_inset
36340
36341
36342 \end_layout
36343
36344 \end_inset
36345
36346
36347 \series default
36348  gewählt, fügt man stattdessen -9
36349 \begin_inset space \thinspace{}
36350 \end_inset
36351
36352 mm Leerraum ein.
36353 \end_layout
36354
36355 \begin_layout Standard
36356 Als Beispiel ein mehrspaltiger Text mit einer abgesetzten Formel:
36357 \end_layout
36358
36359 \begin_layout Standard
36360 \begin_inset ERT
36361 status collapsed
36362
36363 \begin_layout Plain Layout
36364
36365
36366 \backslash
36367 begin{multicols}{2}
36368 \end_layout
36369
36370 \end_inset
36371
36372 Das Spektrum wird fouriertransformiert.
36373  Die Fouriertransformation wird verwendet, um die überlagerten Signale (Netzwerk
36374 , Lösungsmittel) zu trennen.
36375  Nachdem wir die Phasenverschiebung bestimmen konnten, interessiert uns
36376  nun das Aussehen des Ausgangssignals.
36377  Im Experiment haben wir es mit sehr vielen Teilchen zu tun, so dass man
36378  über alle Phasen integrieren muss.
36379  Sei nun 
36380 \begin_inset Formula $S$
36381 \end_inset
36382
36383  unser normiertes Ausgangssignal und 
36384 \begin_inset Formula $P$
36385 \end_inset
36386
36387  die Phasenverteilungsfunktion, so ergibt sich die Beziehung
36388 \begin_inset ERT
36389 status collapsed
36390
36391 \begin_layout Plain Layout
36392
36393
36394 \backslash
36395 end{multicols}
36396 \end_layout
36397
36398 \end_inset
36399
36400
36401 \begin_inset VSpace -6mm
36402 \end_inset
36403
36404
36405 \begin_inset Formula 
36406 \begin{equation}
36407 S(t)=S_{0}(t)\int_{-\infty}^{\infty}P(\phi,t)\mathrm{e}^{\mathrm{i}\phi}\,\mathrm{d}\phi
36408 \end{equation}
36409
36410 \end_inset
36411
36412
36413 \begin_inset ERT
36414 status collapsed
36415
36416 \begin_layout Plain Layout
36417
36418
36419 \backslash
36420 begin{multicols}{2}
36421 \end_layout
36422
36423 \end_inset
36424
36425 wobei 
36426 \begin_inset Formula $S_{0}$
36427 \end_inset
36428
36429  das Signal ohne Gradient ist und die Normierungsbedingung 
36430 \begin_inset Formula $\int_{-\infty}^{\infty}P(\phi,t)\,\mathrm{d}\phi=1$
36431 \end_inset
36432
36433  gilt.
36434  Nun dürfen wir aber nicht den Relaxationsprozess außer Acht lassen.
36435  Direkt nach dem 
36436 \begin_inset Formula $\nicefrac{\pi}{2}$
36437 \end_inset
36438
36439
36440 \begin_inset space \thinspace{}
36441 \end_inset
36442
36443 -rf-Puls beginnt sich die Magnetisierung zu entfokussieren, wodurch sich
36444  das Signal zusätzlich abschwächt.
36445  Diese Abschwächung verläuft exponentiell in Abhängigkeit der so genannten
36446  
36447 \begin_inset Formula $T_{2}$
36448 \end_inset
36449
36450 -Zeit.
36451 \end_layout
36452
36453 \begin_layout Standard
36454 \begin_inset ERT
36455 status collapsed
36456
36457 \begin_layout Plain Layout
36458
36459
36460 \backslash
36461 end{multicols}
36462 \end_layout
36463
36464 \end_inset
36465
36466  
36467 \end_layout
36468
36469 \begin_layout Subsection
36470 Formeln mit Beschreibung der Variablen
36471 \begin_inset Index idx
36472 status collapsed
36473
36474 \begin_layout Plain Layout
36475 Formel ! mit Variablenbeschreibung
36476 \end_layout
36477
36478 \end_inset
36479
36480
36481 \end_layout
36482
36483 \begin_layout Standard
36484 Möchte man wie in Formel 
36485 \begin_inset CommandInset ref
36486 LatexCommand eqref
36487 reference "eq:innerhalb"
36488
36489 \end_inset
36490
36491 , Variablen innerhalb einer Formel beschreiben, verwendet man eine 2
36492 \series bold
36493 ×
36494 \series default
36495
36496 \begin_inset Formula $n$
36497 \end_inset
36498
36499
36500 \begin_inset space ~
36501 \end_inset
36502
36503 Matrix mit links ausgerichteten Spalten für die verwendeten 
36504 \begin_inset Formula $n$
36505 \end_inset
36506
36507  Variablen.
36508 \begin_inset Foot
36509 status collapsed
36510
36511 \begin_layout Plain Layout
36512 Matrizen siehe 
36513 \begin_inset CommandInset ref
36514 LatexCommand ref
36515 reference "sec:Matrizen"
36516
36517 \end_inset
36518
36519
36520 \end_layout
36521
36522 \end_inset
36523
36524  Um die Beschreibung kleiner zu setzen, gibt man vor der Matrix z.
36525 \begin_inset space \thinspace{}
36526 \end_inset
36527
36528 B.
36529  den Befehl 
36530 \series bold
36531
36532 \backslash
36533 footnotesize
36534 \series default
36535  ein.
36536 \begin_inset Foot
36537 status collapsed
36538
36539 \begin_layout Plain Layout
36540 Schriftgrößen siehe 
36541 \begin_inset CommandInset ref
36542 LatexCommand ref
36543 reference "sub:Schriftgrößen"
36544
36545 \end_inset
36546
36547
36548 \end_layout
36549
36550 \end_inset
36551
36552
36553 \end_layout
36554
36555 \begin_layout Standard
36556 Wird der Formelstil 
36557 \series bold
36558 Eingerückt
36559 \begin_inset Foot
36560 status collapsed
36561
36562 \begin_layout Plain Layout
36563 Formelstile siehe 
36564 \begin_inset CommandInset ref
36565 LatexCommand ref
36566 reference "sec:Formelstile"
36567
36568 \end_inset
36569
36570
36571 \end_layout
36572
36573 \end_inset
36574
36575
36576 \series default
36577  verwendet, fügt man vor und nach der Matrix ein 
36578 \series bold
36579
36580 \backslash
36581 hfill
36582 \series default
36583
36584 \begin_inset Foot
36585 status collapsed
36586
36587 \begin_layout Plain Layout
36588
36589 \series bold
36590
36591 \backslash
36592 hfill
36593 \series default
36594  wirkt nur in Formeln mit dem Stil 
36595 \series bold
36596 Eingerückt
36597 \series default
36598 , siehe 
36599 \begin_inset CommandInset ref
36600 LatexCommand ref
36601 reference "sub:Variabler-Leerraum"
36602
36603 \end_inset
36604
36605 .
36606 \end_layout
36607
36608 \end_inset
36609
36610  ein, damit der Abstand der Matrix von der Gleichung und vom Seitenrand
36611  gleich ist.
36612 \end_layout
36613
36614 \begin_layout Standard
36615 Ist der Formelstil 
36616 \series bold
36617 Zentriert
36618 \series default
36619  gewählt, nutzt man die in 
36620 \begin_inset CommandInset ref
36621 LatexCommand ref
36622 reference "sub:Flalign-Umgebung"
36623
36624 \end_inset
36625
36626  beschriebene Möglichkeit, Formeln einzurücken.
36627  Formel 
36628 \begin_inset CommandInset ref
36629 LatexCommand eqref
36630 reference "eq:innerhalb"
36631
36632 \end_inset
36633
36634  besteht aus fünf Spalten, wobei in den ersten beiden die Gleichung, in
36635  der dritten die Matrix und in der letzten die leere TeX-Klammer steht.
36636 \begin_inset Formula 
36637 \begin{flalign}
36638 \hspace{30pt}F_{A} & =\rho·V·g & \footnotesize\begin{array}{ll}
36639 \rho & \textrm{Dichte}\\
36640 V & \textrm{Volumen}\\
36641 g & \textrm{Fallbeschleunigung}
36642 \end{array} &  & {}\label{eq:innerhalb}
36643 \end{flalign}
36644
36645 \end_inset
36646
36647
36648 \end_layout
36649
36650 \begin_layout Subsection
36651 Aufrechte kleine griechische Buchstaben
36652 \begin_inset CommandInset label
36653 LatexCommand label
36654 name "sub:Aufrechte-kleine-griechische"
36655
36656 \end_inset
36657
36658
36659 \begin_inset Index idx
36660 status collapsed
36661
36662 \begin_layout Plain Layout
36663 griechische Buchstaben ! aufrechte
36664 \end_layout
36665
36666 \end_inset
36667
36668
36669 \end_layout
36670
36671 \begin_layout Standard
36672 Die meisten Mathe-Schriften stellen nur kursive kleine griechische Buchstaben
36673  zur Verfügung.
36674  Für Symbole der Elementarteilchen, wie Pionen und Neutrinos werden jedoch
36675  aufrechte griechische Buchstaben benötigt.
36676  Die Datei 
36677 \series bold
36678 upgreek.sty
36679 \series default
36680
36681 \begin_inset Foot
36682 status collapsed
36683
36684 \begin_layout Plain Layout
36685
36686 \series bold
36687 upgreek
36688 \series default
36689  ist Teil des LaTeX-Paketes 
36690 \series bold
36691 was
36692 \series default
36693
36694 \begin_inset Index idx
36695 status collapsed
36696
36697 \begin_layout Plain Layout
36698 Pakete ! was
36699 \begin_inset ERT
36700 status collapsed
36701
36702 \begin_layout Plain Layout
36703
36704
36705 \backslash
36706 vspace{4mm}
36707 \end_layout
36708
36709 \end_inset
36710
36711
36712 \end_layout
36713
36714 \end_inset
36715
36716 .
36717 \end_layout
36718
36719 \end_inset
36720
36721
36722 \begin_inset Index idx
36723 status collapsed
36724
36725 \begin_layout Plain Layout
36726 Pakete ! upgreek
36727 \end_layout
36728
36729 \end_inset
36730
36731 , die mit der LaTeX-Vorspannzeile
36732 \end_layout
36733
36734 \begin_layout Standard
36735
36736 \series bold
36737
36738 \backslash
36739 usepackage{upgreek}
36740 \end_layout
36741
36742 \begin_layout Standard
36743 geladen wird, stellt diese Buchstaben zur Verfügung.
36744  
36745 \begin_inset ERT
36746 status collapsed
36747
36748 \begin_layout Plain Layout
36749
36750
36751 \backslash
36752 ifupgreek 
36753 \end_layout
36754
36755 \end_inset
36756
36757
36758 \begin_inset Note Note
36759 status open
36760
36761 \begin_layout Plain Layout
36762 Das Folgende erscheint nur im Ausdruck wenn das LaTeX-Paket 
36763 \series bold
36764 upgreek
36765 \series default
36766  installiert ist:
36767 \end_layout
36768
36769 \end_inset
36770
36771  Sie werden erzeugt, wenn der Befehl für einen griechischen Buchstaben mit
36772  
36773 \series bold
36774 up
36775 \series default
36776  begonnen wird.
36777  So erzeugt z.
36778 \begin_inset space \thinspace{}
36779 \end_inset
36780
36781 B.
36782  der Befehl 
36783 \series bold
36784
36785 \backslash
36786 uptau
36787 \series default
36788  dies: 
36789 \begin_inset Formula $\uptau$
36790 \end_inset
36791
36792
36793 \end_layout
36794
36795 \begin_layout Standard
36796 Damit kann man Elementarteilchenreaktionen erstellen:
36797 \begin_inset Formula 
36798 \[
36799 \uppi^{+}\to\upmu^{+}+\upnu_{\upmu}
36800 \]
36801
36802 \end_inset
36803
36804
36805 \end_layout
36806
36807 \begin_layout Standard
36808 Die aufrechten Buchstaben sind fetter und breiter als die kursiven.
36809  Sie sollten daher nicht für Einheiten wie 
36810 \begin_inset Quotes gld
36811 \end_inset
36812
36813 µm
36814 \begin_inset Quotes grd
36815 \end_inset
36816
36817  verwendet werden.
36818 \end_layout
36819
36820 \begin_layout Standard
36821 \begin_inset ERT
36822 status collapsed
36823
36824 \begin_layout Plain Layout
36825
36826
36827 \backslash
36828 else 
36829 \end_layout
36830
36831 \end_inset
36832
36833
36834 \begin_inset Note Note
36835 status open
36836
36837 \begin_layout Plain Layout
36838 Folgendes erscheint im Ausdruck wenn das LaTeX-Paket 
36839 \series bold
36840 upgreek
36841 \series default
36842  nicht installiert ist:
36843 \end_layout
36844
36845 \end_inset
36846
36847
36848 \end_layout
36849
36850 \begin_layout Standard
36851 Das LaTeX-Paket 
36852 \series bold
36853 upgreek 
36854 \series default
36855 muss installiert sein, um den Rest dieses Abschnitts im Ausdruck zu sehen.
36856 \end_layout
36857
36858 \begin_layout Standard
36859 \begin_inset ERT
36860 status collapsed
36861
36862 \begin_layout Plain Layout
36863
36864
36865 \backslash
36866 fi 
36867 \end_layout
36868
36869 \end_inset
36870
36871
36872 \end_layout
36873
36874 \begin_layout Subsection
36875 Textzeichen in Formeln
36876 \begin_inset Index idx
36877 status collapsed
36878
36879 \begin_layout Plain Layout
36880 Text ! in Formeln
36881 \end_layout
36882
36883 \end_inset
36884
36885
36886 \end_layout
36887
36888 \begin_layout Standard
36889 In einigen Fällen möchte man Textzeichen direkt in Formeln eingeben.
36890  Benötigt man z.
36891 \begin_inset space \thinspace{}
36892 \end_inset
36893
36894 B.
36895  den mittigen Punkt · in Formeln wie 
36896 \begin_inset Formula $\nu=5·10^{5}\,\mathrm{Hz}$
36897 \end_inset
36898
36899 , müsste man dafür jedes Mal den Befehl 
36900 \series bold
36901
36902 \backslash
36903 cdot
36904 \series default
36905  eingeben
36906 \begin_inset Foot
36907 status collapsed
36908
36909 \begin_layout Plain Layout
36910 siehe 
36911 \begin_inset CommandInset ref
36912 LatexCommand ref
36913 reference "sub:Binäre-Operatoren"
36914
36915 \end_inset
36916
36917
36918 \end_layout
36919
36920 \end_inset
36921
36922 , da dieses Zeichen in allen Kodierungen als Textzeichen definiert ist.
36923  Man kann jedoch die Kodierung mit folgender LaTeX-Vorspannzeile ändern:
36924 \end_layout
36925
36926 \begin_layout Standard
36927
36928 \series bold
36929
36930 \backslash
36931 DeclareInputText{183}{
36932 \backslash
36933 ifmmode
36934 \backslash
36935 cdot
36936 \backslash
36937 else
36938 \backslash
36939 textperiodcentered
36940 \backslash
36941 f\SpecialChar \textcompwordmark{}
36942 i}
36943 \end_layout
36944
36945 \begin_layout Standard
36946 Die Zeichenkodierung (Menü 
36947 \family sans
36948 Dokument\SpecialChar \menuseparator
36949 Einstellungen\SpecialChar \menuseparator
36950 Sprache
36951 \family default
36952 ) legt fest, welches Zeichen beim Druck einer bestimmten Taste erscheint.
36953  Wenn man die Taste für das Zeichen '·' drückt, wird intern der Befehl 
36954 \series bold
36955
36956 \backslash
36957 textperiodcentered
36958 \series default
36959  verwendet.
36960  Dieser Befehl ist in einer Formel jedoch nicht verfügbar, so dass es zu
36961  LaTeX-Fehlern kommen würde.
36962  Durch die geänderte Kodierung wird hingegen automatisch der richtige Befehl
36963  gewählt, je nachdem ob das Zeichen in eine Formel eingegeben wurde oder
36964  nicht.
36965 \end_layout
36966
36967 \begin_layout Standard
36968 Die Kodierung der einzelnen Zeichen ist in Definitionsdateien abgespeichert.
36969  Z.
36970 \begin_inset space \thinspace{}
36971 \end_inset
36972
36973 B.
36974  ist die Kodierung 
36975 \series bold
36976 latin9
36977 \series default
36978  in der Datei 
36979 \series bold
36980 latin9.def
36981 \series default
36982  definiert, die sich im Installationsverzeichnis von LaTeX befindet.
36983  Kodierungen sollten nur über den LaTeX-Vorspann und nicht in den Definitionsdat
36984 eien geändert werden.
36985  Ansonsten können eigene Dokumente von anderen LyX-Nutzern auf anderen Computern
36986  nicht ohne Weiteres bearbeitet werden.
36987 \end_layout
36988
36989 \begin_layout Standard
36990 \begin_inset VSpace medskip
36991 \end_inset
36992
36993 In diesem Dokument wurde außerdem mittigen Punkt noch das Gradzeichen °
36994  mit folgenden LaTeX-Vorspannzeilen so definiert, dass sie direkt in eine
36995  Formel eingegeben werden können:
36996 \end_layout
36997
36998 \begin_layout Standard
36999
37000 \series bold
37001
37002 \backslash
37003 DeclareInputText{176}{
37004 \backslash
37005 ifmmode^
37006 \backslash
37007 circ
37008 \backslash
37009 else
37010 \backslash
37011 textdegree
37012 \backslash
37013 f\SpecialChar \textcompwordmark{}
37014 i}
37015 \end_layout
37016
37017 \begin_layout Subsection
37018 LaTeX-Kommentare in Formeln
37019 \begin_inset Index idx
37020 status collapsed
37021
37022 \begin_layout Plain Layout
37023 LaTeX-Kommentare
37024 \end_layout
37025
37026 \end_inset
37027
37028
37029 \end_layout
37030
37031 \begin_layout Standard
37032 Im Text können Kommentare, die nur in der LaTeX-Ausgabe sichtbar sind, mit
37033  dem Menü 
37034 \family sans
37035 Einfügen\SpecialChar \menuseparator
37036 Notiz\SpecialChar \menuseparator
37037 Kommentar
37038 \family default
37039  eingefügt werden.
37040  Dies ist in einer Formel nicht möglich, aber man kann mit dem Befehl
37041 \end_layout
37042
37043 \begin_layout Standard
37044
37045 \series bold
37046
37047 \backslash
37048 %
37049 \end_layout
37050
37051 \begin_layout Standard
37052 LaTeX-Kommentare einfügen.
37053  Der Befehl erzeugt eine Box, in die man den Kommentar schreiben kann.
37054  Aufgrund eines Fehlers in LyX
37055 \begin_inset Foot
37056 status collapsed
37057
37058 \begin_layout Plain Layout
37059 \begin_inset CommandInset href
37060 LatexCommand href
37061 name "LyX-bug #9002"
37062 target "http://www.lyx.org/trac/ticket/9002"
37063
37064 \end_inset
37065
37066
37067 \end_layout
37068
37069 \end_inset
37070
37071  kann man keinen normalen Text verwenden.
37072  Selbst wenn man mathematischen Text verwendet, sieht man dessen LaTeX-Befehle
37073  in der LaTeX-Ausgabe.
37074 \begin_inset Newline newline
37075 \end_inset
37076
37077 Dies ist eine Formel mit einem LaTeX-Kommentar:
37078 \begin_inset Formula 
37079 \[
37080 A=B%\text{Dies ist der Kommentar}
37081 \]
37082
37083 \end_inset
37084
37085
37086 \end_layout
37087
37088 \begin_layout Standard
37089 \begin_inset Newpage newpage
37090 \end_inset
37091
37092
37093 \end_layout
37094
37095 \begin_layout Section
37096 \start_of_appendix
37097 Typographische Hinweise
37098 \begin_inset Index idx
37099 status collapsed
37100
37101 \begin_layout Plain Layout
37102 Typographische Hinweise
37103 \end_layout
37104
37105 \end_inset
37106
37107
37108 \end_layout
37109
37110 \begin_layout Standard
37111 Dieses Kapitel ist eine Zusammenfassung der wichtigsten typographischen
37112  Regeln, die teilweise auch im Duden 
37113 \begin_inset CommandInset citation
37114 LatexCommand cite
37115 key "Duden"
37116
37117 \end_inset
37118
37119  unter 
37120 \family typewriter
37121 Textverarbeitung
37122 \family default
37123  aufgelistet sind.
37124  Weitere Regeln sind in 
37125 \begin_inset CommandInset citation
37126 LatexCommand cite
37127 key "Checklist"
37128
37129 \end_inset
37130
37131  zu finden.
37132 \end_layout
37133
37134 \begin_layout Itemize
37135 Physikalische Einheiten werden 
37136 \emph on
37137 immer
37138 \emph default
37139  aufrecht gesetzt
37140 \begin_inset Foot
37141 status collapsed
37142
37143 \begin_layout Plain Layout
37144 wird durch Schriftstile erreicht, siehe 
37145 \begin_inset CommandInset ref
37146 LatexCommand ref
37147 reference "sub:Schriftstile"
37148
37149 \end_inset
37150
37151
37152 \end_layout
37153
37154 \end_inset
37155
37156 , egal ob sie sich in einem kursiven Text befinden: 30
37157 \begin_inset space \thinspace{}
37158 \end_inset
37159
37160 km/h
37161 \begin_inset Newline newline
37162 \end_inset
37163
37164 Zwischen Wert und Einheit befindet sich der kleinste Leerraum, siehe 
37165 \begin_inset CommandInset ref
37166 LatexCommand ref
37167 reference "sub:Vordefinierter-Leerraum"
37168
37169 \end_inset
37170
37171 .
37172 \begin_inset Newline newline
37173 \end_inset
37174
37175 Diese Richtlinie wird automatisch eingehalten, wenn man den Befehl 
37176 \series bold
37177
37178 \backslash
37179 unittwo
37180 \series default
37181  verwendet.
37182  Gibt man ihn in eine Formel ein, erscheinen zwei Kästchen.
37183  In das Erste wird der Wert, in das Zweite die Einheit eingegeben und man
37184  erhält wie oben: 
37185 \begin_inset Formula $\unit[30]{km/h}$
37186 \end_inset
37187
37188
37189 \begin_inset space \thinspace{}
37190 \end_inset
37191
37192 .
37193  Zu beachten ist, dass 
37194 \series bold
37195
37196 \backslash
37197 unittwo
37198 \series default
37199  kein echter LaTeX-Befehl, sondern der Befehl 
37200 \series bold
37201
37202 \backslash
37203 unit[Wert]{Einheit}
37204 \series default
37205  ist, daher kann man ihn nicht im TeX-Code benutzen.
37206 \end_layout
37207
37208 \begin_layout Itemize
37209 Prozent- und Promillezeichen werden wie physikalische Einheiten gesetzt:
37210 \begin_inset Newline newline
37211 \end_inset
37212
37213 1,2
37214 \begin_inset space \thinspace{}
37215 \end_inset
37216
37217 ‰ Alkohol im Blut
37218 \begin_inset Newline newline
37219 \end_inset
37220
37221 Sie folgen jedoch direkt auf die Zahl, wenn sie in einer Zusammensetzung
37222  oder Ableitung stehen: 3%-ige Rendite, 20%-Grenze
37223 \end_layout
37224
37225 \begin_layout Itemize
37226 Das Grad-Symbol folgt immer unmittelbar auf die Zahl: 15°, es sei denn es
37227  wird in einer Einheit verwendet: 15
37228 \begin_inset space \thinspace{}
37229 \end_inset
37230
37231 °C
37232 \end_layout
37233
37234 \begin_layout Itemize
37235 In Zahlen mit mehr als vier Ziffern wird zur Gruppierung vor jeder dritten
37236  Ziffer der kleinste Leerraum eingefügt: 18
37237 \begin_inset space \thinspace{}
37238 \end_inset
37239
37240 473
37241 \begin_inset space \thinspace{}
37242 \end_inset
37243
37244 588
37245 \end_layout
37246
37247 \begin_layout Itemize
37248 Für Bemaßungen wie z.
37249 \begin_inset space \thinspace{}
37250 \end_inset
37251
37252 B.
37253  120×90×40
37254 \begin_inset space \thinspace{}
37255 \end_inset
37256
37257 cm, verwendet man das gelegte Kreuz 
37258 \begin_inset Quotes gld
37259 \end_inset
37260
37261 ×
37262 \begin_inset Quotes grd
37263 \end_inset
37264
37265 , dass entweder über den Befehl 
37266 \series bold
37267
37268 \backslash
37269 times
37270 \series default
37271  oder über das Menü 
37272 \family sans
37273 Einfügen\SpecialChar \menuseparator
37274 Sonderzeichen\SpecialChar \menuseparator
37275 Symbole
37276 \family default
37277  verfügbar ist.
37278 \end_layout
37279
37280 \begin_layout Itemize
37281 Bei Datumsangaben befindet sich zwischen Tag und Monat der kleinste Leerraum,
37282  zwischen Monat und Jahr ein geschütztes Leerzeichen: 23.
37283 \begin_inset space \thinspace{}
37284 \end_inset
37285
37286 6.
37287 \begin_inset space ~
37288 \end_inset
37289
37290 1979
37291 \end_layout
37292
37293 \begin_layout Itemize
37294 Funktionen, deren Name aus mehreren Buchstaben besteht, werden aufrecht
37295  gesetzt um Verwechslungen mit Variablen zu vermeiden, siehe 
37296 \begin_inset CommandInset ref
37297 LatexCommand ref
37298 reference "sub:Vordefinierte-Funktionen"
37299
37300 \end_inset
37301
37302 .
37303 \end_layout
37304
37305 \begin_layout Itemize
37306 Indizes, die aus mehreren Buchstaben bestehen, werden aufrecht gesetzt:
37307  
37308 \begin_inset Formula $E_{\mathrm{kin}}$
37309 \end_inset
37310
37311
37312 \begin_inset Newline newline
37313 \end_inset
37314
37315 Komponenten von Matrizen werden kursiv gesetzt: 
37316 \begin_inset Formula $\hat{H}_{kl}$
37317 \end_inset
37318
37319
37320 \end_layout
37321
37322 \begin_layout Itemize
37323 Der Ableitungs-/Integrationsoperator 'd', die Eulersche Zahl 'e' und die
37324  Imaginäre Zahl 'i' sollten aufrecht gesetzt werden, um sie nicht mit anderen
37325  Variablen zu verwechseln.
37326 \end_layout
37327
37328 \begin_layout Itemize
37329 Das Symbol für eine 
37330 \noun on
37331 Fourier
37332 \noun default
37333 -Transformation kann entweder mit dem Befehl 
37334 \series bold
37335
37336 \backslash
37337 mathscr
37338 \begin_inset space \textvisiblespace{}
37339 \end_inset
37340
37341 F
37342 \series default
37343  oder über das Menü 
37344 \family sans
37345 Einfügen\SpecialChar \menuseparator
37346 Sonderzeichen\SpecialChar \menuseparator
37347 Symbole\SpecialChar \menuseparator
37348 Buchsta\SpecialChar \-
37349 benähnliche Symbole
37350 \family default
37351  eingefügt werden: 
37352 \begin_inset Formula $\mathscr{F}$
37353 \end_inset
37354
37355
37356 \end_layout
37357
37358 \begin_layout Standard
37359 \begin_inset Newpage newpage
37360 \end_inset
37361
37362
37363 \end_layout
37364
37365 \begin_layout Section
37366 Synonyme
37367 \begin_inset Index idx
37368 status collapsed
37369
37370 \begin_layout Plain Layout
37371 Synonyme
37372 \end_layout
37373
37374 \end_inset
37375
37376
37377 \end_layout
37378
37379 \begin_layout Standard
37380 Einige Zeichen und Symbole können mit mehreren Befehlen erstellt werden.
37381  Hier ist eine Übersicht der Synonymbefehle:
37382 \end_layout
37383
37384 \begin_layout Standard
37385 \begin_inset VSpace bigskip
37386 \end_inset
37387
37388
37389 \begin_inset space \hfill{}
37390 \end_inset
37391
37392
37393 \begin_inset Tabular
37394 <lyxtabular version="3" rows="12" columns="2">
37395 <features rotate="0" tabularvalignment="middle">
37396 <column alignment="center" valignment="top" width="0pt">
37397 <column alignment="center" valignment="top" width="0pt">
37398 <row>
37399 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
37400 \begin_inset Text
37401
37402 \begin_layout Plain Layout
37403 Befehl
37404 \end_layout
37405
37406 \end_inset
37407 </cell>
37408 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
37409 \begin_inset Text
37410
37411 \begin_layout Plain Layout
37412 äquivalent zu
37413 \begin_inset Note Note
37414 status collapsed
37415
37416 \begin_layout Plain Layout
37417
37418 \series bold
37419
37420 \backslash
37421 raisebox
37422 \series default
37423  dient nur als Abstandhalter.
37424 \end_layout
37425
37426 \end_inset
37427
37428
37429 \end_layout
37430
37431 \end_inset
37432 </cell>
37433 </row>
37434 <row>
37435 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37436 \begin_inset Text
37437
37438 \begin_layout Plain Layout
37439
37440 \backslash
37441 ast
37442 \end_layout
37443
37444 \end_inset
37445 </cell>
37446 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37447 \begin_inset Text
37448
37449 \begin_layout Plain Layout
37450 \begin_inset ERT
37451 status collapsed
37452
37453 \begin_layout Plain Layout
37454
37455
37456 \backslash
37457 raisebox{-1.2mm}{
37458 \end_layout
37459
37460 \end_inset
37461
37462 *
37463 \begin_inset ERT
37464 status collapsed
37465
37466 \begin_layout Plain Layout
37467
37468 }
37469 \end_layout
37470
37471 \end_inset
37472
37473
37474 \end_layout
37475
37476 \end_inset
37477 </cell>
37478 </row>
37479 <row>
37480 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37481 \begin_inset Text
37482
37483 \begin_layout Plain Layout
37484
37485 \backslash
37486 choose
37487 \end_layout
37488
37489 \end_inset
37490 </cell>
37491 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37492 \begin_inset Text
37493
37494 \begin_layout Plain Layout
37495
37496 \backslash
37497 binom
37498 \end_layout
37499
37500 \end_inset
37501 </cell>
37502 </row>
37503 <row>
37504 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37505 \begin_inset Text
37506
37507 \begin_layout Plain Layout
37508
37509 \backslash
37510 geq
37511 \end_layout
37512
37513 \end_inset
37514 </cell>
37515 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37516 \begin_inset Text
37517
37518 \begin_layout Plain Layout
37519
37520 \backslash
37521 ge
37522 \end_layout
37523
37524 \end_inset
37525 </cell>
37526 </row>
37527 <row>
37528 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37529 \begin_inset Text
37530
37531 \begin_layout Plain Layout
37532
37533 \backslash
37534 lbrace
37535 \end_layout
37536
37537 \end_inset
37538 </cell>
37539 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37540 \begin_inset Text
37541
37542 \begin_layout Plain Layout
37543 {
37544 \end_layout
37545
37546 \end_inset
37547 </cell>
37548 </row>
37549 <row>
37550 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37551 \begin_inset Text
37552
37553 \begin_layout Plain Layout
37554
37555 \backslash
37556 lbracket
37557 \end_layout
37558
37559 \end_inset
37560 </cell>
37561 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37562 \begin_inset Text
37563
37564 \begin_layout Plain Layout
37565 [
37566 \end_layout
37567
37568 \end_inset
37569 </cell>
37570 </row>
37571 <row>
37572 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37573 \begin_inset Text
37574
37575 \begin_layout Plain Layout
37576
37577 \backslash
37578 leftarrow
37579 \end_layout
37580
37581 \end_inset
37582 </cell>
37583 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37584 \begin_inset Text
37585
37586 \begin_layout Plain Layout
37587
37588 \backslash
37589 gets
37590 \end_layout
37591
37592 \end_inset
37593 </cell>
37594 </row>
37595 <row>
37596 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37597 \begin_inset Text
37598
37599 \begin_layout Plain Layout
37600
37601 \backslash
37602 leq
37603 \end_layout
37604
37605 \end_inset
37606 </cell>
37607 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37608 \begin_inset Text
37609
37610 \begin_layout Plain Layout
37611
37612 \backslash
37613 le
37614 \end_layout
37615
37616 \end_inset
37617 </cell>
37618 </row>
37619 <row>
37620 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37621 \begin_inset Text
37622
37623 \begin_layout Plain Layout
37624
37625 \backslash
37626 lor
37627 \end_layout
37628
37629 \end_inset
37630 </cell>
37631 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37632 \begin_inset Text
37633
37634 \begin_layout Plain Layout
37635
37636 \backslash
37637 vee
37638 \end_layout
37639
37640 \end_inset
37641 </cell>
37642 </row>
37643 <row>
37644 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37645 \begin_inset Text
37646
37647 \begin_layout Plain Layout
37648
37649 \backslash
37650 neq
37651 \end_layout
37652
37653 \end_inset
37654 </cell>
37655 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37656 \begin_inset Text
37657
37658 \begin_layout Plain Layout
37659
37660 \backslash
37661 not=
37662 \end_layout
37663
37664 \end_inset
37665 </cell>
37666 </row>
37667 <row>
37668 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37669 \begin_inset Text
37670
37671 \begin_layout Plain Layout
37672
37673 \backslash
37674 slash
37675 \end_layout
37676
37677 \end_inset
37678 </cell>
37679 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37680 \begin_inset Text
37681
37682 \begin_layout Plain Layout
37683 /
37684 \end_layout
37685
37686 \end_inset
37687 </cell>
37688 </row>
37689 <row>
37690 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
37691 \begin_inset Text
37692
37693 \begin_layout Plain Layout
37694
37695 \backslash
37696 vert
37697 \end_layout
37698
37699 \end_inset
37700 </cell>
37701 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
37702 \begin_inset Text
37703
37704 \begin_layout Plain Layout
37705 |
37706 \end_layout
37707
37708 \end_inset
37709 </cell>
37710 </row>
37711 </lyxtabular>
37712
37713 \end_inset
37714
37715
37716 \begin_inset space \hfill{}
37717 \end_inset
37718
37719
37720 \begin_inset Tabular
37721 <lyxtabular version="3" rows="12" columns="2">
37722 <features rotate="0" tabularvalignment="middle">
37723 <column alignment="center" valignment="top" width="0pt">
37724 <column alignment="center" valignment="top" width="0pt">
37725 <row>
37726 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
37727 \begin_inset Text
37728
37729 \begin_layout Plain Layout
37730 Befehl
37731 \end_layout
37732
37733 \end_inset
37734 </cell>
37735 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
37736 \begin_inset Text
37737
37738 \begin_layout Plain Layout
37739 äquivalent zu
37740 \end_layout
37741
37742 \end_inset
37743 </cell>
37744 </row>
37745 <row>
37746 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37747 \begin_inset Text
37748
37749 \begin_layout Plain Layout
37750
37751 \backslash
37752 backslash
37753 \end_layout
37754
37755 \end_inset
37756 </cell>
37757 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37758 \begin_inset Text
37759
37760 \begin_layout Plain Layout
37761
37762 \backslash
37763
37764 \backslash
37765
37766 \end_layout
37767
37768 \end_inset
37769 </cell>
37770 </row>
37771 <row>
37772 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37773 \begin_inset Text
37774
37775 \begin_layout Plain Layout
37776
37777 \backslash
37778 dasharrow
37779 \end_layout
37780
37781 \end_inset
37782 </cell>
37783 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37784 \begin_inset Text
37785
37786 \begin_layout Plain Layout
37787
37788 \backslash
37789 dashrightarrow
37790 \end_layout
37791
37792 \end_inset
37793 </cell>
37794 </row>
37795 <row>
37796 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37797 \begin_inset Text
37798
37799 \begin_layout Plain Layout
37800
37801 \backslash
37802 land
37803 \end_layout
37804
37805 \end_inset
37806 </cell>
37807 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37808 \begin_inset Text
37809
37810 \begin_layout Plain Layout
37811
37812 \backslash
37813 wedge
37814 \end_layout
37815
37816 \end_inset
37817 </cell>
37818 </row>
37819 <row>
37820 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37821 \begin_inset Text
37822
37823 \begin_layout Plain Layout
37824
37825 \backslash
37826 rbrace
37827 \end_layout
37828
37829 \end_inset
37830 </cell>
37831 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37832 \begin_inset Text
37833
37834 \begin_layout Plain Layout
37835 }
37836 \end_layout
37837
37838 \end_inset
37839 </cell>
37840 </row>
37841 <row>
37842 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37843 \begin_inset Text
37844
37845 \begin_layout Plain Layout
37846
37847 \backslash
37848 rbracket
37849 \end_layout
37850
37851 \end_inset
37852 </cell>
37853 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37854 \begin_inset Text
37855
37856 \begin_layout Plain Layout
37857 ]
37858 \end_layout
37859
37860 \end_inset
37861 </cell>
37862 </row>
37863 <row>
37864 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37865 \begin_inset Text
37866
37867 \begin_layout Plain Layout
37868
37869 \backslash
37870 rightarrow
37871 \end_layout
37872
37873 \end_inset
37874 </cell>
37875 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37876 \begin_inset Text
37877
37878 \begin_layout Plain Layout
37879
37880 \backslash
37881 to
37882 \end_layout
37883
37884 \end_inset
37885 </cell>
37886 </row>
37887 <row>
37888 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37889 \begin_inset Text
37890
37891 \begin_layout Plain Layout
37892
37893 \backslash
37894 lnot
37895 \end_layout
37896
37897 \end_inset
37898 </cell>
37899 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37900 \begin_inset Text
37901
37902 \begin_layout Plain Layout
37903
37904 \backslash
37905 neg
37906 \end_layout
37907
37908 \end_inset
37909 </cell>
37910 </row>
37911 <row>
37912 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37913 \begin_inset Text
37914
37915 \begin_layout Plain Layout
37916
37917 \backslash
37918 ne
37919 \end_layout
37920
37921 \end_inset
37922 </cell>
37923 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37924 \begin_inset Text
37925
37926 \begin_layout Plain Layout
37927
37928 \backslash
37929 not=
37930 \end_layout
37931
37932 \end_inset
37933 </cell>
37934 </row>
37935 <row>
37936 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37937 \begin_inset Text
37938
37939 \begin_layout Plain Layout
37940
37941 \backslash
37942 owns
37943 \end_layout
37944
37945 \end_inset
37946 </cell>
37947 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37948 \begin_inset Text
37949
37950 \begin_layout Plain Layout
37951
37952 \backslash
37953 ni
37954 \end_layout
37955
37956 \end_inset
37957 </cell>
37958 </row>
37959 <row>
37960 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37961 \begin_inset Text
37962
37963 \begin_layout Plain Layout
37964
37965 \backslash
37966 square
37967 \end_layout
37968
37969 \end_inset
37970 </cell>
37971 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37972 \begin_inset Text
37973
37974 \begin_layout Plain Layout
37975
37976 \backslash
37977 Box
37978 \end_layout
37979
37980 \end_inset
37981 </cell>
37982 </row>
37983 <row>
37984 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
37985 \begin_inset Text
37986
37987 \begin_layout Plain Layout
37988
37989 \backslash
37990 Vert
37991 \end_layout
37992
37993 \end_inset
37994 </cell>
37995 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
37996 \begin_inset Text
37997
37998 \begin_layout Plain Layout
37999
38000 \backslash
38001 |
38002 \end_layout
38003
38004 \end_inset
38005 </cell>
38006 </row>
38007 </lyxtabular>
38008
38009 \end_inset
38010
38011
38012 \begin_inset space \hfill{}
38013 \end_inset
38014
38015
38016 \end_layout
38017
38018 \begin_layout Standard
38019 \begin_inset Newpage newpage
38020 \end_inset
38021
38022
38023 \end_layout
38024
38025 \begin_layout Bibliography
38026 \begin_inset CommandInset bibitem
38027 LatexCommand bibitem
38028 key "TLC2"
38029
38030 \end_inset
38031
38032
38033 \shape smallcaps
38034 Mittelbach, F.
38035  ; Goossens, M.
38036 \shape default
38037
38038 \shape italic
38039 The LaTeX Companion
38040 \shape default
38041 .
38042  Addison Wesley, 2004
38043 \end_layout
38044
38045 \begin_layout Bibliography
38046 \begin_inset CommandInset bibitem
38047 LatexCommand bibitem
38048 key "Mathmode"
38049
38050 \end_inset
38051
38052
38053 \begin_inset CommandInset href
38054 LatexCommand href
38055 name "Beschreibung"
38056 target "ftp://ftp.dante.de/tex-archive/info/math/voss/mathmode/Mathmode.pdf"
38057
38058 \end_inset
38059
38060  der mathematischen Fähigkeiten von LaTeX
38061 \end_layout
38062
38063 \begin_layout Bibliography
38064 \begin_inset CommandInset bibitem
38065 LatexCommand bibitem
38066 key "AMS"
38067
38068 \end_inset
38069
38070
38071 \begin_inset CommandInset href
38072 LatexCommand href
38073 name "Beschreibung"
38074 target "http://mirrors.ctan.org/macros/latex/required/amslatex/math/amsldoc.pdf"
38075
38076 \end_inset
38077
38078  von 
38079 \begin_inset ERT
38080 status collapsed
38081
38082 \begin_layout Plain Layout
38083
38084
38085 \backslash
38086 AmS
38087 \end_layout
38088
38089 \end_inset
38090
38091 -LaTeX
38092 \end_layout
38093
38094 \begin_layout Bibliography
38095 \begin_inset CommandInset bibitem
38096 LatexCommand bibitem
38097 key "Symbole"
38098
38099 \end_inset
38100
38101
38102 \begin_inset CommandInset href
38103 LatexCommand href
38104 name "Auflistung"
38105 target "ftp://ftp.dante.de/tex-archive/info/symbols/comprehensive/symbols-a4.pdf"
38106
38107 \end_inset
38108
38109  aller über LaTeX-Pakete verfügbare Symbole
38110 \end_layout
38111
38112 \begin_layout Bibliography
38113 \begin_inset CommandInset bibitem
38114 LatexCommand bibitem
38115 key "cancel"
38116
38117 \end_inset
38118
38119
38120 \begin_inset CommandInset href
38121 LatexCommand href
38122 name "Dokumentation"
38123 target "http://mirrors.ctan.org/macros/latex/contrib/cancel/cancel.pdf"
38124
38125 \end_inset
38126
38127  des LaTeX-Pakets 
38128 \series bold
38129 cancel
38130 \series default
38131
38132 \begin_inset Index idx
38133 status collapsed
38134
38135 \begin_layout Plain Layout
38136 Pakete ! cancel
38137 \end_layout
38138
38139 \end_inset
38140
38141
38142 \end_layout
38143
38144 \begin_layout Bibliography
38145 \begin_inset CommandInset bibitem
38146 LatexCommand bibitem
38147 key "hyperref"
38148
38149 \end_inset
38150
38151
38152 \begin_inset CommandInset href
38153 LatexCommand href
38154 name "Dokumentation"
38155 target "http://www.tug.org/applications/hyperref/ftp/doc/manual.pdf"
38156
38157 \end_inset
38158
38159  des LaTeX-Pakets 
38160 \series bold
38161 hyperref
38162 \series default
38163
38164 \begin_inset Index idx
38165 status collapsed
38166
38167 \begin_layout Plain Layout
38168 Pakete ! hyperref
38169 \end_layout
38170
38171 \end_inset
38172
38173
38174 \end_layout
38175
38176 \begin_layout Bibliography
38177 \begin_inset CommandInset bibitem
38178 LatexCommand bibitem
38179 key "mhchem"
38180
38181 \end_inset
38182
38183
38184 \begin_inset CommandInset href
38185 LatexCommand href
38186 name "Dokumentation"
38187 target "http://www.ctan.org/tex-archive/macros/latex/contrib/mhchem/mhchem.pdf"
38188
38189 \end_inset
38190
38191  des LaTeX-Pakets 
38192 \series bold
38193 mhchem
38194 \series default
38195
38196 \begin_inset Index idx
38197 status collapsed
38198
38199 \begin_layout Plain Layout
38200 Pakete ! mhchem
38201 \end_layout
38202
38203 \end_inset
38204
38205
38206 \end_layout
38207
38208 \begin_layout Bibliography
38209 \begin_inset CommandInset bibitem
38210 LatexCommand bibitem
38211 key "Duden"
38212
38213 \end_inset
38214
38215
38216 \emph on
38217 Duden Band 1
38218 \emph default
38219 .
38220  22.
38221  Auflage, Duden Verlag 2001
38222 \end_layout
38223
38224 \begin_layout Bibliography
38225 \begin_inset CommandInset bibitem
38226 LatexCommand bibitem
38227 key "Checklist"
38228
38229 \end_inset
38230
38231
38232 \begin_inset CommandInset href
38233 LatexCommand href
38234 name "Prüfliste"
38235 target "http://physics.nist.gov/Document/checklist.pdf"
38236
38237 \end_inset
38238
38239  für das Rezensieren von Manuskripten
38240 \end_layout
38241
38242 \begin_layout Standard
38243 \begin_inset Note Note
38244 status collapsed
38245
38246 \begin_layout Plain Layout
38247 Damit der Index den Namen 
38248 \begin_inset Quotes gld
38249 \end_inset
38250
38251 Stichwortverzeichnis
38252 \begin_inset Quotes grd
38253 \end_inset
38254
38255  erhält, wurde im LaTeX-Vorspann
38256 \end_layout
38257
38258 \begin_layout Plain Layout
38259
38260 \series bold
38261
38262 \backslash
38263 addto
38264 \backslash
38265 captionsngerman{
38266 \backslash
38267 renewcommand{
38268 \backslash
38269 indexname}{Stichwortverzeichnis}}
38270 \end_layout
38271
38272 \begin_layout Plain Layout
38273 eingefügt.
38274 \end_layout
38275
38276 \begin_layout Plain Layout
38277 Das Paket 
38278 \series bold
38279 babel
38280 \series default
38281  sorgt dafür, dass die Beschriftungen in der ausgewählten Sprache erscheinen.
38282  Ehe man Beschriftungen ändern kann, muss es geladen werden.
38283  Außerdem wird 
38284 \series bold
38285 babel
38286 \series default
38287  von LyX automatisch nach dem LaTeX-Vorspann geladen.
38288  Das ruft aber keine Probleme hervor, solange im LaTeX-Vorspann die Dokumentspra
38289 che verwendet wurde.
38290 \end_layout
38291
38292 \begin_layout Plain Layout
38293 Möchte man andere Beschriftungen ändern, ersetzt man 
38294 \series bold
38295
38296 \backslash
38297 indexname
38298 \series default
38299  durch 
38300 \series bold
38301
38302 \backslash
38303 <Beschriftungs>name
38304 \series default
38305 .
38306  Eine Auflistung der möglichen Namen findet man unter
38307 \end_layout
38308
38309 \begin_layout Plain Layout
38310
38311 \family typewriter
38312 http://www.tex.ac.uk/cgi-bin/texfaq2html?label=fixnam
38313 \end_layout
38314
38315 \begin_layout Plain Layout
38316 Möchte man Beschriftungen für andere Sprachen ändern, ersetzt man 
38317 \series bold
38318 ngerman
38319 \series default
38320  durch die Dokumentsprache und
38321 \end_layout
38322
38323 \begin_layout Plain Layout
38324
38325 \series bold
38326
38327 \backslash
38328 captionsgerman
38329 \series default
38330  durch 
38331 \series bold
38332
38333 \backslash
38334 captions<Dokumentsprache>
38335 \series default
38336 .
38337 \end_layout
38338
38339 \end_inset
38340
38341
38342 \begin_inset CommandInset index_print
38343 LatexCommand printindex
38344 type "idx"
38345
38346 \end_inset
38347
38348
38349 \end_layout
38350
38351 \end_body
38352 \end_document