]> git.lyx.org Git - features.git/blob - lib/doc/de/Math.lyx
documentation files: more updates
[features.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 % benutzt in Kap. 24.5
67 \usepackage[samesize]{cancel}
68
69 % enables calculation of values
70 \usepackage{calc}
71
72 % für Mehrfachzeilen, benutzt in Kap. 24.7
73 \usepackage{multicol}
74
75 % benutzt in Kap. 19.4
76 \usepackage{remreset}
77
78 % für das Fourier-Transformationssymbol
79 \usepackage{mathrsfs}
80
81 % Farbdefinition aus Kap. 9.3
82 \definecolor{dunkelgruen}{cmyk}{0.5, 0, 1, 0.5}
83
84 % Operatoren deklarieren (siehe Kap. 10.4 und 15.2)
85 \DeclareMathOperator*{\Raute}{\blacklozenge}
86 \DeclareMathOperator{\sgn}{sgn}
87
88 \newcommand{\leer}{\textvisiblespace}
89
90 % Beispielbefehle aus Kap. 20.1 
91 \newcommand{\gr}{\Longrightarrow}
92 \newcommand{\us}[1]{\underline{#1}}
93 \newcommand{\fb}[3]{\framebox#1#2{$#3$}}
94 \newcommand{\cb}[3][white]{\fcolorbox{#2}{#1}{$#3$}}
95 \newcommand{\fracS}[3][]{\genfrac{}{}{#1}{}{#2}{#3}}
96
97 % Beispielmakro aus Kap. 19.4
98 %\def\tagform@#1{\maketag@@@{|#1|}}
99
100 % Makro aus Kap. 10.2
101 \def\clap#1{\hbox to 0pt{\hss #1\hss}}
102 \def\mathclap {\mathpalette \mathclapinternal}
103 \def\mathclapinternal #1#2{\clap{$\mathsurround =0pt #1{#2}$}}
104
105 % Damit der Index einen anderen Namen erhält.
106 \addto\captionsngerman
107 {\renewcommand{\indexname}
108 {Stichwort- und Befehlsverzeichnis}}
109
110 % ------------------------------------
111 % used to check for needed LaTeX packages
112 \usepackage{ifthen}
113
114 % testen ob das Paket eurosym installiert ist
115 % wird benutzt für das Euro-Symbol
116 \newboolean{eurosym}
117 \IfFileExists{eurosym.sty}
118  {\usepackage[gennarrow]{eurosym}
119   \setboolean{eurosym}{true}}
120  {\setboolean{eurosym}{false}}
121
122 % testen ob Paket braket installiert ist
123 % benötigt für physikalische Vektoren
124 \newboolean{braket}
125 \IfFileExists{braket.sty}
126  {\usepackage{braket}
127   \setboolean{braket}{true}}
128  {\setboolean{braket}{false}}
129
130 % testen ob Paket cancel installiert ist
131 \newboolean{cancel}
132 \IfFileExists{cancel.sty}
133  {\usepackage{cancel}
134   \setboolean{cancel}{true}}
135  {\setboolean{cancel}{false}}
136
137 % testen ob Paket upgreek installiert ist
138 \newboolean{upgreek}
139 \IfFileExists{upgreek.sty}
140  {\usepackage{upgreek}
141   \setboolean{upgreek}{true}}
142  {\setboolean{upgreek}{false}}
143
144 % benötigt für Kommas in Formeln, siehe Kap. 22.3
145 \IfFileExists{icomma.sty}
146  {\usepackage{icomma}}{}
147 \end_preamble
148 \options bibliography=totoc,index=totoc,BCOR7.5mm,titlepage,captions=tableheading
149 \use_default_options false
150 \maintain_unincluded_children false
151 \language ngerman
152 \language_package default
153 \inputencoding auto
154 \fontencoding global
155 \font_roman default
156 \font_sans default
157 \font_typewriter default
158 \font_math auto
159 \font_default_family default
160 \use_non_tex_fonts false
161 \font_sc false
162 \font_osf false
163 \font_sf_scale 100
164 \font_tt_scale 100
165 \graphics default
166 \default_output_format default
167 \output_sync 0
168 \bibtex_command default
169 \index_command default
170 \paperfontsize 12
171 \spacing single
172 \use_hyperref true
173 \pdf_title "LyXs Mathehandbuch"
174 \pdf_author "LyX Team, Uwe Stöhr"
175 \pdf_subject "LyX-Dokumentation der Mathefunktionen"
176 \pdf_keywords "LyX, Mathed"
177 \pdf_bookmarks true
178 \pdf_bookmarksnumbered true
179 \pdf_bookmarksopen true
180 \pdf_bookmarksopenlevel 1
181 \pdf_breaklinks false
182 \pdf_pdfborder false
183 \pdf_colorlinks true
184 \pdf_backref false
185 \pdf_pdfusetitle false
186 \pdf_quoted_options "linkcolor=black, citecolor=black, urlcolor=blue, filecolor=blue, pdfpagelayout=OneColumn, pdfnewwindow=true, pdfstartview=XYZ, plainpages=false"
187 \papersize a4paper
188 \use_geometry false
189 \use_package amsmath 2
190 \use_package amssymb 2
191 \use_package cancel 0
192 \use_package esint 1
193 \use_package mathdots 1
194 \use_package mathtools 0
195 \use_package mhchem 1
196 \use_package stackrel 0
197 \use_package stmaryrd 0
198 \use_package undertilde 0
199 \cite_engine basic
200 \cite_engine_type default
201 \biblio_style plain
202 \use_bibtopic false
203 \use_indices false
204 \paperorientation portrait
205 \suppress_date false
206 \justification true
207 \use_refstyle 0
208 \notefontcolor #0000ff
209 \index Stichwortverzeichnis
210 \shortcut idx
211 \color #008000
212 \end_index
213 \secnumdepth 4
214 \tocdepth 3
215 \paragraph_separation skip
216 \defskip medskip
217 \quotes_language german
218 \papercolumns 1
219 \papersides 2
220 \paperpagestyle plain
221 \bullet 1 0 6 -1
222 \bullet 2 2 35 -1
223 \bullet 3 2 7 -1
224 \tracking_changes false
225 \output_changes false
226 \html_math_output 0
227 \html_css_as_file 0
228 \html_be_strict false
229 \end_header
230
231 \begin_body
232
233 \begin_layout Title
234 LyXs detailliertes Mathe Handbuch
235 \end_layout
236
237 \begin_layout Author
238 vom LyX Team
239 \begin_inset Foot
240 status collapsed
241
242 \begin_layout Plain Layout
243 \noindent
244 Für Anmerkungen oder Korrekturen senden sie bitte eine Email an LyXs Dokumentati
245 ons-Liste: 
246 \family typewriter
247
248 \begin_inset CommandInset href
249 LatexCommand href
250 name "lyx-docs@lists.lyx.org"
251 target "lyx-docs@lists.lyx.org?subject=LyXs Mathehandbuch"
252
253 \end_inset
254
255
256 \end_layout
257
258 \end_inset
259
260
261 \begin_inset Note Note
262 status collapsed
263
264 \begin_layout Plain Layout
265 Verfasser: Uwe Stöhr
266 \end_layout
267
268 \end_inset
269
270
271 \begin_inset Newline newline
272 \end_inset
273
274
275 \begin_inset Newline newline
276 \end_inset
277
278
279 \family sans
280 Version 2.1.x
281 \end_layout
282
283 \begin_layout Standard
284 \begin_inset CommandInset toc
285 LatexCommand tableofcontents
286
287 \end_inset
288
289
290 \end_layout
291
292 \begin_layout Standard
293 \begin_inset Note Note
294 status open
295
296 \begin_layout Plain Layout
297 Um diese Datei als PDF, PS oder DVI zu exportieren, sollten die LaTeX-Pakete
298  
299 \series bold
300 braket, cancel, eurosym, mathdots, mhchem
301 \series default
302  und 
303 \series bold
304 was
305 \series default
306  installiert sein.
307  Wenn diese nicht installiert sind, kann das Dokument zwar exportiert werden,
308  die Abschnitte in denen die Pakete benötigt werden, erscheinen dann aber
309  nicht im Ausdruck.
310  Eine Ausnahme ist 
311 \series bold
312 mhchem
313 \series default
314 ; wenn es nicht installiert ist, kann dieses Dokument nicht exportiert werden.
315 \end_layout
316
317 \begin_layout Plain Layout
318 Die neueste PDF-Version dieses Dokuments ist hier zu finden:
319 \begin_inset Newline newline
320 \end_inset
321
322
323 \series bold
324 http://wiki.lyx.org/LyX/DocumentationDevelopment#Math
325 \end_layout
326
327 \end_inset
328
329
330 \end_layout
331
332 \begin_layout Standard
333 \begin_inset Newpage newpage
334 \end_inset
335
336
337 \end_layout
338
339 \begin_layout Section
340 Einleitung
341 \end_layout
342
343 \begin_layout Standard
344 Dieses Dokument ist eine Zusammenstellung und Erläuterung der wichtigsten
345  LaTeX-Befehle für mathematische Zeichen und Konstruktionen.
346  Die Erläuterungen sind speziell auf die Benutzung der Befehle mit LyX zugeschni
347 tten.
348  Das setzt voraus, dass bereits das Kapitel 
349 \family typewriter
350 Mathematische
351 \family default
352  
353 \family typewriter
354 Formeln
355 \family default
356  des Benutzerhandbuchs gelesen worden ist.
357 \end_layout
358
359 \begin_layout Standard
360 Die meisten Zeichen und viele Konstruktionen sind auch über das Menü 
361 \family sans
362 Einfügen
363 \series bold
364 \SpecialChar \menuseparator
365
366 \series default
367 Mathe
368 \family default
369  oder die 
370 \family sans
371 Mathe-Werkzeugleiste
372 \family default
373  aufrufbar.
374  Wer viele Formeln zu schreiben hat, wird jedoch feststellen, dass man mit
375  den LaTeX-Befehlen viel schneller eine Formel setzen kann.
376  Daher wird in diesem Handbuch der Fokus auf Befehle gesetzt wobei entsprechende
377  Werkzeugleistenknöpfe, falls vorhanden, erwähnt werden.
378 \end_layout
379
380 \begin_layout Standard
381 Sofern nicht anders angegeben, sind Befehle nur in der Formel-Umgebung von
382  LyX verfügbar.
383  Um alle Befehle nutzen zu können, muss die Option 
384 \family sans
385 AMS-Mathe-Paket verwenden
386 \family default
387  im Menü 
388 \family sans
389 Dokument\SpecialChar \menuseparator
390 Einstellungen\SpecialChar \menuseparator
391 Mathe Optionen
392 \family default
393  aktiviert sein.
394 \begin_inset Foot
395 status collapsed
396
397 \begin_layout Plain Layout
398 Die 
399 \family sans
400 Option
401 \family default
402  
403 \family sans
404 AMS-Mathe-Paket automatisch verwenden
405 \family default
406  verwendet 
407 \begin_inset ERT
408 status collapsed
409
410 \begin_layout Plain Layout
411
412
413 \backslash
414 AmS 
415 \end_layout
416
417 \end_inset
418
419 -Mathe nur wenn im Dokument mathematische Konstrukte gefunden wurden die
420  LyX unterstützt.
421 \end_layout
422
423 \end_inset
424
425
426 \end_layout
427
428 \begin_layout Standard
429 Es wird in diesem Dokument der Übersichtlichkeit halber auf die Auf\SpecialChar \textcompwordmark{}
430 listung
431  aller 
432 \begin_inset ERT
433 status collapsed
434
435 \begin_layout Plain Layout
436
437
438 \backslash
439 AmS 
440 \end_layout
441
442 \end_inset
443
444 -Mathe Befehle
445 \begin_inset Foot
446 status collapsed
447
448 \begin_layout Plain Layout
449 Eine Liste mit allen 
450 \begin_inset ERT
451 status collapsed
452
453 \begin_layout Plain Layout
454
455
456 \backslash
457 AmS
458 \end_layout
459
460 \end_inset
461
462 -Mathe Befehlen findet sich in der Datei 
463 \family sans
464
465 \begin_inset CommandInset href
466 LatexCommand href
467 name "amsguide.ps"
468 target "ftp://ftp.ams.org/pub/tex/doc/amstex/amsguide.pdf"
469
470 \end_inset
471
472
473 \family default
474 , die Teil jeder LaTeX-Standardinstallation ist.
475 \end_layout
476
477 \end_inset
478
479  verzichtet.
480 \end_layout
481
482 \begin_layout Section
483 Allgemeine Hinweise
484 \end_layout
485
486 \begin_layout Standard
487 Um eine in einer Textzeile eingebettete Formel
488 \begin_inset Index idx
489 status collapsed
490
491 \begin_layout Plain Layout
492 Formel ! eingebettete
493 \end_layout
494
495 \end_inset
496
497  zu erstellen, drückt man 
498 \family sans
499 Strg+M
500 \family default
501  oder den Werkzeugleistenknopf 
502 \begin_inset Graphics
503         filename ../../images/math-mode.png
504         scale 85
505
506 \end_inset
507
508 .
509 \begin_inset Newline newline
510 \end_inset
511
512 Um eine abgesetzte Formel
513 \begin_inset Index idx
514 status collapsed
515
516 \begin_layout Plain Layout
517 Formel ! abgesetzte
518 \end_layout
519
520 \end_inset
521
522  zu erstellen, drückt man 
523 \family sans
524 Strg+Shift+M
525 \family default
526 .
527 \end_layout
528
529 \begin_layout Standard
530 Um eine abgesetzte Formel in eine eingebettete umzuwandeln, setzt man den
531  Cursor in die Formel und drückt 
532 \family sans
533 Strg+Shift+M
534 \family default
535  oder benutzt das Menü 
536 \family sans
537 Bearbeiten\SpecialChar \menuseparator
538 Mathe\SpecialChar \menuseparator
539
540 \begin_inset Newline linebreak
541 \end_inset
542
543 Formelart ändern
544 \family default
545 .
546  Auf die selbe Weise lässt sich eine eingebettete in eine abgesetzte Formel
547  umwandeln.
548 \end_layout
549
550 \begin_layout Standard
551 Um Teile einer eingebetteten Formel in der Größe einer abgesetzten darzustellen,
552  gibt man in die Formel den Befehl 
553 \series bold
554
555 \backslash
556 displaystyle
557 \series default
558
559 \begin_inset Index idx
560 status collapsed
561
562 \begin_layout Plain Layout
563 Befehle ! D ! 
564 \backslash
565 displaystyle
566 \end_layout
567
568 \end_inset
569
570  ein.
571  Es erscheint ein neues blaues Kästchen, in das dann der Formelteil eingegeben
572  wird.
573 \end_layout
574
575 \begin_layout Standard
576 In einer Tabelle dürfen nur eingebettete Formeln verwendet werden.
577 \end_layout
578
579 \begin_layout Standard
580 Die 
581 \family sans
582 Mathe-Werkzeugleiste
583 \family default
584  kann über das Menü 
585 \family sans
586 Ansicht\SpecialChar \menuseparator
587 Werkzeugleisten
588 \family default
589  eingeblendet werden.
590  Wenn dort auf 
591 \begin_inset Quotes eld
592 \end_inset
593
594 Mathe
595 \begin_inset Quotes erd
596 \end_inset
597
598  geklickt wird, wird die Werkzeugleiste permanent am unteren Rand eingeblendet;
599  diese Einstellung wird durch ein Häkchen im Menü 
600 \family sans
601 Werkzeugleisten
602 \family default
603  angezeigt.
604  Wenn nun im Menü 
605 \family sans
606 Werkzeugleisten
607 \family default
608  nochmal auf 
609 \begin_inset Quotes eld
610 \end_inset
611
612 Mathe
613 \begin_inset Quotes erd
614 \end_inset
615
616  geklickt wird, wird die Werkzeugleiste nur angezeigt, wenn sich der Cursor
617  in einer Formel befindet; diese Einstellung wird durch die Umbenennung
618  des Menüeintrags von 
619 \begin_inset Quotes eld
620 \end_inset
621
622 Mathe
623 \begin_inset Quotes erd
624 \end_inset
625
626  zu 
627 \begin_inset Quotes eld
628 \end_inset
629
630 Mathe
631 \begin_inset space ~
632 \end_inset
633
634 (automatisch)
635 \begin_inset Quotes erd
636 \end_inset
637
638  angezeigt.
639 \end_layout
640
641 \begin_layout Standard
642 In den TeX-Modus
643 \begin_inset Index idx
644 status collapsed
645
646 \begin_layout Plain Layout
647 T@TeX-Modus
648 \end_layout
649
650 \end_inset
651
652  gelangt man über den Werkzeugleistenknopf 
653 \begin_inset Graphics
654         filename ../../images/ert-insert.png
655         scale 85
656
657 \end_inset
658
659  oder das Menü 
660 \family sans
661 Einfügen\SpecialChar \menuseparator
662 Te
663 \begin_inset ERT
664 status collapsed
665
666 \begin_layout Plain Layout
667
668 {}
669 \end_layout
670
671 \end_inset
672
673 X
674 \begin_inset space ~
675 \end_inset
676
677 Code
678 \family default
679  (Tastenkürzel 
680 \family sans
681 Strg+L
682 \family default
683 ).
684 \begin_inset Note Note
685 status collapsed
686
687 \begin_layout Plain Layout
688 In LyX gibt es drei 
689 \begin_inset Quotes gld
690 \end_inset
691
692 Eigennamen
693 \begin_inset Quotes grd
694 \end_inset
695
696 , die im Ausdruck mit hoch bzw.
697 \begin_inset space \space{}
698 \end_inset
699
700 tief gestellten Großbuchstaben erscheinen: TeX, LaTeX und LyX
701 \end_layout
702
703 \begin_layout Plain Layout
704 Um zu verhindern, dass diese Wörter als Eigennamen erkannt werden, fügt
705  man ein TeX-Klammerpaar ein.
706 \end_layout
707
708 \end_inset
709
710
711 \end_layout
712
713 \begin_layout Standard
714 In den LaTeX-Vorspann
715 \begin_inset Index idx
716 status collapsed
717
718 \begin_layout Plain Layout
719 L@LaTeX-Vorspann
720 \end_layout
721
722 \end_inset
723
724  gelangt man über das Menü 
725 \family sans
726 Dokument\SpecialChar \menuseparator
727 Einstellungen\SpecialChar \menuseparator
728 LaT
729 \begin_inset ERT
730 status collapsed
731
732 \begin_layout Plain Layout
733
734 {}
735 \end_layout
736
737 \end_inset
738
739 eX-Vorspann
740 \family default
741 .
742 \end_layout
743
744 \begin_layout Standard
745 Zur nachträglichen Bearbeitung von Matrizen, Fallunterscheidungen und mehrzeilig
746 en Formeln kann man die Menüs 
747 \family sans
748 Bearbeiten\SpecialChar \menuseparator
749 Mathe
750 \family default
751  und 
752 \family sans
753 Bearbeiten\SpecialChar \menuseparator
754 Zeilen
755 \begin_inset space \thinspace{}
756 \end_inset
757
758 &
759 \begin_inset space \thinspace{}
760 \end_inset
761
762 Spalten
763 \family default
764  oder die 
765 \family sans
766 Tabellen-Werkzeugleiste
767 \family default
768  verwenden.
769  Beim Vertauschen von Zeilen und Spalten mit Hilfe dieses Menüs wird immer
770  die Spalte bzw.
771 \begin_inset space \space{}
772 \end_inset
773
774 Zeile, in der der Cursor steht, mit der rechts daneben stehenden Spalte
775  bzw.
776 \begin_inset space \space{}
777 \end_inset
778
779 darunter liegenden Zeile vertauscht.
780  Befindet sich der Cursor in der letzten Spalte bzw.
781 \begin_inset space \space{}
782 \end_inset
783
784 Zeile, wird mit der links daneben stehenden Spalte bzw.
785 \begin_inset space \space{}
786 \end_inset
787
788 darüber liegenden Zeile vertauscht.
789 \end_layout
790
791 \begin_layout Standard
792 Zum Schreiben von Text in einer Formel
793 \begin_inset Foot
794 status collapsed
795
796 \begin_layout Plain Layout
797 Bei mehrzeiligen Formeln wird der Befehl 
798 \series bold
799
800 \backslash
801 intertext
802 \series default
803  verwendet, siehe 
804 \begin_inset CommandInset ref
805 LatexCommand ref
806 reference "sub:Text-in-mehrzeiligen"
807
808 \end_inset
809
810 .
811 \end_layout
812
813 \end_inset
814
815  verwendet man den 
816 \emph on
817 mathematischen Textmodus
818 \emph default
819
820 \begin_inset Index idx
821 status collapsed
822
823 \begin_layout Plain Layout
824 Text ! in Formeln
825 \end_layout
826
827 \end_inset
828
829
830 \begin_inset Index idx
831 status collapsed
832
833 \begin_layout Plain Layout
834 Mathematischer Textmodus
835 \end_layout
836
837 \end_inset
838
839 , in den man mit dem Tastenkürzel 
840 \family sans
841 Alt+M
842 \begin_inset space ~
843 \end_inset
844
845 M
846 \family default
847  oder durch Eingabe des Befehls 
848 \series bold
849
850 \backslash
851 text
852 \begin_inset Index idx
853 status collapsed
854
855 \begin_layout Plain Layout
856 Befehle ! T ! 
857 \backslash
858 text
859 \end_layout
860
861 \end_inset
862
863
864 \series default
865  gelangt.
866  Der Text erscheint in LyX schwarz und lässt sich dadurch gut vom Rest der
867  Formel unterscheiden.
868  Im fertigen Dokument erscheint mathematischer Text im Gegensatz zu allen
869  anderen Zeichen einer Formel nicht kursiv.
870 \end_layout
871
872 \begin_layout Subsection*
873 Befehlsschema
874 \end_layout
875
876 \begin_layout Standard
877 Die meisten LaTeX-Befehle für mathematische Konstruktionen besitzen folgendes
878  Schema:
879 \end_layout
880
881 \begin_layout Standard
882
883 \series bold
884
885 \backslash
886 Befehlsname[optionales
887 \series default
888  
889 \series bold
890 Argument]{anzugebendes
891 \series default
892  
893 \series bold
894 Argument}
895 \end_layout
896
897 \begin_layout Standard
898 Ein Befehl muss immer mit einem Backslash 
899 \begin_inset Quotes gld
900 \end_inset
901
902
903 \series bold
904
905 \backslash
906
907 \series default
908
909 \begin_inset Quotes grd
910 \end_inset
911
912  beginnen.
913  Möchte man ein optionales Argument nicht angeben, müssen auch die zugehörigen
914  eckigen Klammern weggelassen werden.
915  Die geschweiften Klammern werden in diesem Dokument als TeX-Klammern
916 \begin_inset Index idx
917 status collapsed
918
919 \begin_layout Plain Layout
920 T@TeX-Klammern
921 \end_layout
922
923 \end_inset
924
925  bezeichnet.
926  Hängt man in einer Formel an Befehlsnamen eine linke geschweifte Klammer
927  an, erzeugt LyX automatisch eine TeX-Klammer.
928  Ansonsten werden sie in Formeln mit dem Befehl 
929 \series bold
930
931 \backslash
932 {
933 \series default
934  erzeugt.
935  TeX-Klammern erscheinen in LyX rot, im Gegensatz zu normalen geschweiften
936  Klammern, die blau erscheinen.
937  Im TeX-Modus sind für TeX-Klammern keine Befehle notwendig.
938  TeX-Klammern erscheinen nicht im Ausdruck.
939 \end_layout
940
941 \begin_layout Standard
942 Werden Befehle ohne Argumente, wie z.
943 \begin_inset space \thinspace{}
944 \end_inset
945
946 B.
947  Symbolbefehle, im TeX-Modus eingegeben, muss auf den Befehl 
948 \emph on
949 immer
950 \emph default
951  ein Leerzeichen folgen um ihn zu beenden.
952  Dieses Leerzeichen erscheint nicht im Ausdruck.
953  Soll das Leerzeichen auch im Ausdruck erscheinen, muss auf den Befehl im
954  normalen Text ein geschütztes Leerzeichen folgen.
955 \end_layout
956
957 \begin_layout Standard
958 Ein geschütztes Leerzeichen gibt man mit 
959 \family sans
960 Strg+Leertaste
961 \family default
962  ein.
963 \end_layout
964
965 \begin_layout Subsection*
966 Zeichenerklärung
967 \end_layout
968
969 \begin_layout Itemize
970 Das Symbol
971 \begin_inset Foot
972 status collapsed
973
974 \begin_layout Plain Layout
975 Dieses sichtbare Leerzeichen erhält man über den Befehl 
976 \series bold
977
978 \backslash
979 textvisiblespace
980 \series default
981
982 \begin_inset Index idx
983 status collapsed
984
985 \begin_layout Plain Layout
986 Befehle ! T ! 
987 \backslash
988 textvisiblespace
989 \end_layout
990
991 \end_inset
992
993 , der im TeX-Modus einzugeben ist.
994 \end_layout
995
996 \end_inset
997
998  
999 \begin_inset ERT
1000 status collapsed
1001
1002 \begin_layout Plain Layout
1003
1004
1005 \backslash
1006 leer 
1007 \end_layout
1008
1009 \end_inset
1010
1011
1012 \begin_inset space ~
1013 \end_inset
1014
1015 steht für ein einzugebendes Leerzeichen.
1016 \end_layout
1017
1018 \begin_layout Itemize
1019 Ein Pfeil wie z.
1020 \begin_inset space \thinspace{}
1021 \end_inset
1022
1023 B.
1024  
1025 \begin_inset Formula $\to$
1026 \end_inset
1027
1028  steht für den Druck der jeweiligen Pfeiltaste auf der Tastatur.
1029  Die 
1030 \family sans
1031 Tabulator
1032 \family default
1033 -Taste kann oft anstelle von 
1034 \begin_inset Formula $\to$
1035 \end_inset
1036
1037  und 
1038 \begin_inset Formula $\downarrow$
1039 \end_inset
1040
1041  benutzt werden und 
1042 \family sans
1043 Umschalt+Tabulator
1044 \family default
1045  anstelle von 
1046 \begin_inset Formula $\leftarrow$
1047 \end_inset
1048
1049  und 
1050 \begin_inset Formula $\uparrow$
1051 \end_inset
1052
1053 .
1054 \end_layout
1055
1056 \begin_layout Subsection*
1057 Verfügbare Einheiten
1058 \end_layout
1059
1060 \begin_layout Standard
1061 \align center
1062 \begin_inset Float table
1063 placement H
1064 wide false
1065 sideways false
1066 status open
1067
1068 \begin_layout Plain Layout
1069 \align center
1070 \begin_inset Caption Standard
1071
1072 \begin_layout Plain Layout
1073 \begin_inset CommandInset label
1074 LatexCommand label
1075 name "tab:Verfügbare-Einheiten"
1076
1077 \end_inset
1078
1079 Verfügbare Einheiten
1080 \end_layout
1081
1082 \end_inset
1083
1084
1085 \end_layout
1086
1087 \begin_layout Plain Layout
1088 \align center
1089 \begin_inset Tabular
1090 <lyxtabular version="3" rows="13" columns="2">
1091 <features rotate="0" tabularvalignment="middle">
1092 <column alignment="center" valignment="top">
1093 <column alignment="center" valignment="top">
1094 <row>
1095 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1096 \begin_inset Text
1097
1098 \begin_layout Plain Layout
1099 Einheit
1100 \end_layout
1101
1102 \end_inset
1103 </cell>
1104 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1105 \begin_inset Text
1106
1107 \begin_layout Plain Layout
1108 Name / Beschreibung
1109 \end_layout
1110
1111 \end_inset
1112 </cell>
1113 </row>
1114 <row>
1115 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1116 \begin_inset Text
1117
1118 \begin_layout Plain Layout
1119 mm
1120 \end_layout
1121
1122 \end_inset
1123 </cell>
1124 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1125 \begin_inset Text
1126
1127 \begin_layout Plain Layout
1128 Millimeter
1129 \end_layout
1130
1131 \end_inset
1132 </cell>
1133 </row>
1134 <row>
1135 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1136 \begin_inset Text
1137
1138 \begin_layout Plain Layout
1139 cm
1140 \end_layout
1141
1142 \end_inset
1143 </cell>
1144 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1145 \begin_inset Text
1146
1147 \begin_layout Plain Layout
1148 Zentimeter
1149 \end_layout
1150
1151 \end_inset
1152 </cell>
1153 </row>
1154 <row>
1155 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1156 \begin_inset Text
1157
1158 \begin_layout Plain Layout
1159 in
1160 \end_layout
1161
1162 \end_inset
1163 </cell>
1164 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1165 \begin_inset Text
1166
1167 \begin_layout Plain Layout
1168 Inch / Zoll (1
1169 \begin_inset space \thinspace{}
1170 \end_inset
1171
1172 in = 2,54
1173 \begin_inset space \thinspace{}
1174 \end_inset
1175
1176 cm)
1177 \end_layout
1178
1179 \end_inset
1180 </cell>
1181 </row>
1182 <row>
1183 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1184 \begin_inset Text
1185
1186 \begin_layout Plain Layout
1187 pt
1188 \end_layout
1189
1190 \end_inset
1191 </cell>
1192 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1193 \begin_inset Text
1194
1195 \begin_layout Plain Layout
1196 Punkt (72,27
1197 \begin_inset space \thinspace{}
1198 \end_inset
1199
1200 pt = 1
1201 \begin_inset space \thinspace{}
1202 \end_inset
1203
1204 in)
1205 \end_layout
1206
1207 \end_inset
1208 </cell>
1209 </row>
1210 <row>
1211 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1212 \begin_inset Text
1213
1214 \begin_layout Plain Layout
1215 pc
1216 \end_layout
1217
1218 \end_inset
1219 </cell>
1220 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1221 \begin_inset Text
1222
1223 \begin_layout Plain Layout
1224 Pica (1
1225 \begin_inset space \thinspace{}
1226 \end_inset
1227
1228 pc = 12
1229 \begin_inset space \thinspace{}
1230 \end_inset
1231
1232 pt)
1233 \end_layout
1234
1235 \end_inset
1236 </cell>
1237 </row>
1238 <row>
1239 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1240 \begin_inset Text
1241
1242 \begin_layout Plain Layout
1243 sp
1244 \end_layout
1245
1246 \end_inset
1247 </cell>
1248 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1249 \begin_inset Text
1250
1251 \begin_layout Plain Layout
1252 skalierter Punkt(65536
1253 \begin_inset space \thinspace{}
1254 \end_inset
1255
1256 sp = 1
1257 \begin_inset space \thinspace{}
1258 \end_inset
1259
1260 pt)
1261 \end_layout
1262
1263 \end_inset
1264 </cell>
1265 </row>
1266 <row>
1267 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1268 \begin_inset Text
1269
1270 \begin_layout Plain Layout
1271 bp
1272 \end_layout
1273
1274 \end_inset
1275 </cell>
1276 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1277 \begin_inset Text
1278
1279 \begin_layout Plain Layout
1280 großer Punkt (72
1281 \begin_inset space \thinspace{}
1282 \end_inset
1283
1284 bp = 1
1285 \begin_inset space \thinspace{}
1286 \end_inset
1287
1288 in)
1289 \end_layout
1290
1291 \end_inset
1292 </cell>
1293 </row>
1294 <row>
1295 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1296 \begin_inset Text
1297
1298 \begin_layout Plain Layout
1299 dd
1300 \end_layout
1301
1302 \end_inset
1303 </cell>
1304 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1305 \begin_inset Text
1306
1307 \begin_layout Plain Layout
1308 Didot (1
1309 \begin_inset space \thinspace{}
1310 \end_inset
1311
1312 dd 
1313 \begin_inset Formula $\approx$
1314 \end_inset
1315
1316  0,376
1317 \begin_inset space \thinspace{}
1318 \end_inset
1319
1320 mm)
1321 \end_layout
1322
1323 \end_inset
1324 </cell>
1325 </row>
1326 <row>
1327 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1328 \begin_inset Text
1329
1330 \begin_layout Plain Layout
1331 cc
1332 \end_layout
1333
1334 \end_inset
1335 </cell>
1336 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1337 \begin_inset Text
1338
1339 \begin_layout Plain Layout
1340 Cicero (1
1341 \begin_inset space \thinspace{}
1342 \end_inset
1343
1344 cc = 12
1345 \begin_inset space \thinspace{}
1346 \end_inset
1347
1348 dd)
1349 \end_layout
1350
1351 \end_inset
1352 </cell>
1353 </row>
1354 <row>
1355 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1356 \begin_inset Text
1357
1358 \begin_layout Plain Layout
1359 ex
1360 \end_layout
1361
1362 \end_inset
1363 </cell>
1364 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1365 \begin_inset Text
1366
1367 \begin_layout Plain Layout
1368 Höhe des Buchstabens 
1369 \emph on
1370 x
1371 \emph default
1372  in der aktuellen Schrift
1373 \end_layout
1374
1375 \end_inset
1376 </cell>
1377 </row>
1378 <row>
1379 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1380 \begin_inset Text
1381
1382 \begin_layout Plain Layout
1383 em
1384 \end_layout
1385
1386 \end_inset
1387 </cell>
1388 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1389 \begin_inset Text
1390
1391 \begin_layout Plain Layout
1392 Breite des Buchstabens 
1393 \emph on
1394 M
1395 \emph default
1396  in der aktuellen Schrift
1397 \end_layout
1398
1399 \end_inset
1400 </cell>
1401 </row>
1402 <row>
1403 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1404 \begin_inset Text
1405
1406 \begin_layout Plain Layout
1407 mu
1408 \end_layout
1409
1410 \end_inset
1411 </cell>
1412 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1413 \begin_inset Text
1414
1415 \begin_layout Plain Layout
1416 Mathe-Einheit (1
1417 \begin_inset space \thinspace{}
1418 \end_inset
1419
1420 mu = 
1421 \begin_inset Formula $\nicefrac{1}{18}$
1422 \end_inset
1423
1424
1425 \begin_inset space \thinspace{}
1426 \end_inset
1427
1428 em)
1429 \end_layout
1430
1431 \end_inset
1432 </cell>
1433 </row>
1434 </lyxtabular>
1435
1436 \end_inset
1437
1438
1439 \end_layout
1440
1441 \end_inset
1442
1443
1444 \end_layout
1445
1446 \begin_layout Standard
1447 \begin_inset Newpage newpage
1448 \end_inset
1449
1450
1451 \end_layout
1452
1453 \begin_layout Section
1454 Grundlegende Funktionen
1455 \end_layout
1456
1457 \begin_layout Subsection
1458 Exponenten
1459 \begin_inset Index idx
1460 status collapsed
1461
1462 \begin_layout Plain Layout
1463 Exponenten
1464 \end_layout
1465
1466 \end_inset
1467
1468  und Indizes
1469 \begin_inset Index idx
1470 status collapsed
1471
1472 \begin_layout Plain Layout
1473 Indizes
1474 \end_layout
1475
1476 \end_inset
1477
1478
1479 \begin_inset Index idx
1480 status collapsed
1481
1482 \begin_layout Plain Layout
1483 Hochstellen|see
1484 \begin_inset ERT
1485 status collapsed
1486
1487 \begin_layout Plain Layout
1488
1489 {
1490 \end_layout
1491
1492 \end_inset
1493
1494 Exponenten
1495 \begin_inset ERT
1496 status collapsed
1497
1498 \begin_layout Plain Layout
1499
1500 }
1501 \end_layout
1502
1503 \end_inset
1504
1505
1506 \end_layout
1507
1508 \end_inset
1509
1510
1511 \begin_inset Index idx
1512 status collapsed
1513
1514 \begin_layout Plain Layout
1515 Tiefstellen|see
1516 \begin_inset ERT
1517 status collapsed
1518
1519 \begin_layout Plain Layout
1520
1521 {
1522 \end_layout
1523
1524 \end_inset
1525
1526 Indizes
1527 \begin_inset ERT
1528 status collapsed
1529
1530 \begin_layout Plain Layout
1531
1532 }
1533 \end_layout
1534
1535 \end_inset
1536
1537
1538 \end_layout
1539
1540 \end_inset
1541
1542
1543 \end_layout
1544
1545 \begin_layout Standard
1546 Indizes werden mit dem Unterstrich _ oder mit dem Mathe-Werkzeugleistenknopf
1547  
1548 \begin_inset Graphics
1549         filename ../../images/math-subscript.png
1550         scale 85
1551
1552 \end_inset
1553
1554 , Exponenten mit dem Zirkumflexzeichen ^ oder mit dem Mathe-Werkzeugleistenknopf
1555  
1556 \begin_inset Graphics
1557         filename ../../images/math-superscript.png
1558         scale 85
1559
1560 \end_inset
1561
1562  erzeugt.
1563 \end_layout
1564
1565 \begin_layout Standard
1566 \align center
1567 \begin_inset Tabular
1568 <lyxtabular version="3" rows="4" columns="2">
1569 <features rotate="0" tabularvalignment="middle">
1570 <column alignment="center" valignment="top" width="0pt">
1571 <column alignment="center" valignment="top" width="0pt">
1572 <row>
1573 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1574 \begin_inset Text
1575
1576 \begin_layout Plain Layout
1577 Befehl
1578 \end_layout
1579
1580 \end_inset
1581 </cell>
1582 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1583 \begin_inset Text
1584
1585 \begin_layout Plain Layout
1586 Ergebnis
1587 \begin_inset Note Note
1588 status collapsed
1589
1590 \begin_layout Plain Layout
1591
1592 \series bold
1593
1594 \backslash
1595 raisebox
1596 \series default
1597  dient nur als Abstandhalter.
1598 \end_layout
1599
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" leftline="true" usebox="none">
1610 \begin_inset Text
1611
1612 \begin_layout Plain Layout
1613 B_V
1614 \end_layout
1615
1616 \end_inset
1617 </cell>
1618 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1619 \begin_inset Text
1620
1621 \begin_layout Plain Layout
1622 \begin_inset Formula $B_{V}$
1623 \end_inset
1624
1625
1626 \end_layout
1627
1628 \end_inset
1629 </cell>
1630 </row>
1631 <row>
1632 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1633 \begin_inset Text
1634
1635 \begin_layout Plain Layout
1636 B^V
1637 \end_layout
1638
1639 \end_inset
1640 </cell>
1641 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1642 \begin_inset Text
1643
1644 \begin_layout Plain Layout
1645 \begin_inset Formula $\raisebox{5mm}{}B^{V}$
1646 \end_inset
1647
1648
1649 \end_layout
1650
1651 \end_inset
1652 </cell>
1653 </row>
1654 <row>
1655 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1656 \begin_inset Text
1657
1658 \begin_layout Plain Layout
1659 B^
1660 \begin_inset ERT
1661 status collapsed
1662
1663 \begin_layout Plain Layout
1664
1665
1666 \backslash
1667 leer 
1668 \end_layout
1669
1670 \end_inset
1671
1672 A
1673 \end_layout
1674
1675 \end_inset
1676 </cell>
1677 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1678 \begin_inset Text
1679
1680 \begin_layout Plain Layout
1681 \begin_inset Formula $\raisebox{5mm}{}B^{A}$
1682 \end_inset
1683
1684
1685 \end_layout
1686
1687 \end_inset
1688 </cell>
1689 </row>
1690 </lyxtabular>
1691
1692 \end_inset
1693
1694
1695 \end_layout
1696
1697 \begin_layout Standard
1698 Da der Zirkumflex ein Akzent ist, werden Selbstlaute akzentuiert statt hochgeste
1699 llt
1700 \begin_inset Foot
1701 status collapsed
1702
1703 \begin_layout Plain Layout
1704 Je nach Tastatureinstellung werden auch andere Buchstaben akzentuiert.
1705 \end_layout
1706
1707 \end_inset
1708
1709 .
1710  Um in diesem Fall Exponenten zu erzeugen, muss nach dem Zirkumflex ein
1711  Leerzeichen eingegeben werden, siehe letztes Beispiel.
1712 \end_layout
1713
1714 \begin_layout Subsection
1715 Brüche
1716 \begin_inset CommandInset label
1717 LatexCommand label
1718 name "sub:Brüche"
1719
1720 \end_inset
1721
1722
1723 \begin_inset Index idx
1724 status collapsed
1725
1726 \begin_layout Plain Layout
1727 Brüche
1728 \end_layout
1729
1730 \end_inset
1731
1732
1733 \end_layout
1734
1735 \begin_layout Standard
1736 Brüche werden mit dem Befehl 
1737 \series bold
1738
1739 \backslash
1740 frac
1741 \series default
1742
1743 \begin_inset Index idx
1744 status collapsed
1745
1746 \begin_layout Plain Layout
1747 Befehle ! F ! 
1748 \backslash
1749 frac
1750 \end_layout
1751
1752 \end_inset
1753
1754  oder mit dem Mathe-Werkzeugleistenknopf 
1755 \begin_inset Graphics
1756         filename ../../images/math/frac.png
1757         scale 50
1758
1759 \end_inset
1760
1761  erstellt.
1762  Die Zeichengröße wird automatisch angepasst, je nachdem, ob sich der Bruch
1763  in einer eingebetteten oder abgesetzten Formel befindet.
1764  Mit dem Mathe-Werkzeugleistenknopf 
1765 \begin_inset Graphics
1766         filename ../../images/math/frac-square.png
1767         scale 85
1768
1769 \end_inset
1770
1771  können verschieden Bruchtypen gewählt werden.
1772 \end_layout
1773
1774 \begin_layout Standard
1775 Mit dem Befehl 
1776 \series bold
1777
1778 \backslash
1779 dfrac
1780 \series default
1781
1782 \begin_inset Index idx
1783 status collapsed
1784
1785 \begin_layout Plain Layout
1786 Befehle ! D ! 
1787 \backslash
1788 dfrac
1789 \end_layout
1790
1791 \end_inset
1792
1793  kann man einen Bruch erzeugen, der immer in der Größe einer abgesetzten
1794  Formel erscheint.
1795  Mit 
1796 \series bold
1797
1798 \backslash
1799 tfrac
1800 \series default
1801
1802 \begin_inset Index idx
1803 status collapsed
1804
1805 \begin_layout Plain Layout
1806 Befehle ! T ! 
1807 \backslash
1808 tfrac
1809 \end_layout
1810
1811 \end_inset
1812
1813  erscheint der Bruch immer in der Größe einer eingebetteten Formel.
1814  Ein Beispiel:
1815 \end_layout
1816
1817 \begin_layout Standard
1818 Eine Zeile mit dem Bruch 
1819 \begin_inset Formula $\frac{1}{2}$
1820 \end_inset
1821
1822 , der mit dem Befehl 
1823 \series bold
1824
1825 \backslash
1826 frac
1827 \series default
1828  erstellt wurde.
1829 \end_layout
1830
1831 \begin_layout Standard
1832 Eine Zeile mit dem Bruch 
1833 \begin_inset Formula $\dfrac{1}{2}$
1834 \end_inset
1835
1836 , der mit dem Befehl 
1837 \series bold
1838
1839 \backslash
1840 dfrac
1841 \series default
1842  erstellt wurde.
1843 \end_layout
1844
1845 \begin_layout Standard
1846 \align center
1847 \begin_inset Tabular
1848 <lyxtabular version="3" rows="4" columns="2">
1849 <features rotate="0" tabularvalignment="middle">
1850 <column alignment="center" valignment="top" width="0pt">
1851 <column alignment="center" valignment="top" width="0pt">
1852 <row>
1853 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1854 \begin_inset Text
1855
1856 \begin_layout Plain Layout
1857 Befehl
1858 \end_layout
1859
1860 \end_inset
1861 </cell>
1862 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1863 \begin_inset Text
1864
1865 \begin_layout Plain Layout
1866 Ergebnis
1867 \begin_inset Note Note
1868 status collapsed
1869
1870 \begin_layout Plain Layout
1871
1872 \series bold
1873
1874 \backslash
1875 raisebox
1876 \series default
1877  dient nur als Abstandhalter.
1878 \end_layout
1879
1880 \end_inset
1881
1882
1883 \end_layout
1884
1885 \end_inset
1886 </cell>
1887 </row>
1888 <row>
1889 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1890 \begin_inset Text
1891
1892 \begin_layout Plain Layout
1893
1894 \backslash
1895 frac
1896 \begin_inset ERT
1897 status collapsed
1898
1899 \begin_layout Plain Layout
1900
1901
1902 \backslash
1903 leer 
1904 \end_layout
1905
1906 \end_inset
1907
1908 A
1909 \begin_inset Formula $\downarrow$
1910 \end_inset
1911
1912 B
1913 \end_layout
1914
1915 \end_inset
1916 </cell>
1917 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1918 \begin_inset Text
1919
1920 \begin_layout Plain Layout
1921 \begin_inset Formula $\raisebox{4.5mm}{}\frac{A}{B}\raisebox{-2.5mm}{}$
1922 \end_inset
1923
1924
1925 \end_layout
1926
1927 \end_inset
1928 </cell>
1929 </row>
1930 <row>
1931 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1932 \begin_inset Text
1933
1934 \begin_layout Plain Layout
1935
1936 \backslash
1937 dfrac
1938 \begin_inset ERT
1939 status collapsed
1940
1941 \begin_layout Plain Layout
1942
1943
1944 \backslash
1945 leer 
1946 \end_layout
1947
1948 \end_inset
1949
1950 A
1951 \begin_inset Formula $\downarrow$
1952 \end_inset
1953
1954 B
1955 \end_layout
1956
1957 \end_inset
1958 </cell>
1959 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1960 \begin_inset Text
1961
1962 \begin_layout Plain Layout
1963 \begin_inset Formula $\raisebox{7mm}{}\dfrac{A}{B}\raisebox{-4mm}{}$
1964 \end_inset
1965
1966
1967 \end_layout
1968
1969 \end_inset
1970 </cell>
1971 </row>
1972 <row>
1973 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1974 \begin_inset Text
1975
1976 \begin_layout Plain Layout
1977
1978 \backslash
1979 dfrac
1980 \begin_inset ERT
1981 status collapsed
1982
1983 \begin_layout Plain Layout
1984
1985
1986 \backslash
1987 leer 
1988 \end_layout
1989
1990 \end_inset
1991
1992 e^
1993 \backslash
1994 frac
1995 \begin_inset ERT
1996 status collapsed
1997
1998 \begin_layout Plain Layout
1999
2000
2001 \backslash
2002 leer 
2003 \end_layout
2004
2005 \end_inset
2006
2007 1
2008 \begin_inset Formula $\downarrow$
2009 \end_inset
2010
2011 2
2012 \begin_inset Formula $\downarrow\downarrow$
2013 \end_inset
2014
2015 3
2016 \end_layout
2017
2018 \end_inset
2019 </cell>
2020 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2021 \begin_inset Text
2022
2023 \begin_layout Plain Layout
2024 \begin_inset Formula $\raisebox{8mm}{}\dfrac{e^{\frac{1}{2}}}{3}\raisebox{-4mm}{}$
2025 \end_inset
2026
2027
2028 \end_layout
2029
2030 \end_inset
2031 </cell>
2032 </row>
2033 </lyxtabular>
2034
2035 \end_inset
2036
2037
2038 \end_layout
2039
2040 \begin_layout Standard
2041 \begin_inset VSpace bigskip
2042 \end_inset
2043
2044
2045 \begin_inset Newpage newpage
2046 \end_inset
2047
2048 Für Mehrfachbrüche gibt es den Befehl 
2049 \series bold
2050
2051 \backslash
2052 cfrac
2053 \series default
2054
2055 \begin_inset Index idx
2056 status collapsed
2057
2058 \begin_layout Plain Layout
2059 Befehle ! C ! 
2060 \backslash
2061 cfrac
2062 \end_layout
2063
2064 \end_inset
2065
2066 .
2067  Dazu ein Beispiel:
2068 \begin_inset VSpace -3mm
2069 \end_inset
2070
2071
2072 \end_layout
2073
2074 \begin_layout Standard
2075 \begin_inset Formula 
2076 \begin{align*}
2077 \textrm{mit \textbf{\textbackslash frac} erstellt} &  & \textrm{mit \textbf{\textbackslash cfrac} erstellt}\\
2078 \frac{A}{B+\frac{C+\frac{E}{F}}{D}} &  & \cfrac{A}{B+\cfrac{C+\cfrac{E}{F}}{D}}
2079 \end{align*}
2080
2081 \end_inset
2082
2083
2084 \end_layout
2085
2086 \begin_layout Standard
2087 Der Befehl für obiges Beispiel lautet:
2088 \end_layout
2089
2090 \begin_layout Standard
2091
2092 \series bold
2093
2094 \backslash
2095 cfrac
2096 \begin_inset ERT
2097 status collapsed
2098
2099 \begin_layout Plain Layout
2100
2101
2102 \backslash
2103 leer 
2104 \end_layout
2105
2106 \end_inset
2107
2108 A
2109 \begin_inset Formula $\downarrow$
2110 \end_inset
2111
2112 B+
2113 \backslash
2114 cfrac
2115 \begin_inset ERT
2116 status collapsed
2117
2118 \begin_layout Plain Layout
2119
2120
2121 \backslash
2122 leer 
2123 \end_layout
2124
2125 \end_inset
2126
2127 C+
2128 \backslash
2129 cfrac
2130 \begin_inset ERT
2131 status collapsed
2132
2133 \begin_layout Plain Layout
2134
2135
2136 \backslash
2137 leer 
2138 \end_layout
2139
2140 \end_inset
2141
2142 E
2143 \begin_inset Formula $\downarrow$
2144 \end_inset
2145
2146 F
2147 \begin_inset Formula $\downarrow$
2148 \end_inset
2149
2150 D
2151 \end_layout
2152
2153 \begin_layout Standard
2154 \begin_inset VSpace medskip
2155 \end_inset
2156
2157
2158 \end_layout
2159
2160 \begin_layout Standard
2161
2162 \series bold
2163
2164 \backslash
2165 cfrac
2166 \series default
2167  bewirkt, dass der Bruch immer in der Größe einer abgesetzten Formel erscheint,
2168  auch wenn er selbst Teil eines Bruches ist.
2169 \end_layout
2170
2171 \begin_layout Standard
2172 Es ist möglich die Ausrichtung des Zählers einzustellen.
2173  Der Befehl 
2174 \series bold
2175
2176 \backslash
2177 cfracleft
2178 \series default
2179  richtet ihn links, der Befehl 
2180 \series bold
2181
2182 \backslash
2183 cfracright
2184 \series default
2185  rechts aus.
2186  
2187 \series bold
2188
2189 \backslash
2190 cfrac
2191 \series default
2192  zentriert den Zähler.
2193  Diese Brüche demonstrieren die verschiedenen Ausrichtungen:
2194 \end_layout
2195
2196 \begin_layout Standard
2197
2198 \series bold
2199 \begin_inset Formula 
2200 \[
2201 \cfrac[l]{A}{B+C}\,,\,\cfrac{A}{B+C}\,,\,\cfrac[r]{A}{B+C}
2202 \]
2203
2204 \end_inset
2205
2206
2207 \end_layout
2208
2209 \begin_layout Standard
2210 \begin_inset Note Greyedout
2211 status open
2212
2213 \begin_layout Plain Layout
2214
2215 \series bold
2216 Achtung:
2217 \series default
2218  
2219 \series bold
2220
2221 \backslash
2222 cfracleft
2223 \series default
2224  und
2225 \series bold
2226  
2227 \backslash
2228 cfracright
2229 \series default
2230  sind keine echten LaTeX-Befehle, sondern stellen den Befehl 
2231 \series bold
2232
2233 \backslash
2234 cfrac[Ausrichtung]{Zähler}{Nenner}
2235 \series default
2236  dar.
2237  Daher kann man sie nicht im TeX-Code benutzen.
2238 \end_layout
2239
2240 \end_inset
2241
2242
2243 \end_layout
2244
2245 \begin_layout Standard
2246 \begin_inset VSpace medskip
2247 \end_inset
2248
2249 Oftmals ist es am günstigsten 
2250 \series bold
2251
2252 \backslash
2253 cfrac
2254 \series default
2255  und 
2256 \series bold
2257
2258 \backslash
2259 frac
2260 \series default
2261  zu kombinieren:
2262 \begin_inset Formula 
2263 \[
2264 \cfrac{A}{B+\cfrac{C+\frac{E}{F}}{D}}
2265 \]
2266
2267 \end_inset
2268
2269
2270 \end_layout
2271
2272 \begin_layout Standard
2273 Um Brüche mit schrägem Bruchstrich zu erzeugen, kann der Befehl 
2274 \series bold
2275
2276 \backslash
2277 nicefrac
2278 \series default
2279
2280 \begin_inset Index idx
2281 status collapsed
2282
2283 \begin_layout Plain Layout
2284 Befehle ! N ! 
2285 \backslash
2286 nicefrac
2287 \end_layout
2288
2289 \end_inset
2290
2291
2292 \begin_inset Formula $\nicefrac{5}{31}$
2293 \end_inset
2294
2295  oder 
2296 \series bold
2297
2298 \backslash
2299 unitfrac
2300 \series default
2301
2302 \begin_inset Index idx
2303 status collapsed
2304
2305 \begin_layout Plain Layout
2306 Befehle! U ! 
2307 \backslash
2308 unitfrac
2309 \end_layout
2310
2311 \end_inset
2312
2313
2314 \begin_inset Formula $\unitfrac{5}{31}$
2315 \end_inset
2316
2317  benutzt werden.
2318  Des Weiteren gibt es den Befehl 
2319 \series bold
2320
2321 \backslash
2322 unitfracthree
2323 \series default
2324  mit dem man einen Bruch in Kombination mit einer Zahl setzen kann: 
2325 \begin_inset Formula $\unitfrac[2]{1}{3}$
2326 \end_inset
2327
2328
2329 \end_layout
2330
2331 \begin_layout Standard
2332 \begin_inset Note Greyedout
2333 status open
2334
2335 \begin_layout Plain Layout
2336
2337 \series bold
2338 Achtung:
2339 \series default
2340  
2341 \series bold
2342
2343 \backslash
2344 unitfracthree
2345 \series default
2346  ist kein echter LaTeX-Befehl, sondern der Befehl
2347 \begin_inset Newline newline
2348 \end_inset
2349
2350
2351 \series bold
2352
2353 \backslash
2354 unitfrac[Zahl]{Zähler}{Nenner}
2355 \series default
2356  .
2357  Daher kann man ihn nicht im TeX-Code benutzen.
2358 \end_layout
2359
2360 \end_inset
2361
2362
2363 \end_layout
2364
2365 \begin_layout Standard
2366 Wie man eigene Brüche definiert, um die Bruchstrichdicke zu ändern, ist
2367  in 
2368 \begin_inset CommandInset ref
2369 LatexCommand ref
2370 reference "sub:Selbstdefinierte-Brüche"
2371
2372 \end_inset
2373
2374  erklärt.
2375 \end_layout
2376
2377 \begin_layout Standard
2378 \begin_inset Newpage newpage
2379 \end_inset
2380
2381
2382 \end_layout
2383
2384 \begin_layout Subsection
2385 Wurzeln
2386 \begin_inset Index idx
2387 status collapsed
2388
2389 \begin_layout Plain Layout
2390 Wurzeln
2391 \end_layout
2392
2393 \end_inset
2394
2395
2396 \end_layout
2397
2398 \begin_layout Standard
2399 Quadratwurzeln werden mit 
2400 \series bold
2401
2402 \backslash
2403 sqrt
2404 \series default
2405
2406 \begin_inset Index idx
2407 status collapsed
2408
2409 \begin_layout Plain Layout
2410 Befehle ! S ! 
2411 \backslash
2412 sqrt
2413 \end_layout
2414
2415 \end_inset
2416
2417  oder dem Mathe-Werkzeugleistenknopf 
2418 \begin_inset Graphics
2419         filename ../../images/math/sqrt.png
2420         scale 85
2421
2422 \end_inset
2423
2424  gesetzt, alle anderen Wurzeln mit dem Befehl 
2425 \series bold
2426
2427 \backslash
2428 root
2429 \series default
2430
2431 \begin_inset Index idx
2432 status collapsed
2433
2434 \begin_layout Plain Layout
2435 Befehle ! R ! 
2436 \backslash
2437 root
2438 \end_layout
2439
2440 \end_inset
2441
2442  oder dem Mathe-Werkzeugleistenknopf 
2443 \begin_inset Graphics
2444         filename ../../images/math/root.png
2445         scale 85
2446
2447 \end_inset
2448
2449 .
2450 \end_layout
2451
2452 \begin_layout Standard
2453 \align center
2454 \begin_inset Tabular
2455 <lyxtabular version="3" rows="3" columns="2">
2456 <features rotate="0" tabularvalignment="middle">
2457 <column alignment="center" valignment="top" width="0pt">
2458 <column alignment="center" valignment="top" width="0pt">
2459 <row>
2460 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2461 \begin_inset Text
2462
2463 \begin_layout Plain Layout
2464 Befehl
2465 \end_layout
2466
2467 \end_inset
2468 </cell>
2469 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2470 \begin_inset Text
2471
2472 \begin_layout Plain Layout
2473 Ergebnis
2474 \begin_inset Note Note
2475 status collapsed
2476
2477 \begin_layout Plain Layout
2478
2479 \series bold
2480
2481 \backslash
2482 raisebox
2483 \series default
2484  dient nur als Abstandhalter.
2485 \end_layout
2486
2487 \end_inset
2488
2489
2490 \end_layout
2491
2492 \end_inset
2493 </cell>
2494 </row>
2495 <row>
2496 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2497 \begin_inset Text
2498
2499 \begin_layout Plain Layout
2500
2501 \backslash
2502 sqrt
2503 \begin_inset ERT
2504 status collapsed
2505
2506 \begin_layout Plain Layout
2507
2508
2509 \backslash
2510 leer 
2511 \end_layout
2512
2513 \end_inset
2514
2515 A-B
2516 \end_layout
2517
2518 \end_inset
2519 </cell>
2520 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2521 \begin_inset Text
2522
2523 \begin_layout Plain Layout
2524 \begin_inset Formula $\raisebox{4.5mm}{}\sqrt{A-B}$
2525 \end_inset
2526
2527
2528 \end_layout
2529
2530 \end_inset
2531 </cell>
2532 </row>
2533 <row>
2534 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
2535 \begin_inset Text
2536
2537 \begin_layout Plain Layout
2538
2539 \backslash
2540 root
2541 \begin_inset ERT
2542 status collapsed
2543
2544 \begin_layout Plain Layout
2545
2546
2547 \backslash
2548 leer 
2549 \end_layout
2550
2551 \end_inset
2552
2553 3
2554 \begin_inset Formula $\downarrow$
2555 \end_inset
2556
2557 A-B
2558 \end_layout
2559
2560 \end_inset
2561 </cell>
2562 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
2563 \begin_inset Text
2564
2565 \begin_layout Plain Layout
2566 \begin_inset Formula $\raisebox{4.5mm}{}\sqrt[3]{A-B}$
2567 \end_inset
2568
2569
2570 \end_layout
2571
2572 \end_inset
2573 </cell>
2574 </row>
2575 </lyxtabular>
2576
2577 \end_inset
2578
2579
2580 \end_layout
2581
2582 \begin_layout Standard
2583 Eine Quadratwurzel kann man auch mit 
2584 \series bold
2585
2586 \backslash
2587 root
2588 \series default
2589  erstellen, indem man das Feld über der Wurzel frei lässt.
2590 \end_layout
2591
2592 \begin_layout Standard
2593 Bei manchen Indizes ist der Abstand zur Wurzel zu gering, wie bei dieser
2594  Formel: 
2595 \begin_inset Formula $\sqrt[\beta]{B}$
2596 \end_inset
2597
2598
2599 \begin_inset Newline newline
2600 \end_inset
2601
2602 Das 
2603 \begin_inset Formula $\beta$
2604 \end_inset
2605
2606  berührt die Wurzel.
2607  Um dies zu verhindern, verwendet man die Befehle 
2608 \series bold
2609
2610 \backslash
2611 leftroot
2612 \series default
2613
2614 \begin_inset Index idx
2615 status collapsed
2616
2617 \begin_layout Plain Layout
2618 Befehle ! L ! 
2619 \backslash
2620 leftroot
2621 \end_layout
2622
2623 \end_inset
2624
2625  und 
2626 \series bold
2627
2628 \backslash
2629 uproot
2630 \series default
2631
2632 \begin_inset Index idx
2633 status collapsed
2634
2635 \begin_layout Plain Layout
2636 Befehle ! U ! 
2637 \backslash
2638 uproot
2639 \end_layout
2640
2641 \end_inset
2642
2643 , die folgendes Schema besitzen:
2644 \end_layout
2645
2646 \begin_layout Standard
2647
2648 \series bold
2649
2650 \backslash
2651 leftroot{Abstand}
2652 \series default
2653  bzw.
2654 \begin_inset space \space{}
2655 \end_inset
2656
2657
2658 \series bold
2659
2660 \backslash
2661 uproot{Abstand}
2662 \end_layout
2663
2664 \begin_layout Standard
2665 Abstand ist die Anzahl der Big Points (Einheit bp; 
2666 \begin_inset Formula $\mathrm{72\, bp=1\, inch}$
2667 \end_inset
2668
2669 ), um die der Index nach links bzw.
2670 \begin_inset space \space{}
2671 \end_inset
2672
2673 nach oben verschoben werden soll.
2674  Die Befehle werden in den Index geschrieben.
2675  So ergibt der Befehl
2676 \begin_inset Newline newline
2677 \end_inset
2678
2679
2680 \series bold
2681
2682 \backslash
2683 root
2684 \backslash
2685 leftroot{-1
2686 \begin_inset Formula $\to$
2687 \end_inset
2688
2689
2690 \backslash
2691 uproot{2
2692 \begin_inset Formula $\to$
2693 \end_inset
2694
2695
2696 \backslash
2697 beta
2698 \begin_inset ERT
2699 status collapsed
2700
2701 \begin_layout Plain Layout
2702
2703
2704 \backslash
2705 leer 
2706 \end_layout
2707
2708 \end_inset
2709
2710
2711 \begin_inset Formula $\to$
2712 \end_inset
2713
2714 B
2715 \begin_inset Newline newline
2716 \end_inset
2717
2718
2719 \series default
2720 eine korrekt gesetzte Formel: 
2721 \begin_inset Formula $\sqrt[\leftroot{-1}\uproot{2}\beta]{B}$
2722 \end_inset
2723
2724
2725 \end_layout
2726
2727 \begin_layout Subsection
2728 Binomialkoeffizienten
2729 \begin_inset Index idx
2730 status collapsed
2731
2732 \begin_layout Plain Layout
2733 Binomialkoeffizienten
2734 \end_layout
2735
2736 \end_inset
2737
2738
2739 \end_layout
2740
2741 \begin_layout Standard
2742 Binomialkoeffizienten können mit dem Befehl 
2743 \series bold
2744
2745 \backslash
2746 binom
2747 \series default
2748
2749 \begin_inset Index idx
2750 status collapsed
2751
2752 \begin_layout Plain Layout
2753 Befehle ! B ! 
2754 \backslash
2755 binom
2756 \end_layout
2757
2758 \end_inset
2759
2760  oder über das Untermenü des Mathe-Werkzeugleistenknopfs 
2761 \begin_inset Graphics
2762         filename ../../images/math/frac-square.png
2763         scale 85
2764
2765 \end_inset
2766
2767 eingefügt werden.
2768  Analog zu Brüchen (
2769 \series bold
2770
2771 \backslash
2772 frac
2773 \series default
2774 ) gibt es außer 
2775 \series bold
2776
2777 \backslash
2778 binom
2779 \series default
2780  noch die Befehle 
2781 \series bold
2782
2783 \backslash
2784 dbinom
2785 \series default
2786
2787 \begin_inset Index idx
2788 status collapsed
2789
2790 \begin_layout Plain Layout
2791 Befehle ! D ! 
2792 \backslash
2793 dbinom
2794 \end_layout
2795
2796 \end_inset
2797
2798  und 
2799 \series bold
2800
2801 \backslash
2802 tbinom
2803 \series default
2804
2805 \begin_inset Index idx
2806 status collapsed
2807
2808 \begin_layout Plain Layout
2809 Befehle ! T ! 
2810 \backslash
2811 tbinom
2812 \end_layout
2813
2814 \end_inset
2815
2816 .
2817  Für andere Klammern um Binomialkoeffizienten gibt es die Befehle 
2818 \series bold
2819
2820 \backslash
2821 brace
2822 \series default
2823
2824 \begin_inset Index idx
2825 status collapsed
2826
2827 \begin_layout Plain Layout
2828 Befehle ! B ! 
2829 \backslash
2830 brace
2831 \end_layout
2832
2833 \end_inset
2834
2835  und 
2836 \series bold
2837
2838 \backslash
2839 brack
2840 \series default
2841
2842 \begin_inset Index idx
2843 status collapsed
2844
2845 \begin_layout Plain Layout
2846 Befehle ! B ! 
2847 \backslash
2848 brack
2849 \end_layout
2850
2851 \end_inset
2852
2853 .
2854 \end_layout
2855
2856 \begin_layout Standard
2857 \align center
2858 \begin_inset Tabular
2859 <lyxtabular version="3" rows="6" columns="2">
2860 <features rotate="0" tabularvalignment="middle">
2861 <column alignment="center" valignment="top" width="0pt">
2862 <column alignment="center" valignment="top" width="0pt">
2863 <row>
2864 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2865 \begin_inset Text
2866
2867 \begin_layout Plain Layout
2868 Befehl
2869 \end_layout
2870
2871 \end_inset
2872 </cell>
2873 <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
2874 \begin_inset Text
2875
2876 \begin_layout Plain Layout
2877 Ergebnis
2878 \begin_inset Note Note
2879 status collapsed
2880
2881 \begin_layout Plain Layout
2882
2883 \series bold
2884
2885 \backslash
2886 raisebox
2887 \series default
2888  dient nur als Abstandhalter.
2889 \end_layout
2890
2891 \end_inset
2892
2893
2894 \end_layout
2895
2896 \end_inset
2897 </cell>
2898 </row>
2899 <row>
2900 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
2901 \begin_inset Text
2902
2903 \begin_layout Plain Layout
2904
2905 \backslash
2906 binom
2907 \begin_inset ERT
2908 status collapsed
2909
2910 \begin_layout Plain Layout
2911
2912
2913 \backslash
2914 leer 
2915 \end_layout
2916
2917 \end_inset
2918
2919 A
2920 \begin_inset Formula $\downarrow$
2921 \end_inset
2922
2923 B
2924 \end_layout
2925
2926 \end_inset
2927 </cell>
2928 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
2929 \begin_inset Text
2930
2931 \begin_layout Plain Layout
2932 \begin_inset Formula $\raisebox{5mm}{}\binom{A}{B}\raisebox{-2.5mm}{}$
2933 \end_inset
2934
2935
2936 \end_layout
2937
2938 \end_inset
2939 </cell>
2940 </row>
2941 <row>
2942 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
2943 \begin_inset Text
2944
2945 \begin_layout Plain Layout
2946
2947 \backslash
2948 dbinom
2949 \begin_inset ERT
2950 status collapsed
2951
2952 \begin_layout Plain Layout
2953
2954
2955 \backslash
2956 leer 
2957 \end_layout
2958
2959 \end_inset
2960
2961 A
2962 \begin_inset Formula $\downarrow$
2963 \end_inset
2964
2965 B
2966 \end_layout
2967
2968 \end_inset
2969 </cell>
2970 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
2971 \begin_inset Text
2972
2973 \begin_layout Plain Layout
2974 \begin_inset Formula $\raisebox{5mm}{}\dbinom{A}{B}\raisebox{-2.5mm}{}$
2975 \end_inset
2976
2977
2978 \end_layout
2979
2980 \end_inset
2981 </cell>
2982 </row>
2983 <row>
2984 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
2985 \begin_inset Text
2986
2987 \begin_layout Plain Layout
2988
2989 \backslash
2990 tbinom
2991 \begin_inset ERT
2992 status collapsed
2993
2994 \begin_layout Plain Layout
2995
2996
2997 \backslash
2998 leer 
2999 \end_layout
3000
3001 \end_inset
3002
3003 A
3004 \begin_inset Formula $\downarrow$
3005 \end_inset
3006
3007 B
3008 \end_layout
3009
3010 \end_inset
3011 </cell>
3012 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
3013 \begin_inset Text
3014
3015 \begin_layout Plain Layout
3016 \begin_inset Formula $\raisebox{5mm}{}\tbinom{A}{B}\raisebox{-2.5mm}{}$
3017 \end_inset
3018
3019
3020 \end_layout
3021
3022 \end_inset
3023 </cell>
3024 </row>
3025 <row>
3026 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3027 \begin_inset Text
3028
3029 \begin_layout Plain Layout
3030
3031 \backslash
3032 brack
3033 \begin_inset ERT
3034 status collapsed
3035
3036 \begin_layout Plain Layout
3037
3038
3039 \backslash
3040 leer 
3041 \end_layout
3042
3043 \end_inset
3044
3045 A
3046 \begin_inset Formula $\downarrow$
3047 \end_inset
3048
3049 B
3050 \end_layout
3051
3052 \end_inset
3053 </cell>
3054 <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
3055 \begin_inset Text
3056
3057 \begin_layout Plain Layout
3058 \begin_inset Formula $\raisebox{5mm}{}{A \brack B}\raisebox{-2.5mm}{}$
3059 \end_inset
3060
3061
3062 \end_layout
3063
3064 \end_inset
3065 </cell>
3066 </row>
3067 <row>
3068 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
3069 \begin_inset Text
3070
3071 \begin_layout Plain Layout
3072
3073 \backslash
3074 brace
3075 \begin_inset ERT
3076 status collapsed
3077
3078 \begin_layout Plain Layout
3079
3080
3081 \backslash
3082 leer 
3083 \end_layout
3084
3085 \end_inset
3086
3087 A
3088 \begin_inset Formula $\downarrow$
3089 \end_inset
3090
3091 B
3092 \end_layout
3093
3094 \end_inset
3095 </cell>
3096 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
3097 \begin_inset Text
3098
3099 \begin_layout Plain Layout
3100 \begin_inset Formula $\raisebox{5mm}{}{A \brace B}\raisebox{-2.5mm}{}$
3101 \end_inset
3102
3103
3104 \end_layout
3105
3106 \end_inset
3107 </cell>
3108 </row>
3109 </lyxtabular>
3110
3111 \end_inset
3112
3113
3114 \end_layout
3115
3116 \begin_layout Subsection
3117 Fallunterscheidungen
3118 \begin_inset Index idx
3119 status collapsed
3120
3121 \begin_layout Plain Layout
3122 Fallunterscheidungen
3123 \end_layout
3124
3125 \end_inset
3126
3127
3128 \end_layout
3129
3130 \begin_layout Standard
3131 \align center
3132 \begin_inset Tabular
3133 <lyxtabular version="3" rows="3" columns="2">
3134 <features rotate="0" tabularvalignment="middle">
3135 <column alignment="center" valignment="top" width="0pt">
3136 <column alignment="center" valignment="top" width="0pt">
3137 <row>
3138 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3139 \begin_inset Text
3140
3141 \begin_layout Plain Layout
3142 Befehl
3143 \end_layout
3144
3145 \end_inset
3146 </cell>
3147 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3148 \begin_inset Text
3149
3150 \begin_layout Plain Layout
3151 Ergebnis
3152 \end_layout
3153
3154 \end_inset
3155 </cell>
3156 </row>
3157 <row>
3158 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3159 \begin_inset Text
3160
3161 \begin_layout Plain Layout
3162
3163 \backslash
3164 cases
3165 \begin_inset ERT
3166 status collapsed
3167
3168 \begin_layout Plain Layout
3169
3170
3171 \backslash
3172 leer 
3173 \end_layout
3174
3175 \end_inset
3176
3177 A
3178 \begin_inset Formula $\to$
3179 \end_inset
3180
3181 B>0
3182 \begin_inset Index idx
3183 status collapsed
3184
3185 \begin_layout Plain Layout
3186 Befehle ! C ! 
3187 \backslash
3188 cases
3189 \end_layout
3190
3191 \end_inset
3192
3193
3194 \end_layout
3195
3196 \end_inset
3197 </cell>
3198 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3199 \begin_inset Text
3200
3201 \begin_layout Plain Layout
3202 \begin_inset Formula $\begin{cases}
3203 A & B>0\end{cases}$
3204 \end_inset
3205
3206
3207 \end_layout
3208
3209 \end_inset
3210 </cell>
3211 </row>
3212 <row>
3213 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3214 \begin_inset Text
3215
3216 \begin_layout Plain Layout
3217
3218 \backslash
3219 cases
3220 \begin_inset ERT
3221 status collapsed
3222
3223 \begin_layout Plain Layout
3224
3225
3226 \backslash
3227 leer 
3228 \end_layout
3229
3230 \end_inset
3231
3232 Strg+Enter
3233 \end_layout
3234
3235 \end_inset
3236 </cell>
3237 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3238 \begin_inset Text
3239
3240 \begin_layout Plain Layout
3241 \begin_inset Formula $\begin{cases}
3242 A & \textrm{für }x>0\\
3243 B & \textrm{für }x=0
3244 \end{cases}$
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 Nach der Eingabe von 
3262 \series bold
3263
3264 \backslash
3265 cases
3266 \series default
3267  oder der Benutzung des Mathe-Werkzeugleistenknopfs 
3268 \begin_inset Graphics
3269         filename ../../images/math/cases.png
3270         scale 85
3271
3272 \end_inset
3273
3274  können mit 
3275 \family sans
3276 Strg+Enter
3277 \family default
3278  oder dem Tabellen-Werkzeugleistenknopf 
3279 \begin_inset Graphics
3280         filename ../../images/tabular-feature_append-row.png
3281         scale 85
3282
3283 \end_inset
3284
3285  neue Zeilen erstellt werden.
3286 \begin_inset Foot
3287 status collapsed
3288
3289 \begin_layout Plain Layout
3290 Umlaute in Formeln, wie in obiger Tabelle, sind in 
3291 \begin_inset CommandInset ref
3292 LatexCommand ref
3293 reference "sub:Akzente-für-ein"
3294
3295 \end_inset
3296
3297  beschrieben.
3298 \end_layout
3299
3300 \end_inset
3301
3302
3303 \end_layout
3304
3305 \begin_layout Standard
3306 Der Befehl 
3307 \series bold
3308
3309 \backslash
3310 cases
3311 \series default
3312  ist auch über das Menü 
3313 \family sans
3314 Einfügen\SpecialChar \menuseparator
3315 Mathe\SpecialChar \menuseparator
3316 Cases-Umgebung
3317 \family default
3318  verfügbar.
3319 \end_layout
3320
3321 \begin_layout Subsection
3322 Verneinungen
3323 \begin_inset Index idx
3324 status collapsed
3325
3326 \begin_layout Plain Layout
3327 Verneinungen
3328 \end_layout
3329
3330 \end_inset
3331
3332
3333 \end_layout
3334
3335 \begin_layout Standard
3336 Durch die Eingabe von 
3337 \series bold
3338
3339 \backslash
3340 not
3341 \series default
3342
3343 \begin_inset Index idx
3344 status collapsed
3345
3346 \begin_layout Plain Layout
3347 Befehle ! N ! 
3348 \backslash
3349 not
3350 \end_layout
3351
3352 \end_inset
3353
3354  kann jedes beliebige Zeichen durchgestrichen dargestellt werden.
3355  Die Zeichen werden quasi mit einem Schrägstrich akzentuiert.
3356 \end_layout
3357
3358 \begin_layout Standard
3359 \align center
3360 \begin_inset Tabular
3361 <lyxtabular version="3" rows="4" columns="2">
3362 <features rotate="0" tabularvalignment="middle">
3363 <column alignment="center" valignment="top" width="0pt">
3364 <column alignment="center" valignment="top" width="0pt">
3365 <row>
3366 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3367 \begin_inset Text
3368
3369 \begin_layout Plain Layout
3370 Befehl
3371 \end_layout
3372
3373 \end_inset
3374 </cell>
3375 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3376 \begin_inset Text
3377
3378 \begin_layout Plain Layout
3379 Ergebnis
3380 \end_layout
3381
3382 \end_inset
3383 </cell>
3384 </row>
3385 <row>
3386 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3387 \begin_inset Text
3388
3389 \begin_layout Plain Layout
3390
3391 \backslash
3392 not=
3393 \end_layout
3394
3395 \end_inset
3396 </cell>
3397 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3398 \begin_inset Text
3399
3400 \begin_layout Plain Layout
3401 \begin_inset Formula $\not=$
3402 \end_inset
3403
3404
3405 \end_layout
3406
3407 \end_inset
3408 </cell>
3409 </row>
3410 <row>
3411 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3412 \begin_inset Text
3413
3414 \begin_layout Plain Layout
3415
3416 \backslash
3417 not 
3418 \backslash
3419 le
3420 \end_layout
3421
3422 \end_inset
3423 </cell>
3424 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3425 \begin_inset Text
3426
3427 \begin_layout Plain Layout
3428 \begin_inset Formula $\not\le$
3429 \end_inset
3430
3431
3432 \end_layout
3433
3434 \end_inset
3435 </cell>
3436 </row>
3437 <row>
3438 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3439 \begin_inset Text
3440
3441 \begin_layout Plain Layout
3442
3443 \backslash
3444 not 
3445 \backslash
3446 parallel
3447 \end_layout
3448
3449 \end_inset
3450 </cell>
3451 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3452 \begin_inset Text
3453
3454 \begin_layout Plain Layout
3455 \begin_inset Formula $\not\parallel$
3456 \end_inset
3457
3458
3459 \end_layout
3460
3461 \end_inset
3462 </cell>
3463 </row>
3464 </lyxtabular>
3465
3466 \end_inset
3467
3468
3469 \end_layout
3470
3471 \begin_layout Standard
3472 Das letzte Beispiel zeigt, dass nicht alle Verneinungen gut aussehen.
3473  Deswegen gibt es für Einige spezielle Befehle (siehe 
3474 \begin_inset CommandInset ref
3475 LatexCommand ref
3476 reference "sub:Mathematische-Symbole"
3477
3478 \end_inset
3479
3480  und 
3481 \begin_inset CommandInset ref
3482 LatexCommand ref
3483 reference "sec:Relationen"
3484
3485 \end_inset
3486
3487 ).
3488 \end_layout
3489
3490 \begin_layout Subsection
3491 Platzhalter
3492 \begin_inset CommandInset label
3493 LatexCommand label
3494 name "sub:Platzhalter"
3495
3496 \end_inset
3497
3498
3499 \begin_inset Index idx
3500 status collapsed
3501
3502 \begin_layout Plain Layout
3503 Platzhalter
3504 \end_layout
3505
3506 \end_inset
3507
3508
3509 \begin_inset Index idx
3510 status collapsed
3511
3512 \begin_layout Plain Layout
3513 chemische Zeichen ! Isotope
3514 \end_layout
3515
3516 \end_inset
3517
3518
3519 \begin_inset Index idx
3520 status collapsed
3521
3522 \begin_layout Plain Layout
3523 Isotope|see
3524 \begin_inset ERT
3525 status collapsed
3526
3527 \begin_layout Plain Layout
3528
3529 {
3530 \end_layout
3531
3532 \end_inset
3533
3534 chemische Zeichen
3535 \begin_inset ERT
3536 status collapsed
3537
3538 \begin_layout Plain Layout
3539
3540 }
3541 \end_layout
3542
3543 \end_inset
3544
3545
3546 \end_layout
3547
3548 \end_inset
3549
3550
3551 \end_layout
3552
3553 \begin_layout Standard
3554 Möchte man z.
3555 \begin_inset space \thinspace{}
3556 \end_inset
3557
3558 B.
3559  Isotope
3560 \begin_inset Foot
3561 status collapsed
3562
3563 \begin_layout Plain Layout
3564 Wie Isotope und chemische Reaktionen erstellt werden, ist in 
3565 \begin_inset CommandInset ref
3566 LatexCommand ref
3567 reference "sub:Chemische-Symbole-und"
3568
3569 \end_inset
3570
3571  beschrieben.
3572 \end_layout
3573
3574 \end_inset
3575
3576  darstellen, tritt folgendes Problem auf:
3577 \end_layout
3578
3579 \begin_layout Standard
3580 \align center
3581 \begin_inset Tabular
3582 <lyxtabular version="3" rows="2" columns="2">
3583 <features rotate="0" tabularvalignment="middle">
3584 <column alignment="center" valignment="top" width="0pt">
3585 <column alignment="center" valignment="top" width="0pt">
3586 <row>
3587 <cell alignment="center" valignment="top" usebox="none">
3588 \begin_inset Text
3589
3590 \begin_layout Plain Layout
3591 durch Hoch- und Tiefstellen erzeugte Indizes:
3592 \end_layout
3593
3594 \end_inset
3595 </cell>
3596 <cell alignment="center" valignment="top" usebox="none">
3597 \begin_inset Text
3598
3599 \begin_layout Plain Layout
3600 \begin_inset Formula $_{9}^{19}\mathrm{F}\raisebox{-3mm}{}$
3601 \end_inset
3602
3603
3604 \end_layout
3605
3606 \end_inset
3607 </cell>
3608 </row>
3609 <row>
3610 <cell alignment="center" valignment="top" usebox="none">
3611 \begin_inset Text
3612
3613 \begin_layout Plain Layout
3614 korrekte Indizes:
3615 \end_layout
3616
3617 \end_inset
3618 </cell>
3619 <cell alignment="center" valignment="top" usebox="none">
3620 \begin_inset Text
3621
3622 \begin_layout Plain Layout
3623 \begin_inset Formula $_{\phantom{1}9}^{19}\mathrm{F}$
3624 \end_inset
3625
3626
3627 \end_layout
3628
3629 \end_inset
3630 </cell>
3631 </row>
3632 </lyxtabular>
3633
3634 \end_inset
3635
3636
3637 \begin_inset Note Note
3638 status collapsed
3639
3640 \begin_layout Plain Layout
3641
3642 \series bold
3643
3644 \backslash
3645 raisebox
3646 \series default
3647  dient nur
3648 \end_layout
3649
3650 \begin_layout Plain Layout
3651 als Abstandhalter.
3652 \end_layout
3653
3654 \end_inset
3655
3656
3657 \end_layout
3658
3659 \begin_layout Standard
3660 Der kürzere Index wird standardmäßig unter oder über das erste Zeichen des
3661  längeren Index gesetzt.
3662  Um das zu verhindern gibt es den Befehl 
3663 \series bold
3664
3665 \backslash
3666 phantom
3667 \series default
3668
3669 \begin_inset Index idx
3670 status collapsed
3671
3672 \begin_layout Plain Layout
3673 Befehle ! P ! 
3674 \backslash
3675 phantom
3676 \end_layout
3677
3678 \end_inset
3679
3680  oder den Mathe-Werkzeugleistenknopf
3681 \begin_inset space \thinspace{}
3682 \end_inset
3683
3684
3685 \begin_inset Foot
3686 status collapsed
3687
3688 \begin_layout Plain Layout
3689 zu finden im Untermenü des Mathe-Werkzeugleistenknopfs 
3690 \begin_inset Graphics
3691         filename ../../images/math/space.png
3692         scale 85
3693
3694 \end_inset
3695
3696
3697 \end_layout
3698
3699 \end_inset
3700
3701  
3702 \begin_inset Graphics
3703         filename ../../images/math/phantom.png
3704         scale 85
3705
3706 \end_inset
3707
3708 , der ein oder mehrere Phantomzeichen erstellt.
3709  Wenn 
3710 \series bold
3711
3712 \backslash
3713 phantom
3714 \series default
3715  eingegeben wird, erscheint ein kleines blaues Kästchen, dass von zwei roten
3716  Pfeilen überlagert wird.
3717  Die Pfeile geben an, dass die komplette Breite und Höhe des Kästcheninhalts
3718  als Leerraum erstellt wird.
3719  Phantomzeichen sind dementsprechend Platzhalter mit der Größe der angegebenen
3720  Zeichen.
3721 \end_layout
3722
3723 \begin_layout Standard
3724 \align center
3725 \begin_inset Tabular
3726 <lyxtabular version="3" rows="4" columns="2">
3727 <features rotate="0" tabularvalignment="middle">
3728 <column alignment="center" valignment="top">
3729 <column alignment="center" valignment="top">
3730 <row>
3731 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3732 \begin_inset Text
3733
3734 \begin_layout Plain Layout
3735 Befehl
3736 \end_layout
3737
3738 \end_inset
3739 </cell>
3740 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3741 \begin_inset Text
3742
3743 \begin_layout Plain Layout
3744 Ergebnis
3745 \begin_inset Note Note
3746 status collapsed
3747
3748 \begin_layout Plain Layout
3749
3750 \series bold
3751
3752 \backslash
3753 raisebox
3754 \series default
3755  dient nur als Abstandhalter.
3756 \end_layout
3757
3758 \end_inset
3759
3760
3761 \end_layout
3762
3763 \end_inset
3764 </cell>
3765 </row>
3766 <row>
3767 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3768 \begin_inset Text
3769
3770 \begin_layout Plain Layout
3771 ^19
3772 \begin_inset ERT
3773 status collapsed
3774
3775 \begin_layout Plain Layout
3776
3777
3778 \backslash
3779 leer 
3780 \end_layout
3781
3782 \end_inset
3783
3784 _
3785 \backslash
3786 phantom
3787 \begin_inset ERT
3788 status collapsed
3789
3790 \begin_layout Plain Layout
3791
3792
3793 \backslash
3794 leer 
3795 \end_layout
3796
3797 \end_inset
3798
3799 1
3800 \begin_inset Formula $\to$
3801 \end_inset
3802
3803 9
3804 \begin_inset ERT
3805 status collapsed
3806
3807 \begin_layout Plain Layout
3808
3809
3810 \backslash
3811 leer 
3812 \end_layout
3813
3814 \end_inset
3815
3816 F
3817 \end_layout
3818
3819 \end_inset
3820 </cell>
3821 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3822 \begin_inset Text
3823
3824 \begin_layout Plain Layout
3825 \begin_inset Formula $\raisebox{4.5mm}{}{}_{\phantom{1}9}^{19}\mathrm{F}\raisebox{-2.5mm}{}$
3826 \end_inset
3827
3828
3829 \end_layout
3830
3831 \end_inset
3832 </cell>
3833 </row>
3834 <row>
3835 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3836 \begin_inset Text
3837
3838 \begin_layout Plain Layout
3839 ^235
3840 \begin_inset ERT
3841 status collapsed
3842
3843 \begin_layout Plain Layout
3844
3845
3846 \backslash
3847 leer 
3848 \end_layout
3849
3850 \end_inset
3851
3852 _
3853 \backslash
3854 phantom
3855 \begin_inset ERT
3856 status collapsed
3857
3858 \begin_layout Plain Layout
3859
3860
3861 \backslash
3862 leer 
3863 \end_layout
3864
3865 \end_inset
3866
3867 23
3868 \begin_inset Formula $\to$
3869 \end_inset
3870
3871 9
3872 \begin_inset ERT
3873 status collapsed
3874
3875 \begin_layout Plain Layout
3876
3877
3878 \backslash
3879 leer 
3880 \end_layout
3881
3882 \end_inset
3883
3884 F
3885 \end_layout
3886
3887 \end_inset
3888 </cell>
3889 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3890 \begin_inset Text
3891
3892 \begin_layout Plain Layout
3893 \begin_inset Formula $\raisebox{4.5mm}{}{}_{\phantom{23}9}^{235}\mathrm{F}\raisebox{-2.5mm}{}$
3894 \end_inset
3895
3896
3897 \end_layout
3898
3899 \end_inset
3900 </cell>
3901 </row>
3902 <row>
3903 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3904 \begin_inset Text
3905
3906 \begin_layout Plain Layout
3907
3908 \backslash
3909 Lambda^
3910 \begin_inset ERT
3911 status collapsed
3912
3913 \begin_layout Plain Layout
3914
3915
3916 \backslash
3917 leer 
3918 \end_layout
3919
3920 \end_inset
3921
3922
3923 \backslash
3924 phantom
3925 \begin_inset ERT
3926 status collapsed
3927
3928 \begin_layout Plain Layout
3929
3930
3931 \backslash
3932 leer 
3933 \end_layout
3934
3935 \end_inset
3936
3937 ii
3938 \begin_inset Formula $\to$
3939 \end_inset
3940
3941 t
3942 \begin_inset ERT
3943 status collapsed
3944
3945 \begin_layout Plain Layout
3946
3947
3948 \backslash
3949 leer 
3950 \end_layout
3951
3952 \end_inset
3953
3954 _MMt
3955 \end_layout
3956
3957 \end_inset
3958 </cell>
3959 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3960 \begin_inset Text
3961
3962 \begin_layout Plain Layout
3963 \begin_inset Formula $\raisebox{4.5mm}{}\Lambda_{MMt}^{\phantom{ii}t}\raisebox{-2.5mm}{}$
3964 \end_inset
3965
3966
3967 \end_layout
3968
3969 \end_inset
3970 </cell>
3971 </row>
3972 </lyxtabular>
3973
3974 \end_inset
3975
3976
3977 \end_layout
3978
3979 \begin_layout Standard
3980 Des Weiteren gibt es noch die Befehle 
3981 \series bold
3982
3983 \backslash
3984 vphantom
3985 \series default
3986
3987 \begin_inset Index idx
3988 status collapsed
3989
3990 \begin_layout Plain Layout
3991 Befehle ! V ! 
3992 \backslash
3993 vphantom
3994 \end_layout
3995
3996 \end_inset
3997
3998  (Werkzeugleistenknopf 
3999 \begin_inset space ~
4000 \end_inset
4001
4002
4003 \begin_inset Graphics
4004         filename ../../images/math/vphantom.png
4005         scale 85
4006
4007 \end_inset
4008
4009 ) und 
4010 \series bold
4011
4012 \backslash
4013 hphantom
4014 \series default
4015
4016 \begin_inset Index idx
4017 status collapsed
4018
4019 \begin_layout Plain Layout
4020 Befehle ! H ! 
4021 \backslash
4022 hphantom
4023 \end_layout
4024
4025 \end_inset
4026
4027  (Werkzeugleistenknopf 
4028 \begin_inset space ~
4029 \end_inset
4030
4031
4032 \begin_inset Graphics
4033         filename ../../images/math/hphantom.png
4034         scale 85
4035
4036 \end_inset
4037
4038 ).
4039  
4040 \series bold
4041
4042 \backslash
4043 hphantom
4044 \series default
4045  erzeugt nur Platz für die maximale Höhe der im Kästchen angegebenen Zeichen,
4046  nicht jedoch für deren Breite.
4047  Bei 
4048 \series bold
4049
4050 \backslash
4051 vphantom
4052 \series default
4053  wird nur Platz mit der Breite des Kästchens erstellt.
4054  Daher haben die Kästchen der beiden Befehle nur einen roten Pfeil.
4055 \end_layout
4056
4057 \begin_layout Standard
4058 Zum Beispiel erzeugt 
4059 \series bold
4060
4061 \backslash
4062 vphantom
4063 \series default
4064
4065 \begin_inset ERT
4066 status collapsed
4067
4068 \begin_layout Plain Layout
4069
4070
4071 \backslash
4072 leer 
4073 \end_layout
4074
4075 \end_inset
4076
4077
4078 \series bold
4079 a
4080 \backslash
4081 int
4082 \series default
4083  Platz der Höhe des Integralzeichens,
4084 \begin_inset Foot
4085 status collapsed
4086
4087 \begin_layout Plain Layout
4088 Der Befehl 
4089 \series bold
4090
4091 \backslash
4092 int
4093 \series default
4094  erzeugt ein Integralzeichen, siehe 
4095 \begin_inset CommandInset ref
4096 LatexCommand ref
4097 reference "sub:Große-Operatoren"
4098
4099 \end_inset
4100
4101 .
4102 \end_layout
4103
4104 \end_inset
4105
4106  da dieses das größere Zeichen ist.
4107  Eine Beispielanwendung ist in 
4108 \begin_inset CommandInset ref
4109 LatexCommand ref
4110 reference "sub:Mehrzeilige-Klammern"
4111
4112 \end_inset
4113
4114  zu finden.
4115 \end_layout
4116
4117 \begin_layout Standard
4118 Platzhalter können auch für Text verwendet werden, wenn sie über das Menü
4119  
4120 \family sans
4121 Einfügen\SpecialChar \menuseparator
4122 Formatierung\SpecialChar \menuseparator
4123 Phantom
4124 \family default
4125  eingefügt werden:
4126 \end_layout
4127
4128 \begin_layout Standard
4129 Dies ist ein Satz.
4130 \begin_inset Newline newline
4131 \end_inset
4132
4133
4134 \begin_inset Phantom Phantom
4135 status open
4136
4137 \begin_layout Plain Layout
4138 Dies
4139 \end_layout
4140
4141 \end_inset
4142
4143  ist ein Satz.
4144 \end_layout
4145
4146 \begin_layout Subsection
4147 Linien
4148 \begin_inset Index idx
4149 status collapsed
4150
4151 \begin_layout Plain Layout
4152 Linien
4153 \end_layout
4154
4155 \end_inset
4156
4157
4158 \begin_inset Index idx
4159 status collapsed
4160
4161 \begin_layout Plain Layout
4162 Formel ! unterstrichene
4163 \end_layout
4164
4165 \end_inset
4166
4167
4168 \end_layout
4169
4170 \begin_layout Standard
4171 \align center
4172 \begin_inset Tabular
4173 <lyxtabular version="3" rows="4" columns="2">
4174 <features rotate="0" tabularvalignment="middle">
4175 <column alignment="center" valignment="top" width="0pt">
4176 <column alignment="center" valignment="top" width="0pt">
4177 <row>
4178 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4179 \begin_inset Text
4180
4181 \begin_layout Plain Layout
4182 Befehl
4183 \end_layout
4184
4185 \end_inset
4186 </cell>
4187 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4188 \begin_inset Text
4189
4190 \begin_layout Plain Layout
4191 Ergebnis
4192 \begin_inset Note Note
4193 status collapsed
4194
4195 \begin_layout Plain Layout
4196
4197 \series bold
4198
4199 \backslash
4200 raisebox
4201 \series default
4202  dient nur als Abstandhalter.
4203 \end_layout
4204
4205 \end_inset
4206
4207
4208 \end_layout
4209
4210 \end_inset
4211 </cell>
4212 </row>
4213 <row>
4214 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4215 \begin_inset Text
4216
4217 \begin_layout Plain Layout
4218
4219 \backslash
4220 overline
4221 \begin_inset ERT
4222 status collapsed
4223
4224 \begin_layout Plain Layout
4225
4226
4227 \backslash
4228 leer 
4229 \end_layout
4230
4231 \end_inset
4232
4233 A+B
4234 \begin_inset Index idx
4235 status collapsed
4236
4237 \begin_layout Plain Layout
4238 Befehle ! O ! 
4239 \backslash
4240 overline
4241 \end_layout
4242
4243 \end_inset
4244
4245
4246 \end_layout
4247
4248 \end_inset
4249 </cell>
4250 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4251 \begin_inset Text
4252
4253 \begin_layout Plain Layout
4254 \begin_inset Formula $\raisebox{5mm}{}\overline{A+B}$
4255 \end_inset
4256
4257
4258 \end_layout
4259
4260 \end_inset
4261 </cell>
4262 </row>
4263 <row>
4264 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
4265 \begin_inset Text
4266
4267 \begin_layout Plain Layout
4268
4269 \backslash
4270 underline
4271 \begin_inset ERT
4272 status collapsed
4273
4274 \begin_layout Plain Layout
4275
4276
4277 \backslash
4278 leer 
4279 \end_layout
4280
4281 \end_inset
4282
4283 A+B
4284 \begin_inset Index idx
4285 status collapsed
4286
4287 \begin_layout Plain Layout
4288 Befehle ! U ! 
4289 \backslash
4290 underline
4291 \end_layout
4292
4293 \end_inset
4294
4295
4296 \end_layout
4297
4298 \end_inset
4299 </cell>
4300 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
4301 \begin_inset Text
4302
4303 \begin_layout Plain Layout
4304 \begin_inset Formula $\underline{A+B}\raisebox{-2.5mm}{}$
4305 \end_inset
4306
4307
4308 \end_layout
4309
4310 \end_inset
4311 </cell>
4312 </row>
4313 <row>
4314 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4315 \begin_inset Text
4316
4317 \begin_layout Plain Layout
4318
4319 \backslash
4320 overline
4321 \begin_inset ERT
4322 status collapsed
4323
4324 \begin_layout Plain Layout
4325
4326
4327 \backslash
4328 leer 
4329 \end_layout
4330
4331 \end_inset
4332
4333
4334 \backslash
4335 underline
4336 \begin_inset ERT
4337 status collapsed
4338
4339 \begin_layout Plain Layout
4340
4341
4342 \backslash
4343 leer 
4344 \end_layout
4345
4346 \end_inset
4347
4348 A+B
4349 \end_layout
4350
4351 \end_inset
4352 </cell>
4353 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4354 \begin_inset Text
4355
4356 \begin_layout Plain Layout
4357 \begin_inset Formula $\raisebox{5mm}{}\overline{\underline{A+B}}\raisebox{-2.5mm}{}$
4358 \end_inset
4359
4360
4361 \end_layout
4362
4363 \end_inset
4364 </cell>
4365 </row>
4366 </lyxtabular>
4367
4368 \end_inset
4369
4370
4371 \end_layout
4372
4373 \begin_layout Standard
4374 Beim letzten Beispiel spielt es keine Rolle, ob man zuerst 
4375 \series bold
4376
4377 \backslash
4378 overline
4379 \series default
4380  oder 
4381 \series bold
4382
4383 \backslash
4384 underline
4385 \series default
4386  eingibt.
4387 \end_layout
4388
4389 \begin_layout Standard
4390 Will man Ergebnisse doppelt unterstreichen, verwendet man zweimal hintereinander
4391 \begin_inset Newline linebreak
4392 \end_inset
4393
4394
4395 \series bold
4396
4397 \backslash
4398 underline
4399 \series default
4400 .
4401 \end_layout
4402
4403 \begin_layout Standard
4404 Man kann bis zu 6 Striche über oder unter Zeichen setzen.
4405 \end_layout
4406
4407 \begin_layout Standard
4408 \begin_inset VSpace bigskip
4409 \end_inset
4410
4411 Benutzerdefinierte Linien können mit dem Befehl 
4412 \series bold
4413
4414 \backslash
4415 rule
4416 \series default
4417
4418 \begin_inset Index idx
4419 status collapsed
4420
4421 \begin_layout Plain Layout
4422 Befehle! R ! 
4423 \backslash
4424 rule
4425 \end_layout
4426
4427 \end_inset
4428
4429  erstellt werden, der folgendes Schema besitzt:
4430 \end_layout
4431
4432 \begin_layout Standard
4433
4434 \series bold
4435
4436 \backslash
4437 rule[vertikaler Versatz]{Länge}{Dicke}
4438 \end_layout
4439
4440 \begin_layout Standard
4441 Der optionale vertikale Versatz verschiebt die Linie nach oben (oder nach
4442  unten, wenn der Wert negativ ist).
4443  Die Einheiten, die in 
4444 \begin_inset CommandInset ref
4445 LatexCommand ref
4446 reference "tab:Verfügbare-Einheiten"
4447
4448 \end_inset
4449
4450  aufgelistet sind, können für die Werte benutzt werden.
4451  Hier sind zwei Beispiele, die mit den Befehlen
4452 \begin_inset Newline newline
4453 \end_inset
4454
4455
4456 \series bold
4457
4458 \backslash
4459 rule[-2ex]{3cm}{2pt}
4460 \series default
4461  und 
4462 \series bold
4463
4464 \backslash
4465 rule{2cm}{1pt}
4466 \series default
4467  erzeugt wurden:
4468 \end_layout
4469
4470 \begin_layout Standard
4471 Dies ist ein Satz 
4472 \begin_inset Formula $\rule[-2ex]{3cm}{2pt}\rule{2cm}{1pt}$
4473 \end_inset
4474
4475  mit zwei Linien.
4476 \end_layout
4477
4478 \begin_layout Standard
4479
4480 \series bold
4481
4482 \backslash
4483 rule
4484 \series default
4485  kann auch für Text verwendet werden, wenn eine Linie über das Menü 
4486 \family sans
4487 Einfügen\SpecialChar \menuseparator
4488 Formatierung\SpecialChar \menuseparator
4489 Horizontale
4490 \begin_inset space ~
4491 \end_inset
4492
4493 Line
4494 \family default
4495  eingefügt wird:
4496 \end_layout
4497
4498 \begin_layout Standard
4499 Dies ist ein Satz 
4500 \begin_inset CommandInset line
4501 LatexCommand rule
4502 offset "0.5ex"
4503 width "3cm"
4504 height "1pt"
4505
4506 \end_inset
4507
4508  mit einer Linie.
4509 \end_layout
4510
4511 \begin_layout Subsection
4512 Fortsetzungspunkte
4513 \begin_inset CommandInset label
4514 LatexCommand label
4515 name "sub:Fortsetzungspunkte"
4516
4517 \end_inset
4518
4519
4520 \begin_inset Index idx
4521 status collapsed
4522
4523 \begin_layout Plain Layout
4524 Fortsetzungspunkte
4525 \end_layout
4526
4527 \end_inset
4528
4529
4530 \end_layout
4531
4532 \begin_layout Standard
4533 Es gibt unterschiedliche Arten von Fortsetzungspunkten.
4534 \begin_inset Foot
4535 status collapsed
4536
4537 \begin_layout Plain Layout
4538 In der Mathe-Werkzeugleiste zu finden im Untermenü des Knopfs 
4539 \begin_inset Graphics
4540         filename ../../images/math/ldots.png
4541         scale 85
4542
4543 \end_inset
4544
4545
4546 \end_layout
4547
4548 \end_inset
4549
4550  Für Aufzählungen verwendet man unten sitzende Punkte (
4551 \series bold
4552
4553 \backslash
4554 ldots
4555 \series default
4556
4557 \begin_inset Index idx
4558 status collapsed
4559
4560 \begin_layout Plain Layout
4561 Befehle ! L ! 
4562 \backslash
4563 ldots
4564 \end_layout
4565
4566 \end_inset
4567
4568 ), während man für Operationen Punkte braucht, die auf der selben Höhe wie
4569  die Operatoren sind (
4570 \series bold
4571
4572 \backslash
4573 cdots
4574 \series default
4575
4576 \begin_inset Index idx
4577 status collapsed
4578
4579 \begin_layout Plain Layout
4580 Befehle ! C ! 
4581 \backslash
4582 cdots
4583 \end_layout
4584
4585 \end_inset
4586
4587 ).
4588  Verwendet man den Befehl 
4589 \series bold
4590
4591 \backslash
4592 dots
4593 \series default
4594
4595 \begin_inset Index idx
4596 status collapsed
4597
4598 \begin_layout Plain Layout
4599 Befehle ! D ! 
4600 \backslash
4601 dots
4602 \end_layout
4603
4604 \end_inset
4605
4606 , entscheidet LaTeX anhand des nachfolgenden Zeichens, welche Punktart verwendet
4607  wird.
4608 \end_layout
4609
4610 \begin_layout Standard
4611 \align center
4612 \begin_inset Tabular
4613 <lyxtabular version="3" rows="9" columns="2">
4614 <features rotate="0" tabularvalignment="middle">
4615 <column alignment="center" valignment="top" width="0pt">
4616 <column alignment="center" valignment="top" width="0pt">
4617 <row>
4618 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4619 \begin_inset Text
4620
4621 \begin_layout Plain Layout
4622 Befehl
4623 \end_layout
4624
4625 \end_inset
4626 </cell>
4627 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4628 \begin_inset Text
4629
4630 \begin_layout Plain Layout
4631 Ergebnis
4632 \end_layout
4633
4634 \end_inset
4635 </cell>
4636 </row>
4637 <row>
4638 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4639 \begin_inset Text
4640
4641 \begin_layout Plain Layout
4642 A_1
4643 \begin_inset ERT
4644 status collapsed
4645
4646 \begin_layout Plain Layout
4647
4648
4649 \backslash
4650 leer 
4651 \end_layout
4652
4653 \end_inset
4654
4655 ,
4656 \backslash
4657 dots
4658 \begin_inset ERT
4659 status collapsed
4660
4661 \begin_layout Plain Layout
4662
4663
4664 \backslash
4665 leer 
4666 \end_layout
4667
4668 \end_inset
4669
4670 ,A_n
4671 \end_layout
4672
4673 \end_inset
4674 </cell>
4675 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4676 \begin_inset Text
4677
4678 \begin_layout Plain Layout
4679 \begin_inset Formula $A_{1},\dots,A_{n}$
4680 \end_inset
4681
4682
4683 \end_layout
4684
4685 \end_inset
4686 </cell>
4687 </row>
4688 <row>
4689 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4690 \begin_inset Text
4691
4692 \begin_layout Plain Layout
4693 A_1
4694 \begin_inset ERT
4695 status collapsed
4696
4697 \begin_layout Plain Layout
4698
4699
4700 \backslash
4701 leer 
4702 \end_layout
4703
4704 \end_inset
4705
4706 +
4707 \backslash
4708 dots
4709 \begin_inset ERT
4710 status collapsed
4711
4712 \begin_layout Plain Layout
4713
4714
4715 \backslash
4716 leer 
4717 \end_layout
4718
4719 \end_inset
4720
4721 +A_n
4722 \end_layout
4723
4724 \end_inset
4725 </cell>
4726 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4727 \begin_inset Text
4728
4729 \begin_layout Plain Layout
4730 \begin_inset Formula $A_{1}+\dots+A_{n}$
4731 \end_inset
4732
4733
4734 \end_layout
4735
4736 \end_inset
4737 </cell>
4738 </row>
4739 <row>
4740 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4741 \begin_inset Text
4742
4743 \begin_layout Plain Layout
4744 A_1
4745 \begin_inset ERT
4746 status collapsed
4747
4748 \begin_layout Plain Layout
4749
4750
4751 \backslash
4752 leer 
4753 \end_layout
4754
4755 \end_inset
4756
4757 ,
4758 \backslash
4759 ldots
4760 \begin_inset ERT
4761 status collapsed
4762
4763 \begin_layout Plain Layout
4764
4765
4766 \backslash
4767 leer 
4768 \end_layout
4769
4770 \end_inset
4771
4772 ,A_n
4773 \end_layout
4774
4775 \end_inset
4776 </cell>
4777 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4778 \begin_inset Text
4779
4780 \begin_layout Plain Layout
4781 \begin_inset Formula $A_{1},\ldots,A_{n}$
4782 \end_inset
4783
4784
4785 \end_layout
4786
4787 \end_inset
4788 </cell>
4789 </row>
4790 <row>
4791 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4792 \begin_inset Text
4793
4794 \begin_layout Plain Layout
4795 A_1
4796 \begin_inset ERT
4797 status collapsed
4798
4799 \begin_layout Plain Layout
4800
4801
4802 \backslash
4803 leer 
4804 \end_layout
4805
4806 \end_inset
4807
4808 +
4809 \backslash
4810 cdots
4811 \begin_inset ERT
4812 status collapsed
4813
4814 \begin_layout Plain Layout
4815
4816
4817 \backslash
4818 leer 
4819 \end_layout
4820
4821 \end_inset
4822
4823 +A_n
4824 \end_layout
4825
4826 \end_inset
4827 </cell>
4828 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4829 \begin_inset Text
4830
4831 \begin_layout Plain Layout
4832 \begin_inset Formula $A_{1}+\cdots+A_{n}$
4833 \end_inset
4834
4835
4836 \end_layout
4837
4838 \end_inset
4839 </cell>
4840 </row>
4841 <row>
4842 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4843 \begin_inset Text
4844
4845 \begin_layout Plain Layout
4846
4847 \backslash
4848 vdots
4849 \end_layout
4850
4851 \end_inset
4852 </cell>
4853 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4854 \begin_inset Text
4855
4856 \begin_layout Plain Layout
4857 \begin_inset Formula $\vdots$
4858 \end_inset
4859
4860
4861 \end_layout
4862
4863 \end_inset
4864 </cell>
4865 </row>
4866 <row>
4867 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4868 \begin_inset Text
4869
4870 \begin_layout Plain Layout
4871
4872 \backslash
4873 ddots
4874 \end_layout
4875
4876 \end_inset
4877 </cell>
4878 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4879 \begin_inset Text
4880
4881 \begin_layout Plain Layout
4882 \begin_inset Formula $\ddots$
4883 \end_inset
4884
4885
4886 \end_layout
4887
4888 \end_inset
4889 </cell>
4890 </row>
4891 <row>
4892 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4893 \begin_inset Text
4894
4895 \begin_layout Plain Layout
4896
4897 \backslash
4898 iddots
4899 \end_layout
4900
4901 \end_inset
4902 </cell>
4903 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4904 \begin_inset Text
4905
4906 \begin_layout Plain Layout
4907 \begin_inset Formula $\iddots$
4908 \end_inset
4909
4910
4911 \end_layout
4912
4913 \end_inset
4914 </cell>
4915 </row>
4916 <row>
4917 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4918 \begin_inset Text
4919
4920 \begin_layout Plain Layout
4921 3
4922 \series bold
4923 ×
4924 \series default
4925 3
4926 \begin_inset space \thinspace{}
4927 \end_inset
4928
4929 Matrix mit obigen Befehlen
4930 \end_layout
4931
4932 \end_inset
4933 </cell>
4934 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4935 \begin_inset Text
4936
4937 \begin_layout Plain Layout
4938 \begin_inset Formula $\begin{array}{ccc}
4939 A_{11} & \cdots & A_{1m}\\
4940 \vdots & \ddots & \vdots\\
4941 A_{n1} & \cdots & A_{nm}
4942 \end{array}$
4943 \end_inset
4944
4945
4946 \end_layout
4947
4948 \end_inset
4949 </cell>
4950 </row>
4951 </lyxtabular>
4952
4953 \end_inset
4954
4955
4956 \end_layout
4957
4958 \begin_layout Standard
4959 Die im Menü 
4960 \family sans
4961 Einfügen\SpecialChar \menuseparator
4962 Sonderzeichen
4963 \family default
4964  verfügbaren Fortsetzungspunkte sind 
4965 \series bold
4966
4967 \backslash
4968 ldots
4969 \series default
4970 .
4971 \end_layout
4972
4973 \begin_layout Standard
4974 \begin_inset VSpace medskip
4975 \end_inset
4976
4977 Um 
4978 \series bold
4979
4980 \backslash
4981 iddots
4982 \series default
4983  nutzen zu können, muss eine der Optionen 
4984 \family sans
4985 Mathdots Paket (automatisch) verwenden 
4986 \family default
4987 in den Dokumenteinstellungen unter 
4988 \family sans
4989 Mathe-Optionen
4990 \family default
4991  gewählt sein.
4992 \begin_inset Newline newline
4993 \end_inset
4994
4995 Die Option 
4996 \family sans
4997 Mathdots Paket verwenden
4998 \family default
4999  verbessert das Aussehen aller Fortsetzungspunkte des Dokuments wenn deren
5000  Schriftstil oder die Schriftgröße nicht Standard sind.
5001 \end_layout
5002
5003 \begin_layout Standard
5004 \begin_inset VSpace medskip
5005 \end_inset
5006
5007 Speziell für Matrizen gibt es Fortsetzungspunkte, die sich über mehrere
5008  Spalten erstrecken.
5009  Man erhält sie mit dem Befehl 
5010 \series bold
5011
5012 \backslash
5013 hdotsfor
5014 \series default
5015
5016 \begin_inset Index idx
5017 status collapsed
5018
5019 \begin_layout Plain Layout
5020 Befehle ! H ! 
5021 \backslash
5022 hdotsfor
5023 \end_layout
5024
5025 \end_inset
5026
5027 , der folgendes Schema besitzt:
5028 \end_layout
5029
5030 \begin_layout Standard
5031
5032 \series bold
5033
5034 \backslash
5035 hdotsfor[Abstand]{Anzahl der Spalten}
5036 \end_layout
5037
5038 \begin_layout Standard
5039 Anzahl der Spalten gibt an, über wie viele Spalten sich die Punkte erstrecken
5040  sollen.
5041  Abstand ist ein Faktor, der den Punktabstand festlegt.
5042 \end_layout
5043
5044 \begin_layout Standard
5045 In folgender Matrix wurde in das erste Kästchen der zweiten Zeile der Befehl
5046  
5047 \series bold
5048
5049 \backslash
5050 hdotsfor[2]{4}
5051 \series default
5052  eingegeben, um Fortsetzungspunkte mit doppelt so großem Punktabstand wie
5053  beim Befehl 
5054 \series bold
5055
5056 \backslash
5057 dots
5058 \series default
5059  zu erhalten:
5060 \begin_inset Formula 
5061 \[
5062 \left(\begin{array}{cccc}
5063 A & B & C & D\\
5064 \hdotsfor[2]{4}\\
5065 q & w & e & r
5066 \end{array}\right)
5067 \]
5068
5069 \end_inset
5070
5071 Es ist zu beachten, dass die Matrixfelder über die sich die Punkte erstrecken
5072  sollen leer sein müssen, ansonsten kommt es zu LaTeX-Fehlern.
5073 \end_layout
5074
5075 \begin_layout Standard
5076 \begin_inset VSpace bigskip
5077 \end_inset
5078
5079 Des Weiteren kann man mit dem Befehl 
5080 \series bold
5081
5082 \backslash
5083 dotfill
5084 \series default
5085
5086 \begin_inset Index idx
5087 status collapsed
5088
5089 \begin_layout Plain Layout
5090 Befehle ! D ! 
5091 \backslash
5092 dotfill
5093 \end_layout
5094
5095 \end_inset
5096
5097  den Rest einer Zeile mit Punkten füllen.
5098  Die Wirkungsweise des Befehls entspricht der von 
5099 \series bold
5100
5101 \backslash
5102 hfill
5103 \series default
5104 , siehe 
5105 \begin_inset CommandInset ref
5106 LatexCommand ref
5107 reference "sub:Variabler-Leerraum"
5108
5109 \end_inset
5110
5111 .
5112 \end_layout
5113
5114 \begin_layout Standard
5115 Z.
5116 \begin_inset space \thinspace{}
5117 \end_inset
5118
5119 B.
5120  ergibt der Befehl 
5121 \series bold
5122 A
5123 \backslash
5124 dotfill
5125 \begin_inset ERT
5126 status collapsed
5127
5128 \begin_layout Plain Layout
5129
5130
5131 \backslash
5132 leer 
5133 \end_layout
5134
5135 \end_inset
5136
5137 B
5138 \end_layout
5139
5140 \begin_layout Standard
5141 \begin_inset Formula $A\dotfill B$
5142 \end_inset
5143
5144
5145 \end_layout
5146
5147 \begin_layout Standard
5148 Analog dazu gibt es für eine Linie den Befehl 
5149 \series bold
5150
5151 \backslash
5152 hrulefill
5153 \series default
5154
5155 \begin_inset Index idx
5156 status collapsed
5157
5158 \begin_layout Plain Layout
5159 Befehle ! H ! 
5160 \backslash
5161 hrulefill
5162 \end_layout
5163
5164 \end_inset
5165
5166 :
5167 \end_layout
5168
5169 \begin_layout Standard
5170 \begin_inset Formula $A\hrulefill B$
5171 \end_inset
5172
5173
5174 \end_layout
5175
5176 \begin_layout Standard
5177 Um die Befehle für Text zu verwenden, müssen sie im TeX-Modus eingegeben
5178  werden.
5179 \end_layout
5180
5181 \begin_layout Section
5182 Matrizen
5183 \begin_inset CommandInset label
5184 LatexCommand label
5185 name "sec:Matrizen"
5186
5187 \end_inset
5188
5189
5190 \begin_inset Index idx
5191 status collapsed
5192
5193 \begin_layout Plain Layout
5194 Matrizen
5195 \end_layout
5196
5197 \end_inset
5198
5199
5200 \end_layout
5201
5202 \begin_layout Standard
5203 Matrizen können über den Mathe-Werkzeugleistenknopf
5204 \family sans
5205  
5206 \family default
5207
5208 \begin_inset Graphics
5209         filename ../../images/dialog-show_mathmatrix.png
5210         scale 85
5211
5212 \end_inset
5213
5214  oder das Menü 
5215 \family sans
5216 Einfügen\SpecialChar \menuseparator
5217 Mathe\SpecialChar \menuseparator
5218 Matrix
5219 \family default
5220  eingefügt werden.
5221  Sie werden nach der Spalten- und Zeilenanzahl, der Ausrichtung und der
5222  Verzierung gefragt.
5223  Die vertikale Ausrichtung ist dabei nur bei Matrizen in eingebetteten Formeln
5224  von Bedeutung:
5225 \end_layout
5226
5227 \begin_layout Standard
5228 Die erste Matrix ist oben 
5229 \begin_inset Formula $\begin{array}[t]{cccc}
5230 A & D & G & J\\
5231 B & E & H & K\\
5232 C & F & I & L
5233 \end{array}$
5234 \end_inset
5235
5236 , die zweite mittig 
5237 \begin_inset Formula $\begin{array}{cccc}
5238 A & D & G & J\\
5239 B & E & H & K\\
5240 C & F & I & L
5241 \end{array}$
5242 \end_inset
5243
5244  und die dritte unten 
5245 \begin_inset Formula $\begin{array}[b]{cccc}
5246 A & D & G & J\\
5247 B & E & H & K\\
5248 C & F & I & L
5249 \end{array}$
5250 \end_inset
5251
5252  ausgerichtet.
5253 \end_layout
5254
5255 \begin_layout Standard
5256 Die horizontale Ausrichtung gibt an, wie die Spalteneinträge ausgerichtet
5257  werden sollen.
5258  Dazu wird für jede Spalte ein Buchstabe eingegeben.
5259  
5260 \emph on
5261 l
5262 \emph default
5263  steht für linksbündig, 
5264 \emph on
5265 c
5266 \emph default
5267  für mittig und 
5268 \emph on
5269 r
5270 \emph default
5271  für rechtsbündig.
5272  Möchte man z.
5273 \begin_inset space \thinspace{}
5274 \end_inset
5275
5276 B.
5277  eine 4
5278 \series bold
5279 ×
5280 \series default
5281 4
5282 \begin_inset space ~
5283 \end_inset
5284
5285 Matrix erstellen, bei der der Inhalt der ersten Spalte linksbündig, der
5286  Inhalt der zweiten und dritten mittig und der Inhalt der letzten rechtsbündig
5287  ausgerichtet ist, gibt man für die horizontale Ausrichtung 
5288 \series bold
5289 lccr
5290 \series default
5291  an.
5292  Normalerweise sind in einer Matrix alle Spalteninhalte zentriert, weswegen
5293  die Voreinstellung für jede Spalte ein 
5294 \series bold
5295 c
5296 \series default
5297  ist.
5298 \end_layout
5299
5300 \begin_layout Standard
5301 Horizontale Ausrichtung:
5302 \end_layout
5303
5304 \begin_layout Standard
5305
5306 \series bold
5307 lll
5308 \series default
5309  : 
5310 \begin_inset Formula $\begin{array}{lll}
5311 10000 & D & G\\
5312 B & 10000 & H\\
5313 C & F & 10000
5314 \end{array}$
5315 \end_inset
5316
5317  , 
5318 \series bold
5319 ccc
5320 \series default
5321  : 
5322 \begin_inset Formula $\begin{array}{ccc}
5323 10000 & D & G\\
5324 B & 10000 & H\\
5325 C & F & 10000
5326 \end{array}$
5327 \end_inset
5328
5329  , 
5330 \series bold
5331 rrr
5332 \series default
5333  : 
5334 \begin_inset Formula $\begin{array}{rrr}
5335 10000 & D & G\\
5336 B & 10000 & H\\
5337 C & F & 10000
5338 \end{array}$
5339 \end_inset
5340
5341
5342 \end_layout
5343
5344 \begin_layout Standard
5345 Um nachträglich Zeilen und Spalten hinzuzufügen oder zu entfernen, kann
5346  man die Mathe-Werkzeugleistenknöpfe 
5347 \begin_inset Graphics
5348         filename ../../images/tabular-feature_append-row.png
5349         scale 85
5350
5351 \end_inset
5352
5353
5354 \begin_inset Graphics
5355         filename ../../images/tabular-feature_delete-row.png
5356         scale 85
5357
5358 \end_inset
5359
5360 , usw.
5361 \begin_inset space \space{}
5362 \end_inset
5363
5364 oder das Menü 
5365 \family sans
5366 Bearbeiten\SpecialChar \menuseparator
5367 Zeilen & Spalten
5368 \family default
5369  verwenden.
5370  Neue Zeilen können auch mit 
5371 \family sans
5372 Strg+Enter
5373 \family default
5374  erstellt werden.
5375 \end_layout
5376
5377 \begin_layout Standard
5378 \begin_inset VSpace bigskip
5379 \end_inset
5380
5381 Die 
5382 \family sans
5383 Verzierung
5384 \family default
5385  fügt Klammern um die Matrix in der ausgewählten Art hinzu.
5386  Alternativ können Klammern entweder mit den Befehlen 
5387 \series bold
5388
5389 \backslash
5390 left
5391 \series default
5392
5393 \begin_inset Index idx
5394 status collapsed
5395
5396 \begin_layout Plain Layout
5397 Befehle ! L ! 
5398 \backslash
5399 left
5400 \end_layout
5401
5402 \end_inset
5403
5404  und 
5405 \series bold
5406
5407 \backslash
5408 right
5409 \series default
5410
5411 \begin_inset Index idx
5412 status collapsed
5413
5414 \begin_layout Plain Layout
5415 Befehle ! R ! 
5416 \backslash
5417 right
5418 \end_layout
5419
5420 \end_inset
5421
5422  erstellt werden (Tastenkürzel 
5423 \family sans
5424 Alt+M
5425 \begin_inset space ~
5426 \end_inset
5427
5428 Klammer
5429 \family default
5430 ), siehe 
5431 \begin_inset CommandInset ref
5432 LatexCommand ref
5433 reference "sub:Automatische-Klammergrößen"
5434
5435 \end_inset
5436
5437 , oder man verwendet folgende Befehle:
5438 \begin_inset VSpace bigskip
5439 \end_inset
5440
5441
5442 \end_layout
5443
5444 \begin_layout Standard
5445 \begin_inset space \hfill{}
5446 \end_inset
5447
5448
5449 \begin_inset Tabular
5450 <lyxtabular version="3" rows="4" columns="2">
5451 <features rotate="0" tabularvalignment="middle">
5452 <column alignment="center" valignment="top">
5453 <column alignment="center" valignment="top">
5454 <row>
5455 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5456 \begin_inset Text
5457
5458 \begin_layout Plain Layout
5459 Befehl
5460 \end_layout
5461
5462 \end_inset
5463 </cell>
5464 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5465 \begin_inset Text
5466
5467 \begin_layout Plain Layout
5468 Ergebnis
5469 \end_layout
5470
5471 \end_inset
5472 </cell>
5473 </row>
5474 <row>
5475 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5476 \begin_inset Text
5477
5478 \begin_layout Plain Layout
5479
5480 \backslash
5481 bmatrix
5482 \begin_inset ERT
5483 status collapsed
5484
5485 \begin_layout Plain Layout
5486
5487
5488 \backslash
5489 leer 
5490 \end_layout
5491
5492 \end_inset
5493
5494 2
5495 \series bold
5496 ×
5497 \series default
5498 2
5499 \begin_inset space \thinspace{}
5500 \end_inset
5501
5502 Matrix
5503 \end_layout
5504
5505 \end_inset
5506 </cell>
5507 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5508 \begin_inset Text
5509
5510 \begin_layout Plain Layout
5511 \begin_inset Formula $\raisebox{7.5mm}{}\begin{bmatrix}\begin{array}{cc}
5512 0 & \textrm{-}\mathrm{i}\\
5513 \mathrm{i} & 0
5514 \end{array}\end{bmatrix}\raisebox{-5.3mm}{}$
5515 \end_inset
5516
5517
5518 \end_layout
5519
5520 \end_inset
5521 </cell>
5522 </row>
5523 <row>
5524 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5525 \begin_inset Text
5526
5527 \begin_layout Plain Layout
5528
5529 \backslash
5530 Bmatrix
5531 \begin_inset ERT
5532 status collapsed
5533
5534 \begin_layout Plain Layout
5535
5536
5537 \backslash
5538 leer 
5539 \end_layout
5540
5541 \end_inset
5542
5543 2
5544 \series bold
5545 ×
5546 \series default
5547 2
5548 \begin_inset space \thinspace{}
5549 \end_inset
5550
5551 Matrix
5552 \end_layout
5553
5554 \end_inset
5555 </cell>
5556 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5557 \begin_inset Text
5558
5559 \begin_layout Plain Layout
5560 \begin_inset Formula $\raisebox{7.5mm}{}\begin{Bmatrix}\begin{array}{cc}
5561 0 & \textrm{-}\mathrm{i}\\
5562 \mathrm{i} & 0
5563 \end{array}\end{Bmatrix}\raisebox{-5.3mm}{}$
5564 \end_inset
5565
5566
5567 \end_layout
5568
5569 \end_inset
5570 </cell>
5571 </row>
5572 <row>
5573 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5574 \begin_inset Text
5575
5576 \begin_layout Plain Layout
5577
5578 \backslash
5579 pmatrix
5580 \begin_inset ERT
5581 status collapsed
5582
5583 \begin_layout Plain Layout
5584
5585
5586 \backslash
5587 leer 
5588 \end_layout
5589
5590 \end_inset
5591
5592 2
5593 \series bold
5594 ×
5595 \series default
5596 2
5597 \begin_inset space \thinspace{}
5598 \end_inset
5599
5600 Matrix
5601 \end_layout
5602
5603 \end_inset
5604 </cell>
5605 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5606 \begin_inset Text
5607
5608 \begin_layout Plain Layout
5609 \begin_inset Formula $\raisebox{7.5mm}{}\begin{pmatrix}\begin{array}{cc}
5610 0 & \textrm{-}\mathrm{i}\\
5611 \mathrm{i} & 0
5612 \end{array}\end{pmatrix}\raisebox{-5.3mm}{}$
5613 \end_inset
5614
5615
5616 \end_layout
5617
5618 \end_inset
5619 </cell>
5620 </row>
5621 </lyxtabular>
5622
5623 \end_inset
5624
5625
5626 \begin_inset space \hfill{}
5627 \end_inset
5628
5629
5630 \begin_inset Tabular
5631 <lyxtabular version="3" rows="4" columns="2">
5632 <features rotate="0" tabularvalignment="middle">
5633 <column alignment="center" valignment="top">
5634 <column alignment="center" valignment="top">
5635 <row>
5636 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5637 \begin_inset Text
5638
5639 \begin_layout Plain Layout
5640 Befehl
5641 \end_layout
5642
5643 \end_inset
5644 </cell>
5645 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5646 \begin_inset Text
5647
5648 \begin_layout Plain Layout
5649 Ergebnis
5650 \end_layout
5651
5652 \end_inset
5653 </cell>
5654 </row>
5655 <row>
5656 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5657 \begin_inset Text
5658
5659 \begin_layout Plain Layout
5660
5661 \backslash
5662 vmatrix
5663 \begin_inset ERT
5664 status collapsed
5665
5666 \begin_layout Plain Layout
5667
5668
5669 \backslash
5670 leer 
5671 \end_layout
5672
5673 \end_inset
5674
5675 2
5676 \series bold
5677 ×
5678 \series default
5679 2
5680 \begin_inset space \thinspace{}
5681 \end_inset
5682
5683 Matrix
5684 \end_layout
5685
5686 \end_inset
5687 </cell>
5688 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5689 \begin_inset Text
5690
5691 \begin_layout Plain Layout
5692 \begin_inset Formula $\raisebox{7.5mm}{}\begin{vmatrix}\begin{array}{cc}
5693 0 & \textrm{-}\mathrm{i}\\
5694 \mathrm{i} & 0
5695 \end{array}\end{vmatrix}\raisebox{-5.3mm}{}$
5696 \end_inset
5697
5698
5699 \end_layout
5700
5701 \end_inset
5702 </cell>
5703 </row>
5704 <row>
5705 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5706 \begin_inset Text
5707
5708 \begin_layout Plain Layout
5709
5710 \backslash
5711 Vmatrix
5712 \begin_inset ERT
5713 status collapsed
5714
5715 \begin_layout Plain Layout
5716
5717
5718 \backslash
5719 leer 
5720 \end_layout
5721
5722 \end_inset
5723
5724 2
5725 \series bold
5726 ×
5727 \series default
5728 2
5729 \begin_inset space \thinspace{}
5730 \end_inset
5731
5732 Matrix
5733 \end_layout
5734
5735 \end_inset
5736 </cell>
5737 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5738 \begin_inset Text
5739
5740 \begin_layout Plain Layout
5741 \begin_inset Formula $\raisebox{7.5mm}{}\begin{Vmatrix}\begin{array}{cc}
5742 0 & \textrm{-}\mathrm{i}\\
5743 \mathrm{i} & 0
5744 \end{array}\end{Vmatrix}\raisebox{-5.3mm}{}$
5745 \end_inset
5746
5747
5748 \end_layout
5749
5750 \end_inset
5751 </cell>
5752 </row>
5753 <row>
5754 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5755 \begin_inset Text
5756
5757 \begin_layout Plain Layout
5758
5759 \backslash
5760 matrix
5761 \begin_inset ERT
5762 status collapsed
5763
5764 \begin_layout Plain Layout
5765
5766
5767 \backslash
5768 leer 
5769 \end_layout
5770
5771 \end_inset
5772
5773 2
5774 \series bold
5775 ×
5776 \series default
5777 2
5778 \begin_inset space \thinspace{}
5779 \end_inset
5780
5781 Matrix
5782 \end_layout
5783
5784 \end_inset
5785 </cell>
5786 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5787 \begin_inset Text
5788
5789 \begin_layout Plain Layout
5790 \begin_inset Formula $\raisebox{7.5mm}{}\begin{matrix}\begin{array}{cc}
5791 0 & \textrm{-}\mathrm{i}\\
5792 \mathrm{i} & 0
5793 \end{array}\end{matrix}\raisebox{-5.3mm}{}$
5794 \end_inset
5795
5796
5797 \end_layout
5798
5799 \end_inset
5800 </cell>
5801 </row>
5802 </lyxtabular>
5803
5804 \end_inset
5805
5806
5807 \begin_inset space \hfill{}
5808 \end_inset
5809
5810
5811 \end_layout
5812
5813 \begin_layout Standard
5814 \begin_inset VSpace medskip
5815 \end_inset
5816
5817 Wurde z.
5818 \begin_inset space \thinspace{}
5819 \end_inset
5820
5821 B.
5822  
5823 \series bold
5824
5825 \backslash
5826 vmatrix
5827 \series default
5828  eingegeben, erscheint ein blaues Kästchen zwischen zwei senkrechten Strichen,
5829  in das die Matrix eingefügt wird.
5830 \begin_inset Newline newline
5831 \end_inset
5832
5833 Man beachte, dass verzierte Matrizen die vertikale Ausrichtung ignorieren.
5834 \end_layout
5835
5836 \begin_layout Standard
5837 \begin_inset VSpace bigskip
5838 \end_inset
5839
5840 Da alle mehrzeiligen Formeln Matrizen sind, kann man die in 
5841 \begin_inset CommandInset ref
5842 LatexCommand ref
5843 reference "sub:Spaltenabstand"
5844
5845 \end_inset
5846
5847  beschriebene Länge 
5848 \series bold
5849
5850 \backslash
5851 arraycolsep
5852 \series default
5853
5854 \begin_inset Index idx
5855 status collapsed
5856
5857 \begin_layout Plain Layout
5858 Befehle ! A ! 
5859 \backslash
5860 arraycolsep
5861 \end_layout
5862
5863 \end_inset
5864
5865  auch zur Änderung des Spaltenabstands von Matrizen verwenden.
5866 \end_layout
5867
5868 \begin_layout Standard
5869 Möchte man den Zeilenabstand ändern, verwendet man den Befehl 
5870 \series bold
5871
5872 \backslash
5873 arraystretch
5874 \series default
5875
5876 \begin_inset Index idx
5877 status collapsed
5878
5879 \begin_layout Plain Layout
5880 Befehle ! A ! 
5881 \backslash
5882 arraystretch
5883 \end_layout
5884
5885 \end_inset
5886
5887 .
5888  Dieser wird folgendermaßen benutzt:
5889 \end_layout
5890
5891 \begin_layout Standard
5892
5893 \series bold
5894
5895 \backslash
5896 renewcommand{
5897 \backslash
5898 arraystretch}{Dehnungsfaktor}
5899 \begin_inset Index idx
5900 status collapsed
5901
5902 \begin_layout Plain Layout
5903 Befehle ! R ! 
5904 \backslash
5905 renewcommand
5906 \end_layout
5907
5908 \end_inset
5909
5910
5911 \end_layout
5912
5913 \begin_layout Standard
5914 Der Befehl 
5915 \series bold
5916
5917 \backslash
5918 renewcommand
5919 \series default
5920  weist dabei dem vordefinierten Befehl 
5921 \series bold
5922
5923 \backslash
5924 arraystretch
5925 \series default
5926  den Dehnungsfaktor zu.
5927  Möchte man z.
5928 \begin_inset space \thinspace{}
5929 \end_inset
5930
5931 B.
5932  den Zeilenabstand verdoppeln, gibt man für den Faktor eine 2 an.
5933  Dieser wird dann für alle folgenden Matrizen verwendet.
5934  Um wieder zum ursprünglichen Abstand zurückzukehren, weist man 
5935 \series bold
5936
5937 \backslash
5938 arraystretch
5939 \series default
5940  den Faktor 1 zu.
5941 \end_layout
5942
5943 \begin_layout Standard
5944 Um Matrizen in eine Textzeile zu setzen, benutzt man den Befehl 
5945 \series bold
5946
5947 \backslash
5948 smallmatrix
5949 \series default
5950
5951 \begin_inset Index idx
5952 status collapsed
5953
5954 \begin_layout Plain Layout
5955 Befehle ! S ! 
5956 \backslash
5957 smallmatrix
5958 \end_layout
5959
5960 \end_inset
5961
5962 .
5963  Gibt man ihn in eine Formel ein, erscheint ein blaues Kästchen mit zwei
5964  gestrichelten Linien.
5965  In dieses Kästchen wird die Matrix eingegeben.
5966  Man verwendet stattdessen das Menü 
5967 \family sans
5968 Bearbeiten\SpecialChar \menuseparator
5969 Zeilen
5970 \begin_inset space ~
5971 \end_inset
5972
5973 &
5974 \begin_inset space ~
5975 \end_inset
5976
5977 Spalten
5978 \family default
5979  oder die Mathe-Werkzeugleiste um neue Spalten zu erstellen.
5980  Neue Zeilen können auch mit 
5981 \family sans
5982 Strg+Enter
5983 \family default
5984  erstellt werden.
5985 \end_layout
5986
5987 \begin_layout Standard
5988 Dies ist eine Matrix 
5989 \begin_inset Formula $\left(\begin{smallmatrix}A & B\\
5990 C & D
5991 \end{smallmatrix}\right)$
5992 \end_inset
5993
5994  in einer Textzeile.
5995 \end_layout
5996
5997 \begin_layout Section
5998 Klammern und Begrenzungszeichen
5999 \begin_inset Index idx
6000 status collapsed
6001
6002 \begin_layout Plain Layout
6003 Klammern
6004 \end_layout
6005
6006 \end_inset
6007
6008
6009 \begin_inset Index idx
6010 status collapsed
6011
6012 \begin_layout Plain Layout
6013 Begrenzungszeichen
6014 \end_layout
6015
6016 \end_inset
6017
6018
6019 \end_layout
6020
6021 \begin_layout Subsection
6022 Vertikale Klammern und Begrenzungszeichen
6023 \begin_inset Index idx
6024 status collapsed
6025
6026 \begin_layout Plain Layout
6027 Klammern ! vertikale
6028 \end_layout
6029
6030 \end_inset
6031
6032
6033 \end_layout
6034
6035 \begin_layout Standard
6036 \begin_inset space \hfill{}
6037 \end_inset
6038
6039
6040 \begin_inset Tabular
6041 <lyxtabular version="3" rows="9" columns="2">
6042 <features rotate="0" tabularvalignment="middle">
6043 <column alignment="center" valignment="top" width="0pt">
6044 <column alignment="center" valignment="top" width="0pt">
6045 <row>
6046 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6047 \begin_inset Text
6048
6049 \begin_layout Plain Layout
6050 Befehl
6051 \end_layout
6052
6053 \end_inset
6054 </cell>
6055 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6056 \begin_inset Text
6057
6058 \begin_layout Plain Layout
6059 Ergebnis
6060 \end_layout
6061
6062 \end_inset
6063 </cell>
6064 </row>
6065 <row>
6066 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6067 \begin_inset Text
6068
6069 \begin_layout Plain Layout
6070 (
6071 \end_layout
6072
6073 \end_inset
6074 </cell>
6075 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6076 \begin_inset Text
6077
6078 \begin_layout Plain Layout
6079 \begin_inset Formula $($
6080 \end_inset
6081
6082
6083 \end_layout
6084
6085 \end_inset
6086 </cell>
6087 </row>
6088 <row>
6089 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6090 \begin_inset Text
6091
6092 \begin_layout Plain Layout
6093 {
6094 \end_layout
6095
6096 \end_inset
6097 </cell>
6098 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6099 \begin_inset Text
6100
6101 \begin_layout Plain Layout
6102 \begin_inset Formula $\{$
6103 \end_inset
6104
6105
6106 \end_layout
6107
6108 \end_inset
6109 </cell>
6110 </row>
6111 <row>
6112 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6113 \begin_inset Text
6114
6115 \begin_layout Plain Layout
6116 [
6117 \end_layout
6118
6119 \end_inset
6120 </cell>
6121 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6122 \begin_inset Text
6123
6124 \begin_layout Plain Layout
6125 \begin_inset Formula $[$
6126 \end_inset
6127
6128
6129 \end_layout
6130
6131 \end_inset
6132 </cell>
6133 </row>
6134 <row>
6135 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6136 \begin_inset Text
6137
6138 \begin_layout Plain Layout
6139
6140 \backslash
6141 langle
6142 \end_layout
6143
6144 \end_inset
6145 </cell>
6146 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6147 \begin_inset Text
6148
6149 \begin_layout Plain Layout
6150 \begin_inset Formula $\langle$
6151 \end_inset
6152
6153
6154 \end_layout
6155
6156 \end_inset
6157 </cell>
6158 </row>
6159 <row>
6160 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6161 \begin_inset Text
6162
6163 \begin_layout Plain Layout
6164
6165 \backslash
6166 lceil
6167 \end_layout
6168
6169 \end_inset
6170 </cell>
6171 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6172 \begin_inset Text
6173
6174 \begin_layout Plain Layout
6175 \begin_inset Formula $\lceil$
6176 \end_inset
6177
6178
6179 \end_layout
6180
6181 \end_inset
6182 </cell>
6183 </row>
6184 <row>
6185 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6186 \begin_inset Text
6187
6188 \begin_layout Plain Layout
6189
6190 \backslash
6191 lfloor
6192 \end_layout
6193
6194 \end_inset
6195 </cell>
6196 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6197 \begin_inset Text
6198
6199 \begin_layout Plain Layout
6200 \begin_inset Formula $\lfloor$
6201 \end_inset
6202
6203
6204 \end_layout
6205
6206 \end_inset
6207 </cell>
6208 </row>
6209 <row>
6210 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6211 \begin_inset Text
6212
6213 \begin_layout Plain Layout
6214 /
6215 \end_layout
6216
6217 \end_inset
6218 </cell>
6219 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6220 \begin_inset Text
6221
6222 \begin_layout Plain Layout
6223 \begin_inset Formula $/$
6224 \end_inset
6225
6226
6227 \end_layout
6228
6229 \end_inset
6230 </cell>
6231 </row>
6232 <row>
6233 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6234 \begin_inset Text
6235
6236 \begin_layout Plain Layout
6237 |
6238 \end_layout
6239
6240 \end_inset
6241 </cell>
6242 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6243 \begin_inset Text
6244
6245 \begin_layout Plain Layout
6246 \begin_inset Formula $|$
6247 \end_inset
6248
6249
6250 \end_layout
6251
6252 \end_inset
6253 </cell>
6254 </row>
6255 </lyxtabular>
6256
6257 \end_inset
6258
6259
6260 \begin_inset space \hfill{}
6261 \end_inset
6262
6263
6264 \begin_inset Tabular
6265 <lyxtabular version="3" rows="9" columns="2">
6266 <features rotate="0" tabularvalignment="middle">
6267 <column alignment="center" valignment="top" width="0pt">
6268 <column alignment="center" valignment="top" width="0pt">
6269 <row>
6270 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6271 \begin_inset Text
6272
6273 \begin_layout Plain Layout
6274 Befehl
6275 \end_layout
6276
6277 \end_inset
6278 </cell>
6279 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6280 \begin_inset Text
6281
6282 \begin_layout Plain Layout
6283 Ergebnis
6284 \end_layout
6285
6286 \end_inset
6287 </cell>
6288 </row>
6289 <row>
6290 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6291 \begin_inset Text
6292
6293 \begin_layout Plain Layout
6294 )
6295 \end_layout
6296
6297 \end_inset
6298 </cell>
6299 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6300 \begin_inset Text
6301
6302 \begin_layout Plain Layout
6303 \begin_inset Formula $)$
6304 \end_inset
6305
6306
6307 \end_layout
6308
6309 \end_inset
6310 </cell>
6311 </row>
6312 <row>
6313 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6314 \begin_inset Text
6315
6316 \begin_layout Plain Layout
6317 }
6318 \end_layout
6319
6320 \end_inset
6321 </cell>
6322 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6323 \begin_inset Text
6324
6325 \begin_layout Plain Layout
6326 \begin_inset Formula $\}$
6327 \end_inset
6328
6329
6330 \end_layout
6331
6332 \end_inset
6333 </cell>
6334 </row>
6335 <row>
6336 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6337 \begin_inset Text
6338
6339 \begin_layout Plain Layout
6340 ]
6341 \end_layout
6342
6343 \end_inset
6344 </cell>
6345 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6346 \begin_inset Text
6347
6348 \begin_layout Plain Layout
6349 \begin_inset Formula $]$
6350 \end_inset
6351
6352
6353 \end_layout
6354
6355 \end_inset
6356 </cell>
6357 </row>
6358 <row>
6359 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6360 \begin_inset Text
6361
6362 \begin_layout Plain Layout
6363
6364 \backslash
6365 rangle
6366 \end_layout
6367
6368 \end_inset
6369 </cell>
6370 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6371 \begin_inset Text
6372
6373 \begin_layout Plain Layout
6374 \begin_inset Formula $\rangle$
6375 \end_inset
6376
6377
6378 \end_layout
6379
6380 \end_inset
6381 </cell>
6382 </row>
6383 <row>
6384 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6385 \begin_inset Text
6386
6387 \begin_layout Plain Layout
6388
6389 \backslash
6390 rceil
6391 \end_layout
6392
6393 \end_inset
6394 </cell>
6395 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6396 \begin_inset Text
6397
6398 \begin_layout Plain Layout
6399 \begin_inset Formula $\rceil$
6400 \end_inset
6401
6402
6403 \end_layout
6404
6405 \end_inset
6406 </cell>
6407 </row>
6408 <row>
6409 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6410 \begin_inset Text
6411
6412 \begin_layout Plain Layout
6413
6414 \backslash
6415 rfloor
6416 \end_layout
6417
6418 \end_inset
6419 </cell>
6420 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6421 \begin_inset Text
6422
6423 \begin_layout Plain Layout
6424 \begin_inset Formula $\rfloor$
6425 \end_inset
6426
6427
6428 \end_layout
6429
6430 \end_inset
6431 </cell>
6432 </row>
6433 <row>
6434 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6435 \begin_inset Text
6436
6437 \begin_layout Plain Layout
6438
6439 \backslash
6440
6441 \backslash
6442
6443 \end_layout
6444
6445 \end_inset
6446 </cell>
6447 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6448 \begin_inset Text
6449
6450 \begin_layout Plain Layout
6451 \begin_inset Formula $\backslash$
6452 \end_inset
6453
6454
6455 \end_layout
6456
6457 \end_inset
6458 </cell>
6459 </row>
6460 <row>
6461 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6462 \begin_inset Text
6463
6464 \begin_layout Plain Layout
6465
6466 \backslash
6467 |
6468 \end_layout
6469
6470 \end_inset
6471 </cell>
6472 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6473 \begin_inset Text
6474
6475 \begin_layout Plain Layout
6476 \begin_inset Formula $\|$
6477 \end_inset
6478
6479
6480 \end_layout
6481
6482 \end_inset
6483 </cell>
6484 </row>
6485 </lyxtabular>
6486
6487 \end_inset
6488
6489
6490 \begin_inset space \hfill{}
6491 \end_inset
6492
6493
6494 \end_layout
6495
6496 \begin_layout Standard
6497
6498 \series medium
6499 \begin_inset Note Greyedout
6500 status open
6501
6502 \begin_layout Plain Layout
6503
6504 \series bold
6505 Achtung:
6506 \series default
6507  Im TeX-Modus muss für den Backslash der Befehl 
6508 \series bold
6509
6510 \backslash
6511 textbackslash
6512 \series default
6513
6514 \begin_inset Index idx
6515 status collapsed
6516
6517 \begin_layout Plain Layout
6518 Befehle ! T ! 
6519 \backslash
6520 textbackslash
6521 \end_layout
6522
6523 \end_inset
6524
6525  verwendet werden, denn der Befehl 
6526 \series bold
6527
6528 \backslash
6529
6530 \backslash
6531
6532 \series default
6533  steht dort für einen Zeilenumbruch.
6534 \end_layout
6535
6536 \end_inset
6537
6538
6539 \end_layout
6540
6541 \begin_layout Standard
6542 Für alle oben aufgelisteten Zeichen kann die Größe mit den in den folgenden
6543  zwei Unterkapiteln beschriebenen Befehlen eingestellt werden.
6544  Dabei können dann statt den Befehlen 
6545 \series bold
6546
6547 \backslash
6548 langle
6549 \series default
6550  und 
6551 \series bold
6552
6553 \backslash
6554 rangle
6555 \series default
6556  direkt die Zeichen < und > verwendet werden.
6557 \end_layout
6558
6559 \begin_layout Subsubsection
6560 Manuelle Klammergrößen
6561 \begin_inset CommandInset label
6562 LatexCommand label
6563 name "sub:Manuelle-Klammergrößen"
6564
6565 \end_inset
6566
6567
6568 \begin_inset Index idx
6569 status collapsed
6570
6571 \begin_layout Plain Layout
6572 Klammergrößen ! manuelle
6573 \end_layout
6574
6575 \end_inset
6576
6577
6578 \end_layout
6579
6580 \begin_layout Standard
6581 Möchte man die Klammergröße manuell festlegen, kann man dies mittels der
6582  LaTeX-Befehle 
6583 \series bold
6584
6585 \backslash
6586 big
6587 \series default
6588
6589 \begin_inset Index idx
6590 status collapsed
6591
6592 \begin_layout Plain Layout
6593 Befehle ! B ! 
6594 \backslash
6595 big
6596 \end_layout
6597
6598 \end_inset
6599
6600
6601 \series bold
6602
6603 \backslash
6604 Big
6605 \series default
6606
6607 \series bold
6608
6609 \backslash
6610 bigg
6611 \series default
6612  und 
6613 \series bold
6614
6615 \backslash
6616 Bigg
6617 \series default
6618  tun.
6619  
6620 \series bold
6621
6622 \backslash
6623 big
6624 \series default
6625  steht hierbei für die kleinste und 
6626 \series bold
6627
6628 \backslash
6629 Bigg
6630 \series default
6631  für die größte Klammergröße.
6632 \end_layout
6633
6634 \begin_layout Standard
6635 Diese Befehle werden benutzt um Klammerebenen optisch hervorzuheben:
6636 \end_layout
6637
6638 \begin_layout Standard
6639 \align center
6640 \begin_inset Tabular
6641 <lyxtabular version="3" rows="2" columns="2">
6642 <features rotate="0" tabularvalignment="middle">
6643 <column alignment="center" valignment="top" width="0pt">
6644 <column alignment="center" valignment="top" width="0pt">
6645 <row>
6646 <cell alignment="center" valignment="top" usebox="none">
6647 \begin_inset Text
6648
6649 \begin_layout Plain Layout
6650 einheitliche Klammergröße:
6651 \end_layout
6652
6653 \end_inset
6654 </cell>
6655 <cell alignment="center" valignment="top" usebox="none">
6656 \begin_inset Text
6657
6658 \begin_layout Plain Layout
6659 \begin_inset Formula $((A+B)(A-B))^{C}\raisebox{-4mm}{}$
6660 \end_inset
6661
6662
6663 \end_layout
6664
6665 \end_inset
6666 </cell>
6667 </row>
6668 <row>
6669 <cell alignment="center" valignment="top" usebox="none">
6670 \begin_inset Text
6671
6672 \begin_layout Plain Layout
6673 besser sieht das so aus:
6674 \end_layout
6675
6676 \end_inset
6677 </cell>
6678 <cell alignment="center" valignment="top" usebox="none">
6679 \begin_inset Text
6680
6681 \begin_layout Plain Layout
6682 \begin_inset Formula $\Big((A+B)(A-B)\Big)^{C}$
6683 \end_inset
6684
6685
6686 \end_layout
6687
6688 \end_inset
6689 </cell>
6690 </row>
6691 </lyxtabular>
6692
6693 \end_inset
6694
6695
6696 \begin_inset Note Note
6697 status collapsed
6698
6699 \begin_layout Plain Layout
6700
6701 \series bold
6702
6703 \backslash
6704 raisebox
6705 \series default
6706  dient nur
6707 \end_layout
6708
6709 \begin_layout Plain Layout
6710 als Abstandhalter.
6711 \end_layout
6712
6713 \end_inset
6714
6715
6716 \end_layout
6717
6718 \begin_layout Standard
6719 Für die zweite Formel wurde der Befehl 
6720 \series bold
6721
6722 \backslash
6723 Big((A+B)(A-B)
6724 \backslash
6725 Big)^
6726 \begin_inset ERT
6727 status collapsed
6728
6729 \begin_layout Plain Layout
6730
6731
6732 \backslash
6733 leer 
6734 \end_layout
6735
6736 \end_inset
6737
6738 C
6739 \series default
6740  verwendet.
6741 \end_layout
6742
6743 \begin_layout Standard
6744 Hier alle Klammergrößen in der Übersicht:
6745 \end_layout
6746
6747 \begin_layout Standard
6748 \align center
6749
6750 \backslash
6751 Bigg(
6752 \backslash
6753 exp
6754 \backslash
6755 bigg<
6756 \backslash
6757 Big[
6758 \backslash
6759 big{
6760 \backslash
6761 ln(3x)
6762 \backslash
6763 big}^2
6764 \begin_inset ERT
6765 status collapsed
6766
6767 \begin_layout Plain Layout
6768
6769
6770 \backslash
6771 leer 
6772 \end_layout
6773
6774 \end_inset
6775
6776
6777 \backslash
6778 sin(x)
6779 \backslash
6780 Big]^
6781 \begin_inset ERT
6782 status collapsed
6783
6784 \begin_layout Plain Layout
6785
6786
6787 \backslash
6788 leer 
6789 \end_layout
6790
6791 \end_inset
6792
6793 A
6794 \begin_inset ERT
6795 status collapsed
6796
6797 \begin_layout Plain Layout
6798
6799
6800 \backslash
6801 leer 
6802 \end_layout
6803
6804 \end_inset
6805
6806
6807 \backslash
6808 bigg>
6809 \backslash
6810 Bigg)^0,5
6811 \end_layout
6812
6813 \begin_layout Standard
6814 \align center
6815 \begin_inset Formula $\Bigg(\exp\bigg<\Big[\big\{\ln(3x)\big\}^{2}\sin(x)\Big]^{A}\bigg>\Bigg)^{0,5}$
6816 \end_inset
6817
6818
6819 \end_layout
6820
6821 \begin_layout Standard
6822 Es gibt außer den 
6823 \series bold
6824
6825 \backslash
6826 big
6827 \series default
6828 -Befehlen noch die Variante 
6829 \series bold
6830
6831 \backslash
6832 bigm
6833 \series default
6834
6835 \begin_inset Index idx
6836 status collapsed
6837
6838 \begin_layout Plain Layout
6839 Befehle ! B ! 
6840 \backslash
6841 bigm
6842 \end_layout
6843
6844 \end_inset
6845
6846 , die etwas mehr Leerraum zwischen Klammer und Klammerinhalt erzeugt und
6847  die Variante 
6848 \series bold
6849
6850 \backslash
6851 bigl
6852 \series default
6853 -
6854 \series bold
6855
6856 \backslash
6857 bigr
6858 \series default
6859
6860 \begin_inset Index idx
6861 status collapsed
6862
6863 \begin_layout Plain Layout
6864 Befehle ! B ! 
6865 \backslash
6866 bigl - 
6867 \backslash
6868 bigr
6869 \end_layout
6870
6871 \end_inset
6872
6873 , die keinen zusätzlichen Leerraum erzeugt.
6874  Das 
6875 \emph on
6876 l
6877 \emph default
6878  am Ende des Befehls 
6879 \series bold
6880
6881 \backslash
6882 bigl
6883 \series default
6884  steht für eine linke Klammer; für eine rechte Klammer wird dieses durch
6885  ein 
6886 \emph on
6887 r
6888 \emph default
6889  ersetzt.
6890  Eine linke oder rechte Klammer kann je eine öffnende oder schließende Klammer
6891  sein.
6892 \end_layout
6893
6894 \begin_layout Standard
6895 In der folgenden Tabelle sind die Varianten miteinander verglichen:
6896 \end_layout
6897
6898 \begin_layout Standard
6899 \align center
6900 \begin_inset Tabular
6901 <lyxtabular version="3" rows="5" columns="2">
6902 <features rotate="0" tabularvalignment="middle">
6903 <column alignment="center" valignment="middle">
6904 <column alignment="center" valignment="middle">
6905 <row>
6906 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6907 \begin_inset Text
6908
6909 \begin_layout Plain Layout
6910 Befehl
6911 \end_layout
6912
6913 \end_inset
6914 </cell>
6915 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6916 \begin_inset Text
6917
6918 \begin_layout Plain Layout
6919 Ergebnis
6920 \begin_inset Note Note
6921 status collapsed
6922
6923 \begin_layout Plain Layout
6924
6925 \series bold
6926
6927 \backslash
6928 raisebox
6929 \series default
6930  dient nur als Abstandhalter.
6931 \end_layout
6932
6933 \end_inset
6934
6935
6936 \end_layout
6937
6938 \end_inset
6939 </cell>
6940 </row>
6941 <row>
6942 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6943 \begin_inset Text
6944
6945 \begin_layout Plain Layout
6946
6947 \backslash
6948 Bigm(
6949 \backslash
6950 bigm(
6951 \backslash
6952 ln(3x)
6953 \backslash
6954 bigm)^2
6955 \begin_inset ERT
6956 status collapsed
6957
6958 \begin_layout Plain Layout
6959
6960
6961 \backslash
6962 leer 
6963 \end_layout
6964
6965 \end_inset
6966
6967
6968 \backslash
6969 Bigm)
6970 \end_layout
6971
6972 \end_inset
6973 </cell>
6974 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6975 \begin_inset Text
6976
6977 \begin_layout Plain Layout
6978 \begin_inset Formula $\raisebox{5.5mm}{}\Bigm(\bigm(\ln(3x)\bigm)^{2}\Bigm)\raisebox{-3.25mm}{}$
6979 \end_inset
6980
6981
6982 \end_layout
6983
6984 \end_inset
6985 </cell>
6986 </row>
6987 <row>
6988 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6989 \begin_inset Text
6990
6991 \begin_layout Plain Layout
6992
6993 \backslash
6994 Big(
6995 \backslash
6996 big(
6997 \backslash
6998 ln(3x)
6999 \backslash
7000 big)^2
7001 \begin_inset ERT
7002 status collapsed
7003
7004 \begin_layout Plain Layout
7005
7006
7007 \backslash
7008 leer 
7009 \end_layout
7010
7011 \end_inset
7012
7013
7014 \backslash
7015 Big)
7016 \end_layout
7017
7018 \end_inset
7019 </cell>
7020 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7021 \begin_inset Text
7022
7023 \begin_layout Plain Layout
7024 \begin_inset Formula $\raisebox{5.5mm}{}\Big(\big(\ln(3x)\big)^{2}\Big)\raisebox{-3.25mm}{}$
7025 \end_inset
7026
7027
7028 \end_layout
7029
7030 \end_inset
7031 </cell>
7032 </row>
7033 <row>
7034 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7035 \begin_inset Text
7036
7037 \begin_layout Plain Layout
7038
7039 \backslash
7040 Bigl(
7041 \backslash
7042 bigl(
7043 \backslash
7044 ln(3x)
7045 \backslash
7046 bigr)^2
7047 \begin_inset ERT
7048 status collapsed
7049
7050 \begin_layout Plain Layout
7051
7052
7053 \backslash
7054 leer 
7055 \end_layout
7056
7057 \end_inset
7058
7059
7060 \backslash
7061 Bigr)
7062 \end_layout
7063
7064 \end_inset
7065 </cell>
7066 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7067 \begin_inset Text
7068
7069 \begin_layout Plain Layout
7070 \begin_inset Formula $\raisebox{5.5mm}{}\Bigl(\bigl(\ln(3x)\bigr)^{2}\Bigr)\raisebox{-3.25mm}{}$
7071 \end_inset
7072
7073
7074 \end_layout
7075
7076 \end_inset
7077 </cell>
7078 </row>
7079 <row>
7080 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7081 \begin_inset Text
7082
7083 \begin_layout Plain Layout
7084
7085 \backslash
7086 bigl)
7087 \backslash
7088 ln(3x)
7089 \backslash
7090 bigr(
7091 \end_layout
7092
7093 \end_inset
7094 </cell>
7095 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7096 \begin_inset Text
7097
7098 \begin_layout Plain Layout
7099 \begin_inset Formula $\raisebox{4.5mm}{}\bigl)\ln(3x)\bigr(\raisebox{-2mm}{}$
7100 \end_inset
7101
7102
7103 \end_layout
7104
7105 \end_inset
7106 </cell>
7107 </row>
7108 </lyxtabular>
7109
7110 \end_inset
7111
7112
7113 \end_layout
7114
7115 \begin_layout Subsubsection
7116 Automatische Klammergrößen
7117 \begin_inset CommandInset label
7118 LatexCommand label
7119 name "sub:Automatische-Klammergrößen"
7120
7121 \end_inset
7122
7123
7124 \begin_inset Index idx
7125 status collapsed
7126
7127 \begin_layout Plain Layout
7128 Klammergrößen ! automatische
7129 \end_layout
7130
7131 \end_inset
7132
7133
7134 \end_layout
7135
7136 \begin_layout Standard
7137 Klammern variabler Größe können mit den Befehlen 
7138 \series bold
7139
7140 \backslash
7141 left
7142 \series default
7143
7144 \begin_inset Index idx
7145 status collapsed
7146
7147 \begin_layout Plain Layout
7148 Befehle ! L ! 
7149 \backslash
7150 left
7151 \end_layout
7152
7153 \end_inset
7154
7155  und 
7156 \series bold
7157
7158 \backslash
7159 right
7160 \series default
7161
7162 \begin_inset Index idx
7163 status collapsed
7164
7165 \begin_layout Plain Layout
7166 Befehle ! R ! 
7167 \backslash
7168 right
7169 \end_layout
7170
7171 \end_inset
7172
7173  oder über den Mathe-Werkzeugleistenknopf
7174 \family sans
7175  
7176 \family default
7177
7178 \begin_inset Graphics
7179         filename ../../images/dialog-show_mathdelimiter.png
7180         scale 85
7181
7182 \end_inset
7183
7184  eingefügt werden.
7185  Auf 
7186 \series bold
7187
7188 \backslash
7189 left
7190 \series default
7191  und 
7192 \series bold
7193
7194 \backslash
7195 right
7196 \series default
7197  muss unmittelbar die gewünschte Klammer folgen.
7198  Die Klammergröße wird dann bei der Ausgabe automatisch berechnet.
7199 \end_layout
7200
7201 \begin_layout Standard
7202 \align center
7203 normale Klammer: Der Befehl 
7204 \series bold
7205
7206 \backslash
7207 ln(
7208 \backslash
7209 frac
7210 \begin_inset ERT
7211 status collapsed
7212
7213 \begin_layout Plain Layout
7214
7215
7216 \backslash
7217 leer 
7218 \end_layout
7219
7220 \end_inset
7221
7222 A
7223 \begin_inset Formula $\downarrow$
7224 \end_inset
7225
7226 C
7227 \begin_inset ERT
7228 status collapsed
7229
7230 \begin_layout Plain Layout
7231
7232
7233 \backslash
7234 leer 
7235 \end_layout
7236
7237 \end_inset
7238
7239 )
7240 \series default
7241  ergibt
7242 \begin_inset Formula 
7243 \[
7244 \ln(\frac{A}{C})
7245 \]
7246
7247 \end_inset
7248
7249
7250 \end_layout
7251
7252 \begin_layout Standard
7253 \align center
7254 mehrzeilige Klammer: Der Befehl 
7255 \series bold
7256
7257 \backslash
7258 ln
7259 \backslash
7260 left(
7261 \backslash
7262 frac
7263 \begin_inset ERT
7264 status collapsed
7265
7266 \begin_layout Plain Layout
7267
7268
7269 \backslash
7270 leer 
7271 \end_layout
7272
7273 \end_inset
7274
7275 A
7276 \begin_inset Formula $\downarrow$
7277 \end_inset
7278
7279 C
7280 \begin_inset ERT
7281 status collapsed
7282
7283 \begin_layout Plain Layout
7284
7285
7286 \backslash
7287 leer 
7288 \end_layout
7289
7290 \end_inset
7291
7292
7293 \backslash
7294 right)
7295 \series default
7296  ergibt
7297 \begin_inset Formula 
7298 \[
7299 \ln\left(\frac{A}{C}\right)
7300 \]
7301
7302 \end_inset
7303
7304
7305 \end_layout
7306
7307 \begin_layout Standard
7308 An Stelle von 
7309 \series bold
7310
7311 \backslash
7312 left
7313 \series default
7314  und 
7315 \series bold
7316
7317 \backslash
7318 right
7319 \series default
7320  kann man die Tastenkürzel 
7321 \family sans
7322 Alt+M
7323 \begin_inset space ~
7324 \end_inset
7325
7326 Klammer
7327 \family default
7328  verwenden.
7329  Das hat den Vorteil, dass man in LyX sofort die wahre Klammergröße sieht
7330  und dass die rechte Klammer gleich mit erstellt wird.
7331 \begin_inset Newline newline
7332 \end_inset
7333
7334 Der Befehl für das letzte Beispiel würde dann lauten: 
7335 \series bold
7336
7337 \backslash
7338 ln Alt+M
7339 \series default
7340  
7341 \series bold
7342 (
7343 \backslash
7344 frac
7345 \begin_inset ERT
7346 status collapsed
7347
7348 \begin_layout Plain Layout
7349
7350
7351 \backslash
7352 leer 
7353 \end_layout
7354
7355 \end_inset
7356
7357 A
7358 \begin_inset Formula $\downarrow$
7359 \end_inset
7360
7361 C
7362 \end_layout
7363
7364 \begin_layout Standard
7365 Will man nur eine Klammerhälfte erstellen, schreibt man für die weggelassene
7366  Klammer einen Punkt.
7367  So ergibt z.
7368 \begin_inset space \thinspace{}
7369 \end_inset
7370
7371 B.
7372  der Befehl 
7373 \series bold
7374
7375 \backslash
7376 left.
7377 \backslash
7378 frac
7379 \begin_inset ERT
7380 status collapsed
7381
7382 \begin_layout Plain Layout
7383
7384
7385 \backslash
7386 leer 
7387 \end_layout
7388
7389 \end_inset
7390
7391 A
7392 \begin_inset Formula $\downarrow$
7393 \end_inset
7394
7395 B
7396 \begin_inset ERT
7397 status collapsed
7398
7399 \begin_layout Plain Layout
7400
7401
7402 \backslash
7403 leer 
7404 \end_layout
7405
7406 \end_inset
7407
7408
7409 \backslash
7410 right}
7411 \series default
7412
7413 \begin_inset space \thinspace{}
7414 \end_inset
7415
7416 :
7417 \series bold
7418
7419 \begin_inset Formula 
7420 \[
7421 \left.\frac{A}{B}\right\} 
7422 \]
7423
7424 \end_inset
7425
7426
7427 \series default
7428 Die Befehle 
7429 \series bold
7430
7431 \backslash
7432 left
7433 \series default
7434  und 
7435 \series bold
7436
7437 \backslash
7438 right
7439 \series default
7440  werden beim Neu laden des Dokuments von LyX in Klammern der richtigen Größe
7441  umgewandelt.
7442  Für eine weggelassene Klammer erscheint in LyX eine gestrichelte Linie.
7443 \end_layout
7444
7445 \begin_layout Standard
7446 \begin_inset VSpace bigskip
7447 \end_inset
7448
7449 Da alle gängigen LaTeX-Distributionen eTeX, eine Erweiterung von LaTeX,
7450  verwenden, steht für alle Klammern und Begrenzungszeichen zusätzlich der
7451  Befehl 
7452 \series bold
7453
7454 \backslash
7455 middle
7456 \series default
7457
7458 \begin_inset Index idx
7459 status collapsed
7460
7461 \begin_layout Plain Layout
7462 Befehle ! M ! 
7463 \backslash
7464 middle
7465 \end_layout
7466
7467 \end_inset
7468
7469  zur Verfügung.
7470  Durch diesen wird das folgende Zeichen an die Höhe der umgebenden Klammern
7471  angepasst, was z.
7472 \begin_inset space \thinspace{}
7473 \end_inset
7474
7475 B.
7476  für physikalische Vektoren von Nutzen ist:
7477 \begin_inset Formula 
7478 \[
7479 \left\langle \phi\:\middle|\: J=\frac{3}{2}\,,\, M_{J}\right\rangle 
7480 \]
7481
7482 \end_inset
7483
7484 Für physikalische Vektoren gibt es ein spezielles LaTeX-Paket, das in 
7485 \begin_inset CommandInset ref
7486 LatexCommand ref
7487 reference "sub:Physikalische-Vektoren"
7488
7489 \end_inset
7490
7491  beschrieben ist.
7492 \end_layout
7493
7494 \begin_layout Subsection
7495 Horizontale Klammern
7496 \begin_inset Index idx
7497 status collapsed
7498
7499 \begin_layout Plain Layout
7500 Klammern ! horizontale
7501 \end_layout
7502
7503 \end_inset
7504
7505
7506 \end_layout
7507
7508 \begin_layout Standard
7509 \align center
7510 \begin_inset Tabular
7511 <lyxtabular version="3" rows="4" columns="2">
7512 <features rotate="0" tabularvalignment="middle">
7513 <column alignment="center" valignment="top" width="0pt">
7514 <column alignment="center" valignment="top" width="0pt">
7515 <row>
7516 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7517 \begin_inset Text
7518
7519 \begin_layout Plain Layout
7520 Befehl
7521 \begin_inset Note Note
7522 status collapsed
7523
7524 \begin_layout Plain Layout
7525
7526 \series bold
7527
7528 \backslash
7529 raisebox
7530 \series default
7531  dient nur als Abstandhalter.
7532 \end_layout
7533
7534 \end_inset
7535
7536
7537 \end_layout
7538
7539 \end_inset
7540 </cell>
7541 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7542 \begin_inset Text
7543
7544 \begin_layout Plain Layout
7545 Ergebnis
7546 \end_layout
7547
7548 \end_inset
7549 </cell>
7550 </row>
7551 <row>
7552 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7553 \begin_inset Text
7554
7555 \begin_layout Plain Layout
7556 \begin_inset ERT
7557 status collapsed
7558
7559 \begin_layout Plain Layout
7560
7561
7562 \backslash
7563 raisebox{2.3mm}{
7564 \end_layout
7565
7566 \end_inset
7567
7568
7569 \backslash
7570 overbrace
7571 \begin_inset ERT
7572 status collapsed
7573
7574 \begin_layout Plain Layout
7575
7576
7577 \backslash
7578 leer 
7579 \end_layout
7580
7581 \end_inset
7582
7583 A+B
7584 \begin_inset ERT
7585 status collapsed
7586
7587 \begin_layout Plain Layout
7588
7589
7590 \backslash
7591 leer 
7592 \end_layout
7593
7594 \end_inset
7595
7596 ^
7597 \begin_inset ERT
7598 status collapsed
7599
7600 \begin_layout Plain Layout
7601
7602
7603 \backslash
7604 leer 
7605 \end_layout
7606
7607 \end_inset
7608
7609 3
7610 \begin_inset ERT
7611 status collapsed
7612
7613 \begin_layout Plain Layout
7614
7615 }
7616 \end_layout
7617
7618 \end_inset
7619
7620
7621 \begin_inset Index idx
7622 status collapsed
7623
7624 \begin_layout Plain Layout
7625 Befehle ! O ! 
7626 \backslash
7627 overbrace
7628 \end_layout
7629
7630 \end_inset
7631
7632
7633 \end_layout
7634
7635 \end_inset
7636 </cell>
7637 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7638 \begin_inset Text
7639
7640 \begin_layout Plain Layout
7641 \begin_inset Formula $\overbrace{A+B}^{3}$
7642 \end_inset
7643
7644
7645 \end_layout
7646
7647 \end_inset
7648 </cell>
7649 </row>
7650 <row>
7651 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7652 \begin_inset Text
7653
7654 \begin_layout Plain Layout
7655 \begin_inset ERT
7656 status collapsed
7657
7658 \begin_layout Plain Layout
7659
7660
7661 \backslash
7662 raisebox{-2.2mm}{
7663 \end_layout
7664
7665 \end_inset
7666
7667
7668 \backslash
7669 underbrace
7670 \begin_inset ERT
7671 status collapsed
7672
7673 \begin_layout Plain Layout
7674
7675
7676 \backslash
7677 leer 
7678 \end_layout
7679
7680 \end_inset
7681
7682 A+B
7683 \begin_inset ERT
7684 status collapsed
7685
7686 \begin_layout Plain Layout
7687
7688
7689 \backslash
7690 leer 
7691 \end_layout
7692
7693 \end_inset
7694
7695 _5
7696 \begin_inset ERT
7697 status collapsed
7698
7699 \begin_layout Plain Layout
7700
7701 }
7702 \end_layout
7703
7704 \end_inset
7705
7706
7707 \begin_inset Index idx
7708 status collapsed
7709
7710 \begin_layout Plain Layout
7711 Befehle ! U ! 
7712 \backslash
7713 underbrace
7714 \end_layout
7715
7716 \end_inset
7717
7718
7719 \end_layout
7720
7721 \end_inset
7722 </cell>
7723 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7724 \begin_inset Text
7725
7726 \begin_layout Plain Layout
7727 \begin_inset Formula $\underbrace{A+B}_{5}$
7728 \end_inset
7729
7730
7731 \end_layout
7732
7733 \end_inset
7734 </cell>
7735 </row>
7736 <row>
7737 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7738 \begin_inset Text
7739
7740 \begin_layout Plain Layout
7741
7742 \backslash
7743 overbrace
7744 \begin_inset ERT
7745 status collapsed
7746
7747 \begin_layout Plain Layout
7748
7749
7750 \backslash
7751 leer 
7752 \end_layout
7753
7754 \end_inset
7755
7756
7757 \backslash
7758 underbrace
7759 \begin_inset ERT
7760 status collapsed
7761
7762 \begin_layout Plain Layout
7763
7764
7765 \backslash
7766 leer 
7767 \end_layout
7768
7769 \end_inset
7770
7771 A+B_w
7772 \begin_inset ERT
7773 status collapsed
7774
7775 \begin_layout Plain Layout
7776
7777
7778 \backslash
7779 leer 
7780 \end_layout
7781
7782 \end_inset
7783
7784
7785 \begin_inset ERT
7786 status collapsed
7787
7788 \begin_layout Plain Layout
7789
7790
7791 \backslash
7792 leer 
7793 \end_layout
7794
7795 \end_inset
7796
7797 _7
7798 \begin_inset ERT
7799 status collapsed
7800
7801 \begin_layout Plain Layout
7802
7803
7804 \backslash
7805 leer 
7806 \end_layout
7807
7808 \end_inset
7809
7810
7811 \begin_inset ERT
7812 status collapsed
7813
7814 \begin_layout Plain Layout
7815
7816
7817 \backslash
7818 leer 
7819 \end_layout
7820
7821 \end_inset
7822
7823 ^
7824 \begin_inset ERT
7825 status collapsed
7826
7827 \begin_layout Plain Layout
7828
7829
7830 \backslash
7831 leer 
7832 \end_layout
7833
7834 \end_inset
7835
7836 C
7837 \end_layout
7838
7839 \end_inset
7840 </cell>
7841 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7842 \begin_inset Text
7843
7844 \begin_layout Plain Layout
7845 \begin_inset Formula $\overbrace{\underbrace{A+B_{w}}_{7}}^{C}$
7846 \end_inset
7847
7848
7849 \end_layout
7850
7851 \end_inset
7852 </cell>
7853 </row>
7854 </lyxtabular>
7855
7856 \end_inset
7857
7858
7859 \end_layout
7860
7861 \begin_layout Standard
7862 Beim letzten Beispiel spielt es keine Rolle, ob man zuerst 
7863 \series bold
7864
7865 \backslash
7866 overbrace
7867 \series default
7868  oder 
7869 \series bold
7870
7871 \backslash
7872 underbrace
7873 \series default
7874  eingibt.
7875 \end_layout
7876
7877 \begin_layout Standard
7878 \begin_inset VSpace bigskip
7879 \end_inset
7880
7881 Benötigt man Klammern, die sich überschneiden, muss man die in 
7882 \begin_inset CommandInset ref
7883 LatexCommand ref
7884 reference "sec:Mehrzeilige-Formeln"
7885
7886 \end_inset
7887
7888  beschriebenen mehrzeiligen Formeln verwenden:
7889 \begin_inset Formula 
7890 \begin{eqnarray*}
7891 A & = & \underbrace{gggg+bbqq}_{r}+\: dddd\\
7892  &  & \hphantom{gggg+\:}\underbrace{\hphantom{bbqq+dddd}}_{s}
7893 \end{eqnarray*}
7894
7895 \end_inset
7896
7897 In die erste Zeile wird die Formel zusammen mit der ersten Klammer eingegeben.
7898  Dabei ist es wichtig, dass vor dem ersten 
7899 \begin_inset Formula $d$
7900 \end_inset
7901
7902  der Abstandsbefehl
7903 \begin_inset Foot
7904 status collapsed
7905
7906 \begin_layout Plain Layout
7907 Abstandsbefehle sind in 
7908 \begin_inset CommandInset ref
7909 LatexCommand ref
7910 reference "sub:Vordefinierter-Leerraum"
7911
7912 \end_inset
7913
7914  erklärt.
7915 \end_layout
7916
7917 \end_inset
7918
7919  
7920 \series bold
7921
7922 \backslash
7923 :
7924 \series default
7925  eingegeben wird, denn die nach dem 
7926 \begin_inset Formula $q$
7927 \end_inset
7928
7929  endende Klammer verhindert, dass das nachfolgende 
7930 \begin_inset Quotes gld
7931 \end_inset
7932
7933 +
7934 \begin_inset Quotes grd
7935 \end_inset
7936
7937  von Leerraum umgeben ist.
7938 \begin_inset Foot
7939 status collapsed
7940
7941 \begin_layout Plain Layout
7942 weil eine Klammer nicht als Zeichen gilt, siehe 
7943 \begin_inset CommandInset ref
7944 LatexCommand ref
7945 reference "sub:Binäre-Operatoren"
7946
7947 \end_inset
7948
7949
7950 \end_layout
7951
7952 \end_inset
7953
7954  In die zweite Zeile wird die zweite Klammer eingegeben.
7955  Da sie vor dem 
7956 \begin_inset Formula $b$
7957 \end_inset
7958
7959  beginnen soll, gibt man zuerst 
7960 \series bold
7961
7962 \backslash
7963 hphantom{gggg+
7964 \backslash
7965 :}
7966 \series default
7967  ein.
7968 \begin_inset Foot
7969 status collapsed
7970
7971 \begin_layout Plain Layout
7972 mehr zu 
7973 \series bold
7974
7975 \backslash
7976 hphantom
7977 \series default
7978  siehe 
7979 \begin_inset CommandInset ref
7980 LatexCommand ref
7981 reference "sub:Platzhalter"
7982
7983 \end_inset
7984
7985 .
7986 \end_layout
7987
7988 \end_inset
7989
7990  Dieser Leerraum wird benötigt, weil das 
7991 \begin_inset Quotes gld
7992 \end_inset
7993
7994 +
7995 \begin_inset Quotes grd
7996 \end_inset
7997
7998  in der Formel auch von Leerraum umgeben ist.
7999  Die Klammer wird unter den Befehl 
8000 \series bold
8001
8002 \backslash
8003 hphantom{bbqq+dddd}
8004 \series default
8005  gesetzt.
8006 \end_layout
8007
8008 \begin_layout Standard
8009 Komplizierter wird es, wenn sich Klammern über und unter der Formel überschneide
8010 n, wie in folgendem Beispiel:
8011 \begin_inset ERT
8012 status collapsed
8013
8014 \begin_layout Plain Layout
8015
8016
8017 \backslash
8018 setlength{
8019 \backslash
8020 jot}{-6pt}
8021 \end_layout
8022
8023 \end_inset
8024
8025
8026 \begin_inset Formula 
8027 \begin{eqnarray*}
8028  &  & \hphantom{gggg+\:}\overbrace{\hphantom{bbqq+dddd}}^{s}\\
8029 A & = & \underbrace{gggg+bbqq}_{r}+\: dddd
8030 \end{eqnarray*}
8031
8032 \end_inset
8033
8034
8035 \begin_inset ERT
8036 status collapsed
8037
8038 \begin_layout Plain Layout
8039
8040
8041 \backslash
8042 setlength{
8043 \backslash
8044 jot}{3pt}
8045 \end_layout
8046
8047 \end_inset
8048
8049 Die erste Formelzeile ist gleich der zweiten Zeile des vorigen Beispiels,
8050  mit dem Unterschied, dass sich die Klammer oben befindet.
8051  Die zweite Zeile enthält die Formel zusammen mit der zweiten Klammer.
8052  Damit sich zwischen oberer Klammer in der ersten Zeile und der Formel in
8053  der zweiten Zeile kein Leerraum befindet, muss der Zeilenabstand verändert
8054  werden.
8055  Aufgrund eines Fehlers in LyX ist dies nicht ohne Weiteres möglich
8056 \begin_inset Foot
8057 status collapsed
8058
8059 \begin_layout Plain Layout
8060 \begin_inset CommandInset href
8061 LatexCommand href
8062 name "LyX-Fehler #1505"
8063 target "http://www.lyx.org/trac/ticket/1505"
8064
8065 \end_inset
8066
8067
8068 \end_layout
8069
8070 \end_inset
8071
8072 .
8073  Es muss als Lösung des Problems der globale Formelzeilenabstand 
8074 \series bold
8075
8076 \backslash
8077 jot
8078 \series default
8079
8080 \begin_inset Index idx
8081 status collapsed
8082
8083 \begin_layout Plain Layout
8084 Befehle ! J ! 
8085 \backslash
8086 jot
8087 \end_layout
8088
8089 \end_inset
8090
8091  vor der Formel mit dem Befehl 
8092 \series bold
8093
8094 \backslash
8095 setlength{
8096 \backslash
8097 jot}{-6pt}
8098 \series default
8099  im TeX-Modus auf den Wert -6
8100 \begin_inset space \thinspace{}
8101 \end_inset
8102
8103 pt geändert.
8104  Nach der Formel wird 
8105 \series bold
8106
8107 \backslash
8108 jot
8109 \series default
8110  mit demselben Befehl wieder auf den Standardwert 3
8111 \begin_inset space \thinspace{}
8112 \end_inset
8113
8114 pt zurückgesetzt.
8115  Genaueres zum Zeilenabstand in Formeln ist in 
8116 \begin_inset CommandInset ref
8117 LatexCommand ref
8118 reference "sub:Zeilenabstand"
8119
8120 \end_inset
8121
8122  erklärt.
8123 \end_layout
8124
8125 \begin_layout Section
8126 Pfeile
8127 \begin_inset Index idx
8128 status collapsed
8129
8130 \begin_layout Plain Layout
8131 Pfeile
8132 \end_layout
8133
8134 \end_inset
8135
8136
8137 \end_layout
8138
8139 \begin_layout Standard
8140 Pfeile können über den Mathe-Werkzeugleistenknopf 
8141 \begin_inset Graphics
8142         filename ../../images/math/leftarrow.png
8143         scale 85
8144
8145 \end_inset
8146
8147  oder mit den Befehlen eingefügt werden, die in den folgenden Unterkapiteln
8148  aufgelistet sind.
8149 \end_layout
8150
8151 \begin_layout Subsection
8152 Horizontale Pfeile
8153 \begin_inset Index idx
8154 status collapsed
8155
8156 \begin_layout Plain Layout
8157 Pfeile ! horizontale
8158 \end_layout
8159
8160 \end_inset
8161
8162
8163 \end_layout
8164
8165 \begin_layout Standard
8166 \begin_inset space \hfill{}
8167 \end_inset
8168
8169
8170 \begin_inset Tabular
8171 <lyxtabular version="3" rows="8" columns="2">
8172 <features rotate="0" tabularvalignment="middle">
8173 <column alignment="center" valignment="top" width="0pt">
8174 <column alignment="center" valignment="top" width="0pt">
8175 <row>
8176 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8177 \begin_inset Text
8178
8179 \begin_layout Plain Layout
8180 Befehl
8181 \end_layout
8182
8183 \end_inset
8184 </cell>
8185 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8186 \begin_inset Text
8187
8188 \begin_layout Plain Layout
8189 Ergebnis
8190 \end_layout
8191
8192 \end_inset
8193 </cell>
8194 </row>
8195 <row>
8196 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8197 \begin_inset Text
8198
8199 \begin_layout Plain Layout
8200
8201 \backslash
8202 gets
8203 \end_layout
8204
8205 \end_inset
8206 </cell>
8207 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8208 \begin_inset Text
8209
8210 \begin_layout Plain Layout
8211 \begin_inset Formula $\gets$
8212 \end_inset
8213
8214
8215 \end_layout
8216
8217 \end_inset
8218 </cell>
8219 </row>
8220 <row>
8221 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8222 \begin_inset Text
8223
8224 \begin_layout Plain Layout
8225
8226 \backslash
8227 Leftarrow
8228 \end_layout
8229
8230 \end_inset
8231 </cell>
8232 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8233 \begin_inset Text
8234
8235 \begin_layout Plain Layout
8236 \begin_inset Formula $\Leftarrow$
8237 \end_inset
8238
8239
8240 \end_layout
8241
8242 \end_inset
8243 </cell>
8244 </row>
8245 <row>
8246 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8247 \begin_inset Text
8248
8249 \begin_layout Plain Layout
8250
8251 \backslash
8252 longleftarrow
8253 \end_layout
8254
8255 \end_inset
8256 </cell>
8257 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8258 \begin_inset Text
8259
8260 \begin_layout Plain Layout
8261 \begin_inset Formula $\longleftarrow$
8262 \end_inset
8263
8264
8265 \end_layout
8266
8267 \end_inset
8268 </cell>
8269 </row>
8270 <row>
8271 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8272 \begin_inset Text
8273
8274 \begin_layout Plain Layout
8275
8276 \backslash
8277 Longleftarrow
8278 \end_layout
8279
8280 \end_inset
8281 </cell>
8282 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8283 \begin_inset Text
8284
8285 \begin_layout Plain Layout
8286 \begin_inset Formula $\Longleftarrow$
8287 \end_inset
8288
8289
8290 \end_layout
8291
8292 \end_inset
8293 </cell>
8294 </row>
8295 <row>
8296 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8297 \begin_inset Text
8298
8299 \begin_layout Plain Layout
8300
8301 \backslash
8302 leftharpoonup
8303 \end_layout
8304
8305 \end_inset
8306 </cell>
8307 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8308 \begin_inset Text
8309
8310 \begin_layout Plain Layout
8311 \begin_inset Formula $\leftharpoonup$
8312 \end_inset
8313
8314
8315 \end_layout
8316
8317 \end_inset
8318 </cell>
8319 </row>
8320 <row>
8321 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8322 \begin_inset Text
8323
8324 \begin_layout Plain Layout
8325
8326 \backslash
8327 leftharpoondown
8328 \end_layout
8329
8330 \end_inset
8331 </cell>
8332 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8333 \begin_inset Text
8334
8335 \begin_layout Plain Layout
8336 \begin_inset Formula $\leftharpoondown$
8337 \end_inset
8338
8339
8340 \end_layout
8341
8342 \end_inset
8343 </cell>
8344 </row>
8345 <row>
8346 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8347 \begin_inset Text
8348
8349 \begin_layout Plain Layout
8350
8351 \backslash
8352 hookleftarrow
8353 \end_layout
8354
8355 \end_inset
8356 </cell>
8357 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8358 \begin_inset Text
8359
8360 \begin_layout Plain Layout
8361 \begin_inset Formula $\hookleftarrow$
8362 \end_inset
8363
8364
8365 \end_layout
8366
8367 \end_inset
8368 </cell>
8369 </row>
8370 </lyxtabular>
8371
8372 \end_inset
8373
8374
8375 \begin_inset space \hfill{}
8376 \end_inset
8377
8378
8379 \begin_inset Tabular
8380 <lyxtabular version="3" rows="8" columns="2">
8381 <features rotate="0" tabularvalignment="middle">
8382 <column alignment="center" valignment="top" width="0pt">
8383 <column alignment="center" valignment="top" width="0pt">
8384 <row>
8385 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8386 \begin_inset Text
8387
8388 \begin_layout Plain Layout
8389 Befehl
8390 \end_layout
8391
8392 \end_inset
8393 </cell>
8394 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8395 \begin_inset Text
8396
8397 \begin_layout Plain Layout
8398 Ergebnis
8399 \end_layout
8400
8401 \end_inset
8402 </cell>
8403 </row>
8404 <row>
8405 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8406 \begin_inset Text
8407
8408 \begin_layout Plain Layout
8409
8410 \backslash
8411 to
8412 \end_layout
8413
8414 \end_inset
8415 </cell>
8416 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8417 \begin_inset Text
8418
8419 \begin_layout Plain Layout
8420 \begin_inset Formula $\to$
8421 \end_inset
8422
8423
8424 \end_layout
8425
8426 \end_inset
8427 </cell>
8428 </row>
8429 <row>
8430 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8431 \begin_inset Text
8432
8433 \begin_layout Plain Layout
8434
8435 \backslash
8436 Rightarrow
8437 \end_layout
8438
8439 \end_inset
8440 </cell>
8441 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8442 \begin_inset Text
8443
8444 \begin_layout Plain Layout
8445 \begin_inset Formula $\Rightarrow$
8446 \end_inset
8447
8448
8449 \end_layout
8450
8451 \end_inset
8452 </cell>
8453 </row>
8454 <row>
8455 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8456 \begin_inset Text
8457
8458 \begin_layout Plain Layout
8459
8460 \backslash
8461 longrightarrow
8462 \end_layout
8463
8464 \end_inset
8465 </cell>
8466 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8467 \begin_inset Text
8468
8469 \begin_layout Plain Layout
8470 \begin_inset Formula $\longrightarrow$
8471 \end_inset
8472
8473
8474 \end_layout
8475
8476 \end_inset
8477 </cell>
8478 </row>
8479 <row>
8480 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8481 \begin_inset Text
8482
8483 \begin_layout Plain Layout
8484
8485 \backslash
8486 Longrightarrow
8487 \end_layout
8488
8489 \end_inset
8490 </cell>
8491 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8492 \begin_inset Text
8493
8494 \begin_layout Plain Layout
8495 \begin_inset Formula $\Longrightarrow$
8496 \end_inset
8497
8498
8499 \end_layout
8500
8501 \end_inset
8502 </cell>
8503 </row>
8504 <row>
8505 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8506 \begin_inset Text
8507
8508 \begin_layout Plain Layout
8509
8510 \backslash
8511 rightharpoonup
8512 \end_layout
8513
8514 \end_inset
8515 </cell>
8516 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8517 \begin_inset Text
8518
8519 \begin_layout Plain Layout
8520 \begin_inset Formula $\rightharpoonup$
8521 \end_inset
8522
8523
8524 \end_layout
8525
8526 \end_inset
8527 </cell>
8528 </row>
8529 <row>
8530 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8531 \begin_inset Text
8532
8533 \begin_layout Plain Layout
8534
8535 \backslash
8536 rightharpoondown
8537 \end_layout
8538
8539 \end_inset
8540 </cell>
8541 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8542 \begin_inset Text
8543
8544 \begin_layout Plain Layout
8545 \begin_inset Formula $\rightharpoondown$
8546 \end_inset
8547
8548
8549 \end_layout
8550
8551 \end_inset
8552 </cell>
8553 </row>
8554 <row>
8555 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8556 \begin_inset Text
8557
8558 \begin_layout Plain Layout
8559
8560 \backslash
8561 hookrightarrow
8562 \end_layout
8563
8564 \end_inset
8565 </cell>
8566 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8567 \begin_inset Text
8568
8569 \begin_layout Plain Layout
8570 \begin_inset Formula $\hookrightarrow$
8571 \end_inset
8572
8573
8574 \end_layout
8575
8576 \end_inset
8577 </cell>
8578 </row>
8579 </lyxtabular>
8580
8581 \end_inset
8582
8583
8584 \begin_inset space \hfill{}
8585 \end_inset
8586
8587
8588 \end_layout
8589
8590 \begin_layout Standard
8591 \begin_inset space \hfill{}
8592 \end_inset
8593
8594
8595 \begin_inset Tabular
8596 <lyxtabular version="3" rows="6" columns="2">
8597 <features rotate="0" tabularvalignment="middle">
8598 <column alignment="center" valignment="top" width="0pt">
8599 <column alignment="center" valignment="top" width="0pt">
8600 <row>
8601 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8602 \begin_inset Text
8603
8604 \begin_layout Plain Layout
8605 Befehl
8606 \end_layout
8607
8608 \end_inset
8609 </cell>
8610 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8611 \begin_inset Text
8612
8613 \begin_layout Plain Layout
8614 Ergebnis
8615 \end_layout
8616
8617 \end_inset
8618 </cell>
8619 </row>
8620 <row>
8621 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8622 \begin_inset Text
8623
8624 \begin_layout Plain Layout
8625
8626 \backslash
8627 leftrightarrow
8628 \end_layout
8629
8630 \end_inset
8631 </cell>
8632 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8633 \begin_inset Text
8634
8635 \begin_layout Plain Layout
8636 \begin_inset Formula $\leftrightarrow$
8637 \end_inset
8638
8639
8640 \end_layout
8641
8642 \end_inset
8643 </cell>
8644 </row>
8645 <row>
8646 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8647 \begin_inset Text
8648
8649 \begin_layout Plain Layout
8650
8651 \backslash
8652 Leftrightarrow
8653 \end_layout
8654
8655 \end_inset
8656 </cell>
8657 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8658 \begin_inset Text
8659
8660 \begin_layout Plain Layout
8661 \begin_inset Formula $\Leftrightarrow$
8662 \end_inset
8663
8664
8665 \end_layout
8666
8667 \end_inset
8668 </cell>
8669 </row>
8670 <row>
8671 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8672 \begin_inset Text
8673
8674 \begin_layout Plain Layout
8675
8676 \backslash
8677 longleftrightarrow
8678 \end_layout
8679
8680 \end_inset
8681 </cell>
8682 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8683 \begin_inset Text
8684
8685 \begin_layout Plain Layout
8686 \begin_inset Formula $\longleftrightarrow$
8687 \end_inset
8688
8689
8690 \end_layout
8691
8692 \end_inset
8693 </cell>
8694 </row>
8695 <row>
8696 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8697 \begin_inset Text
8698
8699 \begin_layout Plain Layout
8700
8701 \backslash
8702 Longleftrightarrow
8703 \end_layout
8704
8705 \end_inset
8706 </cell>
8707 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8708 \begin_inset Text
8709
8710 \begin_layout Plain Layout
8711 \begin_inset Formula $\Longleftrightarrow$
8712 \end_inset
8713
8714
8715 \end_layout
8716
8717 \end_inset
8718 </cell>
8719 </row>
8720 <row>
8721 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8722 \begin_inset Text
8723
8724 \begin_layout Plain Layout
8725
8726 \backslash
8727 rightleftharpoons
8728 \end_layout
8729
8730 \end_inset
8731 </cell>
8732 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8733 \begin_inset Text
8734
8735 \begin_layout Plain Layout
8736 \begin_inset Formula $\rightleftharpoons$
8737 \end_inset
8738
8739
8740 \end_layout
8741
8742 \end_inset
8743 </cell>
8744 </row>
8745 </lyxtabular>
8746
8747 \end_inset
8748
8749
8750 \begin_inset space \hspace{}
8751 \length 25pt
8752 \end_inset
8753
8754
8755 \begin_inset space \hfill{}
8756 \end_inset
8757
8758
8759 \begin_inset Tabular
8760 <lyxtabular version="3" rows="5" columns="2">
8761 <features rotate="0" tabularvalignment="middle">
8762 <column alignment="center" valignment="top" width="0pt">
8763 <column alignment="center" valignment="top" width="0pt">
8764 <row>
8765 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8766 \begin_inset Text
8767
8768 \begin_layout Plain Layout
8769 Befehl
8770 \end_layout
8771
8772 \end_inset
8773 </cell>
8774 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8775 \begin_inset Text
8776
8777 \begin_layout Plain Layout
8778 Ergebnis
8779 \end_layout
8780
8781 \end_inset
8782 </cell>
8783 </row>
8784 <row>
8785 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8786 \begin_inset Text
8787
8788 \begin_layout Plain Layout
8789
8790 \backslash
8791 mapsto
8792 \end_layout
8793
8794 \end_inset
8795 </cell>
8796 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8797 \begin_inset Text
8798
8799 \begin_layout Plain Layout
8800 \begin_inset Formula $\mapsto$
8801 \end_inset
8802
8803
8804 \end_layout
8805
8806 \end_inset
8807 </cell>
8808 </row>
8809 <row>
8810 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8811 \begin_inset Text
8812
8813 \begin_layout Plain Layout
8814
8815 \backslash
8816 longmapsto
8817 \end_layout
8818
8819 \end_inset
8820 </cell>
8821 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8822 \begin_inset Text
8823
8824 \begin_layout Plain Layout
8825 \begin_inset Formula $\longmapsto$
8826 \end_inset
8827
8828
8829 \end_layout
8830
8831 \end_inset
8832 </cell>
8833 </row>
8834 <row>
8835 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8836 \begin_inset Text
8837
8838 \begin_layout Plain Layout
8839
8840 \backslash
8841 leadsto
8842 \end_layout
8843
8844 \end_inset
8845 </cell>
8846 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8847 \begin_inset Text
8848
8849 \begin_layout Plain Layout
8850 \begin_inset Formula $\leadsto$
8851 \end_inset
8852
8853
8854 \end_layout
8855
8856 \end_inset
8857 </cell>
8858 </row>
8859 <row>
8860 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8861 \begin_inset Text
8862
8863 \begin_layout Plain Layout
8864
8865 \backslash
8866 dasharrow
8867 \end_layout
8868
8869 \end_inset
8870 </cell>
8871 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8872 \begin_inset Text
8873
8874 \begin_layout Plain Layout
8875 \begin_inset Formula $\dasharrow$
8876 \end_inset
8877
8878
8879 \end_layout
8880
8881 \end_inset
8882 </cell>
8883 </row>
8884 </lyxtabular>
8885
8886 \end_inset
8887
8888
8889 \begin_inset space \hfill{}
8890 \end_inset
8891
8892
8893 \end_layout
8894
8895 \begin_layout Standard
8896 \begin_inset VSpace medskip
8897 \end_inset
8898
8899 Als Akzente verwendete Pfeile, wie z.
8900 \begin_inset space \thinspace{}
8901 \end_inset
8902
8903 B.
8904  Vektorpfeile, sind in 
8905 \begin_inset CommandInset ref
8906 LatexCommand ref
8907 reference "sec:Akzente"
8908
8909 \end_inset
8910
8911  aufgelistet.
8912 \end_layout
8913
8914 \begin_layout Standard
8915 \begin_inset VSpace bigskip
8916 \end_inset
8917
8918 Des Weiteren gibt es die beschriftbaren Pfeile
8919 \begin_inset Index idx
8920 status collapsed
8921
8922 \begin_layout Plain Layout
8923 Pfeile ! beschriftbare
8924 \end_layout
8925
8926 \end_inset
8927
8928  
8929 \series bold
8930
8931 \backslash
8932 xleftarrow
8933 \series default
8934
8935 \begin_inset Index idx
8936 status collapsed
8937
8938 \begin_layout Plain Layout
8939 Befehle ! X ! 
8940 \backslash
8941 xleftarrow
8942 \end_layout
8943
8944 \end_inset
8945
8946  und 
8947 \series bold
8948
8949 \backslash
8950 xrightarrow
8951 \series default
8952
8953 \begin_inset Index idx
8954 status collapsed
8955
8956 \begin_layout Plain Layout
8957 Befehle ! X ! 
8958 \backslash
8959 xrightarrow
8960 \begin_inset ERT
8961 status collapsed
8962
8963 \begin_layout Plain Layout
8964
8965
8966 \backslash
8967 vspace{4mm}
8968 \end_layout
8969
8970 \end_inset
8971
8972
8973 \end_layout
8974
8975 \end_inset
8976
8977 .
8978  Gibt man einen dieser Befehle in eine Formel ein, erscheint ein Pfeil mit
8979  zwei blauen Kästchen, in die man die Beschriftung eingeben kann.
8980  Die Pfeillänge passt sich der Breite der Beschriftung an.
8981 \end_layout
8982
8983 \begin_layout Standard
8984 \align center
8985 \begin_inset Tabular
8986 <lyxtabular version="3" rows="3" columns="2">
8987 <features rotate="0" tabularvalignment="middle">
8988 <column alignment="center" valignment="top" width="0pt">
8989 <column alignment="center" valignment="top" width="0pt">
8990 <row>
8991 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8992 \begin_inset Text
8993
8994 \begin_layout Plain Layout
8995 Befehl
8996 \end_layout
8997
8998 \end_inset
8999 </cell>
9000 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9001 \begin_inset Text
9002
9003 \begin_layout Plain Layout
9004 Ergebnis
9005 \begin_inset Note Note
9006 status collapsed
9007
9008 \begin_layout Plain Layout
9009
9010 \series bold
9011
9012 \backslash
9013 raisebox
9014 \series default
9015  dient nur als Abstandhalter.
9016 \end_layout
9017
9018 \end_inset
9019
9020
9021 \end_layout
9022
9023 \end_inset
9024 </cell>
9025 </row>
9026 <row>
9027 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9028 \begin_inset Text
9029
9030 \begin_layout Plain Layout
9031 F(a)
9032 \backslash
9033 xleftarrow
9034 \begin_inset ERT
9035 status collapsed
9036
9037 \begin_layout Plain Layout
9038
9039
9040 \backslash
9041 leer 
9042 \end_layout
9043
9044 \end_inset
9045
9046 x=a
9047 \begin_inset Formula $\downarrow$
9048 \end_inset
9049
9050 x>0
9051 \begin_inset Formula $\to$
9052 \end_inset
9053
9054 F(x)
9055 \end_layout
9056
9057 \end_inset
9058 </cell>
9059 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9060 \begin_inset Text
9061
9062 \begin_layout Plain Layout
9063 \begin_inset Formula $\raisebox{5mm}{}F(a)\xleftarrow[x>0]{x=a}F(x)\raisebox{-4mm}{}$
9064 \end_inset
9065
9066
9067 \end_layout
9068
9069 \end_inset
9070 </cell>
9071 </row>
9072 <row>
9073 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9074 \begin_inset Text
9075
9076 \begin_layout Plain Layout
9077 F(x)
9078 \backslash
9079 xrightarrow
9080 \begin_inset ERT
9081 status collapsed
9082
9083 \begin_layout Plain Layout
9084
9085
9086 \backslash
9087 leer 
9088 \end_layout
9089
9090 \end_inset
9091
9092 x=a
9093 \begin_inset Formula $\downarrow$
9094 \end_inset
9095
9096 x>0
9097 \begin_inset Formula $\to$
9098 \end_inset
9099
9100 F(a)
9101 \end_layout
9102
9103 \end_inset
9104 </cell>
9105 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9106 \begin_inset Text
9107
9108 \begin_layout Plain Layout
9109 \begin_inset Formula $\raisebox{5mm}{}F(x)\xrightarrow[x>0]{x=a}F(a)\raisebox{-4mm}{}$
9110 \end_inset
9111
9112
9113 \end_layout
9114
9115 \end_inset
9116 </cell>
9117 </row>
9118 </lyxtabular>
9119
9120 \end_inset
9121
9122
9123 \end_layout
9124
9125 \begin_layout Subsection
9126 Vertikale und diagonale Pfeile
9127 \begin_inset Index idx
9128 status collapsed
9129
9130 \begin_layout Plain Layout
9131 Pfeile ! diagonale
9132 \end_layout
9133
9134 \end_inset
9135
9136
9137 \begin_inset Index idx
9138 status collapsed
9139
9140 \begin_layout Plain Layout
9141 Pfeile ! vertikale
9142 \end_layout
9143
9144 \end_inset
9145
9146
9147 \end_layout
9148
9149 \begin_layout Standard
9150 \begin_inset space \hfill{}
9151 \end_inset
9152
9153
9154 \begin_inset Tabular
9155 <lyxtabular version="3" rows="7" columns="2">
9156 <features rotate="0" tabularvalignment="middle">
9157 <column alignment="center" valignment="top" width="0pt">
9158 <column alignment="center" valignment="top" width="0pt">
9159 <row>
9160 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9161 \begin_inset Text
9162
9163 \begin_layout Plain Layout
9164 Befehl
9165 \end_layout
9166
9167 \end_inset
9168 </cell>
9169 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9170 \begin_inset Text
9171
9172 \begin_layout Plain Layout
9173 Ergebnis
9174 \end_layout
9175
9176 \end_inset
9177 </cell>
9178 </row>
9179 <row>
9180 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9181 \begin_inset Text
9182
9183 \begin_layout Plain Layout
9184
9185 \backslash
9186 uparrow
9187 \end_layout
9188
9189 \end_inset
9190 </cell>
9191 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9192 \begin_inset Text
9193
9194 \begin_layout Plain Layout
9195 \begin_inset Formula $\uparrow$
9196 \end_inset
9197
9198
9199 \end_layout
9200
9201 \end_inset
9202 </cell>
9203 </row>
9204 <row>
9205 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9206 \begin_inset Text
9207
9208 \begin_layout Plain Layout
9209
9210 \backslash
9211 Uparrow
9212 \end_layout
9213
9214 \end_inset
9215 </cell>
9216 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9217 \begin_inset Text
9218
9219 \begin_layout Plain Layout
9220 \begin_inset Formula $\Uparrow$
9221 \end_inset
9222
9223
9224 \end_layout
9225
9226 \end_inset
9227 </cell>
9228 </row>
9229 <row>
9230 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9231 \begin_inset Text
9232
9233 \begin_layout Plain Layout
9234
9235 \backslash
9236 updownarrow
9237 \end_layout
9238
9239 \end_inset
9240 </cell>
9241 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9242 \begin_inset Text
9243
9244 \begin_layout Plain Layout
9245 \begin_inset Formula $\updownarrow$
9246 \end_inset
9247
9248
9249 \end_layout
9250
9251 \end_inset
9252 </cell>
9253 </row>
9254 <row>
9255 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9256 \begin_inset Text
9257
9258 \begin_layout Plain Layout
9259
9260 \backslash
9261 Updownarrow
9262 \end_layout
9263
9264 \end_inset
9265 </cell>
9266 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9267 \begin_inset Text
9268
9269 \begin_layout Plain Layout
9270 \begin_inset Formula $\Updownarrow$
9271 \end_inset
9272
9273
9274 \end_layout
9275
9276 \end_inset
9277 </cell>
9278 </row>
9279 <row>
9280 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9281 \begin_inset Text
9282
9283 \begin_layout Plain Layout
9284
9285 \backslash
9286 Downarrow
9287 \end_layout
9288
9289 \end_inset
9290 </cell>
9291 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9292 \begin_inset Text
9293
9294 \begin_layout Plain Layout
9295 \begin_inset Formula $\Downarrow$
9296 \end_inset
9297
9298
9299 \end_layout
9300
9301 \end_inset
9302 </cell>
9303 </row>
9304 <row>
9305 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9306 \begin_inset Text
9307
9308 \begin_layout Plain Layout
9309
9310 \backslash
9311 downarrow
9312 \end_layout
9313
9314 \end_inset
9315 </cell>
9316 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9317 \begin_inset Text
9318
9319 \begin_layout Plain Layout
9320 \begin_inset Formula $\downarrow$
9321 \end_inset
9322
9323
9324 \end_layout
9325
9326 \end_inset
9327 </cell>
9328 </row>
9329 </lyxtabular>
9330
9331 \end_inset
9332
9333
9334 \begin_inset space \hfill{}
9335 \end_inset
9336
9337
9338 \begin_inset Tabular
9339 <lyxtabular version="3" rows="5" columns="2">
9340 <features rotate="0" tabularvalignment="middle">
9341 <column alignment="center" valignment="top" width="0pt">
9342 <column alignment="center" valignment="top" width="0pt">
9343 <row>
9344 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9345 \begin_inset Text
9346
9347 \begin_layout Plain Layout
9348 Befehl
9349 \end_layout
9350
9351 \end_inset
9352 </cell>
9353 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9354 \begin_inset Text
9355
9356 \begin_layout Plain Layout
9357 Ergebnis
9358 \end_layout
9359
9360 \end_inset
9361 </cell>
9362 </row>
9363 <row>
9364 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9365 \begin_inset Text
9366
9367 \begin_layout Plain Layout
9368
9369 \backslash
9370 nearrow
9371 \end_layout
9372
9373 \end_inset
9374 </cell>
9375 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9376 \begin_inset Text
9377
9378 \begin_layout Plain Layout
9379 \begin_inset Formula $\nearrow$
9380 \end_inset
9381
9382
9383 \end_layout
9384
9385 \end_inset
9386 </cell>
9387 </row>
9388 <row>
9389 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9390 \begin_inset Text
9391
9392 \begin_layout Plain Layout
9393
9394 \backslash
9395 searrow
9396 \end_layout
9397
9398 \end_inset
9399 </cell>
9400 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9401 \begin_inset Text
9402
9403 \begin_layout Plain Layout
9404 \begin_inset Formula $\searrow$
9405 \end_inset
9406
9407
9408 \end_layout
9409
9410 \end_inset
9411 </cell>
9412 </row>
9413 <row>
9414 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9415 \begin_inset Text
9416
9417 \begin_layout Plain Layout
9418
9419 \backslash
9420 swarrow
9421 \end_layout
9422
9423 \end_inset
9424 </cell>
9425 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9426 \begin_inset Text
9427
9428 \begin_layout Plain Layout
9429 \begin_inset Formula $\swarrow$
9430 \end_inset
9431
9432
9433 \end_layout
9434
9435 \end_inset
9436 </cell>
9437 </row>
9438 <row>
9439 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9440 \begin_inset Text
9441
9442 \begin_layout Plain Layout
9443
9444 \backslash
9445 nwarrow
9446 \end_layout
9447
9448 \end_inset
9449 </cell>
9450 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9451 \begin_inset Text
9452
9453 \begin_layout Plain Layout
9454 \begin_inset Formula $\nwarrow$
9455 \end_inset
9456
9457
9458 \end_layout
9459
9460 \end_inset
9461 </cell>
9462 </row>
9463 </lyxtabular>
9464
9465 \end_inset
9466
9467
9468 \begin_inset space \hfill{}
9469 \end_inset
9470
9471
9472 \end_layout
9473
9474 \begin_layout Standard
9475 \begin_inset VSpace medskip
9476 \end_inset
9477
9478 Vertikale Pfeile können auch als Begrenzungszeichen zusammen mit den in
9479  
9480 \begin_inset CommandInset ref
9481 LatexCommand ref
9482 reference "sub:Manuelle-Klammergrößen"
9483
9484 \end_inset
9485
9486  und 
9487 \begin_inset CommandInset ref
9488 LatexCommand ref
9489 reference "sub:Automatische-Klammergrößen"
9490
9491 \end_inset
9492
9493  beschriebenen Befehlen verwendet werden.
9494 \end_layout
9495
9496 \begin_layout Section
9497 Akzente
9498 \begin_inset CommandInset label
9499 LatexCommand label
9500 name "sec:Akzente"
9501
9502 \end_inset
9503
9504
9505 \begin_inset Index idx
9506 status collapsed
9507
9508 \begin_layout Plain Layout
9509 Akzente
9510 \end_layout
9511
9512 \end_inset
9513
9514
9515 \end_layout
9516
9517 \begin_layout Standard
9518 Akzente können über den Mathe-Werkzeugleistenknopf 
9519 \begin_inset Graphics
9520         filename ../../images/math/hat.png
9521         scale 85
9522
9523 \end_inset
9524
9525  oder mit den Befehlen eingefügt werden, die in den folgenden Unterkapiteln
9526  aufgelistet sind.
9527 \end_layout
9528
9529 \begin_layout Subsection
9530 Akzente für ein Zeichen
9531 \begin_inset ERT
9532 status collapsed
9533
9534 \begin_layout Plain Layout
9535
9536
9537 \backslash
9538 texorpdfstring{
9539 \end_layout
9540
9541 \end_inset
9542
9543
9544 \begin_inset Foot
9545 status collapsed
9546
9547 \begin_layout Plain Layout
9548 Akzente im Text siehe 
9549 \begin_inset CommandInset ref
9550 LatexCommand ref
9551 reference "sub:Sonderzeichen-Akzente"
9552
9553 \end_inset
9554
9555
9556 \end_layout
9557
9558 \end_inset
9559
9560
9561 \begin_inset ERT
9562 status collapsed
9563
9564 \begin_layout Plain Layout
9565
9566 }{}
9567 \end_layout
9568
9569 \end_inset
9570
9571
9572 \begin_inset Note Note
9573 status collapsed
9574
9575 \begin_layout Plain Layout
9576
9577 \series bold
9578
9579 \backslash
9580 texorpdfstring
9581 \series default
9582  dient dazu, dass die Fußnote nicht im PDF-Lesezeichen erscheint.
9583 \end_layout
9584
9585 \begin_layout Plain Layout
9586 Näheres zu 
9587 \series bold
9588
9589 \backslash
9590 texorpdfstring
9591 \series default
9592  steht in Kapitel 
9593 \begin_inset CommandInset ref
9594 LatexCommand ref
9595 reference "sub:Formeln-in-Überschriften"
9596
9597 \end_inset
9598
9599 .
9600 \end_layout
9601
9602 \end_inset
9603
9604
9605 \begin_inset CommandInset label
9606 LatexCommand label
9607 name "sub:Akzente-für-ein"
9608
9609 \end_inset
9610
9611
9612 \begin_inset Index idx
9613 status collapsed
9614
9615 \begin_layout Plain Layout
9616 Akzente ! für ein Zeichen
9617 \end_layout
9618
9619 \end_inset
9620
9621
9622 \end_layout
9623
9624 \begin_layout Standard
9625 \begin_inset space \hfill{}
9626 \end_inset
9627
9628
9629 \begin_inset Tabular
9630 <lyxtabular version="3" rows="8" columns="2">
9631 <features rotate="0" tabularvalignment="middle">
9632 <column alignment="center" valignment="top" width="0pt">
9633 <column alignment="center" valignment="top" width="0pt">
9634 <row>
9635 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9636 \begin_inset Text
9637
9638 \begin_layout Plain Layout
9639 Befehl
9640 \end_layout
9641
9642 \end_inset
9643 </cell>
9644 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9645 \begin_inset Text
9646
9647 \begin_layout Plain Layout
9648 Ergebnis
9649 \begin_inset Note Note
9650 status collapsed
9651
9652 \begin_layout Plain Layout
9653
9654 \series bold
9655
9656 \backslash
9657 raisebox
9658 \series default
9659  dient nur als Abstandhalter.
9660 \end_layout
9661
9662 \end_inset
9663
9664
9665 \end_layout
9666
9667 \end_inset
9668 </cell>
9669 </row>
9670 <row>
9671 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9672 \begin_inset Text
9673
9674 \begin_layout Plain Layout
9675
9676 \backslash
9677 dot
9678 \begin_inset ERT
9679 status collapsed
9680
9681 \begin_layout Plain Layout
9682
9683
9684 \backslash
9685 leer 
9686 \end_layout
9687
9688 \end_inset
9689
9690 A
9691 \end_layout
9692
9693 \end_inset
9694 </cell>
9695 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9696 \begin_inset Text
9697
9698 \begin_layout Plain Layout
9699 \begin_inset Formula $\raisebox{5mm}{}\dot{A}$
9700 \end_inset
9701
9702
9703 \end_layout
9704
9705 \end_inset
9706 </cell>
9707 </row>
9708 <row>
9709 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9710 \begin_inset Text
9711
9712 \begin_layout Plain Layout
9713
9714 \backslash
9715 ddot
9716 \begin_inset ERT
9717 status collapsed
9718
9719 \begin_layout Plain Layout
9720
9721
9722 \backslash
9723 leer 
9724 \end_layout
9725
9726 \end_inset
9727
9728 A
9729 \end_layout
9730
9731 \end_inset
9732 </cell>
9733 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9734 \begin_inset Text
9735
9736 \begin_layout Plain Layout
9737 \begin_inset Formula $\raisebox{5mm}{}\ddot{A}$
9738 \end_inset
9739
9740
9741 \end_layout
9742
9743 \end_inset
9744 </cell>
9745 </row>
9746 <row>
9747 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9748 \begin_inset Text
9749
9750 \begin_layout Plain Layout
9751
9752 \backslash
9753 dddot
9754 \begin_inset ERT
9755 status collapsed
9756
9757 \begin_layout Plain Layout
9758
9759
9760 \backslash
9761 leer 
9762 \end_layout
9763
9764 \end_inset
9765
9766 A
9767 \end_layout
9768
9769 \end_inset
9770 </cell>
9771 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9772 \begin_inset Text
9773
9774 \begin_layout Plain Layout
9775 \begin_inset Formula $\raisebox{5mm}{}\dddot{A}$
9776 \end_inset
9777
9778
9779 \end_layout
9780
9781 \end_inset
9782 </cell>
9783 </row>
9784 <row>
9785 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9786 \begin_inset Text
9787
9788 \begin_layout Plain Layout
9789
9790 \backslash
9791 ddddot
9792 \begin_inset ERT
9793 status collapsed
9794
9795 \begin_layout Plain Layout
9796
9797
9798 \backslash
9799 leer 
9800 \end_layout
9801
9802 \end_inset
9803
9804 A
9805 \end_layout
9806
9807 \end_inset
9808 </cell>
9809 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9810 \begin_inset Text
9811
9812 \begin_layout Plain Layout
9813 \begin_inset Formula $\raisebox{5mm}{}\ddddot{A}$
9814 \end_inset
9815
9816
9817 \end_layout
9818
9819 \end_inset
9820 </cell>
9821 </row>
9822 <row>
9823 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9824 \begin_inset Text
9825
9826 \begin_layout Plain Layout
9827
9828 \backslash
9829 vec
9830 \begin_inset ERT
9831 status collapsed
9832
9833 \begin_layout Plain Layout
9834
9835
9836 \backslash
9837 leer 
9838 \end_layout
9839
9840 \end_inset
9841
9842 A
9843 \begin_inset Index idx
9844 status collapsed
9845
9846 \begin_layout Plain Layout
9847 Vektoren
9848 \end_layout
9849
9850 \end_inset
9851
9852
9853 \end_layout
9854
9855 \end_inset
9856 </cell>
9857 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9858 \begin_inset Text
9859
9860 \begin_layout Plain Layout
9861 \begin_inset Formula $\raisebox{5mm}{}\vec{A}$
9862 \end_inset
9863
9864
9865 \end_layout
9866
9867 \end_inset
9868 </cell>
9869 </row>
9870 <row>
9871 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9872 \begin_inset Text
9873
9874 \begin_layout Plain Layout
9875
9876 \backslash
9877 bar
9878 \begin_inset ERT
9879 status collapsed
9880
9881 \begin_layout Plain Layout
9882
9883
9884 \backslash
9885 leer 
9886 \end_layout
9887
9888 \end_inset
9889
9890 A
9891 \end_layout
9892
9893 \end_inset
9894 </cell>
9895 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9896 \begin_inset Text
9897
9898 \begin_layout Plain Layout
9899 \begin_inset Formula $\raisebox{5mm}{}\bar{A}$
9900 \end_inset
9901
9902
9903 \end_layout
9904
9905 \end_inset
9906 </cell>
9907 </row>
9908 <row>
9909 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9910 \begin_inset Text
9911
9912 \begin_layout Plain Layout
9913
9914 \backslash
9915 mathring
9916 \begin_inset ERT
9917 status collapsed
9918
9919 \begin_layout Plain Layout
9920
9921
9922 \backslash
9923 leer 
9924 \end_layout
9925
9926 \end_inset
9927
9928 A
9929 \end_layout
9930
9931 \end_inset
9932 </cell>
9933 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9934 \begin_inset Text
9935
9936 \begin_layout Plain Layout
9937 \begin_inset Formula $\raisebox{5mm}{}\mathring{A}$
9938 \end_inset
9939
9940
9941 \end_layout
9942
9943 \end_inset
9944 </cell>
9945 </row>
9946 </lyxtabular>
9947
9948 \end_inset
9949
9950
9951 \begin_inset space \hfill{}
9952 \end_inset
9953
9954
9955 \begin_inset Tabular
9956 <lyxtabular version="3" rows="7" columns="2">
9957 <features rotate="0" tabularvalignment="middle">
9958 <column alignment="center" valignment="top" width="0pt">
9959 <column alignment="center" valignment="top" width="0pt">
9960 <row>
9961 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9962 \begin_inset Text
9963
9964 \begin_layout Plain Layout
9965 Befehl
9966 \end_layout
9967
9968 \end_inset
9969 </cell>
9970 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9971 \begin_inset Text
9972
9973 \begin_layout Plain Layout
9974 Ergebnis
9975 \end_layout
9976
9977 \end_inset
9978 </cell>
9979 </row>
9980 <row>
9981 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9982 \begin_inset Text
9983
9984 \begin_layout Plain Layout
9985
9986 \backslash
9987 tilde
9988 \begin_inset ERT
9989 status collapsed
9990
9991 \begin_layout Plain Layout
9992
9993
9994 \backslash
9995 leer 
9996 \end_layout
9997
9998 \end_inset
9999
10000 A
10001 \end_layout
10002
10003 \end_inset
10004 </cell>
10005 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10006 \begin_inset Text
10007
10008 \begin_layout Plain Layout
10009 \begin_inset Formula $\raisebox{5mm}{}\tilde{A}$
10010 \end_inset
10011
10012
10013 \end_layout
10014
10015 \end_inset
10016 </cell>
10017 </row>
10018 <row>
10019 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10020 \begin_inset Text
10021
10022 \begin_layout Plain Layout
10023
10024 \backslash
10025 hat
10026 \begin_inset ERT
10027 status collapsed
10028
10029 \begin_layout Plain Layout
10030
10031
10032 \backslash
10033 leer 
10034 \end_layout
10035
10036 \end_inset
10037
10038 A
10039 \end_layout
10040
10041 \end_inset
10042 </cell>
10043 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10044 \begin_inset Text
10045
10046 \begin_layout Plain Layout
10047 \begin_inset Formula $\raisebox{5mm}{}\hat{A}$
10048 \end_inset
10049
10050
10051 \end_layout
10052
10053 \end_inset
10054 </cell>
10055 </row>
10056 <row>
10057 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10058 \begin_inset Text
10059
10060 \begin_layout Plain Layout
10061
10062 \backslash
10063 check
10064 \begin_inset ERT
10065 status collapsed
10066
10067 \begin_layout Plain Layout
10068
10069
10070 \backslash
10071 leer 
10072 \end_layout
10073
10074 \end_inset
10075
10076 A
10077 \end_layout
10078
10079 \end_inset
10080 </cell>
10081 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10082 \begin_inset Text
10083
10084 \begin_layout Plain Layout
10085 \begin_inset Formula $\raisebox{5mm}{}\check{A}$
10086 \end_inset
10087
10088
10089 \end_layout
10090
10091 \end_inset
10092 </cell>
10093 </row>
10094 <row>
10095 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10096 \begin_inset Text
10097
10098 \begin_layout Plain Layout
10099
10100 \backslash
10101 acute
10102 \begin_inset ERT
10103 status collapsed
10104
10105 \begin_layout Plain Layout
10106
10107
10108 \backslash
10109 leer 
10110 \end_layout
10111
10112 \end_inset
10113
10114 A
10115 \end_layout
10116
10117 \end_inset
10118 </cell>
10119 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10120 \begin_inset Text
10121
10122 \begin_layout Plain Layout
10123 \begin_inset Formula $\raisebox{5mm}{}\acute{A}$
10124 \end_inset
10125
10126
10127 \end_layout
10128
10129 \end_inset
10130 </cell>
10131 </row>
10132 <row>
10133 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10134 \begin_inset Text
10135
10136 \begin_layout Plain Layout
10137
10138 \backslash
10139 grave
10140 \begin_inset ERT
10141 status collapsed
10142
10143 \begin_layout Plain Layout
10144
10145
10146 \backslash
10147 leer 
10148 \end_layout
10149
10150 \end_inset
10151
10152 A
10153 \end_layout
10154
10155 \end_inset
10156 </cell>
10157 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10158 \begin_inset Text
10159
10160 \begin_layout Plain Layout
10161 \begin_inset Formula $\raisebox{5mm}{}\grave{A}$
10162 \end_inset
10163
10164
10165 \end_layout
10166
10167 \end_inset
10168 </cell>
10169 </row>
10170 <row>
10171 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10172 \begin_inset Text
10173
10174 \begin_layout Plain Layout
10175
10176 \backslash
10177 breve
10178 \begin_inset ERT
10179 status collapsed
10180
10181 \begin_layout Plain Layout
10182
10183
10184 \backslash
10185 leer 
10186 \end_layout
10187
10188 \end_inset
10189
10190 A
10191 \end_layout
10192
10193 \end_inset
10194 </cell>
10195 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10196 \begin_inset Text
10197
10198 \begin_layout Plain Layout
10199 \begin_inset Formula $\raisebox{5mm}{}\breve{A}$
10200 \end_inset
10201
10202
10203 \end_layout
10204
10205 \end_inset
10206 </cell>
10207 </row>
10208 </lyxtabular>
10209
10210 \end_inset
10211
10212
10213 \begin_inset space \hfill{}
10214 \end_inset
10215
10216
10217 \end_layout
10218
10219 \begin_layout Standard
10220 \begin_inset VSpace bigskip
10221 \end_inset
10222
10223 Akzente wie z.B.
10224  é können direkt in Formeln eingegeben werden.
10225  LyX transformiert sie dann in den entsprechenden Akzentbefehl.
10226  Für Umlaute
10227 \begin_inset Index idx
10228 status collapsed
10229
10230 \begin_layout Plain Layout
10231 Umlaute
10232 \end_layout
10233
10234 \end_inset
10235
10236  ist es besser wenn man ein Anführungszeichen vor den Selbstlaut schreibt.
10237  Diese beiden Zeichen bilden dann für LaTeX 
10238 \emph on
10239 ein
10240 \emph default
10241  Zeichen.
10242  Im Gegensatz zu 
10243 \series bold
10244
10245 \backslash
10246 ddot
10247 \series default
10248  entstehen damit 
10249 \begin_inset Quotes gld
10250 \end_inset
10251
10252 echte
10253 \begin_inset Quotes grd
10254 \end_inset
10255
10256  Umlaute, was folgendes Beispiel zeigt:
10257 \end_layout
10258
10259 \begin_layout Standard
10260 \begin_inset VSpace -2mm
10261 \end_inset
10262
10263
10264 \end_layout
10265
10266 \begin_layout Standard
10267 \align center
10268 \begin_inset Tabular
10269 <lyxtabular version="3" rows="3" columns="2">
10270 <features rotate="0" tabularvalignment="middle">
10271 <column alignment="center" valignment="top">
10272 <column alignment="center" valignment="top">
10273 <row>
10274 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10275 \begin_inset Text
10276
10277 \begin_layout Plain Layout
10278 Befehl
10279 \end_layout
10280
10281 \end_inset
10282 </cell>
10283 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10284 \begin_inset Text
10285
10286 \begin_layout Plain Layout
10287 Ergebnis
10288 \begin_inset Note Note
10289 status collapsed
10290
10291 \begin_layout Plain Layout
10292
10293 \series bold
10294
10295 \backslash
10296 raisebox
10297 \series default
10298  dient nur als Abstandhalter.
10299 \end_layout
10300
10301 \end_inset
10302
10303
10304 \end_layout
10305
10306 \end_inset
10307 </cell>
10308 </row>
10309 <row>
10310 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10311 \begin_inset Text
10312
10313 \begin_layout Plain Layout
10314 \begin_inset Quotes grd
10315 \end_inset
10316
10317 i
10318 \end_layout
10319
10320 \end_inset
10321 </cell>
10322 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10323 \begin_inset Text
10324
10325 \begin_layout Plain Layout
10326 \begin_inset Formula $"i$
10327 \end_inset
10328
10329
10330 \end_layout
10331
10332 \end_inset
10333 </cell>
10334 </row>
10335 <row>
10336 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10337 \begin_inset Text
10338
10339 \begin_layout Plain Layout
10340
10341 \backslash
10342 ddot
10343 \begin_inset ERT
10344 status collapsed
10345
10346 \begin_layout Plain Layout
10347
10348
10349 \backslash
10350 leer 
10351 \end_layout
10352
10353 \end_inset
10354
10355 i
10356 \end_layout
10357
10358 \end_inset
10359 </cell>
10360 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10361 \begin_inset Text
10362
10363 \begin_layout Plain Layout
10364 \begin_inset Formula $\raisebox{5mm}{}\ddot{i}$
10365 \end_inset
10366
10367
10368 \end_layout
10369
10370 \end_inset
10371 </cell>
10372 </row>
10373 </lyxtabular>
10374
10375 \end_inset
10376
10377
10378 \end_layout
10379
10380 \begin_layout Standard
10381 Ein weiterer Vorteil gegenüber 
10382 \series bold
10383
10384 \backslash
10385 ddot
10386 \series default
10387  ist, dass man Umlaute direkt in mathematischen Text konvertieren kann,
10388  denn die obigen Akzentbefehle sind 
10389 \emph on
10390 im mathematischen Text\SpecialChar \-
10391 modus nicht erlaubt
10392 \emph default
10393 .
10394  Um ein akzentuiertes Zeichen in mathematischen Text zu überführen, darf
10395  nur das Zeichen unter dem Akzent umgewandelt werden.
10396  Das gilt auch für alle anderen Umwandlungen wie z.
10397 \begin_inset space \thinspace{}
10398 \end_inset
10399
10400 B.
10401  in kursiv oder fett.
10402 \end_layout
10403
10404 \begin_layout Standard
10405 Im mathematischen Textmodus können Umlaute und andere akzentuierten Zeichen
10406  direkt eingegeben werden.
10407 \end_layout
10408
10409 \begin_layout Subsection
10410 Akzente für mehrere Zeichen
10411 \begin_inset Index idx
10412 status collapsed
10413
10414 \begin_layout Plain Layout
10415 Akzente ! für mehrere Zeichen
10416 \end_layout
10417
10418 \end_inset
10419
10420
10421 \end_layout
10422
10423 \begin_layout Standard
10424 \begin_inset space \hfill{}
10425 \end_inset
10426
10427
10428 \begin_inset Tabular
10429 <lyxtabular version="3" rows="5" columns="2">
10430 <features rotate="0" tabularvalignment="middle">
10431 <column alignment="center" valignment="top" width="0pt">
10432 <column alignment="center" valignment="top" width="0pt">
10433 <row>
10434 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10435 \begin_inset Text
10436
10437 \begin_layout Plain Layout
10438 Befehl
10439 \end_layout
10440
10441 \end_inset
10442 </cell>
10443 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10444 \begin_inset Text
10445
10446 \begin_layout Plain Layout
10447 Ergebnis
10448 \begin_inset Note Note
10449 status collapsed
10450
10451 \begin_layout Plain Layout
10452
10453 \series bold
10454
10455 \backslash
10456 raisebox
10457 \series default
10458  dient nur als Abstandhalter.
10459 \end_layout
10460
10461 \end_inset
10462
10463
10464 \end_layout
10465
10466 \end_inset
10467 </cell>
10468 </row>
10469 <row>
10470 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10471 \begin_inset Text
10472
10473 \begin_layout Plain Layout
10474
10475 \backslash
10476 overleftarrow
10477 \begin_inset ERT
10478 status collapsed
10479
10480 \begin_layout Plain Layout
10481
10482
10483 \backslash
10484 leer 
10485 \end_layout
10486
10487 \end_inset
10488
10489 A=B
10490 \end_layout
10491
10492 \end_inset
10493 </cell>
10494 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10495 \begin_inset Text
10496
10497 \begin_layout Plain Layout
10498 \begin_inset Formula $\raisebox{6mm}{}\overleftarrow{A=B}\raisebox{-2mm}{}$
10499 \end_inset
10500
10501
10502 \end_layout
10503
10504 \end_inset
10505 </cell>
10506 </row>
10507 <row>
10508 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10509 \begin_inset Text
10510
10511 \begin_layout Plain Layout
10512
10513 \backslash
10514 underleftarrow
10515 \begin_inset ERT
10516 status collapsed
10517
10518 \begin_layout Plain Layout
10519
10520
10521 \backslash
10522 leer 
10523 \end_layout
10524
10525 \end_inset
10526
10527 A=B
10528 \end_layout
10529
10530 \end_inset
10531 </cell>
10532 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10533 \begin_inset Text
10534
10535 \begin_layout Plain Layout
10536 \begin_inset Formula $\raisebox{5mm}{}\underleftarrow{A=B}\raisebox{-3mm}{}$
10537 \end_inset
10538
10539
10540 \end_layout
10541
10542 \end_inset
10543 </cell>
10544 </row>
10545 <row>
10546 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10547 \begin_inset Text
10548
10549 \begin_layout Plain Layout
10550
10551 \backslash
10552 overleftrightarrow
10553 \begin_inset ERT
10554 status collapsed
10555
10556 \begin_layout Plain Layout
10557
10558
10559 \backslash
10560 leer 
10561 \end_layout
10562
10563 \end_inset
10564
10565 A=B
10566 \end_layout
10567
10568 \end_inset
10569 </cell>
10570 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10571 \begin_inset Text
10572
10573 \begin_layout Plain Layout
10574 \begin_inset Formula $\raisebox{6mm}{}\overleftrightarrow{A=B}\raisebox{-2mm}{}$
10575 \end_inset
10576
10577
10578 \end_layout
10579
10580 \end_inset
10581 </cell>
10582 </row>
10583 <row>
10584 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10585 \begin_inset Text
10586
10587 \begin_layout Plain Layout
10588
10589 \backslash
10590 underleftrightarrow
10591 \begin_inset ERT
10592 status collapsed
10593
10594 \begin_layout Plain Layout
10595
10596
10597 \backslash
10598 leer 
10599 \end_layout
10600
10601 \end_inset
10602
10603 A=B
10604 \end_layout
10605
10606 \end_inset
10607 </cell>
10608 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10609 \begin_inset Text
10610
10611 \begin_layout Plain Layout
10612 \begin_inset Formula $\raisebox{5mm}{}\underleftrightarrow{A=B}\raisebox{-3mm}{}$
10613 \end_inset
10614
10615
10616 \end_layout
10617
10618 \end_inset
10619 </cell>
10620 </row>
10621 </lyxtabular>
10622
10623 \end_inset
10624
10625
10626 \begin_inset space \hfill{}
10627 \end_inset
10628
10629
10630 \begin_inset Tabular
10631 <lyxtabular version="3" rows="5" columns="2">
10632 <features rotate="0" tabularvalignment="middle">
10633 <column alignment="center" valignment="top" width="0pt">
10634 <column alignment="center" valignment="top" width="0pt">
10635 <row>
10636 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10637 \begin_inset Text
10638
10639 \begin_layout Plain Layout
10640 Befehl
10641 \end_layout
10642
10643 \end_inset
10644 </cell>
10645 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10646 \begin_inset Text
10647
10648 \begin_layout Plain Layout
10649 Ergebnis
10650 \end_layout
10651
10652 \end_inset
10653 </cell>
10654 </row>
10655 <row>
10656 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10657 \begin_inset Text
10658
10659 \begin_layout Plain Layout
10660
10661 \backslash
10662 overrightarrow
10663 \begin_inset ERT
10664 status collapsed
10665
10666 \begin_layout Plain Layout
10667
10668
10669 \backslash
10670 leer 
10671 \end_layout
10672
10673 \end_inset
10674
10675 A=B
10676 \end_layout
10677
10678 \end_inset
10679 </cell>
10680 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10681 \begin_inset Text
10682
10683 \begin_layout Plain Layout
10684 \begin_inset Formula $\raisebox{6mm}{}\overrightarrow{A=B}\raisebox{-2mm}{}$
10685 \end_inset
10686
10687
10688 \end_layout
10689
10690 \end_inset
10691 </cell>
10692 </row>
10693 <row>
10694 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10695 \begin_inset Text
10696
10697 \begin_layout Plain Layout
10698
10699 \backslash
10700 underrightarrow
10701 \begin_inset ERT
10702 status collapsed
10703
10704 \begin_layout Plain Layout
10705
10706
10707 \backslash
10708 leer 
10709 \end_layout
10710
10711 \end_inset
10712
10713 A=B
10714 \end_layout
10715
10716 \end_inset
10717 </cell>
10718 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10719 \begin_inset Text
10720
10721 \begin_layout Plain Layout
10722 \begin_inset Formula $\raisebox{5mm}{}\underrightarrow{A=B}\raisebox{-3mm}{}$
10723 \end_inset
10724
10725
10726 \end_layout
10727
10728 \end_inset
10729 </cell>
10730 </row>
10731 <row>
10732 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10733 \begin_inset Text
10734
10735 \begin_layout Plain Layout
10736
10737 \backslash
10738 widetilde
10739 \begin_inset ERT
10740 status collapsed
10741
10742 \begin_layout Plain Layout
10743
10744
10745 \backslash
10746 leer 
10747 \end_layout
10748
10749 \end_inset
10750
10751 A=B
10752 \end_layout
10753
10754 \end_inset
10755 </cell>
10756 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10757 \begin_inset Text
10758
10759 \begin_layout Plain Layout
10760 \begin_inset Formula $\raisebox{6mm}{}\widetilde{A=B}\raisebox{-2mm}{}$
10761 \end_inset
10762
10763
10764 \end_layout
10765
10766 \end_inset
10767 </cell>
10768 </row>
10769 <row>
10770 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10771 \begin_inset Text
10772
10773 \begin_layout Plain Layout
10774
10775 \backslash
10776 widehat
10777 \begin_inset ERT
10778 status collapsed
10779
10780 \begin_layout Plain Layout
10781
10782
10783 \backslash
10784 leer 
10785 \end_layout
10786
10787 \end_inset
10788
10789 A=B
10790 \end_layout
10791
10792 \end_inset
10793 </cell>
10794 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10795 \begin_inset Text
10796
10797 \begin_layout Plain Layout
10798 \begin_inset Formula $\raisebox{6mm}{}\widehat{A=B}\raisebox{-2mm}{}$
10799 \end_inset
10800
10801
10802 \end_layout
10803
10804 \end_inset
10805 </cell>
10806 </row>
10807 </lyxtabular>
10808
10809 \end_inset
10810
10811
10812 \begin_inset space \hfill{}
10813 \end_inset
10814
10815
10816 \end_layout
10817
10818 \begin_layout Standard
10819 \begin_inset VSpace medskip
10820 \end_inset
10821
10822 Mit diesen Befehlen können beliebig viele Zeichen akzentuiert werden.
10823  Die Akzente
10824 \begin_inset Newline linebreak
10825 \end_inset
10826
10827
10828 \series bold
10829
10830 \backslash
10831 widetilde
10832 \series default
10833  und 
10834 \series bold
10835
10836 \backslash
10837 widehat
10838 \series default
10839  werden aber im Ausdruck nur mit einer Länge von etwa drei Zeichen gesetzt,
10840  was folgendes Beispiel verdeutlicht:
10841 \begin_inset Formula 
10842 \[
10843 \widetilde{A+B=C-D}
10844 \]
10845
10846 \end_inset
10847
10848
10849 \end_layout
10850
10851 \begin_layout Standard
10852 Mit den im vorigen Kapitel beschriebenen Befehlen 
10853 \series bold
10854
10855 \backslash
10856 overset
10857 \series default
10858
10859 \begin_inset Index idx
10860 status collapsed
10861
10862 \begin_layout Plain Layout
10863 Befehle ! O ! 
10864 \backslash
10865 overset
10866 \end_layout
10867
10868 \end_inset
10869
10870  und 
10871 \series bold
10872
10873 \backslash
10874 underset
10875 \series default
10876
10877 \begin_inset Index idx
10878 status collapsed
10879
10880 \begin_layout Plain Layout
10881 Befehle ! U ! 
10882 \backslash
10883 underset
10884 \end_layout
10885
10886 \end_inset
10887
10888  ist es auch möglich mehrere Zeichen zu akzentuieren.
10889  Der Befehl 
10890 \series bold
10891
10892 \backslash
10893 underset
10894 \begin_inset ERT
10895 status collapsed
10896
10897 \begin_layout Plain Layout
10898
10899
10900 \backslash
10901 leer 
10902 \end_layout
10903
10904 \end_inset
10905
10906 A=B
10907 \begin_inset Formula $\downarrow$
10908 \end_inset
10909
10910 ***
10911 \series default
10912  ergibt:
10913 \begin_inset Formula 
10914 \[
10915 \underset{***}{A=B}
10916 \]
10917
10918 \end_inset
10919
10920
10921 \end_layout
10922
10923 \begin_layout Section
10924 Leerraum
10925 \begin_inset CommandInset label
10926 LatexCommand label
10927 name "sub:Leerraum"
10928
10929 \end_inset
10930
10931
10932 \begin_inset Index idx
10933 status collapsed
10934
10935 \begin_layout Plain Layout
10936 Leerraum ! horizontaler
10937 \end_layout
10938
10939 \end_inset
10940
10941
10942 \end_layout
10943
10944 \begin_layout Subsection
10945 Vordefinierter Leerraum
10946 \begin_inset CommandInset label
10947 LatexCommand label
10948 name "sub:Vordefinierter-Leerraum"
10949
10950 \end_inset
10951
10952
10953 \begin_inset Index idx
10954 status collapsed
10955
10956 \begin_layout Plain Layout
10957 Leerraum ! horizontaler ! vordefiniert
10958 \end_layout
10959
10960 \end_inset
10961
10962
10963 \end_layout
10964
10965 \begin_layout Standard
10966 Ab und an ist es notwendig in einer Formel horizontalen Leerraum einzufügen.
10967  Dazu gibt man ein geschütztes Leerzeichen ein.
10968  Es erscheint ein 
10969 \begin_inset Quotes gld
10970 \end_inset
10971
10972
10973 \color blue
10974
10975 \begin_inset ERT
10976 status collapsed
10977
10978 \begin_layout Plain Layout
10979
10980
10981 \backslash
10982 leer 
10983 \end_layout
10984
10985 \end_inset
10986
10987
10988 \color inherit
10989
10990 \begin_inset Quotes grd
10991 \end_inset
10992
10993  und man kann durch mehrfaches Drücken der Leertaste aus acht verschiedenen
10994  Leerraum-Größen wählen.
10995  Man kann die Leerräume auch über den Mathe-Werkzeugleistenknopf 
10996 \begin_inset Graphics
10997         filename ../../images/math/space.png
10998         scale 85
10999
11000 \end_inset
11001
11002  oder mit einzelnen Befehlen aufrufen.
11003  Unabhängig vom eingegebenen Befehl kann man durch Drücken der Leertaste
11004  danach wieder aus allen Größen wählen.
11005 \end_layout
11006
11007 \begin_layout Standard
11008 \align center
11009 \begin_inset VSpace -5mm
11010 \end_inset
11011
11012
11013 \begin_inset Tabular
11014 <lyxtabular version="3" rows="3" columns="7">
11015 <features rotate="0" tabularvalignment="middle">
11016 <column alignment="center" valignment="middle" width="6.8cm">
11017 <column alignment="center" valignment="top" width="0pt">
11018 <column alignment="center" valignment="top" width="0pt">
11019 <column alignment="center" valignment="top" width="0pt">
11020 <column alignment="center" valignment="top" width="0pt">
11021 <column alignment="center" valignment="top" width="0pt">
11022 <column alignment="center" valignment="top" width="0pt">
11023 <row>
11024 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11025 \begin_inset Text
11026
11027 \begin_layout Plain Layout
11028 Befehl
11029 \end_layout
11030
11031 \end_inset
11032 </cell>
11033 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11034 \begin_inset Text
11035
11036 \begin_layout Plain Layout
11037
11038 \backslash
11039 ,
11040 \end_layout
11041
11042 \end_inset
11043 </cell>
11044 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11045 \begin_inset Text
11046
11047 \begin_layout Plain Layout
11048
11049 \backslash
11050 :
11051 \end_layout
11052
11053 \end_inset
11054 </cell>
11055 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11056 \begin_inset Text
11057
11058 \begin_layout Plain Layout
11059
11060 \backslash
11061 ;
11062 \end_layout
11063
11064 \end_inset
11065 </cell>
11066 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11067 \begin_inset Text
11068
11069 \begin_layout Plain Layout
11070
11071 \backslash
11072 quad
11073 \end_layout
11074
11075 \end_inset
11076 </cell>
11077 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11078 \begin_inset Text
11079
11080 \begin_layout Plain Layout
11081
11082 \backslash
11083 qquad
11084 \end_layout
11085
11086 \end_inset
11087 </cell>
11088 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11089 \begin_inset Text
11090
11091 \begin_layout Plain Layout
11092
11093 \backslash
11094 !
11095 \end_layout
11096
11097 \end_inset
11098 </cell>
11099 </row>
11100 <row>
11101 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none" width="7cm">
11102 \begin_inset Text
11103
11104 \begin_layout Plain Layout
11105 Anzahl der Leertastendrücke nach Eingabe des geschützten Leerzeichens
11106 \end_layout
11107
11108 \end_inset
11109 </cell>
11110 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11111 \begin_inset Text
11112
11113 \begin_layout Plain Layout
11114 0
11115 \end_layout
11116
11117 \end_inset
11118 </cell>
11119 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11120 \begin_inset Text
11121
11122 \begin_layout Plain Layout
11123 1
11124 \end_layout
11125
11126 \end_inset
11127 </cell>
11128 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11129 \begin_inset Text
11130
11131 \begin_layout Plain Layout
11132 2
11133 \end_layout
11134
11135 \end_inset
11136 </cell>
11137 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11138 \begin_inset Text
11139
11140 \begin_layout Plain Layout
11141 3
11142 \end_layout
11143
11144 \end_inset
11145 </cell>
11146 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11147 \begin_inset Text
11148
11149 \begin_layout Plain Layout
11150 4
11151 \end_layout
11152
11153 \end_inset
11154 </cell>
11155 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
11156 \begin_inset Text
11157
11158 \begin_layout Plain Layout
11159 5
11160 \end_layout
11161
11162 \end_inset
11163 </cell>
11164 </row>
11165 <row>
11166 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11167 \begin_inset Text
11168
11169 \begin_layout Plain Layout
11170 Ergebnis
11171 \end_layout
11172
11173 \end_inset
11174 </cell>
11175 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11176 \begin_inset Text
11177
11178 \begin_layout Plain Layout
11179 \begin_inset Formula $A\, B$
11180 \end_inset
11181
11182
11183 \end_layout
11184
11185 \end_inset
11186 </cell>
11187 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11188 \begin_inset Text
11189
11190 \begin_layout Plain Layout
11191 \begin_inset Formula $A\: B$
11192 \end_inset
11193
11194
11195 \end_layout
11196
11197 \end_inset
11198 </cell>
11199 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11200 \begin_inset Text
11201
11202 \begin_layout Plain Layout
11203 \begin_inset Formula $A\; B$
11204 \end_inset
11205
11206
11207 \end_layout
11208
11209 \end_inset
11210 </cell>
11211 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11212 \begin_inset Text
11213
11214 \begin_layout Plain Layout
11215 \begin_inset Formula $A\quad B$
11216 \end_inset
11217
11218
11219 \end_layout
11220
11221 \end_inset
11222 </cell>
11223 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11224 \begin_inset Text
11225
11226 \begin_layout Plain Layout
11227 \begin_inset Formula $A\qquad B$
11228 \end_inset
11229
11230
11231 \end_layout
11232
11233 \end_inset
11234 </cell>
11235 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
11236 \begin_inset Text
11237
11238 \begin_layout Plain Layout
11239 \begin_inset Formula $A\! B$
11240 \end_inset
11241
11242
11243 \end_layout
11244
11245 \end_inset
11246 </cell>
11247 </row>
11248 </lyxtabular>
11249
11250 \end_inset
11251
11252
11253 \end_layout
11254
11255 \begin_layout Standard
11256 Die letzte Größe scheint überhaupt keinen Leerraum zu produzieren.
11257  In LyX ist diese allerdings auch im Gegensatz zu allen anderen rot eingefärbt,
11258  denn sie erstellt negativen Leerraum.
11259  Es gibt noch zwei weitere negative Leerräume:
11260 \end_layout
11261
11262 \begin_layout Standard
11263 \align center
11264 \begin_inset Tabular
11265 <lyxtabular version="3" rows="3" columns="3">
11266 <features rotate="0" tabularvalignment="middle">
11267 <column alignment="center" valignment="middle" width="6.8cm">
11268 <column alignment="center" valignment="top" width="0pt">
11269 <column alignment="center" valignment="top" width="0pt">
11270 <row>
11271 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11272 \begin_inset Text
11273
11274 \begin_layout Plain Layout
11275 Befehl
11276 \end_layout
11277
11278 \end_inset
11279 </cell>
11280 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11281 \begin_inset Text
11282
11283 \begin_layout Plain Layout
11284
11285 \backslash
11286 negmedspace
11287 \end_layout
11288
11289 \end_inset
11290 </cell>
11291 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11292 \begin_inset Text
11293
11294 \begin_layout Plain Layout
11295
11296 \backslash
11297 negthickspace
11298 \end_layout
11299
11300 \end_inset
11301 </cell>
11302 </row>
11303 <row>
11304 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11305 \begin_inset Text
11306
11307 \begin_layout Plain Layout
11308 Anzahl der Leertastendrücke nach Eingabe des geschützten Leerzeichens
11309 \end_layout
11310
11311 \end_inset
11312 </cell>
11313 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11314 \begin_inset Text
11315
11316 \begin_layout Plain Layout
11317 6
11318 \end_layout
11319
11320 \end_inset
11321 </cell>
11322 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
11323 \begin_inset Text
11324
11325 \begin_layout Plain Layout
11326 7
11327 \end_layout
11328
11329 \end_inset
11330 </cell>
11331 </row>
11332 <row>
11333 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11334 \begin_inset Text
11335
11336 \begin_layout Plain Layout
11337 Ergebnis
11338 \end_layout
11339
11340 \end_inset
11341 </cell>
11342 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11343 \begin_inset Text
11344
11345 \begin_layout Plain Layout
11346 \begin_inset Formula $A\negmedspace B$
11347 \end_inset
11348
11349
11350 \end_layout
11351
11352 \end_inset
11353 </cell>
11354 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
11355 \begin_inset Text
11356
11357 \begin_layout Plain Layout
11358 \begin_inset Formula $A\negthickspace B$
11359 \end_inset
11360
11361
11362 \end_layout
11363
11364 \end_inset
11365 </cell>
11366 </row>
11367 </lyxtabular>
11368
11369 \end_inset
11370
11371
11372 \end_layout
11373
11374 \begin_layout Standard
11375 Negative Leerräume bewirken, dass sich benachbarte Zeichen überschneiden.
11376  Man kann auf diese Weise Ligaturen erzwingen, was z.
11377 \begin_inset space \thinspace{}
11378 \end_inset
11379
11380 B.
11381  für Summenzeichen von Nutzen ist: 
11382 \end_layout
11383
11384 \begin_layout Standard
11385 \align center
11386 \begin_inset Tabular
11387 <lyxtabular version="3" rows="3" columns="2">
11388 <features rotate="0" tabularvalignment="middle">
11389 <column alignment="center" valignment="top">
11390 <column alignment="center" valignment="top">
11391 <row>
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 Befehl
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 Ergebnis
11406 \begin_inset Note Note
11407 status collapsed
11408
11409 \begin_layout Plain Layout
11410
11411 \series bold
11412
11413 \backslash
11414 raisebox
11415 \series default
11416  dient nur als Abstandhalter.
11417 \end_layout
11418
11419 \end_inset
11420
11421
11422 \end_layout
11423
11424 \end_inset
11425 </cell>
11426 </row>
11427 <row>
11428 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11429 \begin_inset Text
11430
11431 \begin_layout Plain Layout
11432
11433 \backslash
11434 sum
11435 \backslash
11436 sum
11437 \begin_inset ERT
11438 status collapsed
11439
11440 \begin_layout Plain Layout
11441
11442
11443 \backslash
11444 leer 
11445 \end_layout
11446
11447 \end_inset
11448
11449 f_kl
11450 \end_layout
11451
11452 \end_inset
11453 </cell>
11454 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11455 \begin_inset Text
11456
11457 \begin_layout Plain Layout
11458 \begin_inset Formula $\raisebox{4.5mm}{}\sum\sum f_{kl}\raisebox{-2.5mm}{}$
11459 \end_inset
11460
11461
11462 \end_layout
11463
11464 \end_inset
11465 </cell>
11466 </row>
11467 <row>
11468 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11469 \begin_inset Text
11470
11471 \begin_layout Plain Layout
11472
11473 \backslash
11474 sum
11475 \backslash
11476 negmedspace
11477 \backslash
11478 sum
11479 \begin_inset ERT
11480 status collapsed
11481
11482 \begin_layout Plain Layout
11483
11484
11485 \backslash
11486 leer 
11487 \end_layout
11488
11489 \end_inset
11490
11491 f_kl
11492 \end_layout
11493
11494 \end_inset
11495 </cell>
11496 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11497 \begin_inset Text
11498
11499 \begin_layout Plain Layout
11500 \begin_inset Formula $\raisebox{4.5mm}{}\sum\negmedspace\sum f_{kl}\raisebox{-2.5mm}{}$
11501 \end_inset
11502
11503
11504 \end_layout
11505
11506 \end_inset
11507 </cell>
11508 </row>
11509 </lyxtabular>
11510
11511 \end_inset
11512
11513
11514 \end_layout
11515
11516 \begin_layout Standard
11517 Relationen, wie z.
11518 \begin_inset space \thinspace{}
11519 \end_inset
11520
11521 B.
11522  Gleichheitszeichen, sind immer von Leerraum umgeben.
11523  Will man dies unterdrücken, schreibt man das Gleichheitszeichen in eine
11524  TeX-Klammer.
11525  Die Wirkung kann man an folgendem Beispiel gut erkennen:
11526 \end_layout
11527
11528 \begin_layout Standard
11529 \align center
11530 \begin_inset Tabular
11531 <lyxtabular version="3" rows="2" columns="2">
11532 <features rotate="0" tabularvalignment="middle">
11533 <column alignment="center" valignment="top" width="0pt">
11534 <column alignment="center" valignment="top" width="0pt">
11535 <row>
11536 <cell alignment="center" valignment="top" usebox="none">
11537 \begin_inset Text
11538
11539 \begin_layout Plain Layout
11540 normale Gleichung
11541 \end_layout
11542
11543 \end_inset
11544 </cell>
11545 <cell alignment="center" valignment="top" usebox="none">
11546 \begin_inset Text
11547
11548 \begin_layout Plain Layout
11549 \begin_inset Formula $A=B$
11550 \end_inset
11551
11552
11553 \end_layout
11554
11555 \end_inset
11556 </cell>
11557 </row>
11558 <row>
11559 <cell alignment="center" valignment="top" usebox="none">
11560 \begin_inset Text
11561
11562 \begin_layout Plain Layout
11563 \begin_inset Note Note
11564 status collapsed
11565
11566 \begin_layout Plain Layout
11567
11568 \series bold
11569
11570 \backslash
11571 raisebox
11572 \series default
11573  dient nur als Abstandhalter.
11574 \end_layout
11575
11576 \end_inset
11577
11578
11579 \begin_inset Formula $\raisebox{5mm}{}$
11580 \end_inset
11581
11582 Gleichung ohne Leerraum
11583 \end_layout
11584
11585 \end_inset
11586 </cell>
11587 <cell multicolumn="1" alignment="center" valignment="top" usebox="none">
11588 \begin_inset Text
11589
11590 \begin_layout Plain Layout
11591 \begin_inset Formula $A{=}B$
11592 \end_inset
11593
11594
11595 \end_layout
11596
11597 \end_inset
11598 </cell>
11599 </row>
11600 </lyxtabular>
11601
11602 \end_inset
11603
11604
11605 \end_layout
11606
11607 \begin_layout Standard
11608 Der Befehl für die letzte Formel lautet: 
11609 \series bold
11610 A
11611 \backslash
11612 {=
11613 \begin_inset Formula $\to$
11614 \end_inset
11615
11616 B
11617 \end_layout
11618
11619 \begin_layout Standard
11620 \begin_inset VSpace bigskip
11621 \end_inset
11622
11623 Leerräumen werden für physikalische Einheiten benötigt, denn zwischen Wert
11624  und Einheit ist der kleinste Leerraum und kein normales Leerzeichen.
11625  Bei Einheiten im Text fügt man den kleinsten Leerraum über das Menü 
11626 \family sans
11627 Einfügen\SpecialChar \menuseparator
11628 Formatierung\SpecialChar \menuseparator
11629 Kleiner
11630 \begin_inset space ~
11631 \end_inset
11632
11633 Abstand
11634 \family default
11635  (Tastenkürzel 
11636 \family sans
11637 Strg+Shift+Leertaste
11638 \family default
11639 ) ein.
11640 \end_layout
11641
11642 \begin_layout Standard
11643 Ein Beispiel zur Veranschaulichung:
11644 \end_layout
11645
11646 \begin_layout Standard
11647 \begin_inset Tabular
11648 <lyxtabular version="3" rows="2" columns="2">
11649 <features rotate="0" tabularvalignment="middle">
11650 <column alignment="left" valignment="top">
11651 <column alignment="left" valignment="top">
11652 <row>
11653 <cell alignment="center" valignment="top" usebox="none">
11654 \begin_inset Text
11655
11656 \begin_layout Plain Layout
11657 24 kW
11658 \begin_inset Formula $\cdot$
11659 \end_inset
11660
11661 h
11662 \end_layout
11663
11664 \end_inset
11665 </cell>
11666 <cell alignment="center" valignment="top" usebox="none">
11667 \begin_inset Text
11668
11669 \begin_layout Plain Layout
11670 Leerzeichen zwischen Wert und Einheit
11671 \end_layout
11672
11673 \end_inset
11674 </cell>
11675 </row>
11676 <row>
11677 <cell alignment="center" valignment="top" usebox="none">
11678 \begin_inset Text
11679
11680 \begin_layout Plain Layout
11681 24
11682 \begin_inset space \thinspace{}
11683 \end_inset
11684
11685 kW
11686 \begin_inset Formula $\cdot$
11687 \end_inset
11688
11689 h
11690 \end_layout
11691
11692 \end_inset
11693 </cell>
11694 <cell alignment="center" valignment="top" usebox="none">
11695 \begin_inset Text
11696
11697 \begin_layout Plain Layout
11698 kleinster Leerraum zwischen Wert und Einheit
11699 \end_layout
11700
11701 \end_inset
11702 </cell>
11703 </row>
11704 </lyxtabular>
11705
11706 \end_inset
11707
11708
11709 \end_layout
11710
11711 \begin_layout Subsection
11712 Variabler Leerraum
11713 \begin_inset ERT
11714 status collapsed
11715
11716 \begin_layout Plain Layout
11717
11718
11719 \backslash
11720 texorpdfstring{
11721 \end_layout
11722
11723 \end_inset
11724
11725
11726 \begin_inset Foot
11727 status collapsed
11728
11729 \begin_layout Plain Layout
11730 für vertikalen Leerraum in Formeln siehe 
11731 \begin_inset CommandInset ref
11732 LatexCommand ref
11733 reference "sub:Zeilenabstand"
11734
11735 \end_inset
11736
11737
11738 \end_layout
11739
11740 \end_inset
11741
11742
11743 \begin_inset ERT
11744 status collapsed
11745
11746 \begin_layout Plain Layout
11747
11748 }{}
11749 \end_layout
11750
11751 \end_inset
11752
11753
11754 \begin_inset Note Note
11755 status collapsed
11756
11757 \begin_layout Plain Layout
11758
11759 \series bold
11760
11761 \backslash
11762 texorpdfstring
11763 \series default
11764  dient dazu, dass die Fußnote nicht mit im PDF-Lesezeichen erscheint.
11765 \end_layout
11766
11767 \begin_layout Plain Layout
11768 Näheres zu 
11769 \series bold
11770
11771 \backslash
11772 texorpdfstring
11773 \series default
11774  steht in Kapitel 
11775 \begin_inset CommandInset ref
11776 LatexCommand ref
11777 reference "sub:Formeln-in-Überschriften"
11778
11779 \end_inset
11780
11781 .
11782 \end_layout
11783
11784 \end_inset
11785
11786
11787 \begin_inset CommandInset label
11788 LatexCommand label
11789 name "sub:Variabler-Leerraum"
11790
11791 \end_inset
11792
11793
11794 \begin_inset Index idx
11795 status collapsed
11796
11797 \begin_layout Plain Layout
11798 Leerraum ! horizontaler ! variabel
11799 \end_layout
11800
11801 \end_inset
11802
11803
11804 \end_layout
11805
11806 \begin_layout Standard
11807 Leerraum mit vorgegebener Länge lässt sich mit dem Befehl 
11808 \series bold
11809
11810 \backslash
11811 hspace
11812 \series default
11813
11814 \begin_inset Index idx
11815 status collapsed
11816
11817 \begin_layout Plain Layout
11818 Befehle ! H ! 
11819 \backslash
11820 hspace
11821 \end_layout
11822
11823 \end_inset
11824
11825  einfügen.
11826  Es erscheint ein langes 
11827 \begin_inset Quotes gld
11828 \end_inset
11829
11830
11831 \color blue
11832
11833 \begin_inset ERT
11834 status collapsed
11835
11836 \begin_layout Plain Layout
11837
11838
11839 \backslash
11840 leer 
11841 \end_layout
11842
11843 \end_inset
11844
11845
11846 \color inherit
11847
11848 \begin_inset Quotes grd
11849 \end_inset
11850
11851 .
11852  Die Länge kann eingestellt werden, indem man mit der linken Maustaste auf
11853  das 
11854 \begin_inset Quotes gld
11855 \end_inset
11856
11857
11858 \color blue
11859
11860 \begin_inset ERT
11861 status collapsed
11862
11863 \begin_layout Plain Layout
11864
11865
11866 \backslash
11867 leer 
11868 \end_layout
11869
11870 \end_inset
11871
11872
11873 \color inherit
11874
11875 \begin_inset Quotes grd
11876 \end_inset
11877
11878  klickt.
11879  Die Länge darf auch negativ sein.
11880  Um so viel Leerraum einzufügen, dass die Formel allen verfügbaren Platz
11881  einnimmt, benutzt man den Befehl 
11882 \series bold
11883
11884 \backslash
11885 hfill
11886 \series default
11887
11888 \begin_inset Index idx
11889 status collapsed
11890
11891 \begin_layout Plain Layout
11892 Befehle ! H ! 
11893 \backslash
11894 hfill
11895 \end_layout
11896
11897 \end_inset
11898
11899 .
11900 \end_layout
11901
11902 \begin_layout Standard
11903 \begin_inset VSpace -1mm
11904 \end_inset
11905
11906
11907 \end_layout
11908
11909 \begin_layout Standard
11910 \align center
11911 \begin_inset Tabular
11912 <lyxtabular version="3" rows="4" columns="2">
11913 <features rotate="0" tabularvalignment="middle">
11914 <column alignment="center" valignment="top">
11915 <column alignment="center" valignment="top">
11916 <row>
11917 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11918 \begin_inset Text
11919
11920 \begin_layout Plain Layout
11921 Befehl (
11922 \backslash
11923 hspace Länge)
11924 \end_layout
11925
11926 \end_inset
11927 </cell>
11928 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11929 \begin_inset Text
11930
11931 \begin_layout Plain Layout
11932 Ergebnis
11933 \end_layout
11934
11935 \end_inset
11936 </cell>
11937 </row>
11938 <row>
11939 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11940 \begin_inset Text
11941
11942 \begin_layout Plain Layout
11943 A=B
11944 \backslash
11945 hspace{3cm
11946 \begin_inset Formula $\to$
11947 \end_inset
11948
11949 A
11950 \backslash
11951 not=C (3
11952 \begin_inset space \thinspace{}
11953 \end_inset
11954
11955 cm)
11956 \end_layout
11957
11958 \end_inset
11959 </cell>
11960 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11961 \begin_inset Text
11962
11963 \begin_layout Plain Layout
11964 \begin_inset Formula $A=B\hspace{3cm}A\not=C$
11965 \end_inset
11966
11967
11968 \end_layout
11969
11970 \end_inset
11971 </cell>
11972 </row>
11973 <row>
11974 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11975 \begin_inset Text
11976
11977 \begin_layout Plain Layout
11978 A
11979 \backslash
11980 hspace{-1mm
11981 \begin_inset Formula $\to$
11982 \end_inset
11983
11984 A
11985 \backslash
11986 not=A (-1
11987 \begin_inset space \thinspace{}
11988 \end_inset
11989
11990 mm)
11991 \end_layout
11992
11993 \end_inset
11994 </cell>
11995 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11996 \begin_inset Text
11997
11998 \begin_layout Plain Layout
11999 \begin_inset Formula $A\hspace{-1mm}A\not=A$
12000 \end_inset
12001
12002
12003 \end_layout
12004
12005 \end_inset
12006 </cell>
12007 </row>
12008 <row>
12009 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12010 \begin_inset Text
12011
12012 \begin_layout Plain Layout
12013 A=A
12014 \backslash
12015 hfill
12016 \begin_inset ERT
12017 status collapsed
12018
12019 \begin_layout Plain Layout
12020
12021
12022 \backslash
12023 leer 
12024 \end_layout
12025
12026 \end_inset
12027
12028 B=B
12029 \end_layout
12030
12031 \end_inset
12032 </cell>
12033 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12034 \begin_inset Text
12035
12036 \begin_layout Plain Layout
12037 \begin_inset Formula $A=A\hfill B=B$
12038 \end_inset
12039
12040
12041 \end_layout
12042
12043 \end_inset
12044 </cell>
12045 </row>
12046 </lyxtabular>
12047
12048 \end_inset
12049
12050
12051 \end_layout
12052
12053 \begin_layout Standard
12054 Im letzten Beispiel ist der verfügbare Platz durch die Länge des längsten
12055  Spalteneintrags der Tabelle vorgegeben.
12056  In einer eingebetteten Formel ist der Platz von der Länge der Zeile abhängig,
12057  in die 
12058 \series bold
12059
12060 \backslash
12061 hfill
12062 \series default
12063  eingegeben wird.
12064  Füllt eine Zeile die Breite komplett aus, wird demnach kein Leerraum erstellt.
12065  
12066 \series bold
12067
12068 \backslash
12069 hfill
12070 \series default
12071  wirkt in abgesetzten Formeln nur, wenn der Formelstil 
12072 \series bold
12073 Eingerückt
12074 \series default
12075  eingestellt ist.
12076  (Formelstile sind in 
12077 \begin_inset CommandInset ref
12078 LatexCommand ref
12079 reference "sec:Formelstile"
12080
12081 \end_inset
12082
12083  erklärt.)
12084 \end_layout
12085
12086 \begin_layout Standard
12087 Neben 
12088 \series bold
12089
12090 \backslash
12091 hfill
12092 \series default
12093  gibt es noch die Befehle 
12094 \series bold
12095
12096 \backslash
12097 dotfill
12098 \series default
12099  und 
12100 \series bold
12101
12102 \backslash
12103 hrulefill
12104 \series default
12105 , die den Leerraum mit einem Muster füllen, siehe 
12106 \begin_inset CommandInset ref
12107 LatexCommand ref
12108 reference "sub:Fortsetzungspunkte"
12109
12110 \end_inset
12111
12112  für ein Beispiel.
12113 \end_layout
12114
12115 \begin_layout Standard
12116 Variabler Leerraum kann für Text über das Menü 
12117 \family sans
12118 Einfügen\SpecialChar \menuseparator
12119 Formatierung\SpecialChar \menuseparator
12120 Horizontaler
12121 \begin_inset space ~
12122 \end_inset
12123
12124 Abstand
12125 \family default
12126  eingefügt werden:
12127 \end_layout
12128
12129 \begin_layout Standard
12130 Dies ist eine Zeile mit
12131 \begin_inset space \hspace{}
12132 \length 2cm
12133 \end_inset
12134
12135 2
12136 \begin_inset space \thinspace{}
12137 \end_inset
12138
12139 cm Leerraum.
12140 \end_layout
12141
12142 \begin_layout Standard
12143 Dies ist eine Zeile mit
12144 \begin_inset space \hfill{}
12145 \end_inset
12146
12147 maximalem Leerraum.
12148 \end_layout
12149
12150 \begin_layout Subsection
12151 Leerraum neben eingebetteten Formeln
12152 \begin_inset Index idx
12153 status collapsed
12154
12155 \begin_layout Plain Layout
12156 Leerraum ! neben eingebetteten Formeln
12157 \end_layout
12158
12159 \end_inset
12160
12161
12162 \end_layout
12163
12164 \begin_layout Standard
12165 Über die Länge 
12166 \series bold
12167
12168 \backslash
12169 mathsurround
12170 \series default
12171
12172 \begin_inset Index idx
12173 status collapsed
12174
12175 \begin_layout Plain Layout
12176 Befehle ! M ! 
12177 \backslash
12178 mathsurround
12179 \end_layout
12180
12181 \end_inset
12182
12183  lässt sich der Leerraum einstellen, der neben eingebettete Formeln gesetzt
12184  wird.
12185  Der Wert einer Länge wird mit dem Befehl 
12186 \series bold
12187
12188 \backslash
12189 setlength
12190 \series default
12191
12192 \begin_inset Index idx
12193 status collapsed
12194
12195 \begin_layout Plain Layout
12196 Befehle ! S ! 
12197 \backslash
12198 setlength
12199 \end_layout
12200
12201 \end_inset
12202
12203  gesetzt.
12204  Dieser besitzt folgendes Befehlsschema:
12205 \end_layout
12206
12207 \begin_layout Standard
12208
12209 \series bold
12210
12211 \backslash
12212 setlength{Längenname}{Wert}
12213 \end_layout
12214
12215 \begin_layout Standard
12216 Um 
12217 \series bold
12218
12219 \backslash
12220 mathsurround
12221 \series default
12222  den Wert 5
12223 \begin_inset space \thinspace{}
12224 \end_inset
12225
12226 mm zuzuweisen, gibt man im TeX-Modus den Befehl
12227 \end_layout
12228
12229 \begin_layout Standard
12230
12231 \series bold
12232
12233 \backslash
12234 setlength{
12235 \backslash
12236 mathsurround}{5mm}
12237 \end_layout
12238
12239 \begin_layout Standard
12240 ein.
12241  Neben alle eingebetteten Formeln, die auf den Befehl folgen, wird nun 5
12242 \begin_inset space \thinspace{}
12243 \end_inset
12244
12245 mm Leerraum gesetzt:
12246 \begin_inset ERT
12247 status collapsed
12248
12249 \begin_layout Plain Layout
12250
12251
12252 \backslash
12253 setlength{
12254 \backslash
12255 mathsurround}{5mm}
12256 \end_layout
12257
12258 \end_inset
12259
12260
12261 \end_layout
12262
12263 \begin_layout Standard
12264 Dies ist eine Zeile in der sich 
12265 \begin_inset Formula $A=B$
12266 \end_inset
12267
12268  eine Formel mit 5
12269 \begin_inset space \thinspace{}
12270 \end_inset
12271
12272 mm umgebendem Leerraum befindet.
12273 \begin_inset ERT
12274 status collapsed
12275
12276 \begin_layout Plain Layout
12277
12278
12279 \backslash
12280 setlength{
12281 \backslash
12282 mathsurround}{0pt}
12283 \end_layout
12284
12285 \end_inset
12286
12287
12288 \end_layout
12289
12290 \begin_layout Standard
12291 Um wieder zum voreingestellten Wert zurückzukehren, setzt man 
12292 \series bold
12293
12294 \backslash
12295 mathsurround
12296 \series default
12297  auf den Wert 0
12298 \begin_inset space \thinspace{}
12299 \end_inset
12300
12301 pt.
12302 \end_layout
12303
12304 \begin_layout Section
12305 Boxen und Rahmen
12306 \begin_inset Index idx
12307 status collapsed
12308
12309 \begin_layout Plain Layout
12310 Boxen
12311 \end_layout
12312
12313 \end_inset
12314
12315
12316 \begin_inset Index idx
12317 status collapsed
12318
12319 \begin_layout Plain Layout
12320 Rahmen | see
12321 \begin_inset ERT
12322 status collapsed
12323
12324 \begin_layout Plain Layout
12325
12326 {
12327 \end_layout
12328
12329 \end_inset
12330
12331 Boxen
12332 \begin_inset ERT
12333 status collapsed
12334
12335 \begin_layout Plain Layout
12336
12337 }
12338 \end_layout
12339
12340 \end_inset
12341
12342
12343 \end_layout
12344
12345 \end_inset
12346
12347
12348 \end_layout
12349
12350 \begin_layout Standard
12351 Boxen für Text sind im Kapitel 
12352 \family typewriter
12353 Boxen
12354 \family default
12355  im Handbuch 
12356 \family typewriter
12357 Eingebettete
12358 \begin_inset space ~
12359 \end_inset
12360
12361 Objekte
12362 \family default
12363  beschrieben.
12364 \end_layout
12365
12366 \begin_layout Subsection
12367 Boxen mit Rahmen
12368 \begin_inset CommandInset label
12369 LatexCommand label
12370 name "sub:Boxen-mit-Rahmen"
12371
12372 \end_inset
12373
12374
12375 \begin_inset Index idx
12376 status collapsed
12377
12378 \begin_layout Plain Layout
12379 Boxen ! mit Rahmen
12380 \end_layout
12381
12382 \end_inset
12383
12384
12385 \end_layout
12386
12387 \begin_layout Standard
12388 Es ist möglich Formeln oder Teile davon mit den Befehlen 
12389 \series bold
12390
12391 \backslash
12392 fbox
12393 \series default
12394
12395 \begin_inset Index idx
12396 status collapsed
12397
12398 \begin_layout Plain Layout
12399 Befehle ! F ! 
12400 \backslash
12401 fbox
12402 \end_layout
12403
12404 \end_inset
12405
12406  und 
12407 \series bold
12408
12409 \backslash
12410 boxed
12411 \series default
12412
12413 \begin_inset Index idx
12414 status collapsed
12415
12416 \begin_layout Plain Layout
12417 Befehle ! B ! 
12418 \backslash
12419 boxed
12420 \end_layout
12421
12422 \end_inset
12423
12424  zu umranden.
12425 \end_layout
12426
12427 \begin_layout Standard
12428 Gibt man einen dieser Befehle in eine Formel ein, erscheint ein Eingabefeld
12429  in einem Rahmen.
12430  Bei 
12431 \series bold
12432
12433 \backslash
12434 fbox
12435 \series default
12436  muss in diesem Eingabefeld mit 
12437 \family sans
12438 Strg+M
12439 \family default
12440  noch eine Formel erstellt werden, denn der Inhalt dieser Box wird sonst
12441  als mathematischer Text behandelt.
12442  Verwendet man 
12443 \series bold
12444
12445 \backslash
12446 boxed
12447 \series default
12448 , wird automatisch im Rahmen eine neue Formel erzeugt.
12449 \end_layout
12450
12451 \begin_layout Standard
12452 Der Befehl 
12453 \series bold
12454
12455 \backslash
12456 fbox
12457 \series default
12458  ist nicht zur Umrandung von abgesetzten Formeln geeignet, denn die Formel
12459  wird dann immer in Textzeilengröße gesetzt.
12460  Im Gegensatz dazu ist 
12461 \series bold
12462
12463 \backslash
12464 boxed
12465 \series default
12466  nicht zur Umrandung von Formeln in einer Textzeile geeignet, denn die Formel
12467  wird dann immer in der Größe einer abgesetzten Formel gesetzt.
12468 \end_layout
12469
12470 \begin_layout Standard
12471 Als Erweiterung zu 
12472 \series bold
12473
12474 \backslash
12475 fbox
12476 \series default
12477  gibt es den Befehl 
12478 \series bold
12479
12480 \backslash
12481 framebox
12482 \series default
12483
12484 \begin_inset Index idx
12485 status collapsed
12486
12487 \begin_layout Plain Layout
12488 Befehle ! F ! 
12489 \backslash
12490 framebox
12491 \end_layout
12492
12493 \end_inset
12494
12495 , bei dem man zusätzlich die Rahmenbreite und die Ausrichtung einstellen
12496  kann.
12497  
12498 \series bold
12499
12500 \backslash
12501 framebox
12502 \series default
12503  wird nach folgendem Schema verwendet:
12504 \end_layout
12505
12506 \begin_layout Standard
12507
12508 \series bold
12509
12510 \backslash
12511 framebox[Rahmenbreite][Position]{Boxinhalt}
12512 \end_layout
12513
12514 \begin_layout Standard
12515 Die Position kann entweder 
12516 \emph on
12517 l
12518 \emph default
12519  oder 
12520 \emph on
12521 r
12522 \emph default
12523  sein.
12524  
12525 \emph on
12526 l
12527 \emph default
12528  bewirkt linksbündige, 
12529 \emph on
12530 r
12531 \emph default
12532  rechtsbündige Ausrichtung der Formel in der Box.
12533  Gibt man keine Position an, wird die Formel zentriert.
12534 \begin_inset Newline newline
12535 \end_inset
12536
12537 Gibt man keine Breite an, darf auch keine Position angegeben werden.
12538  In diesem Falle wird die Rahmenbreite wie bei 
12539 \series bold
12540
12541 \backslash
12542 fbox
12543 \series default
12544  an den Boxinhalt angepasst.
12545 \end_layout
12546
12547 \begin_layout Standard
12548 Wenn man den Befehl 
12549 \series bold
12550
12551 \backslash
12552 framebox
12553 \series default
12554  eingibt, erscheint eine Box mit drei Eingabefeldern.
12555  Die ersten beiden sind von eckigen Klammern umgeben und stehen für die
12556  beiden optionalen Argumente.
12557  In das dritte Feld wird wie bei 
12558 \series bold
12559
12560 \backslash
12561 fbox
12562 \series default
12563  die Formel eingegeben.
12564 \end_layout
12565
12566 \begin_layout Standard
12567 \align center
12568 \begin_inset Tabular
12569 <lyxtabular version="3" rows="5" columns="2">
12570 <features rotate="0" tabularvalignment="middle">
12571 <column alignment="center" valignment="top">
12572 <column alignment="center" valignment="top">
12573 <row>
12574 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12575 \begin_inset Text
12576
12577 \begin_layout Plain Layout
12578 Befehl
12579 \end_layout
12580
12581 \end_inset
12582 </cell>
12583 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12584 \begin_inset Text
12585
12586 \begin_layout Plain Layout
12587 Ergebnis
12588 \begin_inset Note Note
12589 status collapsed
12590
12591 \begin_layout Plain Layout
12592
12593 \series bold
12594
12595 \backslash
12596 raisebox
12597 \series default
12598  dient nur als Abstandhalter.
12599 \end_layout
12600
12601 \end_inset
12602
12603
12604 \end_layout
12605
12606 \end_inset
12607 </cell>
12608 </row>
12609 <row>
12610 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12611 \begin_inset Text
12612
12613 \begin_layout Plain Layout
12614
12615 \backslash
12616 fbox
12617 \begin_inset ERT
12618 status collapsed
12619
12620 \begin_layout Plain Layout
12621
12622
12623 \backslash
12624 leer 
12625 \end_layout
12626
12627 \end_inset
12628
12629
12630 \family sans
12631 Strg+M
12632 \family default
12633  
12634 \backslash
12635 int
12636 \begin_inset ERT
12637 status collapsed
12638
12639 \begin_layout Plain Layout
12640
12641
12642 \backslash
12643 leer 
12644 \end_layout
12645
12646 \end_inset
12647
12648 A=B
12649 \end_layout
12650
12651 \end_inset
12652 </cell>
12653 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12654 \begin_inset Text
12655
12656 \begin_layout Plain Layout
12657 \begin_inset Formula $\raisebox{6mm}{}\fbox{\ensuremath{\int A=B}}\raisebox{-4mm}{}$
12658 \end_inset
12659
12660
12661 \end_layout
12662
12663 \end_inset
12664 </cell>
12665 </row>
12666 <row>
12667 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12668 \begin_inset Text
12669
12670 \begin_layout Plain Layout
12671
12672 \backslash
12673 boxed
12674 \begin_inset ERT
12675 status collapsed
12676
12677 \begin_layout Plain Layout
12678
12679
12680 \backslash
12681 leer 
12682 \end_layout
12683
12684 \end_inset
12685
12686
12687 \backslash
12688 int
12689 \begin_inset ERT
12690 status collapsed
12691
12692 \begin_layout Plain Layout
12693
12694
12695 \backslash
12696 leer 
12697 \end_layout
12698
12699 \end_inset
12700
12701 A=B
12702 \end_layout
12703
12704 \end_inset
12705 </cell>
12706 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12707 \begin_inset Text
12708
12709 \begin_layout Plain Layout
12710 \begin_inset Formula $\raisebox{8.5mm}{}\boxed{\int A=B}\raisebox{-6.5mm}{}$
12711 \end_inset
12712
12713
12714 \end_layout
12715
12716 \end_inset
12717 </cell>
12718 </row>
12719 <row>
12720 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12721 \begin_inset Text
12722
12723 \begin_layout Plain Layout
12724 A+
12725 \backslash
12726 fbox
12727 \begin_inset ERT
12728 status collapsed
12729
12730 \begin_layout Plain Layout
12731
12732
12733 \backslash
12734 leer 
12735 \end_layout
12736
12737 \end_inset
12738
12739 B
12740 \end_layout
12741
12742 \end_inset
12743 </cell>
12744 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12745 \begin_inset Text
12746
12747 \begin_layout Plain Layout
12748 \begin_inset Formula $\raisebox{6mm}{}A+\fbox{B}\raisebox{-3mm}{}$
12749 \end_inset
12750
12751
12752 \end_layout
12753
12754 \end_inset
12755 </cell>
12756 </row>
12757 <row>
12758 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12759 \begin_inset Text
12760
12761 \begin_layout Plain Layout
12762
12763 \backslash
12764 framebox
12765 \begin_inset ERT
12766 status collapsed
12767
12768 \begin_layout Plain Layout
12769
12770
12771 \backslash
12772 leer 
12773 \end_layout
12774
12775 \end_inset
12776
12777 20mm
12778 \begin_inset Formula $\to$
12779 \end_inset
12780
12781
12782 \begin_inset Formula $\to$
12783 \end_inset
12784
12785
12786 \family sans
12787 Strg+M
12788 \family default
12789  
12790 \backslash
12791 frac
12792 \begin_inset ERT
12793 status collapsed
12794
12795 \begin_layout Plain Layout
12796
12797
12798 \backslash
12799 leer 
12800 \end_layout
12801
12802 \end_inset
12803
12804 A
12805 \begin_inset Formula $\downarrow$
12806 \end_inset
12807
12808 B
12809 \end_layout
12810
12811 \end_inset
12812 </cell>
12813 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12814 \begin_inset Text
12815
12816 \begin_layout Plain Layout
12817 \begin_inset Formula $\raisebox{6mm}{}$
12818 \end_inset
12819
12820
12821 \begin_inset Formula $\framebox[20mm][]{\ensuremath{\frac{A}{B}}}$
12822 \end_inset
12823
12824
12825 \begin_inset Formula $\raisebox{-4mm}{}$
12826 \end_inset
12827
12828
12829 \end_layout
12830
12831 \end_inset
12832 </cell>
12833 </row>
12834 </lyxtabular>
12835
12836 \end_inset
12837
12838
12839 \end_layout
12840
12841 \begin_layout Standard
12842 Die Rahmendicke kann ebenfalls eingestellt werden.
12843  Dazu müssen vor der Formel im TeX-Modus die Befehle
12844 \end_layout
12845
12846 \begin_layout Standard
12847
12848 \series bold
12849
12850 \backslash
12851 fboxrule
12852 \series default
12853  
12854 \series bold
12855
12856 \begin_inset Quotes gld
12857 \end_inset
12858
12859 Dicke
12860 \begin_inset Quotes grd
12861 \end_inset
12862
12863
12864 \series default
12865  
12866 \series bold
12867
12868 \backslash
12869 fboxsep
12870 \series default
12871  
12872 \series bold
12873
12874 \begin_inset Quotes gld
12875 \end_inset
12876
12877 Abstand
12878 \begin_inset Quotes grd
12879 \end_inset
12880
12881
12882 \end_layout
12883
12884 \begin_layout Standard
12885 eingegeben werden.
12886  
12887 \begin_inset Quotes gld
12888 \end_inset
12889
12890 Abstand
12891 \begin_inset Quotes grd
12892 \end_inset
12893
12894  legt dabei den minimalen Abstand zwischen Rahmen und dem ersten Zeichen
12895  in der Box fest.
12896  Ein Beispiel dafür ist folgende umrandete Formel:
12897 \begin_inset ERT
12898 status collapsed
12899
12900 \begin_layout Plain Layout
12901
12902
12903 \backslash
12904 fboxrule 2mm 
12905 \backslash
12906 fboxsep 3mm
12907 \end_layout
12908
12909 \end_inset
12910
12911
12912 \begin_inset Formula 
12913 \[
12914 \boxed{A+B=C}
12915 \]
12916
12917 \end_inset
12918
12919 Vor dieser Formel wurde im TeX-Modus
12920 \end_layout
12921
12922 \begin_layout Standard
12923
12924 \series bold
12925
12926 \backslash
12927 fboxrule
12928 \series default
12929  
12930 \series bold
12931 2mm
12932 \series default
12933  
12934 \series bold
12935
12936 \backslash
12937 fboxsep
12938 \series default
12939  
12940 \series bold
12941 3mm
12942 \end_layout
12943
12944 \begin_layout Standard
12945 eingegeben.
12946  Diese angegeben Werte werden für alle folgenden Boxen verwendet.
12947 \end_layout
12948
12949 \begin_layout Standard
12950 Möchte man wieder zur Standardrahmengröße zurückkehren, gibt man vor der
12951  nächsten Formel im TeX-Modus folgende Befehle ein:
12952 \end_layout
12953
12954 \begin_layout Standard
12955
12956 \series bold
12957
12958 \backslash
12959 fboxrule
12960 \series default
12961  
12962 \series bold
12963 0.4pt
12964 \series default
12965  
12966 \series bold
12967
12968 \backslash
12969 fboxsep
12970 \series default
12971  
12972 \series bold
12973 3pt
12974 \series default
12975
12976 \begin_inset ERT
12977 status collapsed
12978
12979 \begin_layout Plain Layout
12980
12981
12982 \backslash
12983 fboxrule 0.4pt 
12984 \backslash
12985 fboxsep 3pt
12986 \end_layout
12987
12988 \end_inset
12989
12990
12991 \end_layout
12992
12993 \begin_layout Subsection
12994 Boxen ohne Rahmen
12995 \begin_inset CommandInset label
12996 LatexCommand label
12997 name "sub:Boxen-ohne-Rahmen"
12998
12999 \end_inset
13000
13001
13002 \begin_inset Index idx
13003 status collapsed
13004
13005 \begin_layout Plain Layout
13006 Boxen ! ohne Rahmen
13007 \end_layout
13008
13009 \end_inset
13010
13011
13012 \end_layout
13013
13014 \begin_layout Standard
13015 Für Boxen ohne Rahmen gibt es folgende Box-Befehle: 
13016 \series bold
13017
13018 \backslash
13019 mbox
13020 \series default
13021
13022 \begin_inset Index idx
13023 status collapsed
13024
13025 \begin_layout Plain Layout
13026 Befehle ! M ! 
13027 \backslash
13028 mbox
13029 \end_layout
13030
13031 \end_inset
13032
13033
13034 \series bold
13035
13036 \backslash
13037 makebox
13038 \series default
13039
13040 \begin_inset Index idx
13041 status collapsed
13042
13043 \begin_layout Plain Layout
13044 Befehle ! M ! 
13045 \backslash
13046 makebox
13047 \end_layout
13048
13049 \end_inset
13050
13051  und
13052 \begin_inset Newline linebreak
13053 \end_inset
13054
13055
13056 \series bold
13057
13058 \backslash
13059 raisebox
13060 \series default
13061
13062 \begin_inset Index idx
13063 status collapsed
13064
13065 \begin_layout Plain Layout
13066 Befehle ! R ! 
13067 \backslash
13068 raisebox
13069 \end_layout
13070
13071 \end_inset
13072
13073
13074 \end_layout
13075
13076 \begin_layout Standard
13077 Mit 
13078 \series bold
13079
13080 \backslash
13081 raisebox
13082 \series default
13083  kann man eine Box hoch- oder tiefstellen.
13084  Allerdings behalten die Zeichen in der Box im Gegensatz zum normalen Hochstelle
13085 n die Schriftgröße bei.
13086  
13087 \series bold
13088
13089 \backslash
13090 raisebox
13091 \series default
13092  wird dabei mit folgendem Schema benutzt:
13093 \end_layout
13094
13095 \begin_layout Standard
13096
13097 \series bold
13098
13099 \backslash
13100 raisebox{Höhe}{Boxinhalt}
13101 \end_layout
13102
13103 \begin_layout Standard
13104 Soll in der Box eine Formel stehen, muss man wie bei 
13105 \series bold
13106
13107 \backslash
13108 fbox
13109 \series default
13110  eine weitere Formel erstellen.
13111  
13112 \begin_inset Note Greyedout
13113 status open
13114
13115 \begin_layout Plain Layout
13116
13117 \series bold
13118 Achtung:
13119 \series default
13120  Für 
13121 \series bold
13122
13123 \backslash
13124 raisebox
13125 \series default
13126  wird diese weitere Formel durch zweimaliges statt einmaliges Drücken von
13127  
13128 \family sans
13129 Strg+M
13130 \family default
13131  erstellt, denn LyX unterstützt 
13132 \series bold
13133
13134 \backslash
13135 raisebox
13136 \series default
13137  noch nicht direkt.
13138 \end_layout
13139
13140 \end_inset
13141
13142
13143 \end_layout
13144
13145 \begin_layout Standard
13146 \align center
13147 \begin_inset Tabular
13148 <lyxtabular version="3" rows="4" columns="2">
13149 <features rotate="0" tabularvalignment="middle">
13150 <column alignment="center" valignment="top">
13151 <column alignment="center" valignment="top">
13152 <row>
13153 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13154 \begin_inset Text
13155
13156 \begin_layout Plain Layout
13157 Befehl
13158 \end_layout
13159
13160 \end_inset
13161 </cell>
13162 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13163 \begin_inset Text
13164
13165 \begin_layout Plain Layout
13166 Ergebnis
13167 \end_layout
13168
13169 \end_inset
13170 </cell>
13171 </row>
13172 <row>
13173 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13174 \begin_inset Text
13175
13176 \begin_layout Plain Layout
13177 H
13178 \backslash
13179 raisebox{2mm
13180 \begin_inset Formula $\to$
13181 \end_inset
13182
13183
13184 \backslash
13185 {al
13186 \begin_inset Formula $\to$
13187 \end_inset
13188
13189  lo
13190 \end_layout
13191
13192 \end_inset
13193 </cell>
13194 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13195 \begin_inset Text
13196
13197 \begin_layout Plain Layout
13198 \begin_inset Formula $H\raisebox{2mm}{al}lo$
13199 \end_inset
13200
13201
13202 \end_layout
13203
13204 \end_inset
13205 </cell>
13206 </row>
13207 <row>
13208 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13209 \begin_inset Text
13210
13211 \begin_layout Plain Layout
13212 H
13213 \backslash
13214 raisebox{-2mm
13215 \begin_inset Formula $\to$
13216 \end_inset
13217
13218
13219 \backslash
13220 {al
13221 \begin_inset Formula $\to$
13222 \end_inset
13223
13224 lo
13225 \end_layout
13226
13227 \end_inset
13228 </cell>
13229 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13230 \begin_inset Text
13231
13232 \begin_layout Plain Layout
13233 \begin_inset Formula $H\raisebox{-2mm}{al}lo$
13234 \end_inset
13235
13236
13237 \end_layout
13238
13239 \end_inset
13240 </cell>
13241 </row>
13242 <row>
13243 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13244 \begin_inset Text
13245
13246 \begin_layout Plain Layout
13247 A=
13248 \backslash
13249 raisebox{-2mm
13250 \begin_inset Formula $\to$
13251 \end_inset
13252
13253
13254 \backslash
13255 {
13256 \family sans
13257 Strg+M Strg+M
13258 \family default
13259  
13260 \backslash
13261 sqrt
13262 \begin_inset ERT
13263 status collapsed
13264
13265 \begin_layout Plain Layout
13266
13267
13268 \backslash
13269 leer 
13270 \end_layout
13271
13272 \end_inset
13273
13274
13275 \end_layout
13276
13277 \end_inset
13278 </cell>
13279 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13280 \begin_inset Text
13281
13282 \begin_layout Plain Layout
13283 \begin_inset Formula $A=\raisebox{-2mm}{\mbox{\ensuremath{\sqrt{B}}}}$
13284 \end_inset
13285
13286
13287 \end_layout
13288
13289 \end_inset
13290 </cell>
13291 </row>
13292 </lyxtabular>
13293
13294 \end_inset
13295
13296
13297 \end_layout
13298
13299 \begin_layout Standard
13300 Der Befehl 
13301 \series bold
13302
13303 \backslash
13304 mbox
13305 \series default
13306  ist äquivalent zu 
13307 \series bold
13308
13309 \backslash
13310 fbox
13311 \series default
13312  und 
13313 \series bold
13314
13315 \backslash
13316 makebox
13317 \series default
13318  ist äquivalent zu 
13319 \series bold
13320
13321 \backslash
13322 framebox
13323 \series default
13324 , nur dass es keinen Rahmen gibt.
13325 \end_layout
13326
13327 \begin_layout Subsection
13328 Farbige Boxen
13329 \begin_inset CommandInset label
13330 LatexCommand label
13331 name "sub:Farbige-Boxen"
13332
13333 \end_inset
13334
13335
13336 \begin_inset Index idx
13337 status collapsed
13338
13339 \begin_layout Plain Layout
13340 Boxen ! farbige
13341 \end_layout
13342
13343 \end_inset
13344
13345
13346 \end_layout
13347
13348 \begin_layout Standard
13349 Damit die in diesem Kapitel angegebenen Befehle benutzt werden können, muss
13350  im LaTeX-Vorspann das LaTeX-Paket 
13351 \series bold
13352 color
13353 \series default
13354
13355 \begin_inset Foot
13356 status collapsed
13357
13358 \begin_layout Plain Layout
13359 Das Paket 
13360 \series bold
13361 color
13362 \series default
13363  ist Teil jeder LaTeX-Standardinstallation.
13364 \end_layout
13365
13366 \end_inset
13367
13368
13369 \begin_inset Index idx
13370 status collapsed
13371
13372 \begin_layout Plain Layout
13373 Pakete ! color
13374 \end_layout
13375
13376 \end_inset
13377
13378  mit der Zeile
13379 \end_layout
13380
13381 \begin_layout Standard
13382
13383 \series bold
13384
13385 \backslash
13386 usepackage{color}
13387 \end_layout
13388
13389 \begin_layout Standard
13390 geladen werden
13391 \begin_inset Foot
13392 status collapsed
13393
13394 \begin_layout Plain Layout
13395 Wird irgendwo im Dokument Text mit einer vordefinierten Farbe gefärbt, lädt
13396  LyX das LaTeX-Paket 
13397 \series bold
13398 color
13399 \series default
13400  automatisch.
13401  Dadurch kann es vorkommen, dass das Paket doppelt geladen wird, was aber
13402  keine Probleme hervorruft.
13403 \end_layout
13404
13405 \end_inset
13406
13407
13408 \begin_inset Note Note
13409 status collapsed
13410
13411 \begin_layout Plain Layout
13412 Damit das Paket nicht doppelt geladen werden kann, wurde im LaTeX-Vorspann
13413  ein Makro eingefügt.
13414 \end_layout
13415
13416 \end_inset
13417
13418 .
13419 \end_layout
13420
13421 \begin_layout Standard
13422 \begin_inset VSpace medskip
13423 \end_inset
13424
13425 Um Boxen einzufärben, verwendet man den Befehl 
13426 \series bold
13427
13428 \backslash
13429 colorbox
13430 \series default
13431
13432 \begin_inset Index idx
13433 status collapsed
13434
13435 \begin_layout Plain Layout
13436 Befehle ! C ! 
13437 \backslash
13438 colorbox
13439 \end_layout
13440
13441 \end_inset
13442
13443  nach folgendem Schema:
13444 \end_layout
13445
13446 \begin_layout Standard
13447
13448 \series bold
13449
13450 \backslash
13451 colorbox{Farbe}{Boxinhalt}
13452 \end_layout
13453
13454 \begin_layout Standard
13455 Der Boxinhalt kann auch wieder eine Box sein und eine 
13456 \series bold
13457
13458 \backslash
13459 colorbox
13460 \series default
13461  kann auch ein Teil einer anderen Box sein (siehe 2.
13462  und 3.
13463  Beispiel).
13464  Soll in der Box eine Formel stehen, muss wie bei 
13465 \series bold
13466
13467 \backslash
13468 raisebox
13469 \series default
13470  eine weitere Formel erstellt werden.
13471 \begin_inset Foot
13472 status collapsed
13473
13474 \begin_layout Plain Layout
13475 Das gilt auch für den Befehl 
13476 \series bold
13477
13478 \backslash
13479 fcolorbox
13480 \series default
13481 .
13482 \end_layout
13483
13484 \end_inset
13485
13486
13487 \end_layout
13488
13489 \begin_layout Standard
13490 Aus folgenden vordefinierten Farben kann gewählt werden:
13491 \end_layout
13492
13493 \begin_layout Standard
13494
13495 \series bold
13496 black
13497 \series default
13498
13499 \series bold
13500 blue
13501 \series default
13502
13503 \series bold
13504 cyan
13505 \series default
13506
13507 \series bold
13508 green
13509 \series default
13510
13511 \series bold
13512 magenta
13513 \series default
13514
13515 \series bold
13516 red
13517 \series default
13518
13519 \series bold
13520 white
13521 \series default
13522  und 
13523 \series bold
13524 yellow
13525 \end_layout
13526
13527 \begin_layout Standard
13528 \align center
13529 \begin_inset Tabular
13530 <lyxtabular version="3" rows="4" columns="2">
13531 <features rotate="0" tabularvalignment="middle">
13532 <column alignment="center" valignment="top">
13533 <column alignment="center" valignment="top">
13534 <row>
13535 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13536 \begin_inset Text
13537
13538 \begin_layout Plain Layout
13539 Befehl
13540 \end_layout
13541
13542 \end_inset
13543 </cell>
13544 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13545 \begin_inset Text
13546
13547 \begin_layout Plain Layout
13548 Ergebnis
13549 \begin_inset Note Note
13550 status collapsed
13551
13552 \begin_layout Plain Layout
13553
13554 \series bold
13555
13556 \backslash
13557 raisebox
13558 \series default
13559  dient nur als Abstandhalter.
13560 \end_layout
13561
13562 \end_inset
13563
13564
13565 \end_layout
13566
13567 \end_inset
13568 </cell>
13569 </row>
13570 <row>
13571 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13572 \begin_inset Text
13573
13574 \begin_layout Plain Layout
13575
13576 \backslash
13577 colorbox{yellow
13578 \begin_inset Formula $\to$
13579 \end_inset
13580
13581
13582 \backslash
13583 {A=B
13584 \end_layout
13585
13586 \end_inset
13587 </cell>
13588 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13589 \begin_inset Text
13590
13591 \begin_layout Plain Layout
13592 \begin_inset Formula $\raisebox{6mm}{}\colorbox{yellow}{A=B}\raisebox{-3mm}{}$
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" leftline="true" usebox="none">
13603 \begin_inset Text
13604
13605 \begin_layout Plain Layout
13606
13607 \backslash
13608 colorbox{green
13609 \begin_inset Formula $\to$
13610 \end_inset
13611
13612
13613 \backslash
13614 {
13615 \backslash
13616 fbox
13617 \begin_inset ERT
13618 status collapsed
13619
13620 \begin_layout Plain Layout
13621
13622
13623 \backslash
13624 leer 
13625 \end_layout
13626
13627 \end_inset
13628
13629 A=B
13630 \end_layout
13631
13632 \end_inset
13633 </cell>
13634 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13635 \begin_inset Text
13636
13637 \begin_layout Plain Layout
13638 \begin_inset Formula $\raisebox{6mm}{}\colorbox{green}{\fbox{A=B}}\raisebox{-3mm}{}$
13639 \end_inset
13640
13641
13642 \end_layout
13643
13644 \end_inset
13645 </cell>
13646 </row>
13647 <row>
13648 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13649 \begin_inset Text
13650
13651 \begin_layout Plain Layout
13652
13653 \backslash
13654 fbox
13655 \begin_inset ERT
13656 status collapsed
13657
13658 \begin_layout Plain Layout
13659
13660
13661 \backslash
13662 leer 
13663 \end_layout
13664
13665 \end_inset
13666
13667
13668 \backslash
13669 colorbox{green
13670 \begin_inset Formula $\to$
13671 \end_inset
13672
13673
13674 \backslash
13675 {
13676 \family sans
13677 Strg+M Strg+M
13678 \family default
13679  
13680 \backslash
13681 int
13682 \begin_inset ERT
13683 status collapsed
13684
13685 \begin_layout Plain Layout
13686
13687
13688 \backslash
13689 leer 
13690 \end_layout
13691
13692 \end_inset
13693
13694 C=D
13695 \end_layout
13696
13697 \end_inset
13698 </cell>
13699 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13700 \begin_inset Text
13701
13702 \begin_layout Plain Layout
13703 \begin_inset Formula $\raisebox{7mm}{}\fbox{\colorbox{green}{\mbox{\ensuremath{\int C=D}}}}\raisebox{-5mm}{}$
13704 \end_inset
13705
13706
13707 \end_layout
13708
13709 \end_inset
13710 </cell>
13711 </row>
13712 </lyxtabular>
13713
13714 \end_inset
13715
13716
13717 \end_layout
13718
13719 \begin_layout Standard
13720
13721 \series bold
13722
13723 \backslash
13724 colorbox
13725 \series default
13726  färbt nur die Box, nicht aber die Zeichen in der Box ein.
13727  Um alle Zeichen zu färben, markiert man die ganze Formel und wählt im Dialog
13728  
13729 \family sans
13730 Textstil
13731 \family default
13732  die gewünschte Farbe aus.
13733  Der Dialog kann mit dem Werkzeugleistenknopf 
13734 \begin_inset Graphics
13735         filename ../../images/dialog-show_character.png
13736         scale 85
13737
13738 \end_inset
13739
13740  oder dem Menü 
13741 \family sans
13742 Bearbeiten\SpecialChar \menuseparator
13743 Textstil\SpecialChar \menuseparator
13744 Benutzerdefiniert
13745 \family default
13746  aufgerufen werden.
13747  Die Formelnummer hat dann dieselbe Farbe wie die Formel.
13748  Soll die Formelnummer eine andere Farbe als die Formelzeichen haben, muss
13749  innerhalb der Formel die Farbe geändert werden.
13750 \end_layout
13751
13752 \begin_layout Standard
13753 Ein Beispiel:
13754 \end_layout
13755
13756 \begin_layout Standard
13757
13758 \color red
13759 \begin_inset Formula 
13760 \begin{equation}
13761 \int A=B\label{eq:rot}
13762 \end{equation}
13763
13764 \end_inset
13765
13766
13767 \color green
13768
13769 \begin_inset Formula 
13770 \begin{equation}
13771 \textcolor{red}{\int A=B}\label{eq:rotgruen}
13772 \end{equation}
13773
13774 \end_inset
13775
13776
13777 \end_layout
13778
13779 \begin_layout Standard
13780 Formel 
13781 \begin_inset CommandInset ref
13782 LatexCommand eqref
13783 reference "eq:rot"
13784
13785 \end_inset
13786
13787  ist komplett rot gefärbt.
13788 \begin_inset Newline newline
13789 \end_inset
13790
13791 Formel 
13792 \begin_inset CommandInset ref
13793 LatexCommand eqref
13794 reference "eq:rotgruen"
13795
13796 \end_inset
13797
13798  wurde zuerst komplett grün gefärbt, um die Farbe der Formelnummer festzulegen.
13799  Anschließend wurden die Formelzeichen rot gefärbt.
13800 \end_layout
13801
13802 \begin_layout Standard
13803 \begin_inset VSpace bigskip
13804 \end_inset
13805
13806 Möchte man den Rahmen anders als den Rest der Box färben, verwendet man
13807  den Befehl 
13808 \series bold
13809
13810 \backslash
13811 fcolorbox
13812 \series default
13813
13814 \begin_inset Index idx
13815 status collapsed
13816
13817 \begin_layout Plain Layout
13818 Befehle ! F ! 
13819 \backslash
13820 fcolorbox
13821 \end_layout
13822
13823 \end_inset
13824
13825  nach folgendem Schema:
13826 \end_layout
13827
13828 \begin_layout Standard
13829
13830 \series bold
13831
13832 \backslash
13833 fcolorbox{Rahmenfarbe}{Farbe}{Boxinhalt}
13834 \end_layout
13835
13836 \begin_layout Standard
13837
13838 \series bold
13839
13840 \backslash
13841 fcolorbox
13842 \series default
13843  stellt also eine Erweiterung des Befehls 
13844 \series bold
13845
13846 \backslash
13847 colorbox
13848 \series default
13849  dar.
13850  Die Rahmenbreite wird, wie bei 
13851 \series bold
13852
13853 \backslash
13854 framebox
13855 \series default
13856 , mit 
13857 \series bold
13858
13859 \backslash
13860 fboxrule
13861 \series default
13862  und 
13863 \series bold
13864
13865 \backslash
13866 fboxsep
13867 \series default
13868  festgelegt.
13869  Ein Beispiel:
13870 \begin_inset ERT
13871 status collapsed
13872
13873 \begin_layout Plain Layout
13874
13875
13876 \backslash
13877 fboxrule 1mm 
13878 \backslash
13879 fboxsep 1mm
13880 \end_layout
13881
13882 \end_inset
13883
13884
13885 \begin_inset Formula 
13886 \[
13887 \fcolorbox{cyan}{magenta}{A=B}
13888 \]
13889
13890 \end_inset
13891
13892
13893 \begin_inset ERT
13894 status collapsed
13895
13896 \begin_layout Plain Layout
13897
13898
13899 \backslash
13900 fboxrule 0.4pt 
13901 \backslash
13902 fboxsep 3pt
13903 \end_layout
13904
13905 \end_inset
13906
13907
13908 \end_layout
13909
13910 \begin_layout Standard
13911 Diese Formel wurde mit folgendem Befehl erstellt:
13912 \begin_inset Newline newline
13913 \end_inset
13914
13915
13916 \series bold
13917
13918 \backslash
13919 fcolorbox{cyan
13920 \begin_inset Formula $\to$
13921 \end_inset
13922
13923
13924 \backslash
13925 {magenta
13926 \begin_inset Formula $\to$
13927 \end_inset
13928
13929
13930 \backslash
13931 {A=B
13932 \end_layout
13933
13934 \begin_layout Standard
13935 \begin_inset VSpace bigskip
13936 \end_inset
13937
13938 Um andere als die vordefinierten Farben zu verwenden, muss man diese zuerst
13939  selbst definieren.
13940 \end_layout
13941
13942 \begin_layout Standard
13943 Man kann z.
13944 \begin_inset space \thinspace{}
13945 \end_inset
13946
13947 B.
13948  mit folgender LaTeX-Vorspannzeile die Farbe 
13949 \begin_inset Quotes gld
13950 \end_inset
13951
13952
13953 \series bold
13954 dunkelgruen
13955 \series default
13956
13957 \begin_inset Quotes grd
13958 \end_inset
13959
13960
13961 \begin_inset Foot
13962 status collapsed
13963
13964 \begin_layout Plain Layout
13965 In Befehlen darf kein Umlaut stehen, siehe 
13966 \begin_inset CommandInset ref
13967 LatexCommand ref
13968 reference "sec:Benutzerdefinierte-Befehle"
13969
13970 \end_inset
13971
13972 .
13973 \end_layout
13974
13975 \end_inset
13976
13977  definieren:
13978 \end_layout
13979
13980 \begin_layout Standard
13981
13982 \series bold
13983
13984 \backslash
13985 definecolor{dunkelgruen}{cmyk}{0.5,
13986 \series default
13987  
13988 \series bold
13989 0,
13990 \series default
13991  
13992 \series bold
13993 1,
13994 \series default
13995  
13996 \series bold
13997 0.5}
13998 \series default
13999
14000 \begin_inset Index idx
14001 status collapsed
14002
14003 \begin_layout Plain Layout
14004 Befehle ! D ! 
14005 \backslash
14006 definecolor
14007 \end_layout
14008
14009 \end_inset
14010
14011
14012 \end_layout
14013
14014 \begin_layout Standard
14015
14016 \series bold
14017 cmyk
14018 \series default
14019  ist der Farbraum und steht für die Farben 
14020 \series bold
14021 cyan
14022 \series default
14023
14024 \series bold
14025 magenta
14026 \series default
14027
14028 \series bold
14029 yellow
14030 \series default
14031  und 
14032 \series bold
14033 black
14034 \series default
14035 .
14036  Die vier Zahlen geben der Reihe nach den Anteil der vier Farben an.
14037  Für den Anteil kann man Werte im Bereich 0
14038 \begin_inset space \thinspace{}
14039 \end_inset
14040
14041 -
14042 \begin_inset space \thinspace{}
14043 \end_inset
14044
14045 1 angeben.
14046  Anstelle von 
14047 \series bold
14048 cmyk
14049 \series default
14050  kann man zur Definition auch den Farbraum 
14051 \series bold
14052 rgb
14053 \series default
14054  verwenden.
14055  
14056 \series bold
14057 rgb
14058 \series default
14059  steht für 
14060 \series bold
14061 red
14062 \series default
14063
14064 \series bold
14065 green
14066 \series default
14067  und 
14068 \series bold
14069 blue
14070 \series default
14071 , so dass man dann mit drei Zahlen die Anteile dieser Farben festlegen kann.
14072  Des Weiteren gibt es noch den Farbraum 
14073 \series bold
14074 gray
14075 \series default
14076 , bei dem man mit einer Zahl den Graustufenanteil festlegen kann.
14077 \end_layout
14078
14079 \begin_layout Standard
14080 Als Beispiel eine gerahmte Box mit der neu definierten Farbe 
14081 \series bold
14082 darkgreen
14083 \series default
14084 , bei der die Zeichenfarbe 
14085 \series bold
14086 yellow
14087 \series default
14088  gewählt wurde:
14089 \begin_inset Formula 
14090 \begin{equation}
14091 \colorbox{dunkelgruen}{\color{yellow}\boxed{\int A\,\mathrm{d}x=\frac{\sqrt[5]{B}}{\ln\left(\frac{1}{3}\right)}}}
14092 \end{equation}
14093
14094 \end_inset
14095
14096
14097 \end_layout
14098
14099 \begin_layout Standard
14100 Selbst definierte Farben können mit dem Befehl 
14101 \series bold
14102
14103 \backslash
14104 textcolor
14105 \series default
14106  auch für Text
14107 \begin_inset Index idx
14108 status collapsed
14109
14110 \begin_layout Plain Layout
14111 Text ! farbiger
14112 \end_layout
14113
14114 \end_inset
14115
14116  verwendet werden:
14117 \end_layout
14118
14119 \begin_layout Standard
14120 \begin_inset ERT
14121 status collapsed
14122
14123 \begin_layout Plain Layout
14124
14125
14126 \backslash
14127 textcolor{dunkelgruen}{
14128 \end_layout
14129
14130 \end_inset
14131
14132 Dieser Satz ist 
14133 \begin_inset Quotes gld
14134 \end_inset
14135
14136 dunkelgruen
14137 \begin_inset Quotes grd
14138 \end_inset
14139
14140 .
14141 \begin_inset ERT
14142 status collapsed
14143
14144 \begin_layout Plain Layout
14145
14146 }
14147 \end_layout
14148
14149 \end_inset
14150
14151
14152 \end_layout
14153
14154 \begin_layout Standard
14155
14156 \series bold
14157
14158 \backslash
14159 textcolor
14160 \series default
14161
14162 \begin_inset Index idx
14163 status collapsed
14164
14165 \begin_layout Plain Layout
14166 Befehle ! T ! 
14167 \backslash
14168 textcolor
14169 \end_layout
14170
14171 \end_inset
14172
14173  wird nach dem Schema 
14174 \series bold
14175
14176 \backslash
14177 textcolor{Farbe}{zu
14178 \series default
14179  
14180 \series bold
14181 färbende
14182 \series default
14183  
14184 \series bold
14185 Zeichen}
14186 \series default
14187  verwendet.
14188 \end_layout
14189
14190 \begin_layout Subsection
14191 Absatzboxen
14192 \begin_inset CommandInset label
14193 LatexCommand label
14194 name "sub:Absatzboxen"
14195
14196 \end_inset
14197
14198
14199 \begin_inset Index idx
14200 status collapsed
14201
14202 \begin_layout Plain Layout
14203 Boxen ! Absatz-
14204 \end_layout
14205
14206 \end_inset
14207
14208
14209 \end_layout
14210
14211 \begin_layout Standard
14212 Mit dem Menü 
14213 \family sans
14214 Einfügen\SpecialChar \menuseparator
14215 Box
14216 \family default
14217  oder dem Werkzeugleistenknopf 
14218 \begin_inset Graphics
14219         filename ../../images/box-insert.png
14220         scale 85
14221
14222 \end_inset
14223
14224  kann man eine Box erstellen, die mehrere Zeilen und Absätze enthalten kann,
14225  eine so genannte 
14226 \emph on
14227 Parbox
14228 \emph default
14229  (Absatzbox).
14230 \end_layout
14231
14232 \begin_layout Standard
14233 Das folgende Beispiel zeigt eine umrahmte Absatzbox in einer Zeile:
14234 \end_layout
14235
14236 \begin_layout Standard
14237 \begin_inset VSpace medskip
14238 \end_inset
14239
14240 Dies ist eine Zeile 
14241 \begin_inset Box Boxed
14242 position "c"
14243 hor_pos "c"
14244 has_inner_box 1
14245 inner_pos "t"
14246 use_parbox 1
14247 use_makebox 0
14248 width "5cm"
14249 special "none"
14250 height "1in"
14251 height_special "totalheight"
14252 status open
14253
14254 \begin_layout Plain Layout
14255 Dies ist die Absatzbox.
14256  Sie ist genau 5
14257 \begin_inset space \thinspace{}
14258 \end_inset
14259
14260 cm lang und kann auch Formeln enthalten: 
14261 \begin_inset Formula $\int A\,\mathrm{d}s=C$
14262 \end_inset
14263
14264
14265 \end_layout
14266
14267 \end_inset
14268
14269  mit einer Absatzbox.
14270 \begin_inset VSpace medskip
14271 \end_inset
14272
14273
14274 \end_layout
14275
14276 \begin_layout Standard
14277 Solch eine Box wird erstellt, indem man mit der rechten Maustaste auf die
14278  graue Box mit dem Namen 
14279 \begin_inset Quotes gld
14280 \end_inset
14281
14282 Box(Gerahmt)
14283 \begin_inset Quotes grd
14284 \end_inset
14285
14286  klickt.
14287  Es erscheint dann ein Fenster in dem man die Boxeigenschaften festlegt.
14288  In diesem Fall: 
14289 \emph on
14290 Verzierung
14291 \emph default
14292 : Rechteckige Box, 
14293 \emph on
14294 Innere Box
14295 \emph default
14296 : Parbox, 
14297 \emph on
14298 Breite
14299 \emph default
14300 : 5
14301 \begin_inset space \thinspace{}
14302 \end_inset
14303
14304 cm, 
14305 \emph on
14306 Vertikale Box Ausrichtung
14307 \emph default
14308 : Mitte
14309 \end_layout
14310
14311 \begin_layout Standard
14312 \begin_inset VSpace medskip
14313 \end_inset
14314
14315 In LaTeX wird eine Absatzbox mit dem Befehl 
14316 \series bold
14317
14318 \backslash
14319 parbox
14320 \series default
14321
14322 \begin_inset Index idx
14323 status collapsed
14324
14325 \begin_layout Plain Layout
14326 Befehle ! P ! 
14327 \backslash
14328 parbox
14329 \end_layout
14330
14331 \end_inset
14332
14333  erstellt, welcher folgendes Schema besitzt:
14334 \end_layout
14335
14336 \begin_layout Standard
14337
14338 \series bold
14339
14340 \backslash
14341 parbox[Position]{Breite}{Boxinhalt}
14342 \end_layout
14343
14344 \begin_layout Standard
14345 Die Positionen 
14346 \emph on
14347 b
14348 \emph default
14349  und 
14350 \emph on
14351 t
14352 \emph default
14353  sind möglich.
14354  
14355 \emph on
14356 b
14357 \emph default
14358  steht für 
14359 \begin_inset Quotes gld
14360 \end_inset
14361
14362 bottom
14363 \begin_inset Quotes grd
14364 \end_inset
14365
14366  (unten) und bedeutet, dass die letzte Absatzzeile in den umstehenden Text
14367  eingepasst wird.
14368  Bei 
14369 \emph on
14370 t
14371 \emph default
14372  wie 
14373 \begin_inset Quotes gld
14374 \end_inset
14375
14376 top
14377 \begin_inset Quotes grd
14378 \end_inset
14379
14380  (oben) geschieht dies für die erste Zeile.
14381  Wird keine Position angegeben, wird der Absatz in mittlerer Höhe eingepasst,
14382  siehe das Kapitel 
14383 \emph on
14384 Boxen
14385 \emph default
14386  des Handbuchs
14387 \emph on
14388  Eingebettete
14389 \begin_inset space ~
14390 \end_inset
14391
14392 Objekte
14393 \emph default
14394  für Beispiele.
14395 \end_layout
14396
14397 \begin_layout Standard
14398 \begin_inset VSpace bigskip
14399 \end_inset
14400
14401 Möchte man Formeln komplett mit Formelnummer umranden, muss man die Formel
14402  in eine Absatzbox setzen.
14403  Dazu schreibt man im TeX-Modus vor die Formel den Befehl 
14404 \series bold
14405
14406 \backslash
14407 fbox{
14408 \backslash
14409 parbox{
14410 \backslash
14411 linewidth-2
14412 \backslash
14413 fboxsep-2
14414 \backslash
14415 fboxrule}{
14416 \series default
14417 .
14418  Hierbei steht 
14419 \series bold
14420
14421 \backslash
14422 linewidth
14423 \series default
14424
14425 \begin_inset Index idx
14426 status collapsed
14427
14428 \begin_layout Plain Layout
14429 Befehle ! L ! 
14430 \backslash
14431 linewidth
14432 \end_layout
14433
14434 \end_inset
14435
14436  für die im Dokument eingestellte Zeilenbreite.
14437  Da sich der Rahmen außerhalb der Absatzbox befindet, muss man von der Zeilenbre
14438 ite zweimal die Rahmendicke und den Rahmenabstand abziehen.
14439  Da dies LyX aufgrund eines Fehlers
14440 \begin_inset Foot
14441 status collapsed
14442
14443 \begin_layout Plain Layout
14444 \begin_inset CommandInset href
14445 LatexCommand href
14446 name "LyX-Fehler #4483"
14447 target "http://www.lyx.org/trac/ticket/4483"
14448
14449 \end_inset
14450
14451
14452 \end_layout
14453
14454 \end_inset
14455
14456  nicht automatisch macht, muss der TeX-Modus verwendet werden.
14457  Damit man in Argumenten multiplizieren und subtrahieren kann, muss im LaTeX-Vor
14458 spann das LaTeX-Paket 
14459 \series bold
14460 calc
14461 \series default
14462
14463 \begin_inset Foot
14464 status collapsed
14465
14466 \begin_layout Plain Layout
14467
14468 \series bold
14469 calc
14470 \series default
14471  ist Teil jeder LaTeX-Standardinstallation.
14472 \end_layout
14473
14474 \end_inset
14475
14476
14477 \begin_inset Index idx
14478 status collapsed
14479
14480 \begin_layout Plain Layout
14481 Pakete ! calc
14482 \end_layout
14483
14484 \end_inset
14485
14486  mit der Zeile
14487 \end_layout
14488
14489 \begin_layout Standard
14490
14491 \series bold
14492
14493 \backslash
14494 usepackage{calc}
14495 \end_layout
14496
14497 \begin_layout Standard
14498 geladen werden.
14499  Nach der Formel werden beide Boxen geschlossen, indem man 
14500 \series bold
14501 }}
14502 \series default
14503  im TeX-Modus eingibt.
14504  Dazu ein Beispiel:
14505 \begin_inset ERT
14506 status collapsed
14507
14508 \begin_layout Plain Layout
14509
14510
14511 \backslash
14512 fboxsep 5mm 
14513 \backslash
14514 fboxrule 5mm
14515 \end_layout
14516
14517 \end_inset
14518
14519
14520 \end_layout
14521
14522 \begin_layout Standard
14523 \begin_inset ERT
14524 status collapsed
14525
14526 \begin_layout Plain Layout
14527
14528
14529 \backslash
14530 fbox{
14531 \backslash
14532 parbox{
14533 \backslash
14534 linewidth-2
14535 \backslash
14536 fboxsep-2
14537 \backslash
14538 fboxrule}{
14539 \end_layout
14540
14541 \end_inset
14542
14543
14544 \begin_inset Formula 
14545 \begin{equation}
14546 \int A\,\mathrm{d}x=\frac{\sqrt[5]{B}}{\ln\left(\frac{1}{3}\right)}
14547 \end{equation}
14548
14549 \end_inset
14550
14551
14552 \begin_inset ERT
14553 status collapsed
14554
14555 \begin_layout Plain Layout
14556
14557 }}
14558 \end_layout
14559
14560 \end_inset
14561
14562
14563 \begin_inset ERT
14564 status collapsed
14565
14566 \begin_layout Plain Layout
14567
14568
14569 \backslash
14570 fboxrule 0.4pt 
14571 \backslash
14572 fboxsep 3pt
14573 \end_layout
14574
14575 \end_inset
14576
14577
14578 \end_layout
14579
14580 \begin_layout Standard
14581 \begin_inset VSpace medskip
14582 \end_inset
14583
14584 Da im Argument von 
14585 \series bold
14586
14587 \backslash
14588 fbox
14589 \series default
14590  eine Absatzbox verwendet wird, gibt es in diesem Fall bei der Formelgröße
14591  keinen Unterschied zwischen 
14592 \series bold
14593
14594 \backslash
14595 fbox
14596 \series default
14597  und 
14598 \series bold
14599
14600 \backslash
14601 boxed
14602 \series default
14603 .
14604 \end_layout
14605
14606 \begin_layout Standard
14607 \begin_inset VSpace bigskip
14608 \end_inset
14609
14610 Sehr nützlich sind Absatzboxen, wenn man Formeln direkt kommentieren möchte.
14611  Dazu verwendet man 
14612 \series bold
14613
14614 \backslash
14615 parbox
14616 \series default
14617  in Verbindung mit dem Befehl 
14618 \series bold
14619
14620 \backslash
14621 tag
14622 \series default
14623 .
14624  (mehr zu 
14625 \series bold
14626
14627 \backslash
14628 tag
14629 \series default
14630  siehe 
14631 \begin_inset CommandInset ref
14632 LatexCommand ref
14633 reference "sub:Benutzerdefinierte-Nummerierung"
14634
14635 \end_inset
14636
14637 )
14638 \end_layout
14639
14640 \begin_layout Standard
14641 Ein Beispiel einer mit Hilfe von 
14642 \series bold
14643
14644 \backslash
14645 parbox
14646 \series default
14647  kommentierten Formel:
14648 \end_layout
14649
14650 \begin_layout Standard
14651 \begin_inset ERT
14652 status collapsed
14653
14654 \begin_layout Plain Layout
14655
14656
14657 \backslash
14658 [5x-7b=3b
14659 \backslash
14660 tag*{
14661 \backslash
14662 parbox{5cm}{
14663 \end_layout
14664
14665 \end_inset
14666
14667 Dies ist eine Beschreibung.
14668  Sie ist deutlich von der Formel getrennt und mehrzeilig.
14669 \begin_inset ERT
14670 status collapsed
14671
14672 \begin_layout Plain Layout
14673
14674 }}
14675 \backslash
14676 ]
14677 \end_layout
14678
14679 \end_inset
14680
14681
14682 \end_layout
14683
14684 \begin_layout Standard
14685 So eine Formel muss komplett im TeX-Modus eingegeben werden, da LyX den
14686  Befehl 
14687 \series bold
14688
14689 \backslash
14690 parbox
14691 \series default
14692  in Formeln noch nicht unterstützt.
14693  Die Formel wird mit folgender Befehlssequenz erstellt:
14694 \end_layout
14695
14696 \begin_layout Standard
14697 Der Befehl 
14698 \series bold
14699
14700 \backslash
14701 [5x-7b=3b
14702 \backslash
14703 tag*
14704 \backslash
14705 {
14706 \backslash
14707 parbox{5cm}{
14708 \series default
14709  wird im TeX-Modus eingegeben.
14710 \begin_inset Foot
14711 status collapsed
14712
14713 \begin_layout Plain Layout
14714 Ist der Formelstil 
14715 \series bold
14716 Eingerückt
14717 \series default
14718  aktiviert, kann 
14719 \series bold
14720
14721 \backslash
14722 tag*
14723 \backslash
14724 {
14725 \series default
14726  auch durch 
14727 \series bold
14728
14729 \backslash
14730 hfill
14731 \series default
14732  ersetzt werden.
14733  (Formelstile siehe 
14734 \begin_inset CommandInset ref
14735 LatexCommand ref
14736 reference "sec:Formelstile"
14737
14738 \end_inset
14739
14740 )
14741 \end_layout
14742
14743 \end_inset
14744
14745  Dann folgt die Beschreibung als normaler Text und zuletzt gibt man 
14746 \series bold
14747 }}
14748 \backslash
14749 ]
14750 \series default
14751  im TeX-Modus ein.
14752  Die Befehle 
14753 \series bold
14754
14755 \backslash
14756 [
14757 \series default
14758  und 
14759 \series bold
14760
14761 \backslash
14762 ]
14763 \series default
14764  erstellen hierbei eine abgesetzte Formel.
14765 \end_layout
14766
14767 \begin_layout Standard
14768 Die Vorteile von 
14769 \series bold
14770
14771 \backslash
14772 parbox
14773 \series default
14774  erkennt man an folgendem Beispiel, in dem mit Hilfe des mathematischen
14775  Textmodus 
14776 \begin_inset Quotes gld
14777 \end_inset
14778
14779 kommentiert
14780 \begin_inset Quotes grd
14781 \end_inset
14782
14783  wurde:
14784 \begin_inset Formula 
14785 \[
14786 5x-7b=3b\textrm{Dies ist eine Beschreibung. Sie ist nicht von der Formel getrennt ...}
14787 \]
14788
14789 \end_inset
14790
14791
14792 \end_layout
14793
14794 \begin_layout Standard
14795 \begin_inset Newpage newpage
14796 \end_inset
14797
14798
14799 \end_layout
14800
14801 \begin_layout Section
14802 Operatoren
14803 \begin_inset Index idx
14804 status collapsed
14805
14806 \begin_layout Plain Layout
14807 Operatoren
14808 \end_layout
14809
14810 \end_inset
14811
14812
14813 \end_layout
14814
14815 \begin_layout Subsection
14816 Große Operatoren
14817 \begin_inset CommandInset label
14818 LatexCommand label
14819 name "sub:Große-Operatoren"
14820
14821 \end_inset
14822
14823
14824 \begin_inset Index idx
14825 status collapsed
14826
14827 \begin_layout Plain Layout
14828 Operatoren ! große
14829 \end_layout
14830
14831 \end_inset
14832
14833
14834 \begin_inset Index idx
14835 status collapsed
14836
14837 \begin_layout Plain Layout
14838 Summen
14839 \end_layout
14840
14841 \end_inset
14842
14843
14844 \begin_inset Index idx
14845 status collapsed
14846
14847 \begin_layout Plain Layout
14848 Integrale
14849 \end_layout
14850
14851 \end_inset
14852
14853
14854 \end_layout
14855
14856 \begin_layout Standard
14857 Um alle großen Integraloperatoren nutzen zu können, die im Folgenden aufgelistet
14858  sind, muss die Option 
14859 \family sans
14860 esint-Paket automatisch verwenden
14861 \family default
14862  in den Dokumenteinstellungen unter 
14863 \family sans
14864 Mathe-Optionen
14865 \family default
14866  gewählt sein.
14867 \end_layout
14868
14869 \begin_layout Standard
14870 \begin_inset space \hfill{}
14871 \end_inset
14872
14873
14874 \begin_inset Tabular
14875 <lyxtabular version="3" rows="11" columns="2">
14876 <features rotate="0" tabularvalignment="middle">
14877 <column alignment="center" valignment="top" width="0pt">
14878 <column alignment="center" valignment="top" width="0pt">
14879 <row>
14880 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
14881 \begin_inset Text
14882
14883 \begin_layout Plain Layout
14884 Befehl
14885 \end_layout
14886
14887 \end_inset
14888 </cell>
14889 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
14890 \begin_inset Text
14891
14892 \begin_layout Plain Layout
14893 Ergebnis
14894 \end_layout
14895
14896 \end_inset
14897 </cell>
14898 </row>
14899 <row>
14900 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14901 \begin_inset Text
14902
14903 \begin_layout Plain Layout
14904
14905 \backslash
14906 int
14907 \begin_inset Index idx
14908 status collapsed
14909
14910 \begin_layout Plain Layout
14911 Befehle ! I ! 
14912 \backslash
14913 int
14914 \end_layout
14915
14916 \end_inset
14917
14918
14919 \end_layout
14920
14921 \end_inset
14922 </cell>
14923 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14924 \begin_inset Text
14925
14926 \begin_layout Plain Layout
14927 \begin_inset Formula $\int$
14928 \end_inset
14929
14930
14931 \end_layout
14932
14933 \end_inset
14934 </cell>
14935 </row>
14936 <row>
14937 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14938 \begin_inset Text
14939
14940 \begin_layout Plain Layout
14941
14942 \backslash
14943 oint
14944 \end_layout
14945
14946 \end_inset
14947 </cell>
14948 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14949 \begin_inset Text
14950
14951 \begin_layout Plain Layout
14952 \begin_inset Formula $\oint$
14953 \end_inset
14954
14955
14956 \end_layout
14957
14958 \end_inset
14959 </cell>
14960 </row>
14961 <row>
14962 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14963 \begin_inset Text
14964
14965 \begin_layout Plain Layout
14966
14967 \backslash
14968 ointctrclockwise
14969 \end_layout
14970
14971 \end_inset
14972 </cell>
14973 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14974 \begin_inset Text
14975
14976 \begin_layout Plain Layout
14977 \begin_inset Formula $\ointctrclockwise$
14978 \end_inset
14979
14980
14981 \end_layout
14982
14983 \end_inset
14984 </cell>
14985 </row>
14986 <row>
14987 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14988 \begin_inset Text
14989
14990 \begin_layout Plain Layout
14991
14992 \backslash
14993 ointclockwise
14994 \end_layout
14995
14996 \end_inset
14997 </cell>
14998 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14999 \begin_inset Text
15000
15001 \begin_layout Plain Layout
15002 \begin_inset Formula $\ointclockwise$
15003 \end_inset
15004
15005
15006 \end_layout
15007
15008 \end_inset
15009 </cell>
15010 </row>
15011 <row>
15012 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15013 \begin_inset Text
15014
15015 \begin_layout Plain Layout
15016
15017 \backslash
15018 sqint
15019 \end_layout
15020
15021 \end_inset
15022 </cell>
15023 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15024 \begin_inset Text
15025
15026 \begin_layout Plain Layout
15027 \begin_inset Formula $\sqint$
15028 \end_inset
15029
15030
15031 \end_layout
15032
15033 \end_inset
15034 </cell>
15035 </row>
15036 <row>
15037 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15038 \begin_inset Text
15039
15040 \begin_layout Plain Layout
15041
15042 \backslash
15043 fint
15044 \end_layout
15045
15046 \end_inset
15047 </cell>
15048 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15049 \begin_inset Text
15050
15051 \begin_layout Plain Layout
15052  
15053 \begin_inset Formula $\fint$
15054 \end_inset
15055
15056
15057 \end_layout
15058
15059 \end_inset
15060 </cell>
15061 </row>
15062 <row>
15063 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15064 \begin_inset Text
15065
15066 \begin_layout Plain Layout
15067
15068 \backslash
15069 landupint
15070 \end_layout
15071
15072 \end_inset
15073 </cell>
15074 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15075 \begin_inset Text
15076
15077 \begin_layout Plain Layout
15078  
15079 \begin_inset Formula $\landupint$
15080 \end_inset
15081
15082
15083 \end_layout
15084
15085 \end_inset
15086 </cell>
15087 </row>
15088 <row>
15089 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15090 \begin_inset Text
15091
15092 \begin_layout Plain Layout
15093
15094 \backslash
15095 landdownint
15096 \end_layout
15097
15098 \end_inset
15099 </cell>
15100 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15101 \begin_inset Text
15102
15103 \begin_layout Plain Layout
15104  
15105 \begin_inset Formula $\landdownint$
15106 \end_inset
15107
15108
15109 \end_layout
15110
15111 \end_inset
15112 </cell>
15113 </row>
15114 <row>
15115 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15116 \begin_inset Text
15117
15118 \begin_layout Plain Layout
15119
15120 \backslash
15121 bigcap
15122 \end_layout
15123
15124 \end_inset
15125 </cell>
15126 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15127 \begin_inset Text
15128
15129 \begin_layout Plain Layout
15130 \begin_inset Formula $\bigcap$
15131 \end_inset
15132
15133
15134 \end_layout
15135
15136 \end_inset
15137 </cell>
15138 </row>
15139 <row>
15140 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15141 \begin_inset Text
15142
15143 \begin_layout Plain Layout
15144
15145 \backslash
15146 bigcup
15147 \end_layout
15148
15149 \end_inset
15150 </cell>
15151 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15152 \begin_inset Text
15153
15154 \begin_layout Plain Layout
15155 \begin_inset Formula $\bigcup$
15156 \end_inset
15157
15158
15159 \end_layout
15160
15161 \end_inset
15162 </cell>
15163 </row>
15164 </lyxtabular>
15165
15166 \end_inset
15167
15168
15169 \begin_inset space \hfill{}
15170 \end_inset
15171
15172
15173 \begin_inset Tabular
15174 <lyxtabular version="3" rows="11" columns="2">
15175 <features rotate="0" tabularvalignment="middle">
15176 <column alignment="center" valignment="top" width="0pt">
15177 <column alignment="center" valignment="top" width="0pt">
15178 <row>
15179 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15180 \begin_inset Text
15181
15182 \begin_layout Plain Layout
15183 Befehl
15184 \end_layout
15185
15186 \end_inset
15187 </cell>
15188 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15189 \begin_inset Text
15190
15191 \begin_layout Plain Layout
15192 Ergebnis
15193 \end_layout
15194
15195 \end_inset
15196 </cell>
15197 </row>
15198 <row>
15199 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15200 \begin_inset Text
15201
15202 \begin_layout Plain Layout
15203
15204 \backslash
15205 sum
15206 \begin_inset Index idx
15207 status collapsed
15208
15209 \begin_layout Plain Layout
15210 Befehle ! S ! 
15211 \backslash
15212 sum
15213 \end_layout
15214
15215 \end_inset
15216
15217
15218 \end_layout
15219
15220 \end_inset
15221 </cell>
15222 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15223 \begin_inset Text
15224
15225 \begin_layout Plain Layout
15226 \begin_inset Formula $\sum$
15227 \end_inset
15228
15229
15230 \end_layout
15231
15232 \end_inset
15233 </cell>
15234 </row>
15235 <row>
15236 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15237 \begin_inset Text
15238
15239 \begin_layout Plain Layout
15240
15241 \backslash
15242 prod
15243 \begin_inset Index idx
15244 status collapsed
15245
15246 \begin_layout Plain Layout
15247 Befehle ! P ! 
15248 \backslash
15249 prod
15250 \end_layout
15251
15252 \end_inset
15253
15254
15255 \end_layout
15256
15257 \end_inset
15258 </cell>
15259 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15260 \begin_inset Text
15261
15262 \begin_layout Plain Layout
15263 \begin_inset Formula $\prod$
15264 \end_inset
15265
15266
15267 \end_layout
15268
15269 \end_inset
15270 </cell>
15271 </row>
15272 <row>
15273 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15274 \begin_inset Text
15275
15276 \begin_layout Plain Layout
15277
15278 \backslash
15279 coprod
15280 \end_layout
15281
15282 \end_inset
15283 </cell>
15284 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15285 \begin_inset Text
15286
15287 \begin_layout Plain Layout
15288 \begin_inset Formula $\coprod$
15289 \end_inset
15290
15291
15292 \end_layout
15293
15294 \end_inset
15295 </cell>
15296 </row>
15297 <row>
15298 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15299 \begin_inset Text
15300
15301 \begin_layout Plain Layout
15302
15303 \backslash
15304 bigodot
15305 \end_layout
15306
15307 \end_inset
15308 </cell>
15309 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15310 \begin_inset Text
15311
15312 \begin_layout Plain Layout
15313 \begin_inset Formula $\bigodot$
15314 \end_inset
15315
15316
15317 \end_layout
15318
15319 \end_inset
15320 </cell>
15321 </row>
15322 <row>
15323 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15324 \begin_inset Text
15325
15326 \begin_layout Plain Layout
15327
15328 \backslash
15329 bigotimes
15330 \end_layout
15331
15332 \end_inset
15333 </cell>
15334 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15335 \begin_inset Text
15336
15337 \begin_layout Plain Layout
15338 \begin_inset Formula $\bigotimes$
15339 \end_inset
15340
15341
15342 \end_layout
15343
15344 \end_inset
15345 </cell>
15346 </row>
15347 <row>
15348 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15349 \begin_inset Text
15350
15351 \begin_layout Plain Layout
15352
15353 \backslash
15354 bigoplus
15355 \end_layout
15356
15357 \end_inset
15358 </cell>
15359 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15360 \begin_inset Text
15361
15362 \begin_layout Plain Layout
15363 \begin_inset Formula $\bigoplus$
15364 \end_inset
15365
15366
15367 \end_layout
15368
15369 \end_inset
15370 </cell>
15371 </row>
15372 <row>
15373 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15374 \begin_inset Text
15375
15376 \begin_layout Plain Layout
15377
15378 \backslash
15379 bigwedge
15380 \end_layout
15381
15382 \end_inset
15383 </cell>
15384 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15385 \begin_inset Text
15386
15387 \begin_layout Plain Layout
15388 \begin_inset Formula $\bigwedge$
15389 \end_inset
15390
15391
15392 \end_layout
15393
15394 \end_inset
15395 </cell>
15396 </row>
15397 <row>
15398 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15399 \begin_inset Text
15400
15401 \begin_layout Plain Layout
15402
15403 \backslash
15404 bigvee
15405 \end_layout
15406
15407 \end_inset
15408 </cell>
15409 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15410 \begin_inset Text
15411
15412 \begin_layout Plain Layout
15413 \begin_inset Formula $\bigvee$
15414 \end_inset
15415
15416
15417 \end_layout
15418
15419 \end_inset
15420 </cell>
15421 </row>
15422 <row>
15423 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15424 \begin_inset Text
15425
15426 \begin_layout Plain Layout
15427
15428 \backslash
15429 bigsqcup
15430 \end_layout
15431
15432 \end_inset
15433 </cell>
15434 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15435 \begin_inset Text
15436
15437 \begin_layout Plain Layout
15438 \begin_inset Formula $\bigsqcup$
15439 \end_inset
15440
15441
15442 \end_layout
15443
15444 \end_inset
15445 </cell>
15446 </row>
15447 <row>
15448 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15449 \begin_inset Text
15450
15451 \begin_layout Plain Layout
15452
15453 \backslash
15454 biguplus
15455 \end_layout
15456
15457 \end_inset
15458 </cell>
15459 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15460 \begin_inset Text
15461
15462 \begin_layout Plain Layout
15463 \begin_inset Formula $\biguplus$
15464 \end_inset
15465
15466
15467 \end_layout
15468
15469 \end_inset
15470 </cell>
15471 </row>
15472 </lyxtabular>
15473
15474 \end_inset
15475
15476
15477 \begin_inset space \hfill{}
15478 \end_inset
15479
15480
15481 \end_layout
15482
15483 \begin_layout Standard
15484 Alle großen Operatoren können auch über den Mathe-Werkzeugleistenknopf 
15485 \begin_inset Graphics
15486         filename ../../images/math/intop.png
15487         scale 85
15488
15489 \end_inset
15490
15491  eingefügt werden.
15492 \end_layout
15493
15494 \begin_layout Standard
15495 Die Operatoren werden als groß bezeichnet, da sie größer sind als die zum
15496  Teil gleich aussehenden binären Operatoren.
15497  Zu allen großen Operatoren kann man Grenzen angeben, wie im nächsten Abschnitt
15498  beschrieben.
15499 \end_layout
15500
15501 \begin_layout Standard
15502 Für alle Integrale gibt es Befehle, die auf 
15503 \series bold
15504 op
15505 \series default
15506  enden: 
15507 \series bold
15508
15509 \backslash
15510 intop
15511 \series default
15512
15513 \series bold
15514
15515 \backslash
15516 ointop
15517 \series default
15518  usw..
15519  Diese unterscheiden sich von 
15520 \series bold
15521
15522 \backslash
15523 int
15524 \series default
15525  usw.
15526 \begin_inset space \space{}
15527 \end_inset
15528
15529 in der Art wie die Operatorgrenzen dargestellt werden, siehe 
15530 \begin_inset CommandInset ref
15531 LatexCommand ref
15532 reference "sub:Operatorgrenzen"
15533
15534 \end_inset
15535
15536 .
15537  
15538 \end_layout
15539
15540 \begin_layout Subsubsection*
15541 Hinweise zu Integralen
15542 \end_layout
15543
15544 \begin_layout Standard
15545 Der Buchstabe 
15546 \emph on
15547 d
15548 \emph default
15549  in einer Integralen ist ein Operator, der deswegen aufrecht erscheinen
15550  muss.
15551  Dazu markiert man das 
15552 \emph on
15553 d
15554 \emph default
15555  und wandelt es mit der Tastenkombination 
15556 \family sans
15557 Alt+Z
15558 \begin_inset space ~
15559 \end_inset
15560
15561 R
15562 \family default
15563
15564 \begin_inset Foot
15565 status collapsed
15566
15567 \begin_layout Plain Layout
15568 Schriftstile siehe 
15569 \begin_inset CommandInset ref
15570 LatexCommand ref
15571 reference "sub:Schriftstile"
15572
15573 \end_inset
15574
15575
15576 \end_layout
15577
15578 \end_inset
15579
15580  um.
15581  Anschließend fügt man vor dem 
15582 \emph on
15583 d
15584 \emph default
15585 , wie bei Operatoren üblich, den kleinsten Leerraum ein.
15586  Dazu ein Beispiel:
15587 \end_layout
15588
15589 \begin_layout Standard
15590 inkorrekt: 
15591 \begin_inset Formula $\int A(x)dx$
15592 \end_inset
15593
15594
15595 \begin_inset Newline newline
15596 \end_inset
15597
15598
15599 \begin_inset Phantom HPhantom
15600 status open
15601
15602 \begin_layout Plain Layout
15603 in
15604 \end_layout
15605
15606 \end_inset
15607
15608 korrekt: 
15609 \begin_inset Formula $\int A(x)\,\mathrm{d}x$
15610 \end_inset
15611
15612
15613 \end_layout
15614
15615 \begin_layout Standard
15616 \begin_inset VSpace medskip
15617 \end_inset
15618
15619 Für Mehrfachintegrale gibt es folgende Befehle:
15620 \begin_inset VSpace medskip
15621 \end_inset
15622
15623
15624 \end_layout
15625
15626 \begin_layout Standard
15627 \begin_inset space \hfill{}
15628 \end_inset
15629
15630
15631 \begin_inset Tabular
15632 <lyxtabular version="3" rows="4" columns="2">
15633 <features rotate="0" tabularvalignment="middle">
15634 <column alignment="center" valignment="top">
15635 <column alignment="center" valignment="top">
15636 <row>
15637 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15638 \begin_inset Text
15639
15640 \begin_layout Plain Layout
15641 Befehl
15642 \end_layout
15643
15644 \end_inset
15645 </cell>
15646 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15647 \begin_inset Text
15648
15649 \begin_layout Plain Layout
15650 Ergebnis
15651 \begin_inset Note Note
15652 status collapsed
15653
15654 \begin_layout Plain Layout
15655
15656 \series bold
15657
15658 \backslash
15659 raisebox
15660 \series default
15661  dient nur als Abstandhalter.
15662 \end_layout
15663
15664 \end_inset
15665
15666
15667 \end_layout
15668
15669 \end_inset
15670 </cell>
15671 </row>
15672 <row>
15673 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15674 \begin_inset Text
15675
15676 \begin_layout Plain Layout
15677
15678 \backslash
15679 iint
15680 \end_layout
15681
15682 \end_inset
15683 </cell>
15684 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15685 \begin_inset Text
15686
15687 \begin_layout Plain Layout
15688 \begin_inset Formula $\raisebox{4.5mm}{}\iint\raisebox{-2.5mm}{}$
15689 \end_inset
15690
15691
15692 \end_layout
15693
15694 \end_inset
15695 </cell>
15696 </row>
15697 <row>
15698 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15699 \begin_inset Text
15700
15701 \begin_layout Plain Layout
15702
15703 \backslash
15704 oiint
15705 \end_layout
15706
15707 \end_inset
15708 </cell>
15709 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15710 \begin_inset Text
15711
15712 \begin_layout Plain Layout
15713 \begin_inset Formula $\raisebox{4.5mm}{}\oiint\raisebox{-2.5mm}{}$
15714 \end_inset
15715
15716
15717 \end_layout
15718
15719 \end_inset
15720 </cell>
15721 </row>
15722 <row>
15723 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15724 \begin_inset Text
15725
15726 \begin_layout Plain Layout
15727
15728 \backslash
15729 sqiint
15730 \end_layout
15731
15732 \end_inset
15733 </cell>
15734 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15735 \begin_inset Text
15736
15737 \begin_layout Plain Layout
15738 \begin_inset Formula $\raisebox{4.5mm}{}\sqiint\raisebox{-2.5mm}{}$
15739 \end_inset
15740
15741
15742 \end_layout
15743
15744 \end_inset
15745 </cell>
15746 </row>
15747 </lyxtabular>
15748
15749 \end_inset
15750
15751
15752 \begin_inset space \hfill{}
15753 \end_inset
15754
15755
15756 \begin_inset Tabular
15757 <lyxtabular version="3" rows="4" columns="2">
15758 <features rotate="0" tabularvalignment="middle">
15759 <column alignment="center" valignment="top">
15760 <column alignment="center" valignment="top">
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 Befehl
15767 \end_layout
15768
15769 \end_inset
15770 </cell>
15771 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15772 \begin_inset Text
15773
15774 \begin_layout Plain Layout
15775 Ergebnis
15776 \end_layout
15777
15778 \end_inset
15779 </cell>
15780 </row>
15781 <row>
15782 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15783 \begin_inset Text
15784
15785 \begin_layout Plain Layout
15786
15787 \backslash
15788 iiint
15789 \end_layout
15790
15791 \end_inset
15792 </cell>
15793 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15794 \begin_inset Text
15795
15796 \begin_layout Plain Layout
15797 \begin_inset Formula $\raisebox{4.5mm}{}\iiint\raisebox{-2.5mm}{}$
15798 \end_inset
15799
15800
15801 \end_layout
15802
15803 \end_inset
15804 </cell>
15805 </row>
15806 <row>
15807 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15808 \begin_inset Text
15809
15810 \begin_layout Plain Layout
15811
15812 \backslash
15813 iiiint
15814 \end_layout
15815
15816 \end_inset
15817 </cell>
15818 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15819 \begin_inset Text
15820
15821 \begin_layout Plain Layout
15822 \begin_inset Formula $\raisebox{4.5mm}{}\iiiint\raisebox{-2.5mm}{}$
15823 \end_inset
15824
15825
15826 \end_layout
15827
15828 \end_inset
15829 </cell>
15830 </row>
15831 <row>
15832 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15833 \begin_inset Text
15834
15835 \begin_layout Plain Layout
15836
15837 \backslash
15838 dotsint
15839 \end_layout
15840
15841 \end_inset
15842 </cell>
15843 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15844 \begin_inset Text
15845
15846 \begin_layout Plain Layout
15847 \begin_inset Formula $\raisebox{4.5mm}{}\dotsint\raisebox{-2.5mm}{}$
15848 \end_inset
15849
15850
15851 \end_layout
15852
15853 \end_inset
15854 </cell>
15855 </row>
15856 </lyxtabular>
15857
15858 \end_inset
15859
15860
15861 \begin_inset space \hfill{}
15862 \end_inset
15863
15864
15865 \end_layout
15866
15867 \begin_layout Subsection
15868 Operatorgrenzen
15869 \begin_inset CommandInset label
15870 LatexCommand label
15871 name "sub:Operatorgrenzen"
15872
15873 \end_inset
15874
15875
15876 \begin_inset Index idx
15877 status collapsed
15878
15879 \begin_layout Plain Layout
15880 Operatoren ! Grenzen
15881 \end_layout
15882
15883 \end_inset
15884
15885
15886 \end_layout
15887
15888 \begin_layout Standard
15889 Grenzen werden durch Hoch- bzw.
15890 \begin_inset space \space{}
15891 \end_inset
15892
15893 Tiefstellen erzeugt:
15894 \end_layout
15895
15896 \begin_layout Standard
15897 \align center
15898 \begin_inset Tabular
15899 <lyxtabular version="3" rows="2" columns="2">
15900 <features rotate="0" tabularvalignment="middle">
15901 <column alignment="center" valignment="top" width="0pt">
15902 <column alignment="center" valignment="top" width="0pt">
15903 <row>
15904 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15905 \begin_inset Text
15906
15907 \begin_layout Plain Layout
15908 Befehl
15909 \end_layout
15910
15911 \end_inset
15912 </cell>
15913 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15914 \begin_inset Text
15915
15916 \begin_layout Plain Layout
15917 Ergebnis
15918 \begin_inset Note Note
15919 status collapsed
15920
15921 \begin_layout Plain Layout
15922
15923 \series bold
15924
15925 \backslash
15926 raisebox
15927 \series default
15928  dient nur als Abstandhalter.
15929 \end_layout
15930
15931 \end_inset
15932
15933
15934 \end_layout
15935
15936 \end_inset
15937 </cell>
15938 </row>
15939 <row>
15940 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15941 \begin_inset Text
15942
15943 \begin_layout Plain Layout
15944
15945 \backslash
15946 prod^
15947 \backslash
15948 infty
15949 \begin_inset ERT
15950 status collapsed
15951
15952 \begin_layout Plain Layout
15953
15954
15955 \backslash
15956 leer 
15957 \end_layout
15958
15959 \end_inset
15960
15961
15962 \begin_inset Formula $\to$
15963 \end_inset
15964
15965 _0
15966 \begin_inset Formula $\to$
15967 \end_inset
15968
15969 A(x)
15970 \end_layout
15971
15972 \end_inset
15973 </cell>
15974 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15975 \begin_inset Text
15976
15977 \begin_layout Plain Layout
15978 \begin_inset Formula $\raisebox{5mm}{}\prod_{0}^{\infty}A(x)\raisebox{-2.5mm}{}$
15979 \end_inset
15980
15981
15982 \end_layout
15983
15984 \end_inset
15985 </cell>
15986 </row>
15987 </lyxtabular>
15988
15989 \end_inset
15990
15991
15992 \end_layout
15993
15994 \begin_layout Standard
15995 Bei einer Formel in einer Textzeile werden die Grenzen rechts neben den
15996  Operator gesetzt.
15997  In einer abgesetzten Formel werden, außer bei Integralen, die Grenzen über
15998  bzw.
15999 \begin_inset space \space{}
16000 \end_inset
16001
16002 unter den Operator gesetzt.
16003 \end_layout
16004
16005 \begin_layout Standard
16006 Um zu erzwingen, dass die Grenzen neben den Operator gesetzt werden, setzt
16007  man den Cursor direkt hinter den Operator und setzt über das Menü 
16008 \family sans
16009 Bearbeiten\SpecialChar \menuseparator
16010 Mathe\SpecialChar \menuseparator
16011 Art der Operatorgrenzen ändern
16012 \family default
16013  die Grenzen auf 
16014 \series bold
16015 Eingebettet
16016 \series default
16017  (Tastenkombination 
16018 \family sans
16019 Alt+M
16020 \begin_inset space ~
16021 \end_inset
16022
16023 L
16024 \family default
16025 ).
16026  Dazu folgendes Beispiel:
16027 \end_layout
16028
16029 \begin_layout Standard
16030 Die normalen Grenzen sehen so aus:
16031 \begin_inset Formula 
16032 \[
16033 \sum_{x=0}^{\infty}\frac{1}{x^{2}}
16034 \]
16035
16036 \end_inset
16037
16038 So sieht die Formel aus, wenn man die Grenzen neben das Summenzeichen setzt:
16039 \begin_inset Formula 
16040 \[
16041 \sum\nolimits _{x=0}^{\infty}\frac{1}{x^{2}}
16042 \]
16043
16044 \end_inset
16045
16046 Bei Integralen werden mit Ausnahme von denen, die auf 
16047 \series bold
16048 op
16049 \series default
16050  enden (
16051 \series bold
16052
16053 \backslash
16054 intop
16055 \series default
16056
16057 \series bold
16058
16059 \backslash
16060 ointop
16061 \series default
16062  usw.), die Grenzen standardmäßig neben den Operator gesetzt.
16063  Bei Mehrfachintegralen werden die Grenzen jedoch meistens unter den Operator
16064  gesetzt.
16065  Im folgenden Beispiel wurde die Grenze deswegen auf 
16066 \series bold
16067 Anzeige
16068 \series default
16069  gesetzt und damit unter die Integrale geschrieben:
16070 \begin_inset Formula 
16071 \begin{equation}
16072 \iiint\limits _{V}X\,\mathrm{d}V=U\label{eq:VolInt}
16073 \end{equation}
16074
16075 \end_inset
16076
16077
16078 \end_layout
16079
16080 \begin_layout Standard
16081 \begin_inset VSpace medskip
16082 \end_inset
16083
16084 Um Bedingungen für Grenzen anzugeben, gibt es die Befehle 
16085 \series bold
16086
16087 \backslash
16088 subarray
16089 \series default
16090
16091 \begin_inset Index idx
16092 status collapsed
16093
16094 \begin_layout Plain Layout
16095 Befehle ! S ! 
16096 \backslash
16097 subarray
16098 \end_layout
16099
16100 \end_inset
16101
16102  und 
16103 \series bold
16104
16105 \backslash
16106 substack
16107 \series default
16108
16109 \begin_inset Index idx
16110 status collapsed
16111
16112 \begin_layout Plain Layout
16113 Befehle ! S ! 
16114 \backslash
16115 substack
16116 \end_layout
16117
16118 \end_inset
16119
16120 .
16121  Um z.
16122 \begin_inset space \thinspace{}
16123 \end_inset
16124
16125 B.
16126  diesen Ausdruck 
16127 \begin_inset Formula 
16128 \begin{equation}
16129 \sum_{\begin{subarray}{c}
16130 0<k<1000\\
16131 \\
16132 k\,\in\,\mathbb{N}
16133 \end{subarray}}^{n}k^{-2}\label{eq:substack}
16134 \end{equation}
16135
16136 \end_inset
16137
16138 zu erstellen, muss man Folgendes tun:
16139 \begin_inset Newline newline
16140 \end_inset
16141
16142 Zuerst gibt man den Befehl 
16143 \series bold
16144
16145 \backslash
16146 sum
16147 \series default
16148 ^
16149 \series bold
16150 n
16151 \begin_inset ERT
16152 status collapsed
16153
16154 \begin_layout Plain Layout
16155
16156
16157 \backslash
16158 leer 
16159 \end_layout
16160
16161 \end_inset
16162
16163 _
16164 \series default
16165  ein.
16166  Man befindet sich nun in einem blauen Kästchen unter dem Summenzeichen.
16167  In dieses gibt man den Befehl 
16168 \series bold
16169
16170 \backslash
16171 subarray
16172 \begin_inset ERT
16173 status collapsed
16174
16175 \begin_layout Plain Layout
16176
16177
16178 \backslash
16179 leer 
16180 \end_layout
16181
16182 \end_inset
16183
16184
16185 \series default
16186  ein.
16187  Das blaue Kästchen hat nun eine lila Umrandung und man kann jetzt mehrere
16188  Zeilen untereinander schreiben.
16189  Mit Eingabe des Zeilenumbruchs (
16190 \family sans
16191 Strg+Enter
16192 \family default
16193 ) wird eine neue Zeile erstellt.
16194  Gibt man
16195 \begin_inset Newline newline
16196 \end_inset
16197
16198
16199 \series bold
16200 0<k<1000 Strg+Enter
16201 \begin_inset Newline newline
16202 \end_inset
16203
16204
16205 \series default
16206 ein, erscheint darunter ein Kästchen für die neue Zeile.
16207 \end_layout
16208
16209 \begin_layout Standard
16210 Die Ausrichtung der Zeilen kann mit der 
16211 \family sans
16212 Tabellen-Werkzeugleiste
16213 \family default
16214  oder dem Menü 
16215 \family sans
16216 Bearbeiten\SpecialChar \menuseparator
16217 Zeilen & Spalten
16218 \family default
16219  auf links geändert werden.
16220  Um rechts ausgerichtete Zeilen zu erhalten, wird am Anfang der Zeile 
16221 \series bold
16222
16223 \backslash
16224 hfill
16225 \begin_inset ERT
16226 status collapsed
16227
16228 \begin_layout Plain Layout
16229
16230
16231 \backslash
16232 leer 
16233 \end_layout
16234
16235 \end_inset
16236
16237
16238 \series default
16239  eingegeben.
16240 \end_layout
16241
16242 \begin_layout Standard
16243 Der Befehl 
16244 \series bold
16245
16246 \backslash
16247 substack
16248 \series default
16249  ist äquivalent zu 
16250 \series bold
16251
16252 \backslash
16253 subarray
16254 \series default
16255 , mit dem Unterschied dass die Zeilen immer zentriert ausgerichtet sind.
16256 \end_layout
16257
16258 \begin_layout Standard
16259 \begin_inset VSpace bigskip
16260 \end_inset
16261
16262 Wie bei Formel 
16263 \begin_inset CommandInset ref
16264 LatexCommand eqref
16265 reference "eq:substack"
16266
16267 \end_inset
16268
16269  kann es vorkommen, dass sich neben dem Operator zu viel Leerraum befindet,
16270  denn das dem Operator folgende Zeichen wird neben die Grenzen gesetzt.
16271 \end_layout
16272
16273 \begin_layout Standard
16274 Um das zu verhindern, kann man folgendes Makro in den LaTeX-Vorspann einfügen:
16275 \end_layout
16276
16277 \begin_layout Standard
16278
16279 \series bold
16280
16281 \backslash
16282 def
16283 \backslash
16284 clap#1{
16285 \backslash
16286 hbox to 0pt{
16287 \backslash
16288 hss #1
16289 \backslash
16290 hss}}
16291 \begin_inset Newline newline
16292 \end_inset
16293
16294
16295 \backslash
16296 def
16297 \backslash
16298 mathclap {
16299 \backslash
16300 mathpalette 
16301 \backslash
16302 mathclapinternal}
16303 \begin_inset Newline newline
16304 \end_inset
16305
16306
16307 \backslash
16308 def
16309 \backslash
16310 mathclapinternal #1#2{
16311 \backslash
16312 clap{$
16313 \backslash
16314 mathsurround =0pt #1{#2}$}}
16315 \end_layout
16316
16317 \begin_layout Standard
16318 Dadurch wird der Befehl 
16319 \series bold
16320
16321 \backslash
16322 mathclap
16323 \series default
16324
16325 \begin_inset Index idx
16326 status collapsed
16327
16328 \begin_layout Plain Layout
16329 Befehle ! M ! 
16330 \backslash
16331 mathclap
16332 \end_layout
16333
16334 \end_inset
16335
16336  definiert, der die Breite der Grenze auf 0
16337 \begin_inset space \thinspace{}
16338 \end_inset
16339
16340 pt setzt.
16341  Das Befehlsschema lautet
16342 \end_layout
16343
16344 \begin_layout Standard
16345
16346 \series bold
16347
16348 \backslash
16349 mathclap{Grenze}
16350 \end_layout
16351
16352 \begin_layout Standard
16353 wobei die Grenze auch aus mehreren Bedingungen bestehen kann.
16354 \end_layout
16355
16356 \begin_layout Standard
16357 Auf Formel 
16358 \begin_inset CommandInset ref
16359 LatexCommand eqref
16360 reference "eq:substack"
16361
16362 \end_inset
16363
16364  angewandt, gibt man also den Befehl
16365 \end_layout
16366
16367 \begin_layout Standard
16368
16369 \series bold
16370
16371 \backslash
16372 sum_
16373 \backslash
16374 mathclap{
16375 \backslash
16376 substack
16377 \begin_inset ERT
16378 status collapsed
16379
16380 \begin_layout Plain Layout
16381
16382
16383 \backslash
16384 leer 
16385 \end_layout
16386
16387 \end_inset
16388
16389 0<k<1000 Strg+Enter
16390 \end_layout
16391
16392 \begin_layout Standard
16393 ein, um die untere Grenze zu erstellen.
16394  Der Summand befindet sich nun direkt hinter dem Summenzeichen:
16395 \begin_inset Formula 
16396 \[
16397 \sum_{\mathclap{\substack{0<k<1000\\
16398 \\
16399 k\,\in\,\mathbb{N}
16400 }
16401 }}^{n}k^{-2}
16402 \]
16403
16404 \end_inset
16405
16406
16407 \end_layout
16408
16409 \begin_layout Standard
16410 \begin_inset VSpace bigskip
16411 \end_inset
16412
16413 In 
16414 \begin_inset CommandInset ref
16415 LatexCommand ref
16416 reference "sub:Selbstdefinierte-Operatoren"
16417
16418 \end_inset
16419
16420  ist beschrieben, wie man eine Grenze für mehrere Operatoren verwenden kann.
16421 \end_layout
16422
16423 \begin_layout Subsection
16424 Dekoration für Operatoren
16425 \begin_inset Index idx
16426 status collapsed
16427
16428 \begin_layout Plain Layout
16429 Operatoren ! Dekoration
16430 \end_layout
16431
16432 \end_inset
16433
16434
16435 \end_layout
16436
16437 \begin_layout Standard
16438 Zum Dekorieren von Operatoren gibt es die Befehle 
16439 \series bold
16440
16441 \backslash
16442 overset
16443 \series default
16444
16445 \begin_inset Index idx
16446 status collapsed
16447
16448 \begin_layout Plain Layout
16449 Befehle ! O ! 
16450 \backslash
16451 overset
16452 \end_layout
16453
16454 \end_inset
16455
16456  und 
16457 \series bold
16458
16459 \backslash
16460 underset
16461 \series default
16462
16463 \begin_inset Index idx
16464 status collapsed
16465
16466 \begin_layout Plain Layout
16467 Befehle ! U ! 
16468 \backslash
16469 underset
16470 \end_layout
16471
16472 \end_inset
16473
16474 , mit denen man Zeichen über bzw.
16475 \begin_inset space \space{}
16476 \end_inset
16477
16478 unter einen Operator setzen kann.
16479  Mit dem Befehl 
16480 \series bold
16481
16482 \backslash
16483 sideset
16484 \series default
16485
16486 \begin_inset Index idx
16487 status collapsed
16488
16489 \begin_layout Plain Layout
16490 Befehle ! S ! 
16491 \backslash
16492 sideset
16493 \end_layout
16494
16495 \end_inset
16496
16497  können Zeichen vor und nach einen großen Operator gesetzt werden.
16498  Das Befehlsschema lautet:
16499 \end_layout
16500
16501 \begin_layout Standard
16502
16503 \series bold
16504
16505 \backslash
16506 sideset{Zeichen
16507 \series default
16508  
16509 \series bold
16510 davor}{Zeichen
16511 \series default
16512  
16513 \series bold
16514 dahinter}
16515 \end_layout
16516
16517 \begin_layout Standard
16518
16519 \series bold
16520
16521 \backslash
16522 sideset
16523 \series default
16524  muss immer vor dem Operator stehen.
16525  Es kann auch mit mehreren Zeichen und sogar mit anderen Operatoren und
16526  Symbolen dekoriert werden.
16527  Will man mit 
16528 \series bold
16529
16530 \backslash
16531 sideset
16532 \series default
16533  z.
16534 \begin_inset space \thinspace{}
16535 \end_inset
16536
16537 B.
16538  nur Zeichen hinter einen großen Operator setzen, schreibt man nichts zwischen
16539  die ersten geschweiften Klammern, lässt die Klammern aber nicht weg.
16540 \end_layout
16541
16542 \begin_layout Standard
16543 Z.
16544 \begin_inset space \thinspace{}
16545 \end_inset
16546
16547 B.
16548  ergibt der Befehl 
16549 \series bold
16550
16551 \backslash
16552 sideset{
16553 \begin_inset Formula $\to$
16554 \end_inset
16555
16556
16557 \backslash
16558 {
16559 \series default
16560 '
16561 \series bold
16562
16563 \begin_inset Formula $\to$
16564 \end_inset
16565
16566
16567 \backslash
16568 sum_k=1
16569 \begin_inset ERT
16570 status collapsed
16571
16572 \begin_layout Plain Layout
16573
16574
16575 \backslash
16576 leer 
16577 \end_layout
16578
16579 \end_inset
16580
16581
16582 \series default
16583 ^
16584 \series bold
16585 n
16586 \series default
16587  :
16588 \begin_inset Formula 
16589 \[
16590 \sideset{}{'}\sum_{k=1}^{n}
16591 \]
16592
16593 \end_inset
16594
16595
16596 \end_layout
16597
16598 \begin_layout Standard
16599 \begin_inset Note Greyedout
16600 status open
16601
16602 \begin_layout Plain Layout
16603
16604 \series bold
16605 Achtung: 
16606 \backslash
16607 sideset
16608 \series default
16609  kann nur für die Dekoration von großen Operatoren verwendet werden, binäre
16610  Operatoren sind nicht erlaubt.
16611 \end_layout
16612
16613 \end_inset
16614
16615
16616 \end_layout
16617
16618 \begin_layout Standard
16619 Mit 
16620 \series bold
16621
16622 \backslash
16623 overset
16624 \series default
16625  bzw.
16626 \begin_inset space \space{}
16627 \end_inset
16628
16629
16630 \series bold
16631
16632 \backslash
16633 underset
16634 \series default
16635  kann man auch Symbole und Zeichen dekorieren.
16636  Beispielsweise ergibt der Befehl 
16637 \series bold
16638
16639 \backslash
16640 overset
16641 \begin_inset ERT
16642 status collapsed
16643
16644 \begin_layout Plain Layout
16645
16646
16647 \backslash
16648 leer 
16649 \end_layout
16650
16651 \end_inset
16652
16653
16654 \backslash
16655 maltese
16656 \begin_inset ERT
16657 status collapsed
16658
16659 \begin_layout Plain Layout
16660
16661
16662 \backslash
16663 leer 
16664 \end_layout
16665
16666 \end_inset
16667
16668
16669 \series default
16670
16671 \begin_inset Formula $\uparrow$
16672 \end_inset
16673
16674
16675 \series bold
16676 a
16677 \series default
16678  :
16679 \begin_inset Formula 
16680 \[
16681 \overset{a}{\maltese}
16682 \]
16683
16684 \end_inset
16685
16686
16687 \end_layout
16688
16689 \begin_layout Subsection
16690 Binäre Operatoren
16691 \begin_inset CommandInset label
16692 LatexCommand label
16693 name "sub:Binäre-Operatoren"
16694
16695 \end_inset
16696
16697
16698 \begin_inset Index idx
16699 status collapsed
16700
16701 \begin_layout Plain Layout
16702 Operatoren ! binäre
16703 \end_layout
16704
16705 \end_inset
16706
16707
16708 \end_layout
16709
16710 \begin_layout Standard
16711 Binäre Operatoren sind von Leerraum umgeben, wenn sich vor und hinter ihnen
16712  ein Zeichen befindet.
16713 \begin_inset VSpace medskip
16714 \end_inset
16715
16716
16717 \end_layout
16718
16719 \begin_layout Standard
16720 \begin_inset space \hfill{}
16721 \end_inset
16722
16723
16724 \begin_inset Tabular
16725 <lyxtabular version="3" rows="13" columns="2">
16726 <features rotate="0" tabularvalignment="middle">
16727 <column alignment="center" valignment="top" width="0pt">
16728 <column alignment="center" valignment="top" width="0pt">
16729 <row>
16730 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16731 \begin_inset Text
16732
16733 \begin_layout Plain Layout
16734 Befehl
16735 \begin_inset Note Note
16736 status collapsed
16737
16738 \begin_layout Plain Layout
16739
16740 \series bold
16741
16742 \backslash
16743 raisebox
16744 \series default
16745  dient nur als Abstandhalter.
16746 \end_layout
16747
16748 \end_inset
16749
16750
16751 \end_layout
16752
16753 \end_inset
16754 </cell>
16755 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16756 \begin_inset Text
16757
16758 \begin_layout Plain Layout
16759 Ergebnis
16760 \end_layout
16761
16762 \end_inset
16763 </cell>
16764 </row>
16765 <row>
16766 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16767 \begin_inset Text
16768
16769 \begin_layout Plain Layout
16770 +
16771 \end_layout
16772
16773 \end_inset
16774 </cell>
16775 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16776 \begin_inset Text
16777
16778 \begin_layout Plain Layout
16779 \begin_inset Formula $+$
16780 \end_inset
16781
16782
16783 \end_layout
16784
16785 \end_inset
16786 </cell>
16787 </row>
16788 <row>
16789 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16790 \begin_inset Text
16791
16792 \begin_layout Plain Layout
16793 -
16794 \end_layout
16795
16796 \end_inset
16797 </cell>
16798 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16799 \begin_inset Text
16800
16801 \begin_layout Plain Layout
16802 \begin_inset Formula $-$
16803 \end_inset
16804
16805
16806 \end_layout
16807
16808 \end_inset
16809 </cell>
16810 </row>
16811 <row>
16812 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16813 \begin_inset Text
16814
16815 \begin_layout Plain Layout
16816
16817 \backslash
16818 pm
16819 \end_layout
16820
16821 \end_inset
16822 </cell>
16823 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16824 \begin_inset Text
16825
16826 \begin_layout Plain Layout
16827 \begin_inset Formula $\pm$
16828 \end_inset
16829
16830
16831 \end_layout
16832
16833 \end_inset
16834 </cell>
16835 </row>
16836 <row>
16837 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16838 \begin_inset Text
16839
16840 \begin_layout Plain Layout
16841
16842 \backslash
16843 mp
16844 \end_layout
16845
16846 \end_inset
16847 </cell>
16848 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16849 \begin_inset Text
16850
16851 \begin_layout Plain Layout
16852 \begin_inset Formula $\mp$
16853 \end_inset
16854
16855
16856 \end_layout
16857
16858 \end_inset
16859 </cell>
16860 </row>
16861 <row>
16862 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16863 \begin_inset Text
16864
16865 \begin_layout Plain Layout
16866
16867 \backslash
16868 cdot
16869 \end_layout
16870
16871 \end_inset
16872 </cell>
16873 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16874 \begin_inset Text
16875
16876 \begin_layout Plain Layout
16877 \begin_inset Formula $\cdot$
16878 \end_inset
16879
16880
16881 \end_layout
16882
16883 \end_inset
16884 </cell>
16885 </row>
16886 <row>
16887 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16888 \begin_inset Text
16889
16890 \begin_layout Plain Layout
16891
16892 \backslash
16893 times
16894 \end_layout
16895
16896 \end_inset
16897 </cell>
16898 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16899 \begin_inset Text
16900
16901 \begin_layout Plain Layout
16902 \begin_inset Formula $\times$
16903 \end_inset
16904
16905
16906 \end_layout
16907
16908 \end_inset
16909 </cell>
16910 </row>
16911 <row>
16912 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16913 \begin_inset Text
16914
16915 \begin_layout Plain Layout
16916
16917 \backslash
16918 div
16919 \end_layout
16920
16921 \end_inset
16922 </cell>
16923 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16924 \begin_inset Text
16925
16926 \begin_layout Plain Layout
16927 \begin_inset Formula $\div$
16928 \end_inset
16929
16930
16931 \end_layout
16932
16933 \end_inset
16934 </cell>
16935 </row>
16936 <row>
16937 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16938 \begin_inset Text
16939
16940 \begin_layout Plain Layout
16941 \begin_inset ERT
16942 status collapsed
16943
16944 \begin_layout Plain Layout
16945
16946
16947 \backslash
16948 raisebox{-1.2mm}{
16949 \end_layout
16950
16951 \end_inset
16952
16953 *
16954 \begin_inset ERT
16955 status collapsed
16956
16957 \begin_layout Plain Layout
16958
16959 }
16960 \end_layout
16961
16962 \end_inset
16963
16964
16965 \end_layout
16966
16967 \end_inset
16968 </cell>
16969 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16970 \begin_inset Text
16971
16972 \begin_layout Plain Layout
16973 \begin_inset Formula $*$
16974 \end_inset
16975
16976
16977 \end_layout
16978
16979 \end_inset
16980 </cell>
16981 </row>
16982 <row>
16983 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16984 \begin_inset Text
16985
16986 \begin_layout Plain Layout
16987
16988 \backslash
16989 star
16990 \end_layout
16991
16992 \end_inset
16993 </cell>
16994 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16995 \begin_inset Text
16996
16997 \begin_layout Plain Layout
16998 \begin_inset Formula $\star$
16999 \end_inset
17000
17001
17002 \end_layout
17003
17004 \end_inset
17005 </cell>
17006 </row>
17007 <row>
17008 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17009 \begin_inset Text
17010
17011 \begin_layout Plain Layout
17012
17013 \backslash
17014 circ
17015 \end_layout
17016
17017 \end_inset
17018 </cell>
17019 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17020 \begin_inset Text
17021
17022 \begin_layout Plain Layout
17023 \begin_inset Formula $\circ$
17024 \end_inset
17025
17026
17027 \end_layout
17028
17029 \end_inset
17030 </cell>
17031 </row>
17032 <row>
17033 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17034 \begin_inset Text
17035
17036 \begin_layout Plain Layout
17037
17038 \backslash
17039 diamond
17040 \end_layout
17041
17042 \end_inset
17043 </cell>
17044 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17045 \begin_inset Text
17046
17047 \begin_layout Plain Layout
17048 \begin_inset Formula $\diamond$
17049 \end_inset
17050
17051
17052 \end_layout
17053
17054 \end_inset
17055 </cell>
17056 </row>
17057 <row>
17058 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17059 \begin_inset Text
17060
17061 \begin_layout Plain Layout
17062
17063 \backslash
17064 bullet
17065 \end_layout
17066
17067 \end_inset
17068 </cell>
17069 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17070 \begin_inset Text
17071
17072 \begin_layout Plain Layout
17073 \begin_inset Formula $\bullet$
17074 \end_inset
17075
17076
17077 \end_layout
17078
17079 \end_inset
17080 </cell>
17081 </row>
17082 </lyxtabular>
17083
17084 \end_inset
17085
17086
17087 \begin_inset space \hfill{}
17088 \end_inset
17089
17090
17091 \begin_inset Tabular
17092 <lyxtabular version="3" rows="13" columns="2">
17093 <features rotate="0" tabularvalignment="middle">
17094 <column alignment="center" valignment="top" width="0pt">
17095 <column alignment="center" valignment="top" width="0pt">
17096 <row>
17097 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17098 \begin_inset Text
17099
17100 \begin_layout Plain Layout
17101 Befehl
17102 \end_layout
17103
17104 \end_inset
17105 </cell>
17106 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17107 \begin_inset Text
17108
17109 \begin_layout Plain Layout
17110 Ergebnis
17111 \end_layout
17112
17113 \end_inset
17114 </cell>
17115 </row>
17116 <row>
17117 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17118 \begin_inset Text
17119
17120 \begin_layout Plain Layout
17121
17122 \backslash
17123 nabla
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 $\nabla$
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 \backslash
17148 bigtriangledown
17149 \end_layout
17150
17151 \end_inset
17152 </cell>
17153 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17154 \begin_inset Text
17155
17156 \begin_layout Plain Layout
17157 \begin_inset Formula $\bigtriangledown$
17158 \end_inset
17159
17160
17161 \end_layout
17162
17163 \end_inset
17164 </cell>
17165 </row>
17166 <row>
17167 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17168 \begin_inset Text
17169
17170 \begin_layout Plain Layout
17171
17172 \backslash
17173 bigtriangleup
17174 \end_layout
17175
17176 \end_inset
17177 </cell>
17178 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17179 \begin_inset Text
17180
17181 \begin_layout Plain Layout
17182 \begin_inset Formula $\bigtriangleup$
17183 \end_inset
17184
17185
17186 \end_layout
17187
17188 \end_inset
17189 </cell>
17190 </row>
17191 <row>
17192 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17193 \begin_inset Text
17194
17195 \begin_layout Plain Layout
17196
17197 \backslash
17198 Box
17199 \end_layout
17200
17201 \end_inset
17202 </cell>
17203 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17204 \begin_inset Text
17205
17206 \begin_layout Plain Layout
17207 \begin_inset Formula $\Box$
17208 \end_inset
17209
17210
17211 \end_layout
17212
17213 \end_inset
17214 </cell>
17215 </row>
17216 <row>
17217 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17218 \begin_inset Text
17219
17220 \begin_layout Plain Layout
17221
17222 \backslash
17223 cap 
17224 \end_layout
17225
17226 \end_inset
17227 </cell>
17228 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17229 \begin_inset Text
17230
17231 \begin_layout Plain Layout
17232 \begin_inset Formula $\cap$
17233 \end_inset
17234
17235
17236 \end_layout
17237
17238 \end_inset
17239 </cell>
17240 </row>
17241 <row>
17242 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17243 \begin_inset Text
17244
17245 \begin_layout Plain Layout
17246
17247 \backslash
17248 cup
17249 \end_layout
17250
17251 \end_inset
17252 </cell>
17253 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17254 \begin_inset Text
17255
17256 \begin_layout Plain Layout
17257 \begin_inset Formula $\cup$
17258 \end_inset
17259
17260
17261 \end_layout
17262
17263 \end_inset
17264 </cell>
17265 </row>
17266 <row>
17267 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17268 \begin_inset Text
17269
17270 \begin_layout Plain Layout
17271
17272 \backslash
17273 dagger
17274 \end_layout
17275
17276 \end_inset
17277 </cell>
17278 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17279 \begin_inset Text
17280
17281 \begin_layout Plain Layout
17282 \begin_inset Formula $\dagger$
17283 \end_inset
17284
17285
17286 \end_layout
17287
17288 \end_inset
17289 </cell>
17290 </row>
17291 <row>
17292 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17293 \begin_inset Text
17294
17295 \begin_layout Plain Layout
17296
17297 \backslash
17298 ddagger
17299 \end_layout
17300
17301 \end_inset
17302 </cell>
17303 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17304 \begin_inset Text
17305
17306 \begin_layout Plain Layout
17307 \begin_inset Formula $\ddagger$
17308 \end_inset
17309
17310
17311 \end_layout
17312
17313 \end_inset
17314 </cell>
17315 </row>
17316 <row>
17317 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17318 \begin_inset Text
17319
17320 \begin_layout Plain Layout
17321
17322 \backslash
17323 wr
17324 \end_layout
17325
17326 \end_inset
17327 </cell>
17328 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17329 \begin_inset Text
17330
17331 \begin_layout Plain Layout
17332 \begin_inset Formula $\wr$
17333 \end_inset
17334
17335
17336 \end_layout
17337
17338 \end_inset
17339 </cell>
17340 </row>
17341 <row>
17342 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17343 \begin_inset Text
17344
17345 \begin_layout Plain Layout
17346
17347 \backslash
17348 bigcirc
17349 \end_layout
17350
17351 \end_inset
17352 </cell>
17353 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17354 \begin_inset Text
17355
17356 \begin_layout Plain Layout
17357 \begin_inset Formula $\bigcirc$
17358 \end_inset
17359
17360
17361 \end_layout
17362
17363 \end_inset
17364 </cell>
17365 </row>
17366 <row>
17367 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17368 \begin_inset Text
17369
17370 \begin_layout Plain Layout
17371
17372 \backslash
17373 wedge
17374 \end_layout
17375
17376 \end_inset
17377 </cell>
17378 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17379 \begin_inset Text
17380
17381 \begin_layout Plain Layout
17382 \begin_inset Formula $\wedge$
17383 \end_inset
17384
17385
17386 \end_layout
17387
17388 \end_inset
17389 </cell>
17390 </row>
17391 <row>
17392 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17393 \begin_inset Text
17394
17395 \begin_layout Plain Layout
17396
17397 \backslash
17398 vee
17399 \end_layout
17400
17401 \end_inset
17402 </cell>
17403 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17404 \begin_inset Text
17405
17406 \begin_layout Plain Layout
17407 \begin_inset Formula $\vee$
17408 \end_inset
17409
17410
17411 \end_layout
17412
17413 \end_inset
17414 </cell>
17415 </row>
17416 </lyxtabular>
17417
17418 \end_inset
17419
17420
17421 \begin_inset space \hfill{}
17422 \end_inset
17423
17424
17425 \begin_inset Tabular
17426 <lyxtabular version="3" rows="13" columns="2">
17427 <features rotate="0" tabularvalignment="middle">
17428 <column alignment="center" valignment="top" width="0pt">
17429 <column alignment="center" valignment="top" width="0pt">
17430 <row>
17431 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17432 \begin_inset Text
17433
17434 \begin_layout Plain Layout
17435 Befehl
17436 \end_layout
17437
17438 \end_inset
17439 </cell>
17440 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17441 \begin_inset Text
17442
17443 \begin_layout Plain Layout
17444 Ergebnis
17445 \end_layout
17446
17447 \end_inset
17448 </cell>
17449 </row>
17450 <row>
17451 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17452 \begin_inset Text
17453
17454 \begin_layout Plain Layout
17455
17456 \backslash
17457 oplus
17458 \end_layout
17459
17460 \end_inset
17461 </cell>
17462 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17463 \begin_inset Text
17464
17465 \begin_layout Plain Layout
17466 \begin_inset Formula $\oplus$
17467 \end_inset
17468
17469
17470 \end_layout
17471
17472 \end_inset
17473 </cell>
17474 </row>
17475 <row>
17476 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17477 \begin_inset Text
17478
17479 \begin_layout Plain Layout
17480
17481 \backslash
17482 ominus
17483 \end_layout
17484
17485 \end_inset
17486 </cell>
17487 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17488 \begin_inset Text
17489
17490 \begin_layout Plain Layout
17491 \begin_inset Formula $\ominus$
17492 \end_inset
17493
17494
17495 \end_layout
17496
17497 \end_inset
17498 </cell>
17499 </row>
17500 <row>
17501 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17502 \begin_inset Text
17503
17504 \begin_layout Plain Layout
17505
17506 \backslash
17507 otimes
17508 \end_layout
17509
17510 \end_inset
17511 </cell>
17512 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17513 \begin_inset Text
17514
17515 \begin_layout Plain Layout
17516 \begin_inset Formula $\otimes$
17517 \end_inset
17518
17519
17520 \end_layout
17521
17522 \end_inset
17523 </cell>
17524 </row>
17525 <row>
17526 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17527 \begin_inset Text
17528
17529 \begin_layout Plain Layout
17530
17531 \backslash
17532 oslash
17533 \end_layout
17534
17535 \end_inset
17536 </cell>
17537 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17538 \begin_inset Text
17539
17540 \begin_layout Plain Layout
17541 \begin_inset Formula $\oslash$
17542 \end_inset
17543
17544
17545 \end_layout
17546
17547 \end_inset
17548 </cell>
17549 </row>
17550 <row>
17551 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17552 \begin_inset Text
17553
17554 \begin_layout Plain Layout
17555
17556 \backslash
17557 odot
17558 \end_layout
17559
17560 \end_inset
17561 </cell>
17562 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17563 \begin_inset Text
17564
17565 \begin_layout Plain Layout
17566 \begin_inset Formula $\odot$
17567 \end_inset
17568
17569
17570 \end_layout
17571
17572 \end_inset
17573 </cell>
17574 </row>
17575 <row>
17576 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17577 \begin_inset Text
17578
17579 \begin_layout Plain Layout
17580
17581 \backslash
17582 amalg
17583 \end_layout
17584
17585 \end_inset
17586 </cell>
17587 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17588 \begin_inset Text
17589
17590 \begin_layout Plain Layout
17591 \begin_inset Formula $\amalg$
17592 \end_inset
17593
17594
17595 \end_layout
17596
17597 \end_inset
17598 </cell>
17599 </row>
17600 <row>
17601 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17602 \begin_inset Text
17603
17604 \begin_layout Plain Layout
17605
17606 \backslash
17607 uplus
17608 \end_layout
17609
17610 \end_inset
17611 </cell>
17612 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17613 \begin_inset Text
17614
17615 \begin_layout Plain Layout
17616 \begin_inset Formula $\uplus$
17617 \end_inset
17618
17619
17620 \end_layout
17621
17622 \end_inset
17623 </cell>
17624 </row>
17625 <row>
17626 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17627 \begin_inset Text
17628
17629 \begin_layout Plain Layout
17630
17631 \backslash
17632 setminus
17633 \end_layout
17634
17635 \end_inset
17636 </cell>
17637 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17638 \begin_inset Text
17639
17640 \begin_layout Plain Layout
17641 \begin_inset Formula $\setminus$
17642 \end_inset
17643
17644
17645 \end_layout
17646
17647 \end_inset
17648 </cell>
17649 </row>
17650 <row>
17651 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17652 \begin_inset Text
17653
17654 \begin_layout Plain Layout
17655
17656 \backslash
17657 sqcap
17658 \end_layout
17659
17660 \end_inset
17661 </cell>
17662 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17663 \begin_inset Text
17664
17665 \begin_layout Plain Layout
17666 \begin_inset Formula $\sqcap$
17667 \end_inset
17668
17669
17670 \end_layout
17671
17672 \end_inset
17673 </cell>
17674 </row>
17675 <row>
17676 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17677 \begin_inset Text
17678
17679 \begin_layout Plain Layout
17680
17681 \backslash
17682 sqcup
17683 \end_layout
17684
17685 \end_inset
17686 </cell>
17687 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17688 \begin_inset Text
17689
17690 \begin_layout Plain Layout
17691 \begin_inset Formula $\sqcup$
17692 \end_inset
17693
17694
17695 \end_layout
17696
17697 \end_inset
17698 </cell>
17699 </row>
17700 <row>
17701 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17702 \begin_inset Text
17703
17704 \begin_layout Plain Layout
17705
17706 \backslash
17707 triangleleft
17708 \end_layout
17709
17710 \end_inset
17711 </cell>
17712 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17713 \begin_inset Text
17714
17715 \begin_layout Plain Layout
17716 \begin_inset Formula $\triangleleft$
17717 \end_inset
17718
17719
17720 \end_layout
17721
17722 \end_inset
17723 </cell>
17724 </row>
17725 <row>
17726 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17727 \begin_inset Text
17728
17729 \begin_layout Plain Layout
17730
17731 \backslash
17732 triangleright
17733 \end_layout
17734
17735 \end_inset
17736 </cell>
17737 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17738 \begin_inset Text
17739
17740 \begin_layout Plain Layout
17741 \begin_inset Formula $\triangleright$
17742 \end_inset
17743
17744
17745 \end_layout
17746
17747 \end_inset
17748 </cell>
17749 </row>
17750 </lyxtabular>
17751
17752 \end_inset
17753
17754
17755 \begin_inset space \hfill{}
17756 \end_inset
17757
17758
17759 \end_layout
17760
17761 \begin_layout Standard
17762 Alle binären Operatoren können auch über den Mathe-Werkzeugleistenknopf
17763  
17764 \begin_inset Graphics
17765         filename ../../images/math/pm.png
17766         scale 85
17767
17768 \end_inset
17769
17770  eingefügt werden.
17771 \end_layout
17772
17773 \begin_layout Standard
17774 Um den Laplace-Operator darzustellen, kann man statt 
17775 \series bold
17776
17777 \backslash
17778 bigtriangleup
17779 \series default
17780  auch 
17781 \series bold
17782
17783 \backslash
17784 Delta
17785 \series default
17786  verwenden oder man benutzt 
17787 \series bold
17788
17789 \backslash
17790 nabla
17791 \series default
17792 ^
17793 \series bold
17794 2
17795 \series default
17796  (
17797 \begin_inset Formula $\nabla^{2}$
17798 \end_inset
17799
17800 ).
17801 \end_layout
17802
17803 \begin_layout Standard
17804 Das Zeichen 
17805 \family sans
17806 Menütrenner
17807 \family default
17808  im Menü 
17809 \family sans
17810 Einfügen\SpecialChar \menuseparator
17811 Sonderzeichen
17812 \family default
17813  ist der Operator 
17814 \series bold
17815
17816 \backslash
17817 triangleright
17818 \series default
17819 .
17820 \end_layout
17821
17822 \begin_layout Subsection
17823 Selbst definierte Operatoren
17824 \begin_inset CommandInset label
17825 LatexCommand label
17826 name "sub:Selbstdefinierte-Operatoren"
17827
17828 \end_inset
17829
17830
17831 \begin_inset Index idx
17832 status collapsed
17833
17834 \begin_layout Plain Layout
17835 Operatoren ! selbstdefinierte
17836 \end_layout
17837
17838 \end_inset
17839
17840
17841 \end_layout
17842
17843 \begin_layout Standard
17844 Mit Hilfe des Befehls 
17845 \series bold
17846
17847 \backslash
17848 DeclareMathOperator
17849 \series default
17850
17851 \begin_inset Index idx
17852 status collapsed
17853
17854 \begin_layout Plain Layout
17855 Befehle ! D ! 
17856 \backslash
17857 dbinom@
17858 \backslash
17859 DeclareMathOperator
17860 \end_layout
17861
17862 \end_inset
17863
17864  kann man im LaTeX-Vorspann eigene Operatoren definieren.
17865  Das Befehlsschema dazu lautet:
17866 \end_layout
17867
17868 \begin_layout Standard
17869
17870 \series bold
17871
17872 \backslash
17873 DeclareMathOperator{neuer Befehl}{Anzeige}
17874 \end_layout
17875
17876 \begin_layout Standard
17877 Anzeige können Zeichen und Symbole sein, die festlegen, wie der Operator
17878  im Ausdruck aussieht.
17879  Will man einen großen Operator definieren, setzt man hinter den Befehl
17880  ein 
17881 \series bold
17882 *
17883 \series default
17884 .
17885  Zu allen selbst definierten großen Operatoren kann man Grenzen angeben,
17886  wie in 
17887 \begin_inset CommandInset ref
17888 LatexCommand ref
17889 reference "sub:Operatorgrenzen"
17890
17891 \end_inset
17892
17893  beschrieben.
17894 \end_layout
17895
17896 \begin_layout Standard
17897 Beispielsweise definiert die LaTeX-Vorspannzeile
17898 \end_layout
17899
17900 \begin_layout Standard
17901
17902 \series bold
17903
17904 \backslash
17905 DeclareMathOperator*{
17906 \backslash
17907 Raute}{
17908 \backslash
17909 blacklozenge}
17910 \end_layout
17911
17912 \begin_layout Standard
17913 den Befehl 
17914 \series bold
17915
17916 \backslash
17917 Raute
17918 \series default
17919 , mit dem man einen großen Operator aufrufen kann, der aus dem Raute Symbol
17920  aus 
17921 \begin_inset CommandInset ref
17922 LatexCommand ref
17923 reference "sub:Sonstige-Symbole"
17924
17925 \end_inset
17926
17927  besteht:
17928 \begin_inset Formula 
17929 \[
17930 \Raute_{n=1}^{\infty}
17931 \]
17932
17933 \end_inset
17934
17935 Der Befehl für diese Formel lautet: 
17936 \series bold
17937
17938 \backslash
17939 Raute
17940 \series default
17941 ^
17942 \series bold
17943
17944 \backslash
17945 infty
17946 \begin_inset Formula $\to$
17947 \end_inset
17948
17949 _n=1
17950 \end_layout
17951
17952 \begin_layout Standard
17953 \begin_inset VSpace bigskip
17954 \end_inset
17955
17956 Benötigt man eigene Operatoren nicht mehrfach im Dokument, kann man diese
17957  auch mit den Befehlen 
17958 \series bold
17959
17960 \backslash
17961 mathop
17962 \series default
17963
17964 \begin_inset Index idx
17965 status collapsed
17966
17967 \begin_layout Plain Layout
17968 Befehle ! M ! 
17969 \backslash
17970 mathop
17971 \end_layout
17972
17973 \end_inset
17974
17975  und 
17976 \series bold
17977
17978 \backslash
17979 mathbin
17980 \series default
17981
17982 \begin_inset Index idx
17983 status collapsed
17984
17985 \begin_layout Plain Layout
17986 Befehle ! M ! 
17987 \backslash
17988 mathbin
17989 \end_layout
17990
17991 \end_inset
17992
17993  definieren, die folgendes Schema besitzen:
17994 \end_layout
17995
17996 \begin_layout Standard
17997
17998 \series bold
17999
18000 \backslash
18001 mathop{Anzeige}
18002 \series default
18003  bzw.
18004 \begin_inset space \space{}
18005 \end_inset
18006
18007
18008 \series bold
18009
18010 \backslash
18011 mathbin{Anzeige}
18012 \end_layout
18013
18014 \begin_layout Standard
18015
18016 \series bold
18017
18018 \backslash
18019 mathop
18020 \series default
18021  definiert große, 
18022 \series bold
18023
18024 \backslash
18025 mathbin
18026 \series default
18027  binäre Operatoren.
18028 \end_layout
18029
18030 \begin_layout Standard
18031
18032 \series bold
18033
18034 \backslash
18035 mathop
18036 \series default
18037  lässt sich z.
18038 \begin_inset space \thinspace{}
18039 \end_inset
18040
18041 B.
18042  nutzen, um eine Grenze für mehrere Operatoren zu verwenden:
18043 \begin_inset Formula 
18044 \[
18045 \mathop{\sum\negmedspace\sum}_{i,j=1}^{N}
18046 \]
18047
18048 \end_inset
18049
18050
18051 \end_layout
18052
18053 \begin_layout Standard
18054 Der Befehl für obige Formel lautet:
18055 \begin_inset Newline newline
18056 \end_inset
18057
18058  
18059 \series bold
18060
18061 \backslash
18062 mathop{
18063 \backslash
18064 sum
18065 \backslash
18066 negmedspace
18067 \backslash
18068 sum
18069 \series default
18070
18071 \begin_inset ERT
18072 status collapsed
18073
18074 \begin_layout Plain Layout
18075
18076
18077 \backslash
18078 leer 
18079 \end_layout
18080
18081 \end_inset
18082
18083
18084 \series bold
18085
18086 \begin_inset Formula $\to$
18087 \end_inset
18088
18089 ^N
18090 \series default
18091
18092 \begin_inset ERT
18093 status collapsed
18094
18095 \begin_layout Plain Layout
18096
18097
18098 \backslash
18099 leer 
18100 \end_layout
18101
18102 \end_inset
18103
18104
18105 \series bold
18106 _i,j=1
18107 \end_layout
18108
18109 \begin_layout Standard
18110 \begin_inset Newpage newpage
18111 \end_inset
18112
18113
18114 \end_layout
18115
18116 \begin_layout Section
18117 Schriften
18118 \begin_inset Index idx
18119 status collapsed
18120
18121 \begin_layout Plain Layout
18122 Schriften
18123 \end_layout
18124
18125 \end_inset
18126
18127
18128 \end_layout
18129
18130 \begin_layout Subsection
18131 Schriftstile
18132 \begin_inset CommandInset label
18133 LatexCommand label
18134 name "sub:Schriftstile"
18135
18136 \end_inset
18137
18138
18139 \begin_inset Index idx
18140 status collapsed
18141
18142 \begin_layout Plain Layout
18143 Schriften ! Schriftstile
18144 \end_layout
18145
18146 \end_inset
18147
18148
18149 \end_layout
18150
18151 \begin_layout Standard
18152 Lateinische Buchstaben in einer Formel können in folgenden Schriftstilen
18153  gesetzt werden:
18154 \begin_inset VSpace -2mm
18155 \end_inset
18156
18157
18158 \end_layout
18159
18160 \begin_layout Standard
18161 \align center
18162 \begin_inset Tabular
18163 <lyxtabular version="3" rows="7" columns="3">
18164 <features rotate="0" tabularvalignment="middle">
18165 <column alignment="center" valignment="top">
18166 <column alignment="center" valignment="top">
18167 <column alignment="center" valignment="top">
18168 <row>
18169 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18170 \begin_inset Text
18171
18172 \begin_layout Plain Layout
18173 Befehl
18174 \end_layout
18175
18176 \end_inset
18177 </cell>
18178 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18179 \begin_inset Text
18180
18181 \begin_layout Plain Layout
18182 Ergebnis
18183 \end_layout
18184
18185 \end_inset
18186 </cell>
18187 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
18188 \begin_inset Text
18189
18190 \begin_layout Plain Layout
18191 Tastenkürzel
18192 \end_layout
18193
18194 \end_inset
18195 </cell>
18196 </row>
18197 <row>
18198 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18199 \begin_inset Text
18200
18201 \begin_layout Plain Layout
18202
18203 \backslash
18204 mathbb
18205 \series bold
18206
18207 \begin_inset ERT
18208 status collapsed
18209
18210 \begin_layout Plain Layout
18211
18212
18213 \backslash
18214 leer 
18215 \end_layout
18216
18217 \end_inset
18218
18219
18220 \series default
18221 ABC
18222 \end_layout
18223
18224 \end_inset
18225 </cell>
18226 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18227 \begin_inset Text
18228
18229 \begin_layout Plain Layout
18230 \begin_inset Formula $\mathbb{ABC}$
18231 \end_inset
18232
18233
18234 \end_layout
18235
18236 \end_inset
18237 </cell>
18238 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18239 \begin_inset Text
18240
18241 \begin_layout Plain Layout
18242 Alt+Z K
18243 \end_layout
18244
18245 \end_inset
18246 </cell>
18247 </row>
18248 <row>
18249 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18250 \begin_inset Text
18251
18252 \begin_layout Plain Layout
18253
18254 \backslash
18255 mathbf
18256 \series bold
18257
18258 \begin_inset ERT
18259 status collapsed
18260
18261 \begin_layout Plain Layout
18262
18263
18264 \backslash
18265 leer 
18266 \end_layout
18267
18268 \end_inset
18269
18270
18271 \series default
18272 AbC
18273 \end_layout
18274
18275 \end_inset
18276 </cell>
18277 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18278 \begin_inset Text
18279
18280 \begin_layout Plain Layout
18281 \begin_inset Formula $\mathbf{AbC}$
18282 \end_inset
18283
18284
18285 \end_layout
18286
18287 \end_inset
18288 </cell>
18289 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18290 \begin_inset Text
18291
18292 \begin_layout Plain Layout
18293 Strg+B
18294 \end_layout
18295
18296 \end_inset
18297 </cell>
18298 </row>
18299 <row>
18300 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18301 \begin_inset Text
18302
18303 \begin_layout Plain Layout
18304
18305 \backslash
18306 boldsymbol
18307 \series bold
18308
18309 \begin_inset ERT
18310 status collapsed
18311
18312 \begin_layout Plain Layout
18313
18314
18315 \backslash
18316 leer 
18317 \end_layout
18318
18319 \end_inset
18320
18321
18322 \series default
18323 AbC
18324 \end_layout
18325
18326 \end_inset
18327 </cell>
18328 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18329 \begin_inset Text
18330
18331 \begin_layout Plain Layout
18332 \begin_inset Formula $\boldsymbol{AbC}$
18333 \end_inset
18334
18335
18336 \end_layout
18337
18338 \end_inset
18339 </cell>
18340 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18341 \begin_inset Text
18342
18343 \begin_layout Plain Layout
18344 Alt+Z F oder Strg+Alt+B
18345 \end_layout
18346
18347 \end_inset
18348 </cell>
18349 </row>
18350 <row>
18351 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18352 \begin_inset Text
18353
18354 \begin_layout Plain Layout
18355
18356 \backslash
18357 mathcal
18358 \series bold
18359
18360 \begin_inset ERT
18361 status collapsed
18362
18363 \begin_layout Plain Layout
18364
18365
18366 \backslash
18367 leer 
18368 \end_layout
18369
18370 \end_inset
18371
18372
18373 \series default
18374 ABC
18375 \end_layout
18376
18377 \end_inset
18378 </cell>
18379 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18380 \begin_inset Text
18381
18382 \begin_layout Plain Layout
18383 \begin_inset Formula $\mathcal{ABC}$
18384 \end_inset
18385
18386
18387 \end_layout
18388
18389 \end_inset
18390 </cell>
18391 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18392 \begin_inset Text
18393
18394 \begin_layout Plain Layout
18395 Alt+Z H
18396 \end_layout
18397
18398 \end_inset
18399 </cell>
18400 </row>
18401 <row>
18402 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18403 \begin_inset Text
18404
18405 \begin_layout Plain Layout
18406
18407 \backslash
18408 mathfrak
18409 \series bold
18410
18411 \begin_inset ERT
18412 status collapsed
18413
18414 \begin_layout Plain Layout
18415
18416
18417 \backslash
18418 leer 
18419 \end_layout
18420
18421 \end_inset
18422
18423
18424 \series default
18425 AbC
18426 \end_layout
18427
18428 \end_inset
18429 </cell>
18430 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18431 \begin_inset Text
18432
18433 \begin_layout Plain Layout
18434 \begin_inset Formula $\mathfrak{AbC}$
18435 \end_inset
18436
18437
18438 \end_layout
18439
18440 \end_inset
18441 </cell>
18442 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18443 \begin_inset Text
18444
18445 \begin_layout Plain Layout
18446 -
18447 \end_layout
18448
18449 \end_inset
18450 </cell>
18451 </row>
18452 <row>
18453 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18454 \begin_inset Text
18455
18456 \begin_layout Plain Layout
18457
18458 \backslash
18459 mathscr
18460 \series bold
18461
18462 \begin_inset ERT
18463 status collapsed
18464
18465 \begin_layout Plain Layout
18466
18467
18468 \backslash
18469 leer 
18470 \end_layout
18471
18472 \end_inset
18473
18474
18475 \series default
18476 AbC
18477 \end_layout
18478
18479 \end_inset
18480 </cell>
18481 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18482 \begin_inset Text
18483
18484 \begin_layout Plain Layout
18485 \begin_inset Formula $\mathscr{AbC}$
18486 \end_inset
18487
18488
18489 \end_layout
18490
18491 \end_inset
18492 </cell>
18493 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
18494 \begin_inset Text
18495
18496 \begin_layout Plain Layout
18497 -
18498 \end_layout
18499
18500 \end_inset
18501 </cell>
18502 </row>
18503 </lyxtabular>
18504
18505 \end_inset
18506
18507
18508 \end_layout
18509
18510 \begin_layout Standard
18511 \align center
18512 \begin_inset Tabular
18513 <lyxtabular version="3" rows="5" columns="3">
18514 <features rotate="0" tabularvalignment="middle">
18515 <column alignment="center" valignment="top">
18516 <column alignment="center" valignment="top">
18517 <column alignment="center" valignment="top">
18518 <row>
18519 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18520 \begin_inset Text
18521
18522 \begin_layout Plain Layout
18523 Befehl
18524 \end_layout
18525
18526 \end_inset
18527 </cell>
18528 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18529 \begin_inset Text
18530
18531 \begin_layout Plain Layout
18532 Ergebnis
18533 \end_layout
18534
18535 \end_inset
18536 </cell>
18537 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
18538 \begin_inset Text
18539
18540 \begin_layout Plain Layout
18541 Tastenkürzel
18542 \end_layout
18543
18544 \end_inset
18545 </cell>
18546 </row>
18547 <row>
18548 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18549 \begin_inset Text
18550
18551 \begin_layout Plain Layout
18552
18553 \backslash
18554 mathit
18555 \series bold
18556
18557 \begin_inset ERT
18558 status collapsed
18559
18560 \begin_layout Plain Layout
18561
18562
18563 \backslash
18564 leer 
18565 \end_layout
18566
18567 \end_inset
18568
18569
18570 \series default
18571 AbC
18572 \end_layout
18573
18574 \end_inset
18575 </cell>
18576 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18577 \begin_inset Text
18578
18579 \begin_layout Plain Layout
18580 \begin_inset Formula $\mathit{AbC}$
18581 \end_inset
18582
18583
18584 \end_layout
18585
18586 \end_inset
18587 </cell>
18588 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18589 \begin_inset Text
18590
18591 \begin_layout Plain Layout
18592 -
18593 \end_layout
18594
18595 \end_inset
18596 </cell>
18597 </row>
18598 <row>
18599 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18600 \begin_inset Text
18601
18602 \begin_layout Plain Layout
18603
18604 \backslash
18605 mathrm
18606 \series bold
18607
18608 \begin_inset ERT
18609 status collapsed
18610
18611 \begin_layout Plain Layout
18612
18613
18614 \backslash
18615 leer 
18616 \end_layout
18617
18618 \end_inset
18619
18620
18621 \series default
18622 AbC
18623 \end_layout
18624
18625 \end_inset
18626 </cell>
18627 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18628 \begin_inset Text
18629
18630 \begin_layout Plain Layout
18631 \begin_inset Formula $\mathrm{AbC}$
18632 \end_inset
18633
18634
18635 \end_layout
18636
18637 \end_inset
18638 </cell>
18639 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18640 \begin_inset Text
18641
18642 \begin_layout Plain Layout
18643 Alt+Z R
18644 \end_layout
18645
18646 \end_inset
18647 </cell>
18648 </row>
18649 <row>
18650 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18651 \begin_inset Text
18652
18653 \begin_layout Plain Layout
18654
18655 \backslash
18656 mathsf
18657 \series bold
18658
18659 \begin_inset ERT
18660 status collapsed
18661
18662 \begin_layout Plain Layout
18663
18664
18665 \backslash
18666 leer 
18667 \end_layout
18668
18669 \end_inset
18670
18671
18672 \series default
18673 AbC
18674 \end_layout
18675
18676 \end_inset
18677 </cell>
18678 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18679 \begin_inset Text
18680
18681 \begin_layout Plain Layout
18682 \begin_inset Formula $\mathsf{AbC}$
18683 \end_inset
18684
18685
18686 \end_layout
18687
18688 \end_inset
18689 </cell>
18690 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18691 \begin_inset Text
18692
18693 \begin_layout Plain Layout
18694 Alt+Z S
18695 \end_layout
18696
18697 \end_inset
18698 </cell>
18699 </row>
18700 <row>
18701 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18702 \begin_inset Text
18703
18704 \begin_layout Plain Layout
18705
18706 \backslash
18707 mathtt
18708 \series bold
18709
18710 \begin_inset ERT
18711 status collapsed
18712
18713 \begin_layout Plain Layout
18714
18715
18716 \backslash
18717 leer 
18718 \end_layout
18719
18720 \end_inset
18721
18722
18723 \series default
18724 AbC
18725 \end_layout
18726
18727 \end_inset
18728 </cell>
18729 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18730 \begin_inset Text
18731
18732 \begin_layout Plain Layout
18733 \begin_inset Formula $\mathtt{AbC}$
18734 \end_inset
18735
18736
18737 \end_layout
18738
18739 \end_inset
18740 </cell>
18741 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
18742 \begin_inset Text
18743
18744 \begin_layout Plain Layout
18745 Alt+Z C
18746 \end_layout
18747
18748 \end_inset
18749 </cell>
18750 </row>
18751 </lyxtabular>
18752
18753 \end_inset
18754
18755
18756 \end_layout
18757
18758 \begin_layout Standard
18759 \begin_inset Note Greyedout
18760 status open
18761
18762 \begin_layout Plain Layout
18763
18764 \series bold
18765 Achtung:
18766 \series default
18767  Die Stile 
18768 \series bold
18769
18770 \backslash
18771 mathbb
18772 \series default
18773  und 
18774 \series bold
18775
18776 \backslash
18777 mathcal
18778 \series default
18779  können nur für Großbuchstaben verwendet werden.
18780 \end_layout
18781
18782 \end_inset
18783
18784
18785 \end_layout
18786
18787 \begin_layout Standard
18788 Voreingestellt ist der Stil 
18789 \series bold
18790
18791 \backslash
18792 mathnormal
18793 \series default
18794 .
18795 \end_layout
18796
18797 \begin_layout Standard
18798 Die Stilbefehle wirken auch auf Buchstaben in mathematischen Konstruktionen:
18799 \begin_inset Formula 
18800 \[
18801 \mathfrak{A=\frac{b}{C}}
18802 \]
18803
18804 \end_inset
18805
18806
18807 \end_layout
18808
18809 \begin_layout Standard
18810 Zeichen im mathematischen Textmodus erscheinen nicht in einem der Matheschriftst
18811 ile, sondern in dem Textschriftstil 
18812 \series bold
18813
18814 \backslash
18815 textrm
18816 \series default
18817 .
18818  Dass deren Stil nicht über den Textstil Dialog geändert werden kann ist
18819  ein Fehler in LyX.
18820 \begin_inset Foot
18821 status collapsed
18822
18823 \begin_layout Plain Layout
18824 \begin_inset CommandInset href
18825 LatexCommand href
18826 name "LyX-Fehler #4629"
18827 target "http://www.lyx.org/trac/ticket/4629"
18828
18829 \end_inset
18830
18831
18832 \end_layout
18833
18834 \end_inset
18835
18836
18837 \end_layout
18838
18839 \begin_layout Standard
18840 Anstelle der Stilbefehle kann man auch den Dialog 
18841 \family sans
18842 Bearbeiten\SpecialChar \menuseparator
18843 Mathe\SpecialChar \menuseparator
18844 Text-Stil
18845 \family default
18846  oder den Mathe-Werkzeugleistenknopf 
18847 \begin_inset Graphics
18848         filename ../../images/math/font.png
18849         scale 85
18850
18851 \end_inset
18852
18853  verwenden.
18854 \end_layout
18855
18856 \begin_layout Subsection
18857 Fett gedruckte Formeln
18858 \begin_inset CommandInset label
18859 LatexCommand label
18860 name "sub:Fett-gedruckte-Formeln"
18861
18862 \end_inset
18863
18864
18865 \begin_inset Index idx
18866 status collapsed
18867
18868 \begin_layout Plain Layout
18869 Formel ! fett gedruckte
18870 \end_layout
18871
18872 \end_inset
18873
18874
18875 \end_layout
18876
18877 \begin_layout Standard
18878 Möchte man komplette Formeln fett setzen, kann man nicht den im vorigen
18879  Kapitel angegebenen Befehl 
18880 \series bold
18881
18882 \backslash
18883 mathbf
18884 \series default
18885  verwenden, denn dieser wirkt nicht auf kleine griechische Buchstaben.
18886  Außerdem setzt er lateinische Buchstaben immer aufrecht, was man an folgender
18887  Formel gut erkennt:
18888 \end_layout
18889
18890 \begin_layout Standard
18891 \begin_inset Formula 
18892 \[
18893 \mathbf{\int_{n}^{2}f(\theta)=\Gamma}\qquad\textrm{Formel mit \textbackslash mathbf}
18894 \]
18895
18896 \end_inset
18897
18898
18899 \end_layout
18900
18901 \begin_layout Standard
18902 Um die Formel korrekt darzustellen, verwendet man den Befehl 
18903 \series bold
18904
18905 \backslash
18906 boldsymbol
18907 \series default
18908 :
18909 \begin_inset Formula 
18910 \[
18911 \boldsymbol{\int_{n}^{2}f(\theta)=\Gamma\qquad\textrm{Formel mit \textbackslash boldsymbol}}
18912 \]
18913
18914 \end_inset
18915
18916 Es gibt auch die Möglichkeit die Formel in eine 
18917 \series bold
18918 boldmath-Umgebung
18919 \series default
18920  zu setzen.
18921  Diese Umgebung wird erzeugt, indem man im TeX-Modus den Befehl 
18922 \series bold
18923
18924 \backslash
18925 boldmath
18926 \series default
18927
18928 \begin_inset Index idx
18929 status collapsed
18930
18931 \begin_layout Plain Layout
18932 Befehle ! B ! 
18933 \backslash
18934 boldmath
18935 \end_layout
18936
18937 \end_inset
18938
18939  eingibt.
18940  Um die Umgebung wieder zu beenden, gibt man im TeX-Modus den Befehl 
18941 \series bold
18942
18943 \backslash
18944 unboldmath
18945 \series default
18946
18947 \begin_inset Index idx
18948 status collapsed
18949
18950 \begin_layout Plain Layout
18951 Befehle ! U ! 
18952 \backslash
18953 unboldmath
18954 \end_layout
18955
18956 \end_inset
18957
18958  ein.
18959 \begin_inset ERT
18960 status collapsed
18961
18962 \begin_layout Plain Layout
18963
18964
18965 \backslash
18966 boldmath 
18967 \end_layout
18968
18969 \end_inset
18970
18971
18972 \begin_inset Formula 
18973 \[
18974 \int_{n}^{2}f(\theta)=\Gamma\qquad\textrm{Formel in boldmath-Umgebung}
18975 \]
18976
18977 \end_inset
18978
18979
18980 \begin_inset ERT
18981 status collapsed
18982
18983 \begin_layout Plain Layout
18984
18985
18986 \backslash
18987 unboldmath 
18988 \end_layout
18989
18990 \end_inset
18991
18992
18993 \end_layout
18994
18995 \begin_layout Subsection
18996 Farbige Formeln
18997 \begin_inset Index idx
18998 status collapsed
18999
19000 \begin_layout Plain Layout
19001 Formel ! farbige
19002 \end_layout
19003
19004 \end_inset
19005
19006
19007 \end_layout
19008
19009 \begin_layout Standard
19010 Formeln können wie normaler Text gefärbt werden: Markieren Sie eine Formel
19011  oder Formelteile und verwenden dann den 
19012 \family sans
19013 Textstil
19014 \family default
19015  Dialog.
19016  Hier ist eine Formel in Magenta:
19017 \begin_inset Formula 
19018 \[
19019 {\color{magenta}\int A\,\mathrm{d}x=\frac{\sqrt[5]{B}}{\ln\left(\frac{1}{3}\right)}}
19020 \]
19021
19022 \end_inset
19023
19024
19025 \end_layout
19026
19027 \begin_layout Standard
19028 Man kann auch eigene Farben definieren, wie in 
19029 \begin_inset CommandInset ref
19030 LatexCommand ref
19031 reference "sub:Farbige-Boxen"
19032
19033 \end_inset
19034
19035  erklärt ist.
19036  Diese können dann mit dem TeX-Code Befehl 
19037 \series bold
19038
19039 \backslash
19040 textcolor
19041 \series default
19042
19043 \begin_inset Index idx
19044 status collapsed
19045
19046 \begin_layout Plain Layout
19047 Befehle! T ! 
19048 \backslash
19049 textcolor
19050 \end_layout
19051
19052 \end_inset
19053
19054  verwendet werden, dass folgendes Schema besitzt:
19055 \end_layout
19056
19057 \begin_layout Standard
19058
19059 \series bold
19060
19061 \backslash
19062 textcolor{Farbe}{Zeichen oder Formel}
19063 \end_layout
19064
19065 \begin_layout Standard
19066 Das folgende Beispiel wurde komplett dunkelgrün und teilweise rot eingefärbt:
19067 \end_layout
19068
19069 \begin_layout Standard
19070 \begin_inset ERT
19071 status collapsed
19072
19073 \begin_layout Plain Layout
19074
19075
19076 \backslash
19077 textcolor{dunkelgruen}{
19078 \end_layout
19079
19080 \end_inset
19081
19082
19083 \begin_inset Formula 
19084 \[
19085 \int A\,\mathrm{d}x=\frac{{\color{red}\sqrt[5]{B}}}{\ln\left(\frac{1}{3}\right)}
19086 \]
19087
19088 \end_inset
19089
19090
19091 \begin_inset ERT
19092 status collapsed
19093
19094 \begin_layout Plain Layout
19095
19096 }
19097 \end_layout
19098
19099 \end_inset
19100
19101
19102 \end_layout
19103
19104 \begin_layout Standard
19105 Aufgrund eines Fehlers in LyX können nur komplette Formeln mit selbst definierte
19106 n Farben gefärbt werden.
19107 \begin_inset Foot
19108 status collapsed
19109
19110 \begin_layout Plain Layout
19111 \begin_inset CommandInset href
19112 LatexCommand href
19113 name "LyX-bug #5269"
19114 target "http://www.lyx.org/trac/ticket/5269"
19115
19116 \end_inset
19117
19118
19119 \end_layout
19120
19121 \end_inset
19122
19123
19124 \end_layout
19125
19126 \begin_layout Subsection
19127 Schriftgrößen
19128 \begin_inset CommandInset label
19129 LatexCommand label
19130 name "sub:Schriftgrößen"
19131
19132 \end_inset
19133
19134
19135 \begin_inset Index idx
19136 status collapsed
19137
19138 \begin_layout Plain Layout
19139 Schriften ! Schriftgrößen
19140 \end_layout
19141
19142 \end_inset
19143
19144
19145 \end_layout
19146
19147 \begin_layout Standard
19148 Für Zeichen in einer Formel gibt es, analog zu Textzeichen, folgende Größenbefeh
19149 le:
19150 \end_layout
19151
19152 \begin_layout Standard
19153
19154 \series bold
19155
19156 \backslash
19157 Huge
19158 \series default
19159
19160 \series bold
19161
19162 \backslash
19163 huge
19164 \series default
19165
19166 \series bold
19167
19168 \backslash
19169 LARGE
19170 \series default
19171
19172 \series bold
19173
19174 \backslash
19175 Large
19176 \series default
19177
19178 \series bold
19179
19180 \backslash
19181 large
19182 \series default
19183
19184 \series bold
19185
19186 \backslash
19187 normalsize
19188 \series default
19189
19190 \series bold
19191
19192 \backslash
19193 small
19194 \series default
19195
19196 \series bold
19197
19198 \backslash
19199 footnotesize
19200 \series default
19201 ,
19202 \begin_inset Newline linebreak
19203 \end_inset
19204
19205
19206 \series bold
19207
19208 \backslash
19209 scriptsize
19210 \series default
19211  und 
19212 \series bold
19213
19214 \backslash
19215 tiny
19216 \end_layout
19217
19218 \begin_layout Standard
19219 Welche Größe die Befehle produzieren, hängt von der Dokumentschriftgröße
19220  ab, die dem Befehl 
19221 \series bold
19222
19223 \backslash
19224 normalsize
19225 \series default
19226  entspricht.
19227  Die anderen Befehle produzieren kleinere oder größere Schriften als 
19228 \series bold
19229
19230 \backslash
19231 normalsize
19232 \series default
19233 .
19234  Die Schriftgröße kann jedoch einen bestimmten Wert nicht übertreffen.
19235  Beträgt z.
19236 \begin_inset space \thinspace{}
19237 \end_inset
19238
19239 B.
19240  die Dokumentschriftgröße 12
19241 \begin_inset space \thinspace{}
19242 \end_inset
19243
19244 pt, produziert der Befehl 
19245 \series bold
19246
19247 \backslash
19248 Huge
19249 \series default
19250  dasselbe wie 
19251 \series bold
19252
19253 \backslash
19254 huge
19255 \series default
19256 .
19257  
19258 \end_layout
19259
19260 \begin_layout Standard
19261 Ein Größenbefehl wird im TeX-Modus vor der Formel eingegeben und legt die
19262  Größe aller nachfolgenden Formel- und Textzeichen fest.
19263  Um wieder zur Ausgangsgröße zurückzukehren, gibt man nach der Formel im
19264  TeX-Modus den Befehl 
19265 \series bold
19266
19267 \backslash
19268 normalsize
19269 \series default
19270  ein.
19271 \end_layout
19272
19273 \begin_layout Standard
19274 Innerhalb einer Formel kann die Größe mit den folgenden Größenbefehlen geändert
19275  werden:
19276 \end_layout
19277
19278 \begin_layout Standard
19279 \noindent
19280 \align center
19281 \begin_inset Tabular
19282 <lyxtabular version="3" rows="5" columns="2">
19283 <features rotate="0" tabularvalignment="middle">
19284 <column alignment="center" valignment="top">
19285 <column alignment="center" valignment="top">
19286 <row>
19287 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19288 \begin_inset Text
19289
19290 \begin_layout Plain Layout
19291 Befehl
19292 \end_layout
19293
19294 \end_inset
19295 </cell>
19296 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19297 \begin_inset Text
19298
19299 \begin_layout Plain Layout
19300 Ergebnis
19301 \begin_inset Note Note
19302 status collapsed
19303
19304 \begin_layout Plain Layout
19305
19306 \series bold
19307
19308 \backslash
19309 raisebox
19310 \series default
19311  dient nur als Abstandhalter.
19312 \end_layout
19313
19314 \end_inset
19315
19316
19317 \end_layout
19318
19319 \end_inset
19320 </cell>
19321 </row>
19322 <row>
19323 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19324 \begin_inset Text
19325
19326 \begin_layout Plain Layout
19327
19328 \backslash
19329 displaystyle
19330 \begin_inset Index idx
19331 status collapsed
19332
19333 \begin_layout Plain Layout
19334 Befehle ! D ! 
19335 \backslash
19336 displaystyle
19337 \end_layout
19338
19339 \end_inset
19340
19341
19342 \end_layout
19343
19344 \end_inset
19345 </cell>
19346 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19347 \begin_inset Text
19348
19349 \begin_layout Plain Layout
19350 \begin_inset Formula $\raisebox{6.5mm}{}{\displaystyle E_{\mathrm{pot_{1}}}=\frac{K}{l+\frac{m}{n_{2}}}}\raisebox{-5.5mm}{}$
19351 \end_inset
19352
19353
19354 \end_layout
19355
19356 \end_inset
19357 </cell>
19358 </row>
19359 <row>
19360 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19361 \begin_inset Text
19362
19363 \begin_layout Plain Layout
19364
19365 \backslash
19366 textstyle
19367 \end_layout
19368
19369 \end_inset
19370 </cell>
19371 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19372 \begin_inset Text
19373
19374 \begin_layout Plain Layout
19375 \begin_inset Formula $\raisebox{4.5mm}{}{\textstyle E_{\mathrm{pot_{1}}}=\frac{K}{l+\frac{m}{n_{2}}}}\raisebox{-4mm}{}$
19376 \end_inset
19377
19378
19379 \end_layout
19380
19381 \end_inset
19382 </cell>
19383 </row>
19384 <row>
19385 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19386 \begin_inset Text
19387
19388 \begin_layout Plain Layout
19389
19390 \backslash
19391 scriptstyle
19392 \end_layout
19393
19394 \end_inset
19395 </cell>
19396 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19397 \begin_inset Text
19398
19399 \begin_layout Plain Layout
19400 \begin_inset Formula $\raisebox{4.5mm}{}{\scriptstyle E_{\mathrm{pot_{1}}}=\frac{K}{l+\frac{m}{n_{2}}}}\raisebox{-3.5mm}{}$
19401 \end_inset
19402
19403
19404 \end_layout
19405
19406 \end_inset
19407 </cell>
19408 </row>
19409 <row>
19410 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19411 \begin_inset Text
19412
19413 \begin_layout Plain Layout
19414
19415 \backslash
19416 scriptscriptstyle
19417 \end_layout
19418
19419 \end_inset
19420 </cell>
19421 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19422 \begin_inset Text
19423
19424 \begin_layout Plain Layout
19425 \begin_inset Formula $\raisebox{4.5mm}{}{\scriptscriptstyle E_{\mathrm{pot_{1}}}=\frac{K}{l+\frac{m}{n_{2}}}}\raisebox{-3.5mm}{}$
19426 \end_inset
19427
19428
19429 \end_layout
19430
19431 \end_inset
19432 </cell>
19433 </row>
19434 </lyxtabular>
19435
19436 \end_inset
19437
19438
19439 \end_layout
19440
19441 \begin_layout Standard
19442 Nachdem diese Befehle eingegeben wurden, erscheint eine blaues Kästchen
19443  in das die Formelteile eingegeben werden.
19444 \end_layout
19445
19446 \begin_layout Standard
19447 Es gibt eine weitere Möglichkeit die Schriftgröße zu ändern, die allerdings
19448  nur für Symbole oder Buchstaben im mathematischen Text funktioniert.
19449  Dazu wird einer der obigen Textgrößenbefehle im mathematischen Textmodus
19450  eingegeben.
19451  Alle diesem Befehl folgenden Zeichen bis zum Ende des mathematischen Textes
19452  oder bis zu einem anderen Größenbefehl haben dann die angegebene Größe.
19453  Dazu zwei Beispiele:
19454 \begin_inset VSpace -2mm
19455 \end_inset
19456
19457
19458 \end_layout
19459
19460 \begin_layout Standard
19461 \begin_inset ERT
19462 status collapsed
19463
19464 \begin_layout Plain Layout
19465
19466
19467 \backslash
19468 huge 
19469 \end_layout
19470
19471 \end_inset
19472
19473
19474 \begin_inset Formula 
19475 \[
19476 A=\frac{B}{c}\cdot\maltese
19477 \]
19478
19479 \end_inset
19480
19481
19482 \begin_inset Formula 
19483 \[
19484 \maltese A\textrm{\Large\maltese\textit{A}}\textrm{\tiny\maltese\textit{A}}
19485 \]
19486
19487 \end_inset
19488
19489
19490 \begin_inset ERT
19491 status collapsed
19492
19493 \begin_layout Plain Layout
19494
19495
19496 \backslash
19497 normalsize 
19498 \end_layout
19499
19500 \end_inset
19501
19502
19503 \end_layout
19504
19505 \begin_layout Standard
19506 \begin_inset VSpace medskip
19507 \end_inset
19508
19509 Vor beiden Formeln wurde der Befehl 
19510 \series bold
19511
19512 \backslash
19513 huge
19514 \series default
19515  eingegeben.
19516  Der Befehl für die zweite Formel lautet:
19517 \begin_inset Newline newline
19518 \end_inset
19519
19520
19521 \series bold
19522
19523 \backslash
19524 maltese
19525 \begin_inset ERT
19526 status collapsed
19527
19528 \begin_layout Plain Layout
19529
19530
19531 \backslash
19532 leer 
19533 \end_layout
19534
19535 \end_inset
19536
19537 A M-m m 
19538 \backslash
19539 Large
19540 \begin_inset ERT
19541 status collapsed
19542
19543 \begin_layout Plain Layout
19544
19545
19546 \backslash
19547 leer 
19548 \end_layout
19549
19550 \end_inset
19551
19552
19553 \backslash
19554 maltese
19555 \begin_inset ERT
19556 status collapsed
19557
19558 \begin_layout Plain Layout
19559
19560
19561 \backslash
19562 leer 
19563 \end_layout
19564
19565 \end_inset
19566
19567
19568 \backslash
19569 textit
19570 \begin_inset ERT
19571 status collapsed
19572
19573 \begin_layout Plain Layout
19574
19575
19576 \backslash
19577 leer 
19578 \end_layout
19579
19580 \end_inset
19581
19582 A
19583 \begin_inset Formula $\to$
19584 \end_inset
19585
19586
19587 \begin_inset Formula $\to$
19588 \end_inset
19589
19590
19591 \begin_inset Newline newline
19592 \end_inset
19593
19594
19595 \begin_inset space \hspace*{}
19596 \length 1cm
19597 \end_inset
19598
19599 M-m
19600 \series default
19601  
19602 \series bold
19603
19604 \backslash
19605 tiny
19606 \begin_inset ERT
19607 status collapsed
19608
19609 \begin_layout Plain Layout
19610
19611
19612 \backslash
19613 leer 
19614 \end_layout
19615
19616 \end_inset
19617
19618
19619 \backslash
19620 maltese
19621 \begin_inset ERT
19622 status collapsed
19623
19624 \begin_layout Plain Layout
19625
19626
19627 \backslash
19628 leer 
19629 \end_layout
19630
19631 \end_inset
19632
19633
19634 \backslash
19635 textit
19636 \begin_inset ERT
19637 status collapsed
19638
19639 \begin_layout Plain Layout
19640
19641
19642 \backslash
19643 leer 
19644 \end_layout
19645
19646 \end_inset
19647
19648 A
19649 \end_layout
19650
19651 \begin_layout Standard
19652 Kann ein Symbol nicht in verschiedenen Größen dargestellt werden, wird es
19653  immer in der Standardgröße dargestellt.
19654 \end_layout
19655
19656 \begin_layout Section
19657 Griechische Buchstaben
19658 \begin_inset Index idx
19659 status collapsed
19660
19661 \begin_layout Plain Layout
19662 griechische Buchstaben
19663 \end_layout
19664
19665 \end_inset
19666
19667
19668 \end_layout
19669
19670 \begin_layout Standard
19671 Griechischen Buchstaben können auch über den Mathe-Werkzeugleistenknopf
19672  
19673 \begin_inset Graphics
19674         filename ../../images/math/alpha.png
19675         scale 85
19676
19677 \end_inset
19678
19679  eingefügt werden.
19680  Alle internationalen Schriftsatz-Normen geben vor, dass griechische Buchstaben
19681  in Formeln aufrecht gesetzt werden.
19682  In einigen Sprachen, wie z.
19683 \begin_inset space \thinspace{}
19684 \end_inset
19685
19686 B: Französisch oder Russisch, werden sie dennoch manchmal aufrecht gesetzt.
19687 \end_layout
19688
19689 \begin_layout Subsection
19690 Kleine Buchstaben
19691 \begin_inset Index idx
19692 status collapsed
19693
19694 \begin_layout Plain Layout
19695 griechische Buchstaben ! kleine
19696 \end_layout
19697
19698 \end_inset
19699
19700
19701 \end_layout
19702
19703 \begin_layout Standard
19704 \begin_inset space \hfill{}
19705 \end_inset
19706
19707
19708 \begin_inset Tabular
19709 <lyxtabular version="3" rows="11" columns="2">
19710 <features rotate="0" tabularvalignment="middle">
19711 <column alignment="center" valignment="top" width="0pt">
19712 <column alignment="center" valignment="top" width="0pt">
19713 <row>
19714 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19715 \begin_inset Text
19716
19717 \begin_layout Plain Layout
19718 Befehl
19719 \end_layout
19720
19721 \end_inset
19722 </cell>
19723 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19724 \begin_inset Text
19725
19726 \begin_layout Plain Layout
19727 Ergebnis
19728 \end_layout
19729
19730 \end_inset
19731 </cell>
19732 </row>
19733 <row>
19734 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19735 \begin_inset Text
19736
19737 \begin_layout Plain Layout
19738
19739 \backslash
19740 alpha
19741 \end_layout
19742
19743 \end_inset
19744 </cell>
19745 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19746 \begin_inset Text
19747
19748 \begin_layout Plain Layout
19749 \begin_inset Formula $\alpha$
19750 \end_inset
19751
19752
19753 \end_layout
19754
19755 \end_inset
19756 </cell>
19757 </row>
19758 <row>
19759 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19760 \begin_inset Text
19761
19762 \begin_layout Plain Layout
19763
19764 \backslash
19765 beta
19766 \end_layout
19767
19768 \end_inset
19769 </cell>
19770 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19771 \begin_inset Text
19772
19773 \begin_layout Plain Layout
19774 \begin_inset Formula $\beta$
19775 \end_inset
19776
19777
19778 \end_layout
19779
19780 \end_inset
19781 </cell>
19782 </row>
19783 <row>
19784 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19785 \begin_inset Text
19786
19787 \begin_layout Plain Layout
19788
19789 \backslash
19790 gamma
19791 \end_layout
19792
19793 \end_inset
19794 </cell>
19795 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19796 \begin_inset Text
19797
19798 \begin_layout Plain Layout
19799 \begin_inset Formula $\gamma$
19800 \end_inset
19801
19802
19803 \end_layout
19804
19805 \end_inset
19806 </cell>
19807 </row>
19808 <row>
19809 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19810 \begin_inset Text
19811
19812 \begin_layout Plain Layout
19813
19814 \backslash
19815 delta
19816 \end_layout
19817
19818 \end_inset
19819 </cell>
19820 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19821 \begin_inset Text
19822
19823 \begin_layout Plain Layout
19824 \begin_inset Formula $\delta$
19825 \end_inset
19826
19827
19828 \end_layout
19829
19830 \end_inset
19831 </cell>
19832 </row>
19833 <row>
19834 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19835 \begin_inset Text
19836
19837 \begin_layout Plain Layout
19838
19839 \backslash
19840 epsilon
19841 \end_layout
19842
19843 \end_inset
19844 </cell>
19845 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19846 \begin_inset Text
19847
19848 \begin_layout Plain Layout
19849 \begin_inset Formula $\epsilon$
19850 \end_inset
19851
19852
19853 \end_layout
19854
19855 \end_inset
19856 </cell>
19857 </row>
19858 <row>
19859 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19860 \begin_inset Text
19861
19862 \begin_layout Plain Layout
19863
19864 \backslash
19865 varepsilon
19866 \end_layout
19867
19868 \end_inset
19869 </cell>
19870 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19871 \begin_inset Text
19872
19873 \begin_layout Plain Layout
19874 \begin_inset Formula $\varepsilon$
19875 \end_inset
19876
19877
19878 \end_layout
19879
19880 \end_inset
19881 </cell>
19882 </row>
19883 <row>
19884 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19885 \begin_inset Text
19886
19887 \begin_layout Plain Layout
19888
19889 \backslash
19890 zeta
19891 \end_layout
19892
19893 \end_inset
19894 </cell>
19895 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19896 \begin_inset Text
19897
19898 \begin_layout Plain Layout
19899 \begin_inset Formula $\zeta$
19900 \end_inset
19901
19902
19903 \end_layout
19904
19905 \end_inset
19906 </cell>
19907 </row>
19908 <row>
19909 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19910 \begin_inset Text
19911
19912 \begin_layout Plain Layout
19913
19914 \backslash
19915 eta
19916 \end_layout
19917
19918 \end_inset
19919 </cell>
19920 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19921 \begin_inset Text
19922
19923 \begin_layout Plain Layout
19924 \begin_inset Formula $\eta$
19925 \end_inset
19926
19927
19928 \end_layout
19929
19930 \end_inset
19931 </cell>
19932 </row>
19933 <row>
19934 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19935 \begin_inset Text
19936
19937 \begin_layout Plain Layout
19938
19939 \backslash
19940 theta
19941 \end_layout
19942
19943 \end_inset
19944 </cell>
19945 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19946 \begin_inset Text
19947
19948 \begin_layout Plain Layout
19949 \begin_inset Formula $\theta$
19950 \end_inset
19951
19952
19953 \end_layout
19954
19955 \end_inset
19956 </cell>
19957 </row>
19958 <row>
19959 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19960 \begin_inset Text
19961
19962 \begin_layout Plain Layout
19963
19964 \backslash
19965 vartheta
19966 \end_layout
19967
19968 \end_inset
19969 </cell>
19970 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19971 \begin_inset Text
19972
19973 \begin_layout Plain Layout
19974 \begin_inset Formula $\vartheta$
19975 \end_inset
19976
19977
19978 \end_layout
19979
19980 \end_inset
19981 </cell>
19982 </row>
19983 </lyxtabular>
19984
19985 \end_inset
19986
19987
19988 \begin_inset space \hfill{}
19989 \end_inset
19990
19991
19992 \begin_inset Tabular
19993 <lyxtabular version="3" rows="12" columns="2">
19994 <features rotate="0" tabularvalignment="middle">
19995 <column alignment="center" valignment="top" width="0pt">
19996 <column alignment="center" valignment="top" width="0pt">
19997 <row>
19998 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19999 \begin_inset Text
20000
20001 \begin_layout Plain Layout
20002 Befehl
20003 \end_layout
20004
20005 \end_inset
20006 </cell>
20007 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20008 \begin_inset Text
20009
20010 \begin_layout Plain Layout
20011 Ergebnis
20012 \end_layout
20013
20014 \end_inset
20015 </cell>
20016 </row>
20017 <row>
20018 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20019 \begin_inset Text
20020
20021 \begin_layout Plain Layout
20022
20023 \backslash
20024 iota
20025 \end_layout
20026
20027 \end_inset
20028 </cell>
20029 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20030 \begin_inset Text
20031
20032 \begin_layout Plain Layout
20033 \begin_inset Formula $\iota$
20034 \end_inset
20035
20036
20037 \end_layout
20038
20039 \end_inset
20040 </cell>
20041 </row>
20042 <row>
20043 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20044 \begin_inset Text
20045
20046 \begin_layout Plain Layout
20047
20048 \backslash
20049 kappa
20050 \end_layout
20051
20052 \end_inset
20053 </cell>
20054 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20055 \begin_inset Text
20056
20057 \begin_layout Plain Layout
20058 \begin_inset Formula $\kappa$
20059 \end_inset
20060
20061
20062 \end_layout
20063
20064 \end_inset
20065 </cell>
20066 </row>
20067 <row>
20068 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20069 \begin_inset Text
20070
20071 \begin_layout Plain Layout
20072
20073 \backslash
20074 varkappa
20075 \end_layout
20076
20077 \end_inset
20078 </cell>
20079 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20080 \begin_inset Text
20081
20082 \begin_layout Plain Layout
20083 \begin_inset Formula $\varkappa$
20084 \end_inset
20085
20086
20087 \end_layout
20088
20089 \end_inset
20090 </cell>
20091 </row>
20092 <row>
20093 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20094 \begin_inset Text
20095
20096 \begin_layout Plain Layout
20097
20098 \backslash
20099 lambda
20100 \end_layout
20101
20102 \end_inset
20103 </cell>
20104 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20105 \begin_inset Text
20106
20107 \begin_layout Plain Layout
20108 \begin_inset Formula $\lambda$
20109 \end_inset
20110
20111
20112 \end_layout
20113
20114 \end_inset
20115 </cell>
20116 </row>
20117 <row>
20118 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20119 \begin_inset Text
20120
20121 \begin_layout Plain Layout
20122
20123 \backslash
20124 mu
20125 \end_layout
20126
20127 \end_inset
20128 </cell>
20129 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20130 \begin_inset Text
20131
20132 \begin_layout Plain Layout
20133 \begin_inset Formula $\mu$
20134 \end_inset
20135
20136
20137 \end_layout
20138
20139 \end_inset
20140 </cell>
20141 </row>
20142 <row>
20143 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20144 \begin_inset Text
20145
20146 \begin_layout Plain Layout
20147
20148 \backslash
20149 nu
20150 \end_layout
20151
20152 \end_inset
20153 </cell>
20154 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20155 \begin_inset Text
20156
20157 \begin_layout Plain Layout
20158 \begin_inset Formula $\nu$
20159 \end_inset
20160
20161
20162 \end_layout
20163
20164 \end_inset
20165 </cell>
20166 </row>
20167 <row>
20168 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20169 \begin_inset Text
20170
20171 \begin_layout Plain Layout
20172
20173 \backslash
20174 xi
20175 \end_layout
20176
20177 \end_inset
20178 </cell>
20179 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20180 \begin_inset Text
20181
20182 \begin_layout Plain Layout
20183 \begin_inset Formula $\xi$
20184 \end_inset
20185
20186
20187 \end_layout
20188
20189 \end_inset
20190 </cell>
20191 </row>
20192 <row>
20193 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20194 \begin_inset Text
20195
20196 \begin_layout Plain Layout
20197 o
20198 \end_layout
20199
20200 \end_inset
20201 </cell>
20202 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20203 \begin_inset Text
20204
20205 \begin_layout Plain Layout
20206 \begin_inset Formula $o$
20207 \end_inset
20208
20209
20210 \end_layout
20211
20212 \end_inset
20213 </cell>
20214 </row>
20215 <row>
20216 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20217 \begin_inset Text
20218
20219 \begin_layout Plain Layout
20220
20221 \backslash
20222 pi
20223 \end_layout
20224
20225 \end_inset
20226 </cell>
20227 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20228 \begin_inset Text
20229
20230 \begin_layout Plain Layout
20231 \begin_inset Formula $\pi$
20232 \end_inset
20233
20234
20235 \end_layout
20236
20237 \end_inset
20238 </cell>
20239 </row>
20240 <row>
20241 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20242 \begin_inset Text
20243
20244 \begin_layout Plain Layout
20245
20246 \backslash
20247 varpi
20248 \end_layout
20249
20250 \end_inset
20251 </cell>
20252 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20253 \begin_inset Text
20254
20255 \begin_layout Plain Layout
20256 \begin_inset Formula $\varpi$
20257 \end_inset
20258
20259
20260 \end_layout
20261
20262 \end_inset
20263 </cell>
20264 </row>
20265 <row>
20266 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20267 \begin_inset Text
20268
20269 \begin_layout Plain Layout
20270
20271 \backslash
20272 rho
20273 \end_layout
20274
20275 \end_inset
20276 </cell>
20277 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20278 \begin_inset Text
20279
20280 \begin_layout Plain Layout
20281 \begin_inset Formula $\rho$
20282 \end_inset
20283
20284
20285 \end_layout
20286
20287 \end_inset
20288 </cell>
20289 </row>
20290 </lyxtabular>
20291
20292 \end_inset
20293
20294
20295 \begin_inset space \hfill{}
20296 \end_inset
20297
20298
20299 \begin_inset Tabular
20300 <lyxtabular version="3" rows="11" columns="2">
20301 <features rotate="0" tabularvalignment="middle">
20302 <column alignment="center" valignment="top" width="0pt">
20303 <column alignment="center" valignment="top" width="0pt">
20304 <row>
20305 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20306 \begin_inset Text
20307
20308 \begin_layout Plain Layout
20309 Befehl
20310 \end_layout
20311
20312 \end_inset
20313 </cell>
20314 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20315 \begin_inset Text
20316
20317 \begin_layout Plain Layout
20318 Ergebnis
20319 \end_layout
20320
20321 \end_inset
20322 </cell>
20323 </row>
20324 <row>
20325 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20326 \begin_inset Text
20327
20328 \begin_layout Plain Layout
20329
20330 \backslash
20331 varrho
20332 \end_layout
20333
20334 \end_inset
20335 </cell>
20336 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20337 \begin_inset Text
20338
20339 \begin_layout Plain Layout
20340 \begin_inset Formula $\varrho$
20341 \end_inset
20342
20343
20344 \end_layout
20345
20346 \end_inset
20347 </cell>
20348 </row>
20349 <row>
20350 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20351 \begin_inset Text
20352
20353 \begin_layout Plain Layout
20354
20355 \backslash
20356 sigma
20357 \end_layout
20358
20359 \end_inset
20360 </cell>
20361 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20362 \begin_inset Text
20363
20364 \begin_layout Plain Layout
20365 \begin_inset Formula $\sigma$
20366 \end_inset
20367
20368
20369 \end_layout
20370
20371 \end_inset
20372 </cell>
20373 </row>
20374 <row>
20375 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20376 \begin_inset Text
20377
20378 \begin_layout Plain Layout
20379
20380 \backslash
20381 varsigma
20382 \end_layout
20383
20384 \end_inset
20385 </cell>
20386 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20387 \begin_inset Text
20388
20389 \begin_layout Plain Layout
20390 \begin_inset Formula $\varsigma$
20391 \end_inset
20392
20393
20394 \end_layout
20395
20396 \end_inset
20397 </cell>
20398 </row>
20399 <row>
20400 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20401 \begin_inset Text
20402
20403 \begin_layout Plain Layout
20404
20405 \backslash
20406 tau
20407 \end_layout
20408
20409 \end_inset
20410 </cell>
20411 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20412 \begin_inset Text
20413
20414 \begin_layout Plain Layout
20415 \begin_inset Formula $\tau$
20416 \end_inset
20417
20418
20419 \end_layout
20420
20421 \end_inset
20422 </cell>
20423 </row>
20424 <row>
20425 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20426 \begin_inset Text
20427
20428 \begin_layout Plain Layout
20429
20430 \backslash
20431 upsilon
20432 \end_layout
20433
20434 \end_inset
20435 </cell>
20436 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20437 \begin_inset Text
20438
20439 \begin_layout Plain Layout
20440 \begin_inset Formula $\upsilon$
20441 \end_inset
20442
20443
20444 \end_layout
20445
20446 \end_inset
20447 </cell>
20448 </row>
20449 <row>
20450 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20451 \begin_inset Text
20452
20453 \begin_layout Plain Layout
20454
20455 \backslash
20456 phi
20457 \end_layout
20458
20459 \end_inset
20460 </cell>
20461 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20462 \begin_inset Text
20463
20464 \begin_layout Plain Layout
20465 \begin_inset Formula $\phi$
20466 \end_inset
20467
20468
20469 \end_layout
20470
20471 \end_inset
20472 </cell>
20473 </row>
20474 <row>
20475 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20476 \begin_inset Text
20477
20478 \begin_layout Plain Layout
20479
20480 \backslash
20481 varphi
20482 \end_layout
20483
20484 \end_inset
20485 </cell>
20486 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20487 \begin_inset Text
20488
20489 \begin_layout Plain Layout
20490 \begin_inset Formula $\varphi$
20491 \end_inset
20492
20493
20494 \end_layout
20495
20496 \end_inset
20497 </cell>
20498 </row>
20499 <row>
20500 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20501 \begin_inset Text
20502
20503 \begin_layout Plain Layout
20504
20505 \backslash
20506 chi
20507 \end_layout
20508
20509 \end_inset
20510 </cell>
20511 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20512 \begin_inset Text
20513
20514 \begin_layout Plain Layout
20515 \begin_inset Formula $\chi$
20516 \end_inset
20517
20518
20519 \end_layout
20520
20521 \end_inset
20522 </cell>
20523 </row>
20524 <row>
20525 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20526 \begin_inset Text
20527
20528 \begin_layout Plain Layout
20529
20530 \backslash
20531 psi
20532 \end_layout
20533
20534 \end_inset
20535 </cell>
20536 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20537 \begin_inset Text
20538
20539 \begin_layout Plain Layout
20540 \begin_inset Formula $\psi$
20541 \end_inset
20542
20543
20544 \end_layout
20545
20546 \end_inset
20547 </cell>
20548 </row>
20549 <row>
20550 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20551 \begin_inset Text
20552
20553 \begin_layout Plain Layout
20554
20555 \backslash
20556 omega
20557 \end_layout
20558
20559 \end_inset
20560 </cell>
20561 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20562 \begin_inset Text
20563
20564 \begin_layout Plain Layout
20565 \begin_inset Formula $\omega$
20566 \end_inset
20567
20568
20569 \end_layout
20570
20571 \end_inset
20572 </cell>
20573 </row>
20574 </lyxtabular>
20575
20576 \end_inset
20577
20578
20579 \begin_inset space \hfill{}
20580 \end_inset
20581
20582
20583 \end_layout
20584
20585 \begin_layout Standard
20586 \begin_inset VSpace medskip
20587 \end_inset
20588
20589 Wie man spezielle, aufrechte griechische Buchstaben erstellt, ist in 
20590 \begin_inset CommandInset ref
20591 LatexCommand ref
20592 reference "sub:Aufrechte-kleine-griechische"
20593
20594 \end_inset
20595
20596  beschrieben.
20597 \end_layout
20598
20599 \begin_layout Subsection
20600 Große Buchstaben
20601 \begin_inset Index idx
20602 status collapsed
20603
20604 \begin_layout Plain Layout
20605 griechische Buchstaben ! große
20606 \end_layout
20607
20608 \end_inset
20609
20610
20611 \end_layout
20612
20613 \begin_layout Standard
20614 \begin_inset space \hfill{}
20615 \end_inset
20616
20617
20618 \begin_inset Tabular
20619 <lyxtabular version="3" rows="7" columns="2">
20620 <features rotate="0" tabularvalignment="middle">
20621 <column alignment="center" valignment="top" width="0pt">
20622 <column alignment="center" valignment="top" width="0pt">
20623 <row>
20624 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20625 \begin_inset Text
20626
20627 \begin_layout Plain Layout
20628 Befehl
20629 \end_layout
20630
20631 \end_inset
20632 </cell>
20633 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20634 \begin_inset Text
20635
20636 \begin_layout Plain Layout
20637 Ergebnis
20638 \end_layout
20639
20640 \end_inset
20641 </cell>
20642 </row>
20643 <row>
20644 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20645 \begin_inset Text
20646
20647 \begin_layout Plain Layout
20648
20649 \backslash
20650 Gamma
20651 \end_layout
20652
20653 \end_inset
20654 </cell>
20655 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20656 \begin_inset Text
20657
20658 \begin_layout Plain Layout
20659 \begin_inset Formula $\Gamma$
20660 \end_inset
20661
20662
20663 \end_layout
20664
20665 \end_inset
20666 </cell>
20667 </row>
20668 <row>
20669 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20670 \begin_inset Text
20671
20672 \begin_layout Plain Layout
20673
20674 \backslash
20675 Delta
20676 \end_layout
20677
20678 \end_inset
20679 </cell>
20680 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20681 \begin_inset Text
20682
20683 \begin_layout Plain Layout
20684 \begin_inset Formula $\Delta$
20685 \end_inset
20686
20687
20688 \end_layout
20689
20690 \end_inset
20691 </cell>
20692 </row>
20693 <row>
20694 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20695 \begin_inset Text
20696
20697 \begin_layout Plain Layout
20698
20699 \backslash
20700 Theta
20701 \end_layout
20702
20703 \end_inset
20704 </cell>
20705 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20706 \begin_inset Text
20707
20708 \begin_layout Plain Layout
20709 \begin_inset Formula $\Theta$
20710 \end_inset
20711
20712
20713 \end_layout
20714
20715 \end_inset
20716 </cell>
20717 </row>
20718 <row>
20719 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20720 \begin_inset Text
20721
20722 \begin_layout Plain Layout
20723
20724 \backslash
20725 Lambda
20726 \end_layout
20727
20728 \end_inset
20729 </cell>
20730 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20731 \begin_inset Text
20732
20733 \begin_layout Plain Layout
20734 \begin_inset Formula $\Lambda$
20735 \end_inset
20736
20737
20738 \end_layout
20739
20740 \end_inset
20741 </cell>
20742 </row>
20743 <row>
20744 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20745 \begin_inset Text
20746
20747 \begin_layout Plain Layout
20748
20749 \backslash
20750 Xi
20751 \end_layout
20752
20753 \end_inset
20754 </cell>
20755 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20756 \begin_inset Text
20757
20758 \begin_layout Plain Layout
20759 \begin_inset Formula $\Xi$
20760 \end_inset
20761
20762
20763 \end_layout
20764
20765 \end_inset
20766 </cell>
20767 </row>
20768 <row>
20769 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20770 \begin_inset Text
20771
20772 \begin_layout Plain Layout
20773
20774 \backslash
20775 Pi
20776 \end_layout
20777
20778 \end_inset
20779 </cell>
20780 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20781 \begin_inset Text
20782
20783 \begin_layout Plain Layout
20784 \begin_inset Formula $\Pi$
20785 \end_inset
20786
20787
20788 \end_layout
20789
20790 \end_inset
20791 </cell>
20792 </row>
20793 </lyxtabular>
20794
20795 \end_inset
20796
20797
20798 \begin_inset space \hfill{}
20799 \end_inset
20800
20801
20802 \begin_inset Tabular
20803 <lyxtabular version="3" rows="6" columns="2">
20804 <features rotate="0" tabularvalignment="middle">
20805 <column alignment="center" valignment="top" width="0pt">
20806 <column alignment="center" valignment="top" width="0pt">
20807 <row>
20808 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20809 \begin_inset Text
20810
20811 \begin_layout Plain Layout
20812 Befehl
20813 \end_layout
20814
20815 \end_inset
20816 </cell>
20817 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20818 \begin_inset Text
20819
20820 \begin_layout Plain Layout
20821 Ergebnis
20822 \end_layout
20823
20824 \end_inset
20825 </cell>
20826 </row>
20827 <row>
20828 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20829 \begin_inset Text
20830
20831 \begin_layout Plain Layout
20832
20833 \backslash
20834 Sigma
20835 \end_layout
20836
20837 \end_inset
20838 </cell>
20839 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20840 \begin_inset Text
20841
20842 \begin_layout Plain Layout
20843 \begin_inset Formula $\Sigma$
20844 \end_inset
20845
20846
20847 \end_layout
20848
20849 \end_inset
20850 </cell>
20851 </row>
20852 <row>
20853 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20854 \begin_inset Text
20855
20856 \begin_layout Plain Layout
20857
20858 \backslash
20859 Upsilon
20860 \end_layout
20861
20862 \end_inset
20863 </cell>
20864 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20865 \begin_inset Text
20866
20867 \begin_layout Plain Layout
20868 \begin_inset Formula $\Upsilon$
20869 \end_inset
20870
20871
20872 \end_layout
20873
20874 \end_inset
20875 </cell>
20876 </row>
20877 <row>
20878 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20879 \begin_inset Text
20880
20881 \begin_layout Plain Layout
20882
20883 \backslash
20884 Phi
20885 \end_layout
20886
20887 \end_inset
20888 </cell>
20889 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20890 \begin_inset Text
20891
20892 \begin_layout Plain Layout
20893 \begin_inset Formula $\Phi$
20894 \end_inset
20895
20896
20897 \end_layout
20898
20899 \end_inset
20900 </cell>
20901 </row>
20902 <row>
20903 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20904 \begin_inset Text
20905
20906 \begin_layout Plain Layout
20907
20908 \backslash
20909 Psi
20910 \end_layout
20911
20912 \end_inset
20913 </cell>
20914 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20915 \begin_inset Text
20916
20917 \begin_layout Plain Layout
20918 \begin_inset Formula $\Psi$
20919 \end_inset
20920
20921
20922 \end_layout
20923
20924 \end_inset
20925 </cell>
20926 </row>
20927 <row>
20928 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20929 \begin_inset Text
20930
20931 \begin_layout Plain Layout
20932
20933 \backslash
20934 Omega
20935 \end_layout
20936
20937 \end_inset
20938 </cell>
20939 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20940 \begin_inset Text
20941
20942 \begin_layout Plain Layout
20943 \begin_inset Formula $\Omega$
20944 \end_inset
20945
20946
20947 \end_layout
20948
20949 \end_inset
20950 </cell>
20951 </row>
20952 </lyxtabular>
20953
20954 \end_inset
20955
20956
20957 \begin_inset space \hfill{}
20958 \end_inset
20959
20960
20961 \end_layout
20962
20963 \begin_layout Standard
20964 \begin_inset VSpace medskip
20965 \end_inset
20966
20967 Dass die großen griechischen Buchstaben aufrecht erscheinen, ist einem Fehler
20968  geschuldet, der während der Entwicklung von TeX gemacht wurde.
20969  Um korrekte kursive Großbuchstaben zu erhalten, beginnt man einen Befehl
20970  mit 
20971 \series bold
20972 var
20973 \series default
20974 .
20975  So ergibt z.
20976 \begin_inset space \thinspace{}
20977 \end_inset
20978
20979 B.
20980  der Befehl 
20981 \series bold
20982
20983 \backslash
20984 varGamma
20985 \series default
20986  
20987 \begin_inset Formula $\varGamma$
20988 \end_inset
20989
20990 .
20991  Eine andere Methode ist das Laden des Pakets 
20992 \series bold
20993 fixmath
20994 \series default
20995
20996 \begin_inset Foot
20997 status collapsed
20998
20999 \begin_layout Plain Layout
21000
21001 \series bold
21002 fixmath
21003 \series default
21004  ist Teil des LaTeX-Paketes 
21005 \series bold
21006 was
21007 \series default
21008
21009 \begin_inset Index idx
21010 status collapsed
21011
21012 \begin_layout Plain Layout
21013 Pakete ! was
21014 \begin_inset ERT
21015 status collapsed
21016
21017 \begin_layout Plain Layout
21018
21019
21020 \backslash
21021 vspace{4mm}
21022 \end_layout
21023
21024 \end_inset
21025
21026
21027 \end_layout
21028
21029 \end_inset
21030
21031 .
21032 \end_layout
21033
21034 \end_inset
21035
21036
21037 \begin_inset Index idx
21038 status collapsed
21039
21040 \begin_layout Plain Layout
21041 Pakete ! fixmath
21042 \end_layout
21043
21044 \end_inset
21045
21046  mit der LaTeX-Vorspannzeile
21047 \end_layout
21048
21049 \begin_layout Standard
21050
21051 \series bold
21052
21053 \backslash
21054 usepackage{fixmath}
21055 \end_layout
21056
21057 \begin_layout Standard
21058 Dann werden alle großen griechischen Buchstaben im Dokument automatisch
21059  kursiv ausgegeben.
21060 \end_layout
21061
21062 \begin_layout Subsection
21063 Fett gedruckte Buchstaben
21064 \begin_inset Index idx
21065 status collapsed
21066
21067 \begin_layout Plain Layout
21068 griechische Buchstaben ! fett gedruckte
21069 \end_layout
21070
21071 \end_inset
21072
21073
21074 \end_layout
21075
21076 \begin_layout Standard
21077 Griechische lassen sich nicht wie lateinische Buchstaben in verschiedenen
21078  Schriftstilen darstellen.
21079  Es besteht nur die Möglichkeit, sie mit dem Befehl 
21080 \series bold
21081
21082 \backslash
21083 boldsymbol
21084 \series default
21085
21086 \begin_inset Index idx
21087 status collapsed
21088
21089 \begin_layout Plain Layout
21090 Befehle ! B ! 
21091 \backslash
21092 boldsymbol
21093 \end_layout
21094
21095 \end_inset
21096
21097  fett gedruckt auszugeben.
21098 \end_layout
21099
21100 \begin_layout Standard
21101 \align center
21102 \begin_inset Tabular
21103 <lyxtabular version="3" rows="3" columns="2">
21104 <features rotate="0" tabularvalignment="middle">
21105 <column alignment="center" valignment="top">
21106 <column alignment="center" valignment="top">
21107 <row>
21108 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21109 \begin_inset Text
21110
21111 \begin_layout Plain Layout
21112 Befehl
21113 \end_layout
21114
21115 \end_inset
21116 </cell>
21117 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21118 \begin_inset Text
21119
21120 \begin_layout Plain Layout
21121 Ergebnis
21122 \end_layout
21123
21124 \end_inset
21125 </cell>
21126 </row>
21127 <row>
21128 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21129 \begin_inset Text
21130
21131 \begin_layout Plain Layout
21132
21133 \backslash
21134 Upsilon
21135 \backslash
21136 boldsymbol
21137 \backslash
21138 Upsilon
21139 \end_layout
21140
21141 \end_inset
21142 </cell>
21143 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21144 \begin_inset Text
21145
21146 \begin_layout Plain Layout
21147 \begin_inset Formula $\Upsilon\boldsymbol{\Upsilon}$
21148 \end_inset
21149
21150
21151 \end_layout
21152
21153 \end_inset
21154 </cell>
21155 </row>
21156 <row>
21157 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21158 \begin_inset Text
21159
21160 \begin_layout Plain Layout
21161
21162 \backslash
21163 theta
21164 \backslash
21165 boldsymbol
21166 \backslash
21167 theta
21168 \end_layout
21169
21170 \end_inset
21171 </cell>
21172 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21173 \begin_inset Text
21174
21175 \begin_layout Plain Layout
21176 \begin_inset Formula $\theta\boldsymbol{\theta}$
21177 \end_inset
21178
21179
21180 \end_layout
21181
21182 \end_inset
21183 </cell>
21184 </row>
21185 </lyxtabular>
21186
21187 \end_inset
21188
21189
21190 \end_layout
21191
21192 \begin_layout Section
21193 Symbole
21194 \begin_inset ERT
21195 status collapsed
21196
21197 \begin_layout Plain Layout
21198
21199
21200 \backslash
21201 texorpdfstring{
21202 \end_layout
21203
21204 \end_inset
21205
21206
21207 \begin_inset Foot
21208 status collapsed
21209
21210 \begin_layout Plain Layout
21211 Eine Liste mit sämtlichen Symbolen der meisten LaTeX-Pakete findet man in
21212  
21213 \begin_inset CommandInset citation
21214 LatexCommand cite
21215 key "Symbole"
21216
21217 \end_inset
21218
21219 .
21220 \end_layout
21221
21222 \end_inset
21223
21224
21225 \begin_inset ERT
21226 status collapsed
21227
21228 \begin_layout Plain Layout
21229
21230 }{}
21231 \end_layout
21232
21233 \end_inset
21234
21235
21236 \begin_inset Note Note
21237 status collapsed
21238
21239 \begin_layout Plain Layout
21240
21241 \series bold
21242
21243 \backslash
21244 texorpdfstring
21245 \series default
21246  dient dazu, dass die Fußnote nicht mit im pdf-Lesezeichen erscheint.
21247 \end_layout
21248
21249 \begin_layout Plain Layout
21250 Näheres zu 
21251 \series bold
21252
21253 \backslash
21254 texorpdfstring
21255 \series default
21256  steht in Kapitel 
21257 \begin_inset CommandInset ref
21258 LatexCommand ref
21259 reference "sub:Formeln-in-Überschriften"
21260
21261 \end_inset
21262
21263 .
21264 \end_layout
21265
21266 \end_inset
21267
21268
21269 \begin_inset Index idx
21270 status collapsed
21271
21272 \begin_layout Plain Layout
21273 Symbole
21274 \end_layout
21275
21276 \end_inset
21277
21278
21279 \end_layout
21280
21281 \begin_layout Standard
21282 Viele der im Folgenden aufgelisteten Symbole können auch über die Mathe-Werkzeug\SpecialChar \-
21283
21284 leistenknöpfe 
21285 \begin_inset Graphics
21286         filename ../../images/math/nabla.png
21287         scale 85
21288
21289 \end_inset
21290
21291  und 
21292 \begin_inset Graphics
21293         filename ../../images/math/digamma.png
21294         scale 85
21295
21296 \end_inset
21297
21298  eingefügt werden.
21299 \end_layout
21300
21301 \begin_layout Subsection
21302 Mathematische Symbole
21303 \begin_inset CommandInset label
21304 LatexCommand label
21305 name "sub:Mathematische-Symbole"
21306
21307 \end_inset
21308
21309
21310 \begin_inset Index idx
21311 status collapsed
21312
21313 \begin_layout Plain Layout
21314 Symbole ! mathematische
21315 \end_layout
21316
21317 \end_inset
21318
21319
21320 \end_layout
21321
21322 \begin_layout Standard
21323 \begin_inset space \hfill{}
21324 \end_inset
21325
21326
21327 \begin_inset Tabular
21328 <lyxtabular version="3" rows="10" columns="2">
21329 <features rotate="0" tabularvalignment="middle">
21330 <column alignment="center" valignment="top" width="0pt">
21331 <column alignment="center" valignment="top" width="0pt">
21332 <row>
21333 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21334 \begin_inset Text
21335
21336 \begin_layout Plain Layout
21337 Befehl
21338 \end_layout
21339
21340 \end_inset
21341 </cell>
21342 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21343 \begin_inset Text
21344
21345 \begin_layout Plain Layout
21346 Ergebnis
21347 \end_layout
21348
21349 \end_inset
21350 </cell>
21351 </row>
21352 <row>
21353 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21354 \begin_inset Text
21355
21356 \begin_layout Plain Layout
21357
21358 \backslash
21359 neg
21360 \end_layout
21361
21362 \end_inset
21363 </cell>
21364 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21365 \begin_inset Text
21366
21367 \begin_layout Plain Layout
21368 \begin_inset Formula $\neg$
21369 \end_inset
21370
21371
21372 \end_layout
21373
21374 \end_inset
21375 </cell>
21376 </row>
21377 <row>
21378 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21379 \begin_inset Text
21380
21381 \begin_layout Plain Layout
21382
21383 \backslash
21384 Im
21385 \end_layout
21386
21387 \end_inset
21388 </cell>
21389 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21390 \begin_inset Text
21391
21392 \begin_layout Plain Layout
21393 \begin_inset Formula $\Im$
21394 \end_inset
21395
21396
21397 \end_layout
21398
21399 \end_inset
21400 </cell>
21401 </row>
21402 <row>
21403 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21404 \begin_inset Text
21405
21406 \begin_layout Plain Layout
21407
21408 \backslash
21409 Re
21410 \end_layout
21411
21412 \end_inset
21413 </cell>
21414 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21415 \begin_inset Text
21416
21417 \begin_layout Plain Layout
21418 \begin_inset Formula $\Re$
21419 \end_inset
21420
21421
21422 \end_layout
21423
21424 \end_inset
21425 </cell>
21426 </row>
21427 <row>
21428 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21429 \begin_inset Text
21430
21431 \begin_layout Plain Layout
21432
21433 \backslash
21434 aleph
21435 \end_layout
21436
21437 \end_inset
21438 </cell>
21439 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21440 \begin_inset Text
21441
21442 \begin_layout Plain Layout
21443 \begin_inset Formula $\aleph$
21444 \end_inset
21445
21446
21447 \end_layout
21448
21449 \end_inset
21450 </cell>
21451 </row>
21452 <row>
21453 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21454 \begin_inset Text
21455
21456 \begin_layout Plain Layout
21457
21458 \backslash
21459 partial
21460 \end_layout
21461
21462 \end_inset
21463 </cell>
21464 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21465 \begin_inset Text
21466
21467 \begin_layout Plain Layout
21468 \begin_inset Formula $\partial$
21469 \end_inset
21470
21471
21472 \end_layout
21473
21474 \end_inset
21475 </cell>
21476 </row>
21477 <row>
21478 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21479 \begin_inset Text
21480
21481 \begin_layout Plain Layout
21482
21483 \backslash
21484 infty
21485 \end_layout
21486
21487 \end_inset
21488 </cell>
21489 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21490 \begin_inset Text
21491
21492 \begin_layout Plain Layout
21493 \begin_inset Formula $\infty$
21494 \end_inset
21495
21496
21497 \end_layout
21498
21499 \end_inset
21500 </cell>
21501 </row>
21502 <row>
21503 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21504 \begin_inset Text
21505
21506 \begin_layout Plain Layout
21507
21508 \backslash
21509 wp
21510 \end_layout
21511
21512 \end_inset
21513 </cell>
21514 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21515 \begin_inset Text
21516
21517 \begin_layout Plain Layout
21518 \begin_inset Formula $\wp$
21519 \end_inset
21520
21521
21522 \end_layout
21523
21524 \end_inset
21525 </cell>
21526 </row>
21527 <row>
21528 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21529 \begin_inset Text
21530
21531 \begin_layout Plain Layout
21532
21533 \backslash
21534 imath
21535 \end_layout
21536
21537 \end_inset
21538 </cell>
21539 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21540 \begin_inset Text
21541
21542 \begin_layout Plain Layout
21543 \begin_inset Formula $\imath$
21544 \end_inset
21545
21546
21547 \end_layout
21548
21549 \end_inset
21550 </cell>
21551 </row>
21552 <row>
21553 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21554 \begin_inset Text
21555
21556 \begin_layout Plain Layout
21557
21558 \backslash
21559 jmath
21560 \end_layout
21561
21562 \end_inset
21563 </cell>
21564 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21565 \begin_inset Text
21566
21567 \begin_layout Plain Layout
21568 \begin_inset Formula $\jmath$
21569 \end_inset
21570
21571
21572 \end_layout
21573
21574 \end_inset
21575 </cell>
21576 </row>
21577 </lyxtabular>
21578
21579 \end_inset
21580
21581
21582 \begin_inset space \hfill{}
21583 \end_inset
21584
21585
21586 \begin_inset Tabular
21587 <lyxtabular version="3" rows="10" columns="2">
21588 <features rotate="0" tabularvalignment="middle">
21589 <column alignment="center" valignment="top" width="0pt">
21590 <column alignment="center" valignment="top" width="0pt">
21591 <row>
21592 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21593 \begin_inset Text
21594
21595 \begin_layout Plain Layout
21596 Befehl
21597 \end_layout
21598
21599 \end_inset
21600 </cell>
21601 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21602 \begin_inset Text
21603
21604 \begin_layout Plain Layout
21605 Ergebnis
21606 \begin_inset Note Note
21607 status collapsed
21608
21609 \begin_layout Plain Layout
21610
21611 \series bold
21612
21613 \backslash
21614 raisebox
21615 \series default
21616  dient nur als Abstandhalter.
21617 \end_layout
21618
21619 \end_inset
21620
21621
21622 \end_layout
21623
21624 \end_inset
21625 </cell>
21626 </row>
21627 <row>
21628 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21629 \begin_inset Text
21630
21631 \begin_layout Plain Layout
21632
21633 \backslash
21634 forall
21635 \end_layout
21636
21637 \end_inset
21638 </cell>
21639 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21640 \begin_inset Text
21641
21642 \begin_layout Plain Layout
21643 \begin_inset Formula $\forall$
21644 \end_inset
21645
21646
21647 \end_layout
21648
21649 \end_inset
21650 </cell>
21651 </row>
21652 <row>
21653 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21654 \begin_inset Text
21655
21656 \begin_layout Plain Layout
21657
21658 \backslash
21659 exists
21660 \end_layout
21661
21662 \end_inset
21663 </cell>
21664 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21665 \begin_inset Text
21666
21667 \begin_layout Plain Layout
21668 \begin_inset Formula $\exists$
21669 \end_inset
21670
21671
21672 \end_layout
21673
21674 \end_inset
21675 </cell>
21676 </row>
21677 <row>
21678 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21679 \begin_inset Text
21680
21681 \begin_layout Plain Layout
21682
21683 \backslash
21684 nexists
21685 \end_layout
21686
21687 \end_inset
21688 </cell>
21689 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21690 \begin_inset Text
21691
21692 \begin_layout Plain Layout
21693 \begin_inset Formula $\nexists$
21694 \end_inset
21695
21696
21697 \end_layout
21698
21699 \end_inset
21700 </cell>
21701 </row>
21702 <row>
21703 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21704 \begin_inset Text
21705
21706 \begin_layout Plain Layout
21707
21708 \backslash
21709 emptyset
21710 \end_layout
21711
21712 \end_inset
21713 </cell>
21714 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21715 \begin_inset Text
21716
21717 \begin_layout Plain Layout
21718 \begin_inset Formula $\emptyset$
21719 \end_inset
21720
21721
21722 \end_layout
21723
21724 \end_inset
21725 </cell>
21726 </row>
21727 <row>
21728 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21729 \begin_inset Text
21730
21731 \begin_layout Plain Layout
21732
21733 \backslash
21734 varnothing
21735 \end_layout
21736
21737 \end_inset
21738 </cell>
21739 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21740 \begin_inset Text
21741
21742 \begin_layout Plain Layout
21743 \begin_inset Formula $\varnothing$
21744 \end_inset
21745
21746
21747 \end_layout
21748
21749 \end_inset
21750 </cell>
21751 </row>
21752 <row>
21753 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21754 \begin_inset Text
21755
21756 \begin_layout Plain Layout
21757
21758 \backslash
21759 dag
21760 \end_layout
21761
21762 \end_inset
21763 </cell>
21764 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21765 \begin_inset Text
21766
21767 \begin_layout Plain Layout
21768 \begin_inset Formula $\dag$
21769 \end_inset
21770
21771
21772 \end_layout
21773
21774 \end_inset
21775 </cell>
21776 </row>
21777 <row>
21778 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21779 \begin_inset Text
21780
21781 \begin_layout Plain Layout
21782
21783 \backslash
21784 ddag
21785 \end_layout
21786
21787 \end_inset
21788 </cell>
21789 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21790 \begin_inset Text
21791
21792 \begin_layout Plain Layout
21793 \begin_inset Formula $\ddag$
21794 \end_inset
21795
21796
21797 \end_layout
21798
21799 \end_inset
21800 </cell>
21801 </row>
21802 <row>
21803 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21804 \begin_inset Text
21805
21806 \begin_layout Plain Layout
21807
21808 \backslash
21809 complement
21810 \end_layout
21811
21812 \end_inset
21813 </cell>
21814 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21815 \begin_inset Text
21816
21817 \begin_layout Plain Layout
21818 \begin_inset ERT
21819 status collapsed
21820
21821 \begin_layout Plain Layout
21822
21823
21824 \backslash
21825 raisebox{-0.8mm}{
21826 \end_layout
21827
21828 \end_inset
21829
21830
21831 \begin_inset Formula $\complement$
21832 \end_inset
21833
21834
21835 \begin_inset ERT
21836 status collapsed
21837
21838 \begin_layout Plain Layout
21839
21840 }
21841 \end_layout
21842
21843 \end_inset
21844
21845
21846 \end_layout
21847
21848 \end_inset
21849 </cell>
21850 </row>
21851 <row>
21852 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21853 \begin_inset Text
21854
21855 \begin_layout Plain Layout
21856
21857 \backslash
21858 Bbbk
21859 \end_layout
21860
21861 \end_inset
21862 </cell>
21863 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21864 \begin_inset Text
21865
21866 \begin_layout Plain Layout
21867 \begin_inset Formula $\Bbbk$
21868 \end_inset
21869
21870
21871 \end_layout
21872
21873 \end_inset
21874 </cell>
21875 </row>
21876 </lyxtabular>
21877
21878 \end_inset
21879
21880
21881 \begin_inset space \hfill{}
21882 \end_inset
21883
21884
21885 \begin_inset Tabular
21886 <lyxtabular version="3" rows="10" columns="2">
21887 <features rotate="0" tabularvalignment="middle">
21888 <column alignment="center" valignment="top" width="0pt">
21889 <column alignment="center" valignment="top" width="0pt">
21890 <row>
21891 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21892 \begin_inset Text
21893
21894 \begin_layout Plain Layout
21895 Befehl
21896 \end_layout
21897
21898 \end_inset
21899 </cell>
21900 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21901 \begin_inset Text
21902
21903 \begin_layout Plain Layout
21904 Ergebnis
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 prime
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 $\prime$
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 backprime
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 $\backprime$
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" leftline="true" usebox="none">
21962 \begin_inset Text
21963
21964 \begin_layout Plain Layout
21965
21966 \backslash
21967 mho
21968 \end_layout
21969
21970 \end_inset
21971 </cell>
21972 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21973 \begin_inset Text
21974
21975 \begin_layout Plain Layout
21976 \begin_inset Formula $\mho$
21977 \end_inset
21978
21979
21980 \end_layout
21981
21982 \end_inset
21983 </cell>
21984 </row>
21985 <row>
21986 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21987 \begin_inset Text
21988
21989 \begin_layout Plain Layout
21990
21991 \backslash
21992 triangle
21993 \end_layout
21994
21995 \end_inset
21996 </cell>
21997 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21998 \begin_inset Text
21999
22000 \begin_layout Plain Layout
22001 \begin_inset Formula $\triangle$
22002 \end_inset
22003
22004
22005 \end_layout
22006
22007 \end_inset
22008 </cell>
22009 </row>
22010 <row>
22011 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22012 \begin_inset Text
22013
22014 \begin_layout Plain Layout
22015
22016 \backslash
22017 angle
22018 \end_layout
22019
22020 \end_inset
22021 </cell>
22022 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22023 \begin_inset Text
22024
22025 \begin_layout Plain Layout
22026 \begin_inset Formula $\angle$
22027 \end_inset
22028
22029
22030 \end_layout
22031
22032 \end_inset
22033 </cell>
22034 </row>
22035 <row>
22036 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22037 \begin_inset Text
22038
22039 \begin_layout Plain Layout
22040
22041 \backslash
22042 measuredangle
22043 \end_layout
22044
22045 \end_inset
22046 </cell>
22047 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22048 \begin_inset Text
22049
22050 \begin_layout Plain Layout
22051 \begin_inset Formula $\measuredangle$
22052 \end_inset
22053
22054
22055 \end_layout
22056
22057 \end_inset
22058 </cell>
22059 </row>
22060 <row>
22061 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22062 \begin_inset Text
22063
22064 \begin_layout Plain Layout
22065
22066 \backslash
22067 sphericalangle
22068 \end_layout
22069
22070 \end_inset
22071 </cell>
22072 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22073 \begin_inset Text
22074
22075 \begin_layout Plain Layout
22076 \begin_inset Formula $\sphericalangle$
22077 \end_inset
22078
22079
22080 \end_layout
22081
22082 \end_inset
22083 </cell>
22084 </row>
22085 <row>
22086 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22087 \begin_inset Text
22088
22089 \begin_layout Plain Layout
22090
22091 \backslash
22092 top
22093 \end_layout
22094
22095 \end_inset
22096 </cell>
22097 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22098 \begin_inset Text
22099
22100 \begin_layout Plain Layout
22101 \begin_inset Formula $\top$
22102 \end_inset
22103
22104
22105 \end_layout
22106
22107 \end_inset
22108 </cell>
22109 </row>
22110 <row>
22111 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22112 \begin_inset Text
22113
22114 \begin_layout Plain Layout
22115
22116 \backslash
22117 bot
22118 \end_layout
22119
22120 \end_inset
22121 </cell>
22122 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22123 \begin_inset Text
22124
22125 \begin_layout Plain Layout
22126 \begin_inset Formula $\bot$
22127 \end_inset
22128
22129
22130 \end_layout
22131
22132 \end_inset
22133 </cell>
22134 </row>
22135 </lyxtabular>
22136
22137 \end_inset
22138
22139
22140 \begin_inset space \hfill{}
22141 \end_inset
22142
22143
22144 \end_layout
22145
22146 \begin_layout Subsection
22147 Sonstige Symbole
22148 \begin_inset CommandInset label
22149 LatexCommand label
22150 name "sub:Sonstige-Symbole"
22151
22152 \end_inset
22153
22154
22155 \begin_inset Index idx
22156 status collapsed
22157
22158 \begin_layout Plain Layout
22159 Symbole ! sonstige
22160 \end_layout
22161
22162 \end_inset
22163
22164
22165 \end_layout
22166
22167 \begin_layout Standard
22168 \begin_inset VSpace -7mm
22169 \end_inset
22170
22171
22172 \end_layout
22173
22174 \begin_layout Standard
22175 \noindent
22176 \align center
22177 \begin_inset Tabular
22178 <lyxtabular version="3" rows="10" columns="2">
22179 <features rotate="0" tabularvalignment="middle">
22180 <column alignment="center" valignment="top" width="0pt">
22181 <column alignment="center" valignment="top" width="0pt">
22182 <row>
22183 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22184 \begin_inset Text
22185
22186 \begin_layout Plain Layout
22187 Befehl
22188 \end_layout
22189
22190 \end_inset
22191 </cell>
22192 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22193 \begin_inset Text
22194
22195 \begin_layout Plain Layout
22196 Ergebnis
22197 \end_layout
22198
22199 \end_inset
22200 </cell>
22201 </row>
22202 <row>
22203 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22204 \begin_inset Text
22205
22206 \begin_layout Plain Layout
22207
22208 \backslash
22209 flat
22210 \end_layout
22211
22212 \end_inset
22213 </cell>
22214 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22215 \begin_inset Text
22216
22217 \begin_layout Plain Layout
22218 \begin_inset Formula $\flat$
22219 \end_inset
22220
22221
22222 \end_layout
22223
22224 \end_inset
22225 </cell>
22226 </row>
22227 <row>
22228 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22229 \begin_inset Text
22230
22231 \begin_layout Plain Layout
22232
22233 \backslash
22234 natural
22235 \end_layout
22236
22237 \end_inset
22238 </cell>
22239 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22240 \begin_inset Text
22241
22242 \begin_layout Plain Layout
22243 \begin_inset Formula $\natural$
22244 \end_inset
22245
22246
22247 \end_layout
22248
22249 \end_inset
22250 </cell>
22251 </row>
22252 <row>
22253 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22254 \begin_inset Text
22255
22256 \begin_layout Plain Layout
22257
22258 \backslash
22259 sharp
22260 \end_layout
22261
22262 \end_inset
22263 </cell>
22264 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22265 \begin_inset Text
22266
22267 \begin_layout Plain Layout
22268 \begin_inset Formula $\sharp$
22269 \end_inset
22270
22271
22272 \end_layout
22273
22274 \end_inset
22275 </cell>
22276 </row>
22277 <row>
22278 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22279 \begin_inset Text
22280
22281 \begin_layout Plain Layout
22282
22283 \backslash
22284 surd
22285 \end_layout
22286
22287 \end_inset
22288 </cell>
22289 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22290 \begin_inset Text
22291
22292 \begin_layout Plain Layout
22293 \begin_inset Formula $\surd$
22294 \end_inset
22295
22296
22297 \end_layout
22298
22299 \end_inset
22300 </cell>
22301 </row>
22302 <row>
22303 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22304 \begin_inset Text
22305
22306 \begin_layout Plain Layout
22307
22308 \backslash
22309 checkmark
22310 \end_layout
22311
22312 \end_inset
22313 </cell>
22314 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22315 \begin_inset Text
22316
22317 \begin_layout Plain Layout
22318 \begin_inset Formula $\checkmark$
22319 \end_inset
22320
22321
22322 \end_layout
22323
22324 \end_inset
22325 </cell>
22326 </row>
22327 <row>
22328 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22329 \begin_inset Text
22330
22331 \begin_layout Plain Layout
22332
22333 \backslash
22334 yen
22335 \end_layout
22336
22337 \end_inset
22338 </cell>
22339 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22340 \begin_inset Text
22341
22342 \begin_layout Plain Layout
22343 \begin_inset Formula $\yen$
22344 \end_inset
22345
22346
22347 \end_layout
22348
22349 \end_inset
22350 </cell>
22351 </row>
22352 <row>
22353 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22354 \begin_inset Text
22355
22356 \begin_layout Plain Layout
22357
22358 \backslash
22359 pounds
22360 \end_layout
22361
22362 \end_inset
22363 </cell>
22364 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22365 \begin_inset Text
22366
22367 \begin_layout Plain Layout
22368 \begin_inset Formula $\pounds$
22369 \end_inset
22370
22371
22372 \end_layout
22373
22374 \end_inset
22375 </cell>
22376 </row>
22377 <row>
22378 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22379 \begin_inset Text
22380
22381 \begin_layout Plain Layout
22382 $
22383 \end_layout
22384
22385 \end_inset
22386 </cell>
22387 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22388 \begin_inset Text
22389
22390 \begin_layout Plain Layout
22391 \begin_inset Formula $\$$
22392 \end_inset
22393
22394
22395 \end_layout
22396
22397 \end_inset
22398 </cell>
22399 </row>
22400 <row>
22401 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22402 \begin_inset Text
22403
22404 \begin_layout Plain Layout
22405 §
22406 \end_layout
22407
22408 \end_inset
22409 </cell>
22410 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22411 \begin_inset Text
22412
22413 \begin_layout Plain Layout
22414 \begin_inset Formula $§$
22415 \end_inset
22416
22417
22418 \end_layout
22419
22420 \end_inset
22421 </cell>
22422 </row>
22423 </lyxtabular>
22424
22425 \end_inset
22426
22427
22428 \begin_inset Tabular
22429 <lyxtabular version="3" rows="10" columns="2">
22430 <features rotate="0" tabularvalignment="middle">
22431 <column alignment="center" valignment="top">
22432 <column alignment="center" valignment="top">
22433 <row>
22434 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22435 \begin_inset Text
22436
22437 \begin_layout Plain Layout
22438 Befehl
22439 \end_layout
22440
22441 \end_inset
22442 </cell>
22443 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22444 \begin_inset Text
22445
22446 \begin_layout Plain Layout
22447 Ergebnis
22448 \end_layout
22449
22450 \end_inset
22451 </cell>
22452 </row>
22453 <row>
22454 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22455 \begin_inset Text
22456
22457 \begin_layout Plain Layout
22458
22459 \backslash
22460 hbar
22461 \end_layout
22462
22463 \end_inset
22464 </cell>
22465 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22466 \begin_inset Text
22467
22468 \begin_layout Plain Layout
22469 \begin_inset Formula $\hbar$
22470 \end_inset
22471
22472
22473 \end_layout
22474
22475 \end_inset
22476 </cell>
22477 </row>
22478 <row>
22479 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22480 \begin_inset Text
22481
22482 \begin_layout Plain Layout
22483
22484 \backslash
22485 hslash
22486 \end_layout
22487
22488 \end_inset
22489 </cell>
22490 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22491 \begin_inset Text
22492
22493 \begin_layout Plain Layout
22494 \begin_inset Formula $\hslash$
22495 \end_inset
22496
22497
22498 \end_layout
22499
22500 \end_inset
22501 </cell>
22502 </row>
22503 <row>
22504 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22505 \begin_inset Text
22506
22507 \begin_layout Plain Layout
22508
22509 \backslash
22510 clubsuit
22511 \end_layout
22512
22513 \end_inset
22514 </cell>
22515 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22516 \begin_inset Text
22517
22518 \begin_layout Plain Layout
22519 \begin_inset Formula $\clubsuit$
22520 \end_inset
22521
22522
22523 \end_layout
22524
22525 \end_inset
22526 </cell>
22527 </row>
22528 <row>
22529 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22530 \begin_inset Text
22531
22532 \begin_layout Plain Layout
22533
22534 \backslash
22535 spadesuit
22536 \end_layout
22537
22538 \end_inset
22539 </cell>
22540 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22541 \begin_inset Text
22542
22543 \begin_layout Plain Layout
22544 \begin_inset Formula $\spadesuit$
22545 \end_inset
22546
22547
22548 \end_layout
22549
22550 \end_inset
22551 </cell>
22552 </row>
22553 <row>
22554 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22555 \begin_inset Text
22556
22557 \begin_layout Plain Layout
22558
22559 \backslash
22560 bigstar
22561 \end_layout
22562
22563 \end_inset
22564 </cell>
22565 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22566 \begin_inset Text
22567
22568 \begin_layout Plain Layout
22569 \begin_inset Formula $\bigstar$
22570 \end_inset
22571
22572
22573 \end_layout
22574
22575 \end_inset
22576 </cell>
22577 </row>
22578 <row>
22579 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22580 \begin_inset Text
22581
22582 \begin_layout Plain Layout
22583
22584 \backslash
22585 blacklozenge
22586 \end_layout
22587
22588 \end_inset
22589 </cell>
22590 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22591 \begin_inset Text
22592
22593 \begin_layout Plain Layout
22594 \begin_inset Formula $\blacklozenge$
22595 \end_inset
22596
22597
22598 \end_layout
22599
22600 \end_inset
22601 </cell>
22602 </row>
22603 <row>
22604 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22605 \begin_inset Text
22606
22607 \begin_layout Plain Layout
22608
22609 \backslash
22610 blacktriangle
22611 \end_layout
22612
22613 \end_inset
22614 </cell>
22615 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22616 \begin_inset Text
22617
22618 \begin_layout Plain Layout
22619 \begin_inset Formula $\blacktriangle$
22620 \end_inset
22621
22622
22623 \end_layout
22624
22625 \end_inset
22626 </cell>
22627 </row>
22628 <row>
22629 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22630 \begin_inset Text
22631
22632 \begin_layout Plain Layout
22633
22634 \backslash
22635 blacktiangledown
22636 \end_layout
22637
22638 \end_inset
22639 </cell>
22640 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22641 \begin_inset Text
22642
22643 \begin_layout Plain Layout
22644 \begin_inset Formula $\blacktriangledown$
22645 \end_inset
22646
22647
22648 \end_layout
22649
22650 \end_inset
22651 </cell>
22652 </row>
22653 <row>
22654 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22655 \begin_inset Text
22656
22657 \begin_layout Plain Layout
22658
22659 \backslash
22660 bullet
22661 \end_layout
22662
22663 \end_inset
22664 </cell>
22665 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22666 \begin_inset Text
22667
22668 \begin_layout Plain Layout
22669 \begin_inset Formula $\bullet$
22670 \end_inset
22671
22672
22673 \end_layout
22674
22675 \end_inset
22676 </cell>
22677 </row>
22678 </lyxtabular>
22679
22680 \end_inset
22681
22682
22683 \begin_inset Tabular
22684 <lyxtabular version="3" rows="10" columns="2">
22685 <features rotate="0" tabularvalignment="middle">
22686 <column alignment="center" valignment="top" width="0pt">
22687 <column alignment="center" valignment="top" width="0pt">
22688 <row>
22689 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22690 \begin_inset Text
22691
22692 \begin_layout Plain Layout
22693 Befehl
22694 \end_layout
22695
22696 \end_inset
22697 </cell>
22698 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22699 \begin_inset Text
22700
22701 \begin_layout Plain Layout
22702 Ergebnis
22703 \end_layout
22704
22705 \end_inset
22706 </cell>
22707 </row>
22708 <row>
22709 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22710 \begin_inset Text
22711
22712 \begin_layout Plain Layout
22713
22714 \backslash
22715 diamondsuit
22716 \end_layout
22717
22718 \end_inset
22719 </cell>
22720 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22721 \begin_inset Text
22722
22723 \begin_layout Plain Layout
22724 \begin_inset Formula $\diamondsuit$
22725 \end_inset
22726
22727
22728 \end_layout
22729
22730 \end_inset
22731 </cell>
22732 </row>
22733 <row>
22734 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22735 \begin_inset Text
22736
22737 \begin_layout Plain Layout
22738
22739 \backslash
22740 Diamond
22741 \end_layout
22742
22743 \end_inset
22744 </cell>
22745 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22746 \begin_inset Text
22747
22748 \begin_layout Plain Layout
22749 \begin_inset Formula $\Diamond$
22750 \end_inset
22751
22752
22753 \end_layout
22754
22755 \end_inset
22756 </cell>
22757 </row>
22758 <row>
22759 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22760 \begin_inset Text
22761
22762 \begin_layout Plain Layout
22763
22764 \backslash
22765 heartsuit
22766 \end_layout
22767
22768 \end_inset
22769 </cell>
22770 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22771 \begin_inset Text
22772
22773 \begin_layout Plain Layout
22774 \begin_inset Formula $\heartsuit$
22775 \end_inset
22776
22777
22778 \end_layout
22779
22780 \end_inset
22781 </cell>
22782 </row>
22783 <row>
22784 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22785 \begin_inset Text
22786
22787 \begin_layout Plain Layout
22788
22789 \backslash
22790 P
22791 \end_layout
22792
22793 \end_inset
22794 </cell>
22795 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22796 \begin_inset Text
22797
22798 \begin_layout Plain Layout
22799 \begin_inset Formula $\P$
22800 \end_inset
22801
22802
22803 \end_layout
22804
22805 \end_inset
22806 </cell>
22807 </row>
22808 <row>
22809 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22810 \begin_inset Text
22811
22812 \begin_layout Plain Layout
22813
22814 \backslash
22815 copyright
22816 \end_layout
22817
22818 \end_inset
22819 </cell>
22820 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22821 \begin_inset Text
22822
22823 \begin_layout Plain Layout
22824 \begin_inset Formula $\copyright$
22825 \end_inset
22826
22827
22828 \end_layout
22829
22830 \end_inset
22831 </cell>
22832 </row>
22833 <row>
22834 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22835 \begin_inset Text
22836
22837 \begin_layout Plain Layout
22838
22839 \backslash
22840 circledR
22841 \end_layout
22842
22843 \end_inset
22844 </cell>
22845 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22846 \begin_inset Text
22847
22848 \begin_layout Plain Layout
22849 \begin_inset Formula $\circledR$
22850 \end_inset
22851
22852
22853 \end_layout
22854
22855 \end_inset
22856 </cell>
22857 </row>
22858 <row>
22859 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22860 \begin_inset Text
22861
22862 \begin_layout Plain Layout
22863
22864 \backslash
22865 maltese
22866 \end_layout
22867
22868 \end_inset
22869 </cell>
22870 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22871 \begin_inset Text
22872
22873 \begin_layout Plain Layout
22874 \begin_inset Formula $\maltese$
22875 \end_inset
22876
22877
22878 \end_layout
22879
22880 \end_inset
22881 </cell>
22882 </row>
22883 <row>
22884 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22885 \begin_inset Text
22886
22887 \begin_layout Plain Layout
22888
22889 \backslash
22890 diagup
22891 \end_layout
22892
22893 \end_inset
22894 </cell>
22895 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22896 \begin_inset Text
22897
22898 \begin_layout Plain Layout
22899 \begin_inset Formula $\diagup$
22900 \end_inset
22901
22902
22903 \end_layout
22904
22905 \end_inset
22906 </cell>
22907 </row>
22908 <row>
22909 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22910 \begin_inset Text
22911
22912 \begin_layout Plain Layout
22913
22914 \backslash
22915 diagdown
22916 \end_layout
22917
22918 \end_inset
22919 </cell>
22920 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22921 \begin_inset Text
22922
22923 \begin_layout Plain Layout
22924 \begin_inset Formula $\diagdown$
22925 \end_inset
22926
22927
22928 \end_layout
22929
22930 \end_inset
22931 </cell>
22932 </row>
22933 </lyxtabular>
22934
22935 \end_inset
22936
22937
22938 \end_layout
22939
22940 \begin_layout Standard
22941 \begin_inset VSpace medskip
22942 \end_inset
22943
22944
22945 \end_layout
22946
22947 \begin_layout Standard
22948 Einige Symbole können in unterschiedlicher Größe dargestellt werden, siehe
22949  
22950 \begin_inset CommandInset ref
22951 LatexCommand ref
22952 reference "sub:Schriftgrößen"
22953
22954 \end_inset
22955
22956 .
22957 \end_layout
22958
22959 \begin_layout Subsection
22960 Das Euro-Symbol €
22961 \begin_inset Index idx
22962 status collapsed
22963
22964 \begin_layout Plain Layout
22965 Symbole ! Euro-Symbol
22966 \end_layout
22967
22968 \end_inset
22969
22970
22971 \begin_inset Index idx
22972 status collapsed
22973
22974 \begin_layout Plain Layout
22975
22976 \backslash
22977 @
22978 \begin_inset ERT
22979 status collapsed
22980
22981 \begin_layout Plain Layout
22982
22983
22984 \backslash
22985 officialeuro
22986 \end_layout
22987
22988 \end_inset
22989
22990
22991 \end_layout
22992
22993 \end_inset
22994
22995
22996 \end_layout
22997
22998 \begin_layout Standard
22999 Wenn man in einer Formel das Euro-Symbol verwenden will, muss man das LaTeX-Pake
23000
23001 \series bold
23002 eurosym
23003 \series default
23004
23005 \begin_inset Index idx
23006 status collapsed
23007
23008 \begin_layout Plain Layout
23009 Pakete ! eurosym
23010 \end_layout
23011
23012 \end_inset
23013
23014  installieren und dieses mit der LaTeX-Vorspannzeile
23015 \end_layout
23016
23017 \begin_layout Standard
23018
23019 \series bold
23020
23021 \backslash
23022 usepackage[gennarrow]{eurosym}
23023 \end_layout
23024
23025 \begin_layout Standard
23026 aktivieren.
23027  Das Euro-Symbol kann man nun mit dem Befehl 
23028 \series bold
23029
23030 \backslash
23031 euro
23032 \series default
23033
23034 \begin_inset Index idx
23035 status collapsed
23036
23037 \begin_layout Plain Layout
23038 Befehle ! E ! 
23039 \backslash
23040 euro
23041 \end_layout
23042
23043 \end_inset
23044
23045  aufrufen.
23046 \end_layout
23047
23048 \begin_layout Standard
23049 Das Euro-Symbol kann man direkt über die Tastatur in mathematischen Text
23050  eingeben, ohne 
23051 \series bold
23052 eurosym
23053 \series default
23054  installiert zu haben.
23055  Ist 
23056 \series bold
23057 eurosym
23058 \series default
23059  installiert, kann man 
23060 \series bold
23061
23062 \backslash
23063 euro
23064 \series default
23065  auch im TeX-Modus eingeben.
23066  Das offizielle Währungssymbol erhält man dann über den Befehl 
23067 \series bold
23068
23069 \backslash
23070 officialeuro
23071 \series default
23072
23073 \begin_inset Index idx
23074 status collapsed
23075
23076 \begin_layout Plain Layout
23077 Befehle ! O ! 
23078 \backslash
23079 officialeuro
23080 \end_layout
23081
23082 \end_inset
23083
23084 , der nur im TeX-Modus verfügbar ist.
23085 \end_layout
23086
23087 \begin_layout Standard
23088 \begin_inset ERT
23089 status collapsed
23090
23091 \begin_layout Plain Layout
23092
23093
23094 \backslash
23095 ifeurosym 
23096 \end_layout
23097
23098 \end_inset
23099
23100
23101 \begin_inset Note Note
23102 status open
23103
23104 \begin_layout Plain Layout
23105 Die folgende Tabelle erscheint nur im Ausdruck wenn das LaTeX-Paket 
23106 \series bold
23107 eurosym
23108 \series default
23109  installiert ist:
23110 \end_layout
23111
23112 \end_inset
23113
23114
23115 \end_layout
23116
23117 \begin_layout Standard
23118 Eine Übersicht der verschiedenen Euro-Symbole:
23119 \end_layout
23120
23121 \begin_layout Standard
23122 \align center
23123 \begin_inset Tabular
23124 <lyxtabular version="3" rows="4" columns="3">
23125 <features rotate="0" tabularvalignment="middle">
23126 <column alignment="center" valignment="top" width="0pt">
23127 <column alignment="center" valignment="top" width="0pt">
23128 <column alignment="center" valignment="top" width="0pt">
23129 <row>
23130 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" usebox="none">
23131 \begin_inset Text
23132
23133 \begin_layout Plain Layout
23134
23135 \end_layout
23136
23137 \end_inset
23138 </cell>
23139 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23140 \begin_inset Text
23141
23142 \begin_layout Plain Layout
23143 Befehl 
23144 \end_layout
23145
23146 \end_inset
23147 </cell>
23148 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23149 \begin_inset Text
23150
23151 \begin_layout Plain Layout
23152 Ergebnis
23153 \end_layout
23154
23155 \end_inset
23156 </cell>
23157 </row>
23158 <row>
23159 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23160 \begin_inset Text
23161
23162 \begin_layout Plain Layout
23163 Formel
23164 \end_layout
23165
23166 \end_inset
23167 </cell>
23168 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23169 \begin_inset Text
23170
23171 \begin_layout Plain Layout
23172
23173 \backslash
23174 euro
23175 \end_layout
23176
23177 \end_inset
23178 </cell>
23179 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23180 \begin_inset Text
23181
23182 \begin_layout Plain Layout
23183 \begin_inset Formula $\euro$
23184 \end_inset
23185
23186
23187 \end_layout
23188
23189 \end_inset
23190 </cell>
23191 </row>
23192 <row>
23193 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23194 \begin_inset Text
23195
23196 \begin_layout Plain Layout
23197 mathematischer Text
23198 \end_layout
23199
23200 \end_inset
23201 </cell>
23202 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23203 \begin_inset Text
23204
23205 \begin_layout Plain Layout
23206
23207 \end_layout
23208
23209 \end_inset
23210 </cell>
23211 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23212 \begin_inset Text
23213
23214 \begin_layout Plain Layout
23215 \begin_inset Formula $\mbox{€}$
23216 \end_inset
23217
23218
23219 \end_layout
23220
23221 \end_inset
23222 </cell>
23223 </row>
23224 <row>
23225 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23226 \begin_inset Text
23227
23228 \begin_layout Plain Layout
23229 TeX-Modus
23230 \end_layout
23231
23232 \end_inset
23233 </cell>
23234 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23235 \begin_inset Text
23236
23237 \begin_layout Plain Layout
23238
23239 \backslash
23240 officialeuro
23241 \end_layout
23242
23243 \end_inset
23244 </cell>
23245 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23246 \begin_inset Text
23247
23248 \begin_layout Plain Layout
23249 \begin_inset ERT
23250 status collapsed
23251
23252 \begin_layout Plain Layout
23253
23254
23255 \backslash
23256 officialeuro
23257 \end_layout
23258
23259 \end_inset
23260
23261
23262 \end_layout
23263
23264 \end_inset
23265 </cell>
23266 </row>
23267 </lyxtabular>
23268
23269 \end_inset
23270
23271
23272 \end_layout
23273
23274 \begin_layout Standard
23275 \begin_inset ERT
23276 status collapsed
23277
23278 \begin_layout Plain Layout
23279
23280
23281 \backslash
23282 else 
23283 \end_layout
23284
23285 \end_inset
23286
23287
23288 \begin_inset Note Note
23289 status open
23290
23291 \begin_layout Plain Layout
23292 Folgendes erscheint im Ausdruck wenn das LaTeX-Paket 
23293 \series bold
23294 eurosym
23295 \series default
23296  nicht installiert ist:
23297 \end_layout
23298
23299 \end_inset
23300
23301
23302 \end_layout
23303
23304 \begin_layout Standard
23305 Das LaTeX-Paket 
23306 \series bold
23307 eurosym 
23308 \series default
23309 muss installiert sein, um den Rest dieses Abschnitts im Ausdruck zu sehen.
23310 \end_layout
23311
23312 \begin_layout Standard
23313 \begin_inset ERT
23314 status collapsed
23315
23316 \begin_layout Plain Layout
23317
23318
23319 \backslash
23320 fi 
23321 \end_layout
23322
23323 \end_inset
23324
23325
23326 \end_layout
23327
23328 \begin_layout Section
23329 Relationen
23330 \begin_inset CommandInset label
23331 LatexCommand label
23332 name "sec:Relationen"
23333
23334 \end_inset
23335
23336
23337 \begin_inset Index idx
23338 status collapsed
23339
23340 \begin_layout Plain Layout
23341 Relationen
23342 \end_layout
23343
23344 \end_inset
23345
23346
23347 \begin_inset Index idx
23348 status collapsed
23349
23350 \begin_layout Plain Layout
23351 Vergleiche|see
23352 \begin_inset ERT
23353 status collapsed
23354
23355 \begin_layout Plain Layout
23356
23357 {
23358 \end_layout
23359
23360 \end_inset
23361
23362 Relationen
23363 \begin_inset ERT
23364 status collapsed
23365
23366 \begin_layout Plain Layout
23367
23368 }
23369 \end_layout
23370
23371 \end_inset
23372
23373
23374 \end_layout
23375
23376 \end_inset
23377
23378
23379 \end_layout
23380
23381 \begin_layout Standard
23382 Alle griechischen Buchstaben können auch über den Mathe-Werkzeugleistenknopf
23383  
23384 \begin_inset Graphics
23385         filename ../../images/math/leq.png
23386         scale 85
23387
23388 \end_inset
23389
23390  eingefügt werden.
23391 \end_layout
23392
23393 \begin_layout Standard
23394 \begin_inset space \hfill{}
23395 \end_inset
23396
23397
23398 \begin_inset Tabular
23399 <lyxtabular version="3" rows="17" columns="2">
23400 <features rotate="0" tabularvalignment="middle">
23401 <column alignment="center" valignment="top" width="0pt">
23402 <column alignment="center" valignment="top" width="0pt">
23403 <row>
23404 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23405 \begin_inset Text
23406
23407 \begin_layout Plain Layout
23408 Befehl
23409 \end_layout
23410
23411 \end_inset
23412 </cell>
23413 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23414 \begin_inset Text
23415
23416 \begin_layout Plain Layout
23417 Ergebnis
23418 \end_layout
23419
23420 \end_inset
23421 </cell>
23422 </row>
23423 <row>
23424 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23425 \begin_inset Text
23426
23427 \begin_layout Plain Layout
23428 <
23429 \end_layout
23430
23431 \end_inset
23432 </cell>
23433 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23434 \begin_inset Text
23435
23436 \begin_layout Plain Layout
23437 \begin_inset Formula $<$
23438 \end_inset
23439
23440
23441 \end_layout
23442
23443 \end_inset
23444 </cell>
23445 </row>
23446 <row>
23447 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23448 \begin_inset Text
23449
23450 \begin_layout Plain Layout
23451
23452 \backslash
23453 le
23454 \end_layout
23455
23456 \end_inset
23457 </cell>
23458 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23459 \begin_inset Text
23460
23461 \begin_layout Plain Layout
23462 \begin_inset Formula $\le$
23463 \end_inset
23464
23465
23466 \end_layout
23467
23468 \end_inset
23469 </cell>
23470 </row>
23471 <row>
23472 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23473 \begin_inset Text
23474
23475 \begin_layout Plain Layout
23476
23477 \backslash
23478 ll
23479 \end_layout
23480
23481 \end_inset
23482 </cell>
23483 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23484 \begin_inset Text
23485
23486 \begin_layout Plain Layout
23487 \begin_inset Formula $\ll$
23488 \end_inset
23489
23490
23491 \end_layout
23492
23493 \end_inset
23494 </cell>
23495 </row>
23496 <row>
23497 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23498 \begin_inset Text
23499
23500 \begin_layout Plain Layout
23501
23502 \backslash
23503 prec
23504 \end_layout
23505
23506 \end_inset
23507 </cell>
23508 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23509 \begin_inset Text
23510
23511 \begin_layout Plain Layout
23512 \begin_inset Formula $\prec$
23513 \end_inset
23514
23515
23516 \end_layout
23517
23518 \end_inset
23519 </cell>
23520 </row>
23521 <row>
23522 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23523 \begin_inset Text
23524
23525 \begin_layout Plain Layout
23526
23527 \backslash
23528 preceq
23529 \end_layout
23530
23531 \end_inset
23532 </cell>
23533 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23534 \begin_inset Text
23535
23536 \begin_layout Plain Layout
23537 \begin_inset Formula $\preceq$
23538 \end_inset
23539
23540
23541 \end_layout
23542
23543 \end_inset
23544 </cell>
23545 </row>
23546 <row>
23547 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23548 \begin_inset Text
23549
23550 \begin_layout Plain Layout
23551
23552 \backslash
23553 subset
23554 \end_layout
23555
23556 \end_inset
23557 </cell>
23558 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23559 \begin_inset Text
23560
23561 \begin_layout Plain Layout
23562 \begin_inset Formula $\subset$
23563 \end_inset
23564
23565
23566 \end_layout
23567
23568 \end_inset
23569 </cell>
23570 </row>
23571 <row>
23572 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23573 \begin_inset Text
23574
23575 \begin_layout Plain Layout
23576
23577 \backslash
23578 subseteq
23579 \end_layout
23580
23581 \end_inset
23582 </cell>
23583 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23584 \begin_inset Text
23585
23586 \begin_layout Plain Layout
23587 \begin_inset Formula $\subseteq$
23588 \end_inset
23589
23590
23591 \end_layout
23592
23593 \end_inset
23594 </cell>
23595 </row>
23596 <row>
23597 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23598 \begin_inset Text
23599
23600 \begin_layout Plain Layout
23601
23602 \backslash
23603 sqsubseteq
23604 \end_layout
23605
23606 \end_inset
23607 </cell>
23608 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23609 \begin_inset Text
23610
23611 \begin_layout Plain Layout
23612 \begin_inset Formula $\sqsubseteq$
23613 \end_inset
23614
23615
23616 \end_layout
23617
23618 \end_inset
23619 </cell>
23620 </row>
23621 <row>
23622 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23623 \begin_inset Text
23624
23625 \begin_layout Plain Layout
23626
23627 \backslash
23628 in
23629 \end_layout
23630
23631 \end_inset
23632 </cell>
23633 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23634 \begin_inset Text
23635
23636 \begin_layout Plain Layout
23637 \begin_inset Formula $\in$
23638 \end_inset
23639
23640
23641 \end_layout
23642
23643 \end_inset
23644 </cell>
23645 </row>
23646 <row>
23647 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23648 \begin_inset Text
23649
23650 \begin_layout Plain Layout
23651
23652 \backslash
23653 vdash
23654 \end_layout
23655
23656 \end_inset
23657 </cell>
23658 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23659 \begin_inset Text
23660
23661 \begin_layout Plain Layout
23662 \begin_inset Formula $\vdash$
23663 \end_inset
23664
23665
23666 \end_layout
23667
23668 \end_inset
23669 </cell>
23670 </row>
23671 <row>
23672 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23673 \begin_inset Text
23674
23675 \begin_layout Plain Layout
23676
23677 \backslash
23678 smile
23679 \end_layout
23680
23681 \end_inset
23682 </cell>
23683 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23684 \begin_inset Text
23685
23686 \begin_layout Plain Layout
23687 \begin_inset Formula $\smile$
23688 \end_inset
23689
23690
23691 \end_layout
23692
23693 \end_inset
23694 </cell>
23695 </row>
23696 <row>
23697 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23698 \begin_inset Text
23699
23700 \begin_layout Plain Layout
23701
23702 \backslash
23703 lhd
23704 \end_layout
23705
23706 \end_inset
23707 </cell>
23708 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23709 \begin_inset Text
23710
23711 \begin_layout Plain Layout
23712 \begin_inset Formula $\lhd$
23713 \end_inset
23714
23715
23716 \end_layout
23717
23718 \end_inset
23719 </cell>
23720 </row>
23721 <row>
23722 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23723 \begin_inset Text
23724
23725 \begin_layout Plain Layout
23726
23727 \backslash
23728 unlhd
23729 \end_layout
23730
23731 \end_inset
23732 </cell>
23733 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23734 \begin_inset Text
23735
23736 \begin_layout Plain Layout
23737 \begin_inset Formula $\unlhd$
23738 \end_inset
23739
23740
23741 \end_layout
23742
23743 \end_inset
23744 </cell>
23745 </row>
23746 <row>
23747 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23748 \begin_inset Text
23749
23750 \begin_layout Plain Layout
23751
23752 \backslash
23753 gtrless
23754 \end_layout
23755
23756 \end_inset
23757 </cell>
23758 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23759 \begin_inset Text
23760
23761 \begin_layout Plain Layout
23762 \begin_inset Formula $\gtrless$
23763 \end_inset
23764
23765
23766 \end_layout
23767
23768 \end_inset
23769 </cell>
23770 </row>
23771 <row>
23772 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23773 \begin_inset Text
23774
23775 \begin_layout Plain Layout
23776
23777 \backslash
23778 mid
23779 \end_layout
23780
23781 \end_inset
23782 </cell>
23783 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23784 \begin_inset Text
23785
23786 \begin_layout Plain Layout
23787 \begin_inset Formula $\mid$
23788 \end_inset
23789
23790
23791 \end_layout
23792
23793 \end_inset
23794 </cell>
23795 </row>
23796 <row>
23797 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23798 \begin_inset Text
23799
23800 \begin_layout Plain Layout
23801
23802 \backslash
23803 nmid
23804 \end_layout
23805
23806 \end_inset
23807 </cell>
23808 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23809 \begin_inset Text
23810
23811 \begin_layout Plain Layout
23812 \begin_inset Formula $\nmid$
23813 \end_inset
23814
23815
23816 \end_layout
23817
23818 \end_inset
23819 </cell>
23820 </row>
23821 </lyxtabular>
23822
23823 \end_inset
23824
23825
23826 \begin_inset space \hfill{}
23827 \end_inset
23828
23829
23830 \begin_inset Tabular
23831 <lyxtabular version="3" rows="17" columns="2">
23832 <features rotate="0" tabularvalignment="middle">
23833 <column alignment="center" valignment="top" width="0pt">
23834 <column alignment="center" valignment="top" width="0pt">
23835 <row>
23836 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23837 \begin_inset Text
23838
23839 \begin_layout Plain Layout
23840 Befehl
23841 \end_layout
23842
23843 \end_inset
23844 </cell>
23845 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23846 \begin_inset Text
23847
23848 \begin_layout Plain Layout
23849 Ergebnis
23850 \end_layout
23851
23852 \end_inset
23853 </cell>
23854 </row>
23855 <row>
23856 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23857 \begin_inset Text
23858
23859 \begin_layout Plain Layout
23860 =
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 $=$
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 not=
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 $\not=$
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 equiv
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 $\equiv$
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 sim
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 $\sim$
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 simeq
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 $\simeq$
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" leftline="true" usebox="none">
23980 \begin_inset Text
23981
23982 \begin_layout Plain Layout
23983
23984 \backslash
23985 approx
23986 \end_layout
23987
23988 \end_inset
23989 </cell>
23990 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23991 \begin_inset Text
23992
23993 \begin_layout Plain Layout
23994 \begin_inset Formula $\approx$
23995 \end_inset
23996
23997
23998 \end_layout
23999
24000 \end_inset
24001 </cell>
24002 </row>
24003 <row>
24004 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24005 \begin_inset Text
24006
24007 \begin_layout Plain Layout
24008
24009 \backslash
24010 cong
24011 \end_layout
24012
24013 \end_inset
24014 </cell>
24015 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24016 \begin_inset Text
24017
24018 \begin_layout Plain Layout
24019 \begin_inset Formula $\cong$
24020 \end_inset
24021
24022
24023 \end_layout
24024
24025 \end_inset
24026 </cell>
24027 </row>
24028 <row>
24029 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24030 \begin_inset Text
24031
24032 \begin_layout Plain Layout
24033
24034 \backslash
24035 bowtie
24036 \end_layout
24037
24038 \end_inset
24039 </cell>
24040 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24041 \begin_inset Text
24042
24043 \begin_layout Plain Layout
24044 \begin_inset Formula $\bowtie$
24045 \end_inset
24046
24047
24048 \end_layout
24049
24050 \end_inset
24051 </cell>
24052 </row>
24053 <row>
24054 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24055 \begin_inset Text
24056
24057 \begin_layout Plain Layout
24058
24059 \backslash
24060 notin
24061 \end_layout
24062
24063 \end_inset
24064 </cell>
24065 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24066 \begin_inset Text
24067
24068 \begin_layout Plain Layout
24069 \begin_inset Formula $\notin$
24070 \end_inset
24071
24072
24073 \end_layout
24074
24075 \end_inset
24076 </cell>
24077 </row>
24078 <row>
24079 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24080 \begin_inset Text
24081
24082 \begin_layout Plain Layout
24083
24084 \backslash
24085 perp
24086 \end_layout
24087
24088 \end_inset
24089 </cell>
24090 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24091 \begin_inset Text
24092
24093 \begin_layout Plain Layout
24094 \begin_inset Formula $\perp$
24095 \end_inset
24096
24097
24098 \end_layout
24099
24100 \end_inset
24101 </cell>
24102 </row>
24103 <row>
24104 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24105 \begin_inset Text
24106
24107 \begin_layout Plain Layout
24108
24109 \backslash
24110 propto
24111 \end_layout
24112
24113 \end_inset
24114 </cell>
24115 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24116 \begin_inset Text
24117
24118 \begin_layout Plain Layout
24119 \begin_inset Formula $\propto$
24120 \end_inset
24121
24122
24123 \end_layout
24124
24125 \end_inset
24126 </cell>
24127 </row>
24128 <row>
24129 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24130 \begin_inset Text
24131
24132 \begin_layout Plain Layout
24133
24134 \backslash
24135 asymp
24136 \end_layout
24137
24138 \end_inset
24139 </cell>
24140 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24141 \begin_inset Text
24142
24143 \begin_layout Plain Layout
24144 \begin_inset Formula $\asymp$
24145 \end_inset
24146
24147
24148 \end_layout
24149
24150 \end_inset
24151 </cell>
24152 </row>
24153 <row>
24154 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24155 \begin_inset Text
24156
24157 \begin_layout Plain Layout
24158
24159 \backslash
24160 doteq
24161 \end_layout
24162
24163 \end_inset
24164 </cell>
24165 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24166 \begin_inset Text
24167
24168 \begin_layout Plain Layout
24169 \begin_inset Formula $\doteq$
24170 \end_inset
24171
24172
24173 \end_layout
24174
24175 \end_inset
24176 </cell>
24177 </row>
24178 <row>
24179 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24180 \begin_inset Text
24181
24182 \begin_layout Plain Layout
24183
24184 \backslash
24185 circeq
24186 \end_layout
24187
24188 \end_inset
24189 </cell>
24190 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24191 \begin_inset Text
24192
24193 \begin_layout Plain Layout
24194 \begin_inset Formula $\circeq$
24195 \end_inset
24196
24197
24198 \end_layout
24199
24200 \end_inset
24201 </cell>
24202 </row>
24203 <row>
24204 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24205 \begin_inset Text
24206
24207 \begin_layout Plain Layout
24208
24209 \backslash
24210 models
24211 \end_layout
24212
24213 \end_inset
24214 </cell>
24215 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24216 \begin_inset Text
24217
24218 \begin_layout Plain Layout
24219 \begin_inset Formula $\models$
24220 \end_inset
24221
24222
24223 \end_layout
24224
24225 \end_inset
24226 </cell>
24227 </row>
24228 <row>
24229 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24230 \begin_inset Text
24231
24232 \begin_layout Plain Layout
24233
24234 \backslash
24235 widehat=
24236 \end_layout
24237
24238 \end_inset
24239 </cell>
24240 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24241 \begin_inset Text
24242
24243 \begin_layout Plain Layout
24244 \begin_inset Formula $\widehat{=}$
24245 \end_inset
24246
24247
24248 \end_layout
24249
24250 \end_inset
24251 </cell>
24252 </row>
24253 </lyxtabular>
24254
24255 \end_inset
24256
24257
24258 \begin_inset space \hfill{}
24259 \end_inset
24260
24261
24262 \begin_inset Tabular
24263 <lyxtabular version="3" rows="17" columns="2">
24264 <features rotate="0" tabularvalignment="middle">
24265 <column alignment="center" valignment="top" width="0pt">
24266 <column alignment="center" valignment="top" width="0pt">
24267 <row>
24268 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24269 \begin_inset Text
24270
24271 \begin_layout Plain Layout
24272 Befehl
24273 \end_layout
24274
24275 \end_inset
24276 </cell>
24277 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24278 \begin_inset Text
24279
24280 \begin_layout Plain Layout
24281 Ergebnis
24282 \end_layout
24283
24284 \end_inset
24285 </cell>
24286 </row>
24287 <row>
24288 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24289 \begin_inset Text
24290
24291 \begin_layout Plain Layout
24292 >
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 $>$
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 ge
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 $\ge$
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 gg
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 $\gg$
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 succ
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 $\succ$
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 succeq
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 $\succeq$
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" leftline="true" usebox="none">
24412 \begin_inset Text
24413
24414 \begin_layout Plain Layout
24415
24416 \backslash
24417 supset
24418 \end_layout
24419
24420 \end_inset
24421 </cell>
24422 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24423 \begin_inset Text
24424
24425 \begin_layout Plain Layout
24426 \begin_inset Formula $\supset$
24427 \end_inset
24428
24429
24430 \end_layout
24431
24432 \end_inset
24433 </cell>
24434 </row>
24435 <row>
24436 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24437 \begin_inset Text
24438
24439 \begin_layout Plain Layout
24440
24441 \backslash
24442 supseteq
24443 \end_layout
24444
24445 \end_inset
24446 </cell>
24447 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24448 \begin_inset Text
24449
24450 \begin_layout Plain Layout
24451 \begin_inset Formula $\supseteq$
24452 \end_inset
24453
24454
24455 \end_layout
24456
24457 \end_inset
24458 </cell>
24459 </row>
24460 <row>
24461 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24462 \begin_inset Text
24463
24464 \begin_layout Plain Layout
24465
24466 \backslash
24467 sqsupseteq
24468 \end_layout
24469
24470 \end_inset
24471 </cell>
24472 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24473 \begin_inset Text
24474
24475 \begin_layout Plain Layout
24476 \begin_inset Formula $\sqsupseteq$
24477 \end_inset
24478
24479
24480 \end_layout
24481
24482 \end_inset
24483 </cell>
24484 </row>
24485 <row>
24486 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24487 \begin_inset Text
24488
24489 \begin_layout Plain Layout
24490
24491 \backslash
24492 ni
24493 \end_layout
24494
24495 \end_inset
24496 </cell>
24497 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24498 \begin_inset Text
24499
24500 \begin_layout Plain Layout
24501 \begin_inset Formula $\ni$
24502 \end_inset
24503
24504
24505 \end_layout
24506
24507 \end_inset
24508 </cell>
24509 </row>
24510 <row>
24511 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24512 \begin_inset Text
24513
24514 \begin_layout Plain Layout
24515
24516 \backslash
24517 dashv
24518 \end_layout
24519
24520 \end_inset
24521 </cell>
24522 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24523 \begin_inset Text
24524
24525 \begin_layout Plain Layout
24526 \begin_inset Formula $\dashv$
24527 \end_inset
24528
24529
24530 \end_layout
24531
24532 \end_inset
24533 </cell>
24534 </row>
24535 <row>
24536 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24537 \begin_inset Text
24538
24539 \begin_layout Plain Layout
24540
24541 \backslash
24542 frown
24543 \end_layout
24544
24545 \end_inset
24546 </cell>
24547 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24548 \begin_inset Text
24549
24550 \begin_layout Plain Layout
24551 \begin_inset Formula $\frown$
24552 \end_inset
24553
24554
24555 \end_layout
24556
24557 \end_inset
24558 </cell>
24559 </row>
24560 <row>
24561 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24562 \begin_inset Text
24563
24564 \begin_layout Plain Layout
24565
24566 \backslash
24567 rhd
24568 \end_layout
24569
24570 \end_inset
24571 </cell>
24572 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24573 \begin_inset Text
24574
24575 \begin_layout Plain Layout
24576 \begin_inset Formula $\rhd$
24577 \end_inset
24578
24579
24580 \end_layout
24581
24582 \end_inset
24583 </cell>
24584 </row>
24585 <row>
24586 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24587 \begin_inset Text
24588
24589 \begin_layout Plain Layout
24590
24591 \backslash
24592 unrhd
24593 \end_layout
24594
24595 \end_inset
24596 </cell>
24597 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24598 \begin_inset Text
24599
24600 \begin_layout Plain Layout
24601 \begin_inset Formula $\unrhd$
24602 \end_inset
24603
24604
24605 \end_layout
24606
24607 \end_inset
24608 </cell>
24609 </row>
24610 <row>
24611 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24612 \begin_inset Text
24613
24614 \begin_layout Plain Layout
24615
24616 \backslash
24617 lessgtr
24618 \end_layout
24619
24620 \end_inset
24621 </cell>
24622 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24623 \begin_inset Text
24624
24625 \begin_layout Plain Layout
24626 \begin_inset Formula $\lessgtr$
24627 \end_inset
24628
24629
24630 \end_layout
24631
24632 \end_inset
24633 </cell>
24634 </row>
24635 <row>
24636 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24637 \begin_inset Text
24638
24639 \begin_layout Plain Layout
24640
24641 \backslash
24642 parallel
24643 \end_layout
24644
24645 \end_inset
24646 </cell>
24647 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24648 \begin_inset Text
24649
24650 \begin_layout Plain Layout
24651 \begin_inset Formula $\parallel$
24652 \end_inset
24653
24654
24655 \end_layout
24656
24657 \end_inset
24658 </cell>
24659 </row>
24660 <row>
24661 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24662 \begin_inset Text
24663
24664 \begin_layout Plain Layout
24665
24666 \backslash
24667 nparallel
24668 \end_layout
24669
24670 \end_inset
24671 </cell>
24672 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24673 \begin_inset Text
24674
24675 \begin_layout Plain Layout
24676 \begin_inset Formula $\nparallel$
24677 \end_inset
24678
24679
24680 \end_layout
24681
24682 \end_inset
24683 </cell>
24684 </row>
24685 </lyxtabular>
24686
24687 \end_inset
24688
24689
24690 \begin_inset space \hfill{}
24691 \end_inset
24692
24693
24694 \end_layout
24695
24696 \begin_layout Standard
24697 \begin_inset VSpace medskip
24698 \end_inset
24699
24700 Die Zeichen 
24701 \series bold
24702
24703 \backslash
24704 lhd
24705 \series default
24706  bzw.
24707 \begin_inset space \space{}
24708 \end_inset
24709
24710
24711 \series bold
24712
24713 \backslash
24714 rhd
24715 \series default
24716  sind größer als die gleich aussehenden Operatoren
24717 \begin_inset Newline linebreak
24718 \end_inset
24719
24720
24721 \series bold
24722
24723 \backslash
24724 triangleleft
24725 \series default
24726  bzw.
24727 \begin_inset space \space{}
24728 \end_inset
24729
24730
24731 \series bold
24732
24733 \backslash
24734 triangleright
24735 \series default
24736 .
24737 \end_layout
24738
24739 \begin_layout Standard
24740 Relationen sind im Gegensatz zu Symbolen immer von Leerraum umgeben.
24741 \end_layout
24742
24743 \begin_layout Standard
24744 Relationen mit Beschriftungen können mit Hilfe des Befehls 
24745 \series bold
24746
24747 \backslash
24748 stackrel
24749 \series default
24750
24751 \begin_inset Index idx
24752 status collapsed
24753
24754 \begin_layout Plain Layout
24755 Befehle ! S ! 
24756 \backslash
24757 stackrel
24758 \end_layout
24759
24760 \end_inset
24761
24762  erstellt werden:
24763 \end_layout
24764
24765 \begin_layout Standard
24766 \align center
24767 \begin_inset Tabular
24768 <lyxtabular version="3" rows="2" columns="2">
24769 <features rotate="0" tabularvalignment="middle">
24770 <column alignment="center" valignment="top">
24771 <column alignment="center" valignment="top">
24772 <row>
24773 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24774 \begin_inset Text
24775
24776 \begin_layout Plain Layout
24777 Befehl
24778 \end_layout
24779
24780 \end_inset
24781 </cell>
24782 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24783 \begin_inset Text
24784
24785 \begin_layout Plain Layout
24786 Ergebnis
24787 \begin_inset Note Note
24788 status collapsed
24789
24790 \begin_layout Plain Layout
24791
24792 \series bold
24793
24794 \backslash
24795 raisebox
24796 \series default
24797  dient nur als Abstandhalter.
24798 \end_layout
24799
24800 \end_inset
24801
24802
24803 \end_layout
24804
24805 \end_inset
24806 </cell>
24807 </row>
24808 <row>
24809 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24810 \begin_inset Text
24811
24812 \begin_layout Plain Layout
24813 A(r)
24814 \backslash
24815 stackrel
24816 \begin_inset ERT
24817 status collapsed
24818
24819 \begin_layout Plain Layout
24820
24821
24822 \backslash
24823 leer 
24824 \end_layout
24825
24826 \end_inset
24827
24828 r
24829 \backslash
24830 to
24831 \backslash
24832 infty
24833 \begin_inset ERT
24834 status collapsed
24835
24836 \begin_layout Plain Layout
24837
24838
24839 \backslash
24840 leer 
24841 \end_layout
24842
24843 \end_inset
24844
24845
24846 \begin_inset Formula $\downarrow$
24847 \end_inset
24848
24849
24850 \backslash
24851 approx
24852 \begin_inset ERT
24853 status collapsed
24854
24855 \begin_layout Plain Layout
24856
24857
24858 \backslash
24859 leer 
24860 \end_layout
24861
24862 \end_inset
24863
24864
24865 \begin_inset ERT
24866 status collapsed
24867
24868 \begin_layout Plain Layout
24869
24870
24871 \backslash
24872 leer 
24873 \end_layout
24874
24875 \end_inset
24876
24877 B
24878 \end_layout
24879
24880 \end_inset
24881 </cell>
24882 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24883 \begin_inset Text
24884
24885 \begin_layout Plain Layout
24886 \begin_inset Formula $\raisebox{5mm}{}A(r)\stackrel{r\to\infty}{\approx}B$
24887 \end_inset
24888
24889
24890 \end_layout
24891
24892 \end_inset
24893 </cell>
24894 </row>
24895 </lyxtabular>
24896
24897 \end_inset
24898
24899
24900 \end_layout
24901
24902 \begin_layout Section
24903 Funktionen
24904 \end_layout
24905
24906 \begin_layout Subsection
24907 Vordefinierte Funktionen
24908 \begin_inset CommandInset label
24909 LatexCommand label
24910 name "sub:Vordefinierte-Funktionen"
24911
24912 \end_inset
24913
24914
24915 \begin_inset Index idx
24916 status collapsed
24917
24918 \begin_layout Plain Layout
24919 Funktionen ! vordefinierte
24920 \end_layout
24921
24922 \end_inset
24923
24924
24925 \end_layout
24926
24927 \begin_layout Standard
24928 Allgemein werden in mathematischen Ausdrücken Variablen 
24929 \shape italic
24930 kursiv
24931 \shape default
24932  gesetzt, Funktionsnamen hingegen nicht, denn 
24933 \begin_inset Formula $sin$
24934 \end_inset
24935
24936  könnte als 
24937 \begin_inset Formula $s\cdot i\cdot n$
24938 \end_inset
24939
24940  missverstanden werden.
24941  Aus diesem Grund gibt es vordefinierte Funktionen, die zusätzlich von Vorfaktor
24942 en etwas abgesetzt sind.
24943  Sie werden als Befehle mit einem Backslash vor dem Funktionsnamen eingefügt.
24944 \end_layout
24945
24946 \begin_layout Standard
24947 \align center
24948 \begin_inset Tabular
24949 <lyxtabular version="3" rows="2" columns="4">
24950 <features rotate="0" tabularvalignment="middle">
24951 <column alignment="center" valignment="top" width="0pt">
24952 <column alignment="center" valignment="top" width="0pt">
24953 <column alignment="center" valignment="top" width="0pt">
24954 <column alignment="center" valignment="top" width="0pt">
24955 <row>
24956 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24957 \begin_inset Text
24958
24959 \begin_layout Plain Layout
24960 Befehl
24961 \end_layout
24962
24963 \end_inset
24964 </cell>
24965 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24966 \begin_inset Text
24967
24968 \begin_layout Plain Layout
24969 Ergebnis
24970 \end_layout
24971
24972 \end_inset
24973 </cell>
24974 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24975 \begin_inset Text
24976
24977 \begin_layout Plain Layout
24978 Befehl
24979 \end_layout
24980
24981 \end_inset
24982 </cell>
24983 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24984 \begin_inset Text
24985
24986 \begin_layout Plain Layout
24987 Ergebnis
24988 \end_layout
24989
24990 \end_inset
24991 </cell>
24992 </row>
24993 <row>
24994 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24995 \begin_inset Text
24996
24997 \begin_layout Plain Layout
24998 Asin(x)+B
24999 \end_layout
25000
25001 \end_inset
25002 </cell>
25003 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25004 \begin_inset Text
25005
25006 \begin_layout Plain Layout
25007 \begin_inset Formula $Asin(x)+B$
25008 \end_inset
25009
25010
25011 \end_layout
25012
25013 \end_inset
25014 </cell>
25015 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25016 \begin_inset Text
25017
25018 \begin_layout Plain Layout
25019 A
25020 \backslash
25021 sin(x)+B
25022 \end_layout
25023
25024 \end_inset
25025 </cell>
25026 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25027 \begin_inset Text
25028
25029 \begin_layout Plain Layout
25030 \begin_inset Formula $A\sin(x)+B$
25031 \end_inset
25032
25033
25034 \end_layout
25035
25036 \end_inset
25037 </cell>
25038 </row>
25039 </lyxtabular>
25040
25041 \end_inset
25042
25043
25044 \end_layout
25045
25046 \begin_layout Standard
25047 Folgende Funktionen sind vordefiniert:
25048 \end_layout
25049
25050 \begin_layout Standard
25051 \begin_inset VSpace -2mm
25052 \end_inset
25053
25054
25055 \end_layout
25056
25057 \begin_layout Standard
25058 \align center
25059 \begin_inset Tabular
25060 <lyxtabular version="3" rows="9" columns="4">
25061 <features rotate="0" tabularvalignment="middle">
25062 <column alignment="center" valignment="top" width="0pt">
25063 <column alignment="center" valignment="top" width="0pt">
25064 <column alignment="center" valignment="top" width="0pt">
25065 <column alignment="center" valignment="top" width="0pt">
25066 <row>
25067 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25068 \begin_inset Text
25069
25070 \begin_layout Plain Layout
25071 Befehl
25072 \end_layout
25073
25074 \end_inset
25075 </cell>
25076 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25077 \begin_inset Text
25078
25079 \begin_layout Plain Layout
25080 Befehl
25081 \end_layout
25082
25083 \end_inset
25084 </cell>
25085 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25086 \begin_inset Text
25087
25088 \begin_layout Plain Layout
25089 Befehl
25090 \end_layout
25091
25092 \end_inset
25093 </cell>
25094 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25095 \begin_inset Text
25096
25097 \begin_layout Plain Layout
25098 Befehl
25099 \end_layout
25100
25101 \end_inset
25102 </cell>
25103 </row>
25104 <row>
25105 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25106 \begin_inset Text
25107
25108 \begin_layout Plain Layout
25109
25110 \backslash
25111 sin
25112 \end_layout
25113
25114 \end_inset
25115 </cell>
25116 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25117 \begin_inset Text
25118
25119 \begin_layout Plain Layout
25120
25121 \backslash
25122 sinh
25123 \end_layout
25124
25125 \end_inset
25126 </cell>
25127 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25128 \begin_inset Text
25129
25130 \begin_layout Plain Layout
25131
25132 \backslash
25133 arcsin
25134 \end_layout
25135
25136 \end_inset
25137 </cell>
25138 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25139 \begin_inset Text
25140
25141 \begin_layout Plain Layout
25142
25143 \backslash
25144 sup
25145 \end_layout
25146
25147 \end_inset
25148 </cell>
25149 </row>
25150 <row>
25151 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25152 \begin_inset Text
25153
25154 \begin_layout Plain Layout
25155
25156 \backslash
25157 cos
25158 \end_layout
25159
25160 \end_inset
25161 </cell>
25162 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25163 \begin_inset Text
25164
25165 \begin_layout Plain Layout
25166
25167 \backslash
25168 cosh
25169 \end_layout
25170
25171 \end_inset
25172 </cell>
25173 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25174 \begin_inset Text
25175
25176 \begin_layout Plain Layout
25177
25178 \backslash
25179 arccos
25180 \end_layout
25181
25182 \end_inset
25183 </cell>
25184 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25185 \begin_inset Text
25186
25187 \begin_layout Plain Layout
25188
25189 \backslash
25190 inf
25191 \end_layout
25192
25193 \end_inset
25194 </cell>
25195 </row>
25196 <row>
25197 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25198 \begin_inset Text
25199
25200 \begin_layout Plain Layout
25201
25202 \backslash
25203 tan
25204 \end_layout
25205
25206 \end_inset
25207 </cell>
25208 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25209 \begin_inset Text
25210
25211 \begin_layout Plain Layout
25212
25213 \backslash
25214 tanh
25215 \end_layout
25216
25217 \end_inset
25218 </cell>
25219 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25220 \begin_inset Text
25221
25222 \begin_layout Plain Layout
25223
25224 \backslash
25225 arctan
25226 \end_layout
25227
25228 \end_inset
25229 </cell>
25230 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25231 \begin_inset Text
25232
25233 \begin_layout Plain Layout
25234
25235 \backslash
25236 lim
25237 \end_layout
25238
25239 \end_inset
25240 </cell>
25241 </row>
25242 <row>
25243 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25244 \begin_inset Text
25245
25246 \begin_layout Plain Layout
25247
25248 \backslash
25249 cot
25250 \end_layout
25251
25252 \end_inset
25253 </cell>
25254 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25255 \begin_inset Text
25256
25257 \begin_layout Plain Layout
25258
25259 \backslash
25260 coth
25261 \end_layout
25262
25263 \end_inset
25264 </cell>
25265 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25266 \begin_inset Text
25267
25268 \begin_layout Plain Layout
25269
25270 \backslash
25271 arg
25272 \end_layout
25273
25274 \end_inset
25275 </cell>
25276 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25277 \begin_inset Text
25278
25279 \begin_layout Plain Layout
25280
25281 \backslash
25282 liminf
25283 \end_layout
25284
25285 \end_inset
25286 </cell>
25287 </row>
25288 <row>
25289 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25290 \begin_inset Text
25291
25292 \begin_layout Plain Layout
25293
25294 \backslash
25295 sec
25296 \end_layout
25297
25298 \end_inset
25299 </cell>
25300 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25301 \begin_inset Text
25302
25303 \begin_layout Plain Layout
25304
25305 \backslash
25306 min
25307 \end_layout
25308
25309 \end_inset
25310 </cell>
25311 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25312 \begin_inset Text
25313
25314 \begin_layout Plain Layout
25315
25316 \backslash
25317 deg
25318 \end_layout
25319
25320 \end_inset
25321 </cell>
25322 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25323 \begin_inset Text
25324
25325 \begin_layout Plain Layout
25326
25327 \backslash
25328 limsup
25329 \end_layout
25330
25331 \end_inset
25332 </cell>
25333 </row>
25334 <row>
25335 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25336 \begin_inset Text
25337
25338 \begin_layout Plain Layout
25339
25340 \backslash
25341 csc
25342 \end_layout
25343
25344 \end_inset
25345 </cell>
25346 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25347 \begin_inset Text
25348
25349 \begin_layout Plain Layout
25350
25351 \backslash
25352 max
25353 \end_layout
25354
25355 \end_inset
25356 </cell>
25357 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25358 \begin_inset Text
25359
25360 \begin_layout Plain Layout
25361
25362 \backslash
25363 det
25364 \end_layout
25365
25366 \end_inset
25367 </cell>
25368 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25369 \begin_inset Text
25370
25371 \begin_layout Plain Layout
25372
25373 \backslash
25374 Pr
25375 \end_layout
25376
25377 \end_inset
25378 </cell>
25379 </row>
25380 <row>
25381 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25382 \begin_inset Text
25383
25384 \begin_layout Plain Layout
25385
25386 \backslash
25387 ln
25388 \end_layout
25389
25390 \end_inset
25391 </cell>
25392 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25393 \begin_inset Text
25394
25395 \begin_layout Plain Layout
25396
25397 \backslash
25398 exp
25399 \end_layout
25400
25401 \end_inset
25402 </cell>
25403 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25404 \begin_inset Text
25405
25406 \begin_layout Plain Layout
25407
25408 \backslash
25409 dim
25410 \end_layout
25411
25412 \end_inset
25413 </cell>
25414 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25415 \begin_inset Text
25416
25417 \begin_layout Plain Layout
25418
25419 \backslash
25420 hom
25421 \end_layout
25422
25423 \end_inset
25424 </cell>
25425 </row>
25426 <row>
25427 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25428 \begin_inset Text
25429
25430 \begin_layout Plain Layout
25431
25432 \backslash
25433 lg
25434 \end_layout
25435
25436 \end_inset
25437 </cell>
25438 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25439 \begin_inset Text
25440
25441 \begin_layout Plain Layout
25442
25443 \backslash
25444 log
25445 \end_layout
25446
25447 \end_inset
25448 </cell>
25449 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25450 \begin_inset Text
25451
25452 \begin_layout Plain Layout
25453
25454 \backslash
25455 ker
25456 \end_layout
25457
25458 \end_inset
25459 </cell>
25460 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25461 \begin_inset Text
25462
25463 \begin_layout Plain Layout
25464
25465 \backslash
25466 gcd
25467 \end_layout
25468
25469 \end_inset
25470 </cell>
25471 </row>
25472 </lyxtabular>
25473
25474 \end_inset
25475
25476
25477 \end_layout
25478
25479 \begin_layout Standard
25480 Sie können auch über den Mathe-Werkzeugleistenknopf 
25481 \begin_inset Graphics
25482         filename ../../images/math/functions.png
25483         scale 85
25484
25485 \end_inset
25486
25487  eingefügt werden.
25488 \end_layout
25489
25490 \begin_layout Subsection
25491 Selbst definierte Funktionen
25492 \begin_inset Index idx
25493 status collapsed
25494
25495 \begin_layout Plain Layout
25496 Funktionen ! selbstdefinierte
25497 \end_layout
25498
25499 \end_inset
25500
25501
25502 \end_layout
25503
25504 \begin_layout Standard
25505 Will man eine Funktion verwenden, die nicht vordefiniert ist, wie z.
25506 \begin_inset space \thinspace{}
25507 \end_inset
25508
25509 B.
25510  die Signumfunktion sgn(x), hat man zwei Möglichkeiten:
25511 \end_layout
25512
25513 \begin_layout Itemize
25514 Man definiert die Funktion selbst.
25515  Dazu gibt man im LaTeX-Vorspann die Zeile
25516 \begin_inset Newline newline
25517 \end_inset
25518
25519
25520 \begin_inset VSpace -3mm
25521 \end_inset
25522
25523
25524 \begin_inset Newline newline
25525 \end_inset
25526
25527
25528 \series bold
25529
25530 \backslash
25531 DeclareMathOperator{
25532 \backslash
25533 sgn}{sgn}
25534 \series default
25535
25536 \begin_inset Index idx
25537 status collapsed
25538
25539 \begin_layout Plain Layout
25540 Befehle ! D ! 
25541 \backslash
25542 dbinom@
25543 \backslash
25544 DeclareMathOperator
25545 \end_layout
25546
25547 \end_inset
25548
25549
25550 \begin_inset Newline newline
25551 \end_inset
25552
25553
25554 \begin_inset VSpace -2mm
25555 \end_inset
25556
25557
25558 \begin_inset Newline newline
25559 \end_inset
25560
25561 ein
25562 \begin_inset Foot
25563 status collapsed
25564
25565 \begin_layout Plain Layout
25566 Näheres zu 
25567 \series bold
25568
25569 \backslash
25570 DeclareMathOperator
25571 \series default
25572  siehe 
25573 \begin_inset CommandInset ref
25574 LatexCommand ref
25575 reference "sub:Selbstdefinierte-Operatoren"
25576
25577 \end_inset
25578
25579 .
25580 \end_layout
25581
25582 \end_inset
25583
25584 .
25585  Nun kann man mit dem Befehl 
25586 \series bold
25587
25588 \backslash
25589 sgn
25590 \series default
25591  die neu definierte Funktion aufrufen.
25592 \end_layout
25593
25594 \begin_layout Itemize
25595 Man schreibt die Formel wie gewohnt, markiert den Formelnamen, also in unserem
25596  Beispiel die Buchstaben 
25597 \emph on
25598 sgn
25599 \emph default
25600 , und wandelt ihn in in mathematischen Text um.
25601  Zwischen Vorfaktor und Funktion fügt man einen kleinen Leerraum ein.
25602 \end_layout
25603
25604 \begin_layout Standard
25605 Das Ergebnis ist bei beiden Methoden dasselbe wie bei einer vordefinierten
25606  Funktion
25607 \begin_inset Foot
25608 status collapsed
25609
25610 \begin_layout Plain Layout
25611 Selbst definierte Funktionen werden in LyX rot, vordefinierte schwarz angezeigt.
25612 \end_layout
25613
25614 \end_inset
25615
25616 :
25617 \end_layout
25618
25619 \begin_layout Standard
25620 \align center
25621 \begin_inset Tabular
25622 <lyxtabular version="3" rows="3" columns="2">
25623 <features rotate="0" tabularvalignment="middle">
25624 <column alignment="center" valignment="top" width="0pt">
25625 <column alignment="center" valignment="top" width="0pt">
25626 <row>
25627 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25628 \begin_inset Text
25629
25630 \begin_layout Plain Layout
25631 Befehl
25632 \end_layout
25633
25634 \end_inset
25635 </cell>
25636 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25637 \begin_inset Text
25638
25639 \begin_layout Plain Layout
25640 Ergebnis
25641 \end_layout
25642
25643 \end_inset
25644 </cell>
25645 </row>
25646 <row>
25647 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25648 \begin_inset Text
25649
25650 \begin_layout Plain Layout
25651 A
25652 \backslash
25653 sgn(x)+B
25654 \end_layout
25655
25656 \end_inset
25657 </cell>
25658 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25659 \begin_inset Text
25660
25661 \begin_layout Plain Layout
25662 \begin_inset Formula $A\sgn(x)+B$
25663 \end_inset
25664
25665
25666 \end_layout
25667
25668 \end_inset
25669 </cell>
25670 </row>
25671 <row>
25672 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25673 \begin_inset Text
25674
25675 \begin_layout Plain Layout
25676 A
25677 \backslash
25678 ,
25679 \begin_inset Formula $\underbrace{\textrm{sgn}}_{\textrm{Alt-m}\,\textrm{m}}$
25680 \end_inset
25681
25682 (x)+B
25683 \end_layout
25684
25685 \end_inset
25686 </cell>
25687 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25688 \begin_inset Text
25689
25690 \begin_layout Plain Layout
25691 \begin_inset Formula $A\,\textrm{sgn}(x)+B$
25692 \end_inset
25693
25694
25695 \end_layout
25696
25697 \end_inset
25698 </cell>
25699 </row>
25700 </lyxtabular>
25701
25702 \end_inset
25703
25704
25705 \end_layout
25706
25707 \begin_layout Standard
25708 Die erste Methode ist besser geeignet, wenn die selbst definierte Funktion
25709  mehrfach verwendet werden soll.
25710 \end_layout
25711
25712 \begin_layout Subsection
25713 Grenzwerte
25714 \begin_inset Index idx
25715 status collapsed
25716
25717 \begin_layout Plain Layout
25718 Grenzwerte
25719 \end_layout
25720
25721 \end_inset
25722
25723
25724 \end_layout
25725
25726 \begin_layout Standard
25727 Für Grenzwerte sind außer 
25728 \series bold
25729
25730 \backslash
25731 lim
25732 \series default
25733
25734 \begin_inset Index idx
25735 status collapsed
25736
25737 \begin_layout Plain Layout
25738 Befehle ! L ! 
25739 \backslash
25740 lim
25741 \end_layout
25742
25743 \end_inset
25744
25745
25746 \series bold
25747
25748 \backslash
25749 liminf
25750 \series default
25751  und 
25752 \series bold
25753
25754 \backslash
25755 limsup
25756 \series default
25757  noch folgende Funktionen definiert:
25758 \end_layout
25759
25760 \begin_layout Standard
25761 \align center
25762 \begin_inset Tabular
25763 <lyxtabular version="3" rows="5" columns="2">
25764 <features rotate="0" tabularvalignment="middle">
25765 <column alignment="center" valignment="top">
25766 <column alignment="center" valignment="top">
25767 <row>
25768 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25769 \begin_inset Text
25770
25771 \begin_layout Plain Layout
25772 Befehl
25773 \end_layout
25774
25775 \end_inset
25776 </cell>
25777 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25778 \begin_inset Text
25779
25780 \begin_layout Plain Layout
25781 Ergebnis
25782 \begin_inset Note Note
25783 status collapsed
25784
25785 \begin_layout Plain Layout
25786
25787 \series bold
25788
25789 \backslash
25790 raisebox
25791 \series default
25792  dient nur als Abstandhalter.
25793 \end_layout
25794
25795 \end_inset
25796
25797
25798 \end_layout
25799
25800 \end_inset
25801 </cell>
25802 </row>
25803 <row>
25804 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25805 \begin_inset Text
25806
25807 \begin_layout Plain Layout
25808
25809 \backslash
25810 varliminf
25811 \end_layout
25812
25813 \end_inset
25814 </cell>
25815 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25816 \begin_inset Text
25817
25818 \begin_layout Plain Layout
25819 \begin_inset Formula $\varliminf$
25820 \end_inset
25821
25822
25823 \end_layout
25824
25825 \end_inset
25826 </cell>
25827 </row>
25828 <row>
25829 <cell alignment="center" valignment="top" leftline="true" usebox="none">
25830 \begin_inset Text
25831
25832 \begin_layout Plain Layout
25833
25834 \backslash
25835 varlimsup
25836 \end_layout
25837
25838 \end_inset
25839 </cell>
25840 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
25841 \begin_inset Text
25842
25843 \begin_layout Plain Layout
25844 \begin_inset Formula $\varlimsup$
25845 \end_inset
25846
25847
25848 \end_layout
25849
25850 \end_inset
25851 </cell>
25852 </row>
25853 <row>
25854 <cell alignment="center" valignment="top" leftline="true" usebox="none">
25855 \begin_inset Text
25856
25857 \begin_layout Plain Layout
25858
25859 \backslash
25860 varprojlim
25861 \end_layout
25862
25863 \end_inset
25864 </cell>
25865 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
25866 \begin_inset Text
25867
25868 \begin_layout Plain Layout
25869 \begin_inset Formula $\varprojlim$
25870 \end_inset
25871
25872
25873 \end_layout
25874
25875 \end_inset
25876 </cell>
25877 </row>
25878 <row>
25879 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
25880 \begin_inset Text
25881
25882 \begin_layout Plain Layout
25883
25884 \backslash
25885 varinjlim
25886 \end_layout
25887
25888 \end_inset
25889 </cell>
25890 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
25891 \begin_inset Text
25892
25893 \begin_layout Plain Layout
25894 \begin_inset Formula $\varinjlim$
25895 \end_inset
25896
25897
25898 \begin_inset Formula $\raisebox{-2.5mm}{}$
25899 \end_inset
25900
25901
25902 \end_layout
25903
25904 \end_inset
25905 </cell>
25906 </row>
25907 </lyxtabular>
25908
25909 \end_inset
25910
25911
25912 \end_layout
25913
25914 \begin_layout Standard
25915 \begin_inset VSpace medskip
25916 \end_inset
25917
25918 Der Grenzwert wird durch Tiefstellen erzeugt.
25919  Bei einer eingebetteten Formel wird er rechts neben die Funktion gesetzt:
25920 \end_layout
25921
25922 \begin_layout Standard
25923 \align center
25924 \begin_inset Tabular
25925 <lyxtabular version="3" rows="2" columns="2">
25926 <features rotate="0" tabularvalignment="middle">
25927 <column alignment="center" valignment="top" width="0pt">
25928 <column alignment="center" valignment="top" width="0pt">
25929 <row>
25930 <cell alignment="center" valignment="top" usebox="none">
25931 \begin_inset Text
25932
25933 \begin_layout Plain Layout
25934 Befehl
25935 \end_layout
25936
25937 \end_inset
25938 </cell>
25939 <cell alignment="center" valignment="top" usebox="none">
25940 \begin_inset Text
25941
25942 \begin_layout Plain Layout
25943 \begin_inset space \hspace{}
25944 \length 1cm
25945 \end_inset
25946
25947 Ergebnis
25948 \begin_inset Note Note
25949 status collapsed
25950
25951 \begin_layout Plain Layout
25952 Der Leerraum und 
25953 \series bold
25954
25955 \backslash
25956 raisebox
25957 \series default
25958  dienen nur als Abstandhalter.
25959 \end_layout
25960
25961 \end_inset
25962
25963
25964 \end_layout
25965
25966 \end_inset
25967 </cell>
25968 </row>
25969 <row>
25970 <cell alignment="center" valignment="top" usebox="none">
25971 \begin_inset Text
25972
25973 \begin_layout Plain Layout
25974
25975 \backslash
25976 lim_x
25977 \backslash
25978 to
25979 \begin_inset ERT
25980 status collapsed
25981
25982 \begin_layout Plain Layout
25983
25984
25985 \backslash
25986 leer 
25987 \end_layout
25988
25989 \end_inset
25990
25991 A
25992 \begin_inset ERT
25993 status collapsed
25994
25995 \begin_layout Plain Layout
25996
25997
25998 \backslash
25999 leer 
26000 \end_layout
26001
26002 \end_inset
26003
26004 x=B
26005 \end_layout
26006
26007 \end_inset
26008 </cell>
26009 <cell alignment="center" valignment="top" usebox="none">
26010 \begin_inset Text
26011
26012 \begin_layout Plain Layout
26013 \begin_inset Formula $\hspace{1cm}\raisebox{5mm}{}\lim_{x\to A}x=B$
26014 \end_inset
26015
26016
26017 \end_layout
26018
26019 \end_inset
26020 </cell>
26021 </row>
26022 </lyxtabular>
26023
26024 \end_inset
26025
26026
26027 \end_layout
26028
26029 \begin_layout Standard
26030 In einer abgesetzten Formel steht der Grenzwert wie gewohnt darunter:
26031 \begin_inset Formula 
26032 \[
26033 \lim_{x\to A}x=B
26034 \]
26035
26036 \end_inset
26037
26038
26039 \end_layout
26040
26041 \begin_layout Subsection
26042 Modulo-Funktionen
26043 \begin_inset Index idx
26044 status collapsed
26045
26046 \begin_layout Plain Layout
26047 Funktionen ! Modulo-
26048 \end_layout
26049
26050 \end_inset
26051
26052
26053 \end_layout
26054
26055 \begin_layout Standard
26056 Eine Besonderheit stellt die Modulo-Funktion dar, denn es gibt sie in vier
26057  Varianten.
26058 \end_layout
26059
26060 \begin_layout Standard
26061 Die Varianten in einer abgesetzten Formel:
26062 \begin_inset Formula 
26063 \begin{align*}
26064 \underline{\textrm{Befehl}\raisebox{-0.9mm}{}} &  & \underline{\textrm{Ergebnis}}\\
26065 \mathrm{a\backslash mod\textrm{\leer}b} &  & a\mod b\\
26066 \mathrm{a\backslash pmod\textrm{\leer}b} &  & a\pmod b\\
26067 \mathrm{a\backslash bmod\textrm{\leer}b} &  & a\bmod b\\
26068 \mathrm{a\backslash pod\textrm{\leer}b} &  & a\pod b
26069 \end{align*}
26070
26071 \end_inset
26072
26073
26074 \end_layout
26075
26076 \begin_layout Standard
26077 In einer eingebetteten Formel wird bei allen Varianten vor den Funktionsnamen
26078  weniger Leerraum gesetzt.
26079  Standardmäßig beachten die Modulo-Funktionen nur das erste, folgende Zeichen.
26080  Um mehrere Zeichen zu verwenden, muss man sie in TeX-Klammern setzen:
26081 \begin_inset Formula 
26082 \begin{align*}
26083 \underline{\textrm{Befehl}\raisebox{-0.9mm}{}} &  & \underline{\textrm{Ergebnis}}\\
26084 \mathrm{a\backslash pod\textrm{\leer}bcd} &  & a\pod bcd\\
26085 \mathrm{a\backslash pod\backslash\{bc\to d} &  & a\pod{bc}d
26086 \end{align*}
26087
26088 \end_inset
26089
26090
26091 \end_layout
26092
26093 \begin_layout Section
26094 Sonderzeichen
26095 \begin_inset Index idx
26096 status collapsed
26097
26098 \begin_layout Plain Layout
26099 Sonderzeichen
26100 \end_layout
26101
26102 \end_inset
26103
26104
26105 \end_layout
26106
26107 \begin_layout Subsection
26108 Sonderzeichen im mathematischen Text
26109 \end_layout
26110
26111 \begin_layout Standard
26112 Die folgenden Befehle können nur im mathematischen Textmodus oder im TeX-Modus
26113  verwendet werden:
26114 \end_layout
26115
26116 \begin_layout Standard
26117 \begin_inset space \hfill{}
26118 \end_inset
26119
26120
26121 \begin_inset Tabular
26122 <lyxtabular version="3" rows="8" columns="2">
26123 <features rotate="0" tabularvalignment="middle">
26124 <column alignment="block" valignment="top">
26125 <column alignment="block" valignment="top">
26126 <row>
26127 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26128 \begin_inset Text
26129
26130 \begin_layout Plain Layout
26131 Befehl
26132 \end_layout
26133
26134 \end_inset
26135 </cell>
26136 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26137 \begin_inset Text
26138
26139 \begin_layout Plain Layout
26140 Ergebnis
26141 \end_layout
26142
26143 \end_inset
26144 </cell>
26145 </row>
26146 <row>
26147 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26148 \begin_inset Text
26149
26150 \begin_layout Plain Layout
26151
26152 \backslash
26153 oe
26154 \end_layout
26155
26156 \end_inset
26157 </cell>
26158 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26159 \begin_inset Text
26160
26161 \begin_layout Plain Layout
26162 \begin_inset Formula $\textrm{œ}$
26163 \end_inset
26164
26165
26166 \end_layout
26167
26168 \end_inset
26169 </cell>
26170 </row>
26171 <row>
26172 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26173 \begin_inset Text
26174
26175 \begin_layout Plain Layout
26176
26177 \backslash
26178 OE
26179 \end_layout
26180
26181 \end_inset
26182 </cell>
26183 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26184 \begin_inset Text
26185
26186 \begin_layout Plain Layout
26187 \begin_inset Formula $\textrm{Œ}$
26188 \end_inset
26189
26190
26191 \end_layout
26192
26193 \end_inset
26194 </cell>
26195 </row>
26196 <row>
26197 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26198 \begin_inset Text
26199
26200 \begin_layout Plain Layout
26201
26202 \backslash
26203 ae
26204 \end_layout
26205
26206 \end_inset
26207 </cell>
26208 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26209 \begin_inset Text
26210
26211 \begin_layout Plain Layout
26212 \begin_inset Formula $\textrm{æ}$
26213 \end_inset
26214
26215
26216 \end_layout
26217
26218 \end_inset
26219 </cell>
26220 </row>
26221 <row>
26222 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26223 \begin_inset Text
26224
26225 \begin_layout Plain Layout
26226
26227 \backslash
26228 AE
26229 \end_layout
26230
26231 \end_inset
26232 </cell>
26233 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26234 \begin_inset Text
26235
26236 \begin_layout Plain Layout
26237 \begin_inset Formula $\textrm{Æ}$
26238 \end_inset
26239
26240
26241 \end_layout
26242
26243 \end_inset
26244 </cell>
26245 </row>
26246 <row>
26247 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26248 \begin_inset Text
26249
26250 \begin_layout Plain Layout
26251
26252 \backslash
26253 aa
26254 \end_layout
26255
26256 \end_inset
26257 </cell>
26258 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26259 \begin_inset Text
26260
26261 \begin_layout Plain Layout
26262 \begin_inset Formula $\textrm{\aa}$
26263 \end_inset
26264
26265
26266 \end_layout
26267
26268 \end_inset
26269 </cell>
26270 </row>
26271 <row>
26272 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26273 \begin_inset Text
26274
26275 \begin_layout Plain Layout
26276
26277 \backslash
26278 AA
26279 \begin_inset Index idx
26280 status collapsed
26281
26282 \begin_layout Plain Layout
26283
26284 \backslash
26285 @
26286 \begin_inset ERT
26287 status collapsed
26288
26289 \begin_layout Plain Layout
26290
26291
26292 \backslash
26293 textrm{
26294 \backslash
26295 AA}
26296 \end_layout
26297
26298 \end_inset
26299
26300
26301 \end_layout
26302
26303 \end_inset
26304
26305
26306 \end_layout
26307
26308 \end_inset
26309 </cell>
26310 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26311 \begin_inset Text
26312
26313 \begin_layout Plain Layout
26314 \begin_inset Formula $\textrm{Å}$
26315 \end_inset
26316
26317
26318 \end_layout
26319
26320 \end_inset
26321 </cell>
26322 </row>
26323 <row>
26324 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
26325 \begin_inset Text
26326
26327 \begin_layout Plain Layout
26328
26329 \backslash
26330 i
26331 \end_layout
26332
26333 \end_inset
26334 </cell>
26335 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
26336 \begin_inset Text
26337
26338 \begin_layout Plain Layout
26339 \begin_inset Formula $\textrm{ı}$
26340 \end_inset
26341
26342
26343 \end_layout
26344
26345 \end_inset
26346 </cell>
26347 </row>
26348 </lyxtabular>
26349
26350 \end_inset
26351
26352
26353 \begin_inset space \hfill{}
26354 \end_inset
26355
26356
26357 \begin_inset Tabular
26358 <lyxtabular version="3" rows="8" columns="2">
26359 <features rotate="0" tabularvalignment="middle">
26360 <column alignment="block" valignment="top">
26361 <column alignment="center" valignment="top">
26362 <row>
26363 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26364 \begin_inset Text
26365
26366 \begin_layout Plain Layout
26367 Befehl
26368 \begin_inset Note Note
26369 status collapsed
26370
26371 \begin_layout Plain Layout
26372 Der Leerraum von 0
26373 \begin_inset space \thinspace{}
26374 \end_inset
26375
26376 mm dient nur zur Trennung,da sonst im Ausdruck ¡ bzw.
26377 \begin_inset space \space{}
26378 \end_inset
26379
26380 ¿ erscheinen würde.
26381 \end_layout
26382
26383 \end_inset
26384
26385
26386 \end_layout
26387
26388 \end_inset
26389 </cell>
26390 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26391 \begin_inset Text
26392
26393 \begin_layout Plain Layout
26394 Ergebnis
26395 \end_layout
26396
26397 \end_inset
26398 </cell>
26399 </row>
26400 <row>
26401 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26402 \begin_inset Text
26403
26404 \begin_layout Plain Layout
26405
26406 \backslash
26407 o
26408 \end_layout
26409
26410 \end_inset
26411 </cell>
26412 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26413 \begin_inset Text
26414
26415 \begin_layout Plain Layout
26416 \begin_inset Formula $\textrm{ø}$
26417 \end_inset
26418
26419
26420 \end_layout
26421
26422 \end_inset
26423 </cell>
26424 </row>
26425 <row>
26426 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26427 \begin_inset Text
26428
26429 \begin_layout Plain Layout
26430
26431 \backslash
26432 O
26433 \end_layout
26434
26435 \end_inset
26436 </cell>
26437 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26438 \begin_inset Text
26439
26440 \begin_layout Plain Layout
26441 \begin_inset Formula $\textrm{Ø}$
26442 \end_inset
26443
26444
26445 \end_layout
26446
26447 \end_inset
26448 </cell>
26449 </row>
26450 <row>
26451 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26452 \begin_inset Text
26453
26454 \begin_layout Plain Layout
26455
26456 \backslash
26457 l
26458 \end_layout
26459
26460 \end_inset
26461 </cell>
26462 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26463 \begin_inset Text
26464
26465 \begin_layout Plain Layout
26466 \begin_inset Formula $\textrm{ł}$
26467 \end_inset
26468
26469
26470 \end_layout
26471
26472 \end_inset
26473 </cell>
26474 </row>
26475 <row>
26476 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26477 \begin_inset Text
26478
26479 \begin_layout Plain Layout
26480
26481 \backslash
26482 L
26483 \end_layout
26484
26485 \end_inset
26486 </cell>
26487 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26488 \begin_inset Text
26489
26490 \begin_layout Plain Layout
26491 \begin_inset Formula $\textrm{Ł}$
26492 \end_inset
26493
26494
26495 \end_layout
26496
26497 \end_inset
26498 </cell>
26499 </row>
26500 <row>
26501 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26502 \begin_inset Text
26503
26504 \begin_layout Plain Layout
26505 !
26506 \begin_inset space \hspace{}
26507 \length 0mm
26508 \end_inset
26509
26510 `
26511 \begin_inset ERT
26512 status collapsed
26513
26514 \begin_layout Plain Layout
26515
26516
26517 \backslash
26518 leer 
26519 \end_layout
26520
26521 \end_inset
26522
26523
26524 \end_layout
26525
26526 \end_inset
26527 </cell>
26528 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26529 \begin_inset Text
26530
26531 \begin_layout Plain Layout
26532 \begin_inset Formula $\textrm{!`}$
26533 \end_inset
26534
26535
26536 \end_layout
26537
26538 \end_inset
26539 </cell>
26540 </row>
26541 <row>
26542 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
26543 \begin_inset Text
26544
26545 \begin_layout Plain Layout
26546 ?
26547 \begin_inset space \hspace{}
26548 \length 0mm
26549 \end_inset
26550
26551 `
26552 \begin_inset ERT
26553 status collapsed
26554
26555 \begin_layout Plain Layout
26556
26557
26558 \backslash
26559 leer 
26560 \end_layout
26561
26562 \end_inset
26563
26564
26565 \end_layout
26566
26567 \end_inset
26568 </cell>
26569 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
26570 \begin_inset Text
26571
26572 \begin_layout Plain Layout
26573 \begin_inset Formula $\textrm{?`}$
26574 \end_inset
26575
26576
26577 \end_layout
26578
26579 \end_inset
26580 </cell>
26581 </row>
26582 <row>
26583 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
26584 \begin_inset Text
26585
26586 \begin_layout Plain Layout
26587
26588 \backslash
26589 j
26590 \end_layout
26591
26592 \end_inset
26593 </cell>
26594 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
26595 \begin_inset Text
26596
26597 \begin_layout Plain Layout
26598 \begin_inset Formula $\textrm{ȷ}$
26599 \end_inset
26600
26601
26602 \end_layout
26603
26604 \end_inset
26605 </cell>
26606 </row>
26607 </lyxtabular>
26608
26609 \end_inset
26610
26611
26612 \begin_inset space \hfill{}
26613 \end_inset
26614
26615
26616 \end_layout
26617
26618 \begin_layout Standard
26619 Die Zeichen 
26620 \begin_inset Formula $\textrm{\textrm{Å}}$
26621 \end_inset
26622
26623  und 
26624 \begin_inset Formula $\textrm{\textrm{Ø}}$
26625 \end_inset
26626
26627  können auch über den Mathe-Werkzeugleistenknopf 
26628 \begin_inset Graphics
26629         filename ../../images/math/digamma.png
26630         scale 85
26631
26632 \end_inset
26633
26634  eingefügt werden.
26635 \end_layout
26636
26637 \begin_layout Standard
26638 Eine Ausnahme bilden die Befehle 
26639 \series bold
26640 !
26641 \begin_inset space \hspace{}
26642 \length 0mm
26643 \end_inset
26644
26645 `
26646 \series default
26647  und 
26648 \series bold
26649 ?
26650 \begin_inset space \hspace{}
26651 \length 0mm
26652 \end_inset
26653
26654 `
26655 \series default
26656 , denn man kann sie in LyX direkt in den Text eingeben.
26657 \end_layout
26658
26659 \begin_layout Subsection
26660 Akzente im Text
26661 \begin_inset CommandInset label
26662 LatexCommand label
26663 name "sub:Sonderzeichen-Akzente"
26664
26665 \end_inset
26666
26667
26668 \begin_inset Index idx
26669 status collapsed
26670
26671 \begin_layout Plain Layout
26672 Akzente ! im Text
26673 \end_layout
26674
26675 \end_inset
26676
26677
26678 \end_layout
26679
26680 \begin_layout Standard
26681 Man kann mit den folgenden Befehlen sämtliche Buchstaben akzentuieren.
26682  Die Befehle müssen dazu im TeX-Modus eingegeben werden.
26683 \end_layout
26684
26685 \begin_layout Standard
26686 \begin_inset space \hfill{}
26687 \end_inset
26688
26689
26690 \begin_inset Tabular
26691 <lyxtabular version="3" rows="8" columns="2">
26692 <features rotate="0" tabularvalignment="middle">
26693 <column alignment="block" valignment="top">
26694 <column alignment="block" valignment="top">
26695 <row>
26696 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26697 \begin_inset Text
26698
26699 \begin_layout Plain Layout
26700 Befehl
26701 \end_layout
26702
26703 \end_inset
26704 </cell>
26705 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26706 \begin_inset Text
26707
26708 \begin_layout Plain Layout
26709 Ergebnis
26710 \end_layout
26711
26712 \end_inset
26713 </cell>
26714 </row>
26715 <row>
26716 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26717 \begin_inset Text
26718
26719 \begin_layout Plain Layout
26720
26721 \backslash
26722
26723 \begin_inset Quotes grd
26724 \end_inset
26725
26726 e
26727 \end_layout
26728
26729 \end_inset
26730 </cell>
26731 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26732 \begin_inset Text
26733
26734 \begin_layout Plain Layout
26735 \begin_inset ERT
26736 status collapsed
26737
26738 \begin_layout Plain Layout
26739
26740
26741 \backslash
26742 "e
26743 \end_layout
26744
26745 \end_inset
26746
26747
26748 \end_layout
26749
26750 \end_inset
26751 </cell>
26752 </row>
26753 <row>
26754 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26755 \begin_inset Text
26756
26757 \begin_layout Plain Layout
26758
26759 \backslash
26760 `e
26761 \end_layout
26762
26763 \end_inset
26764 </cell>
26765 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26766 \begin_inset Text
26767
26768 \begin_layout Plain Layout
26769 \begin_inset ERT
26770 status collapsed
26771
26772 \begin_layout Plain Layout
26773
26774
26775 \backslash
26776 `e
26777 \end_layout
26778
26779 \end_inset
26780
26781
26782 \end_layout
26783
26784 \end_inset
26785 </cell>
26786 </row>
26787 <row>
26788 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26789 \begin_inset Text
26790
26791 \begin_layout Plain Layout
26792
26793 \backslash
26794 ^
26795 \begin_inset ERT
26796 status collapsed
26797
26798 \begin_layout Plain Layout
26799
26800
26801 \backslash
26802 leer 
26803 \end_layout
26804
26805 \end_inset
26806
26807 e
26808 \end_layout
26809
26810 \end_inset
26811 </cell>
26812 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26813 \begin_inset Text
26814
26815 \begin_layout Plain Layout
26816 \begin_inset ERT
26817 status collapsed
26818
26819 \begin_layout Plain Layout
26820
26821
26822 \backslash
26823 ^e
26824 \end_layout
26825
26826 \end_inset
26827
26828
26829 \end_layout
26830
26831 \end_inset
26832 </cell>
26833 </row>
26834 <row>
26835 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26836 \begin_inset Text
26837
26838 \begin_layout Plain Layout
26839
26840 \backslash
26841 =e
26842 \end_layout
26843
26844 \end_inset
26845 </cell>
26846 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26847 \begin_inset Text
26848
26849 \begin_layout Plain Layout
26850 \begin_inset ERT
26851 status collapsed
26852
26853 \begin_layout Plain Layout
26854
26855
26856 \backslash
26857 =e
26858 \end_layout
26859
26860 \end_inset
26861
26862
26863 \end_layout
26864
26865 \end_inset
26866 </cell>
26867 </row>
26868 <row>
26869 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26870 \begin_inset Text
26871
26872 \begin_layout Plain Layout
26873
26874 \backslash
26875 u
26876 \begin_inset ERT
26877 status collapsed
26878
26879 \begin_layout Plain Layout
26880
26881
26882 \backslash
26883 leer 
26884 \end_layout
26885
26886 \end_inset
26887
26888 e
26889 \end_layout
26890
26891 \end_inset
26892 </cell>
26893 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26894 \begin_inset Text
26895
26896 \begin_layout Plain Layout
26897 \begin_inset ERT
26898 status collapsed
26899
26900 \begin_layout Plain Layout
26901
26902
26903 \backslash
26904 u e
26905 \end_layout
26906
26907 \end_inset
26908
26909
26910 \end_layout
26911
26912 \end_inset
26913 </cell>
26914 </row>
26915 <row>
26916 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26917 \begin_inset Text
26918
26919 \begin_layout Plain Layout
26920
26921 \backslash
26922 b
26923 \begin_inset ERT
26924 status collapsed
26925
26926 \begin_layout Plain Layout
26927
26928
26929 \backslash
26930 leer 
26931 \end_layout
26932
26933 \end_inset
26934
26935 e
26936 \end_layout
26937
26938 \end_inset
26939 </cell>
26940 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26941 \begin_inset Text
26942
26943 \begin_layout Plain Layout
26944 \begin_inset ERT
26945 status collapsed
26946
26947 \begin_layout Plain Layout
26948
26949
26950 \backslash
26951 b e
26952 \end_layout
26953
26954 \end_inset
26955
26956
26957 \end_layout
26958
26959 \end_inset
26960 </cell>
26961 </row>
26962 <row>
26963 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
26964 \begin_inset Text
26965
26966 \begin_layout Plain Layout
26967
26968 \backslash
26969 t
26970 \begin_inset ERT
26971 status collapsed
26972
26973 \begin_layout Plain Layout
26974
26975
26976 \backslash
26977 leer 
26978 \end_layout
26979
26980 \end_inset
26981
26982 ee
26983 \end_layout
26984
26985 \end_inset
26986 </cell>
26987 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
26988 \begin_inset Text
26989
26990 \begin_layout Plain Layout
26991 \begin_inset ERT
26992 status collapsed
26993
26994 \begin_layout Plain Layout
26995
26996
26997 \backslash
26998 t ee
26999 \end_layout
27000
27001 \end_inset
27002
27003
27004 \end_layout
27005
27006 \end_inset
27007 </cell>
27008 </row>
27009 </lyxtabular>
27010
27011 \end_inset
27012
27013
27014 \begin_inset space \hfill{}
27015 \end_inset
27016
27017
27018 \begin_inset Tabular
27019 <lyxtabular version="3" rows="8" columns="2">
27020 <features rotate="0" tabularvalignment="middle">
27021 <column alignment="block" valignment="top">
27022 <column alignment="center" valignment="top">
27023 <row>
27024 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27025 \begin_inset Text
27026
27027 \begin_layout Plain Layout
27028 Befehl
27029 \end_layout
27030
27031 \end_inset
27032 </cell>
27033 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27034 \begin_inset Text
27035
27036 \begin_layout Plain Layout
27037 Ergebnis
27038 \end_layout
27039
27040 \end_inset
27041 </cell>
27042 </row>
27043 <row>
27044 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27045 \begin_inset Text
27046
27047 \begin_layout Plain Layout
27048
27049 \backslash
27050 H
27051 \begin_inset ERT
27052 status collapsed
27053
27054 \begin_layout Plain Layout
27055
27056
27057 \backslash
27058 leer 
27059 \end_layout
27060
27061 \end_inset
27062
27063 e
27064 \end_layout
27065
27066 \end_inset
27067 </cell>
27068 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27069 \begin_inset Text
27070
27071 \begin_layout Plain Layout
27072 \begin_inset ERT
27073 status collapsed
27074
27075 \begin_layout Plain Layout
27076
27077
27078 \backslash
27079 H e
27080 \end_layout
27081
27082 \end_inset
27083
27084
27085 \end_layout
27086
27087 \end_inset
27088 </cell>
27089 </row>
27090 <row>
27091 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27092 \begin_inset Text
27093
27094 \begin_layout Plain Layout
27095
27096 \backslash
27097 'e
27098 \end_layout
27099
27100 \end_inset
27101 </cell>
27102 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27103 \begin_inset Text
27104
27105 \begin_layout Plain Layout
27106 \begin_inset ERT
27107 status collapsed
27108
27109 \begin_layout Plain Layout
27110
27111
27112 \backslash
27113 'e
27114 \end_layout
27115
27116 \end_inset
27117
27118
27119 \end_layout
27120
27121 \end_inset
27122 </cell>
27123 </row>
27124 <row>
27125 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27126 \begin_inset Text
27127
27128 \begin_layout Plain Layout
27129
27130 \backslash
27131 ~e
27132 \begin_inset Index idx
27133 status collapsed
27134
27135 \begin_layout Plain Layout
27136 Tilde
27137 \end_layout
27138
27139 \end_inset
27140
27141
27142 \end_layout
27143
27144 \end_inset
27145 </cell>
27146 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27147 \begin_inset Text
27148
27149 \begin_layout Plain Layout
27150 \begin_inset ERT
27151 status collapsed
27152
27153 \begin_layout Plain Layout
27154
27155
27156 \backslash
27157 ~e
27158 \end_layout
27159
27160 \end_inset
27161
27162
27163 \end_layout
27164
27165 \end_inset
27166 </cell>
27167 </row>
27168 <row>
27169 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27170 \begin_inset Text
27171
27172 \begin_layout Plain Layout
27173
27174 \backslash
27175 .e
27176 \end_layout
27177
27178 \end_inset
27179 </cell>
27180 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27181 \begin_inset Text
27182
27183 \begin_layout Plain Layout
27184 \begin_inset ERT
27185 status collapsed
27186
27187 \begin_layout Plain Layout
27188
27189
27190 \backslash
27191 .e
27192 \end_layout
27193
27194 \end_inset
27195
27196
27197 \end_layout
27198
27199 \end_inset
27200 </cell>
27201 </row>
27202 <row>
27203 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27204 \begin_inset Text
27205
27206 \begin_layout Plain Layout
27207
27208 \backslash
27209 v
27210 \begin_inset ERT
27211 status collapsed
27212
27213 \begin_layout Plain Layout
27214
27215
27216 \backslash
27217 leer 
27218 \end_layout
27219
27220 \end_inset
27221
27222 e
27223 \end_layout
27224
27225 \end_inset
27226 </cell>
27227 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27228 \begin_inset Text
27229
27230 \begin_layout Plain Layout
27231 \begin_inset ERT
27232 status collapsed
27233
27234 \begin_layout Plain Layout
27235
27236
27237 \backslash
27238 v e
27239 \end_layout
27240
27241 \end_inset
27242
27243
27244 \end_layout
27245
27246 \end_inset
27247 </cell>
27248 </row>
27249 <row>
27250 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
27251 \begin_inset Text
27252
27253 \begin_layout Plain Layout
27254
27255 \backslash
27256 d
27257 \begin_inset ERT
27258 status collapsed
27259
27260 \begin_layout Plain Layout
27261
27262
27263 \backslash
27264 leer 
27265 \end_layout
27266
27267 \end_inset
27268
27269 e
27270 \end_layout
27271
27272 \end_inset
27273 </cell>
27274 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
27275 \begin_inset Text
27276
27277 \begin_layout Plain Layout
27278 \begin_inset ERT
27279 status collapsed
27280
27281 \begin_layout Plain Layout
27282
27283
27284 \backslash
27285 d e
27286 \end_layout
27287
27288 \end_inset
27289
27290
27291 \end_layout
27292
27293 \end_inset
27294 </cell>
27295 </row>
27296 <row>
27297 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
27298 \begin_inset Text
27299
27300 \begin_layout Plain Layout
27301
27302 \backslash
27303 c
27304 \begin_inset ERT
27305 status collapsed
27306
27307 \begin_layout Plain Layout
27308
27309
27310 \backslash
27311 leer 
27312 \end_layout
27313
27314 \end_inset
27315
27316 e
27317 \end_layout
27318
27319 \end_inset
27320 </cell>
27321 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
27322 \begin_inset Text
27323
27324 \begin_layout Plain Layout
27325 \begin_inset ERT
27326 status collapsed
27327
27328 \begin_layout Plain Layout
27329
27330
27331 \backslash
27332 c e
27333 \end_layout
27334
27335 \end_inset
27336
27337
27338 \end_layout
27339
27340 \end_inset
27341 </cell>
27342 </row>
27343 </lyxtabular>
27344
27345 \end_inset
27346
27347
27348 \begin_inset space \hfill{}
27349 \end_inset
27350
27351
27352 \end_layout
27353
27354 \begin_layout Standard
27355 \begin_inset VSpace medskip
27356 \end_inset
27357
27358 Mit dem Befehl 
27359 \series bold
27360
27361 \backslash
27362 t
27363 \series default
27364  können auch zwei verschiedene Zeichen akzentuiert werden.
27365  Der Befehl 
27366 \series bold
27367
27368 \backslash
27369 t
27370 \begin_inset ERT
27371 status collapsed
27372
27373 \begin_layout Plain Layout
27374
27375
27376 \backslash
27377 leer 
27378 \end_layout
27379
27380 \end_inset
27381
27382 sz
27383 \series default
27384  ergibt: 
27385 \begin_inset ERT
27386 status collapsed
27387
27388 \begin_layout Plain Layout
27389
27390
27391 \backslash
27392 t sz
27393 \end_layout
27394
27395 \end_inset
27396
27397
27398 \end_layout
27399
27400 \begin_layout Standard
27401 Die Akzente 
27402 \series bold
27403 `
27404 \series default
27405  , 
27406 \series bold
27407 '
27408 \series default
27409  und 
27410 \series bold
27411 ^
27412 \series default
27413  können in Verbindung mit Selbstlauten auch direkt über die Tastatur eingegeben
27414  werden ohne den TeX-Modus zu benutzen.
27415  Dasselbe gilt für die Tilde
27416 \begin_inset Foot
27417 status collapsed
27418
27419 \begin_layout Plain Layout
27420 Gilt nur für Tastaturen, bei denen die Tilde als Akzent definiert ist.
27421 \end_layout
27422
27423 \end_inset
27424
27425  
27426 \series bold
27427 ~
27428 \series default
27429  in Verbindung mit 
27430 \emph on
27431 a
27432 \emph default
27433  , 
27434 \emph on
27435 n
27436 \emph default
27437  oder 
27438 \emph on
27439 o
27440 \emph default
27441 .
27442 \end_layout
27443
27444 \begin_layout Standard
27445 Die Befehle 
27446 \series bold
27447
27448 \backslash
27449 b
27450 \series default
27451  , 
27452 \series bold
27453
27454 \backslash
27455 c
27456 \series default
27457  , 
27458 \series bold
27459
27460 \backslash
27461 d
27462 \series default
27463  , 
27464 \series bold
27465
27466 \backslash
27467 H
27468 \series default
27469  , 
27470 \series bold
27471
27472 \backslash
27473 t
27474 \series default
27475  , 
27476 \series bold
27477
27478 \backslash
27479 u
27480 \series default
27481  , 
27482 \series bold
27483
27484 \backslash
27485 v
27486 \series default
27487  und direkt über die Tastatur eingegebene Akzente sind auch im mathematischen
27488  Textmodus verfügbar.
27489  Für die restlichen Akzente gibt es in Formeln spezielle Mathebefehle, siehe
27490  
27491 \begin_inset CommandInset ref
27492 LatexCommand ref
27493 reference "sub:Akzente-für-ein"
27494
27495 \end_inset
27496
27497 .
27498 \end_layout
27499
27500 \begin_layout Standard
27501 \begin_inset VSpace bigskip
27502 \end_inset
27503
27504 Des Weiteren kann man mit dem Befehl 
27505 \series bold
27506
27507 \backslash
27508 textcircled
27509 \series default
27510
27511 \begin_inset Index idx
27512 status collapsed
27513
27514 \begin_layout Plain Layout
27515 Befehle ! T ! 
27516 \backslash
27517 textcircled
27518 \end_layout
27519
27520 \end_inset
27521
27522 , ähnlich dem Copyrightsymbol, sämtliche Zahlen und Buchstaben in einen
27523  Kreis setzen, quasi mit einem Kreis akzentuieren.
27524 \end_layout
27525
27526 \begin_layout Standard
27527 \align center
27528 \begin_inset Tabular
27529 <lyxtabular version="3" rows="3" columns="2">
27530 <features rotate="0" tabularvalignment="middle">
27531 <column alignment="center" valignment="top">
27532 <column alignment="center" valignment="top">
27533 <row>
27534 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27535 \begin_inset Text
27536
27537 \begin_layout Plain Layout
27538 Befehl
27539 \end_layout
27540
27541 \end_inset
27542 </cell>
27543 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27544 \begin_inset Text
27545
27546 \begin_layout Plain Layout
27547 Ergebnis
27548 \begin_inset Note Note
27549 status collapsed
27550
27551 \begin_layout Plain Layout
27552
27553 \series bold
27554
27555 \backslash
27556 raisebox
27557 \series default
27558  in der Formel dient nur als Abstandhalter.
27559 \end_layout
27560
27561 \end_inset
27562
27563
27564 \end_layout
27565
27566 \end_inset
27567 </cell>
27568 </row>
27569 <row>
27570 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27571 \begin_inset Text
27572
27573 \begin_layout Plain Layout
27574
27575 \backslash
27576 textcircled{w}
27577 \end_layout
27578
27579 \end_inset
27580 </cell>
27581 <cell multicolumn="1" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27582 \begin_inset Text
27583
27584 \begin_layout Plain Layout
27585 \begin_inset ERT
27586 status collapsed
27587
27588 \begin_layout Plain Layout
27589
27590
27591 \backslash
27592 textcircled{w}
27593 \end_layout
27594
27595 \end_inset
27596
27597
27598 \end_layout
27599
27600 \end_inset
27601 </cell>
27602 </row>
27603 <row>
27604 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27605 \begin_inset Text
27606
27607 \begin_layout Plain Layout
27608
27609 \backslash
27610 Large 
27611 \backslash
27612 textcircled{
27613 \backslash
27614 normalsize
27615 \backslash
27616 protect
27617 \backslash
27618 raisebox{-1.5pt}{W}}
27619 \end_layout
27620
27621 \end_inset
27622 </cell>
27623 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27624 \begin_inset Text
27625
27626 \begin_layout Plain Layout
27627 \begin_inset Formula $\raisebox{4.5mm}{}$
27628 \end_inset
27629
27630
27631 \begin_inset ERT
27632 status collapsed
27633
27634 \begin_layout Plain Layout
27635
27636
27637 \backslash
27638 Large 
27639 \backslash
27640 textcircled{
27641 \backslash
27642 normalsize
27643 \backslash
27644 protect
27645 \backslash
27646 raisebox{-1.5pt}W}
27647 \end_layout
27648
27649 \end_inset
27650
27651
27652 \begin_inset Formula $\raisebox{-2mm}{}$
27653 \end_inset
27654
27655
27656 \end_layout
27657
27658 \end_inset
27659 </cell>
27660 </row>
27661 </lyxtabular>
27662
27663 \end_inset
27664
27665
27666 \end_layout
27667
27668 \begin_layout Standard
27669 Man muss darauf achten, dass das Zeichen in einen Kreis passt.
27670  
27671 \series bold
27672
27673 \backslash
27674 Large
27675 \series default
27676
27677 \begin_inset Foot
27678 status collapsed
27679
27680 \begin_layout Plain Layout
27681 siehe 
27682 \begin_inset CommandInset ref
27683 LatexCommand ref
27684 reference "sub:Schriftgrößen"
27685
27686 \end_inset
27687
27688
27689 \end_layout
27690
27691 \end_inset
27692
27693  bestimmt dabei die Größe des Kreises.
27694  Mit Hilfe von 
27695 \series bold
27696
27697 \backslash
27698 raisebox
27699 \series default
27700
27701 \begin_inset Foot
27702 status collapsed
27703
27704 \begin_layout Plain Layout
27705 siehe 
27706 \begin_inset CommandInset ref
27707 LatexCommand ref
27708 reference "sub:Boxen-ohne-Rahmen"
27709
27710 \end_inset
27711
27712
27713 \end_layout
27714
27715 \end_inset
27716
27717  kann man das Zeichen zentrieren.
27718 \end_layout
27719
27720 \begin_layout Subsection
27721 Minuskelziffern
27722 \begin_inset Index idx
27723 status collapsed
27724
27725 \begin_layout Plain Layout
27726 Minuskelziffern
27727 \end_layout
27728
27729 \end_inset
27730
27731
27732 \end_layout
27733
27734 \begin_layout Standard
27735 Minuskelziffern werden mit dem Befehl 
27736 \series bold
27737
27738 \backslash
27739 oldstylenums
27740 \series default
27741
27742 \begin_inset Index idx
27743 status collapsed
27744
27745 \begin_layout Plain Layout
27746 Befehle ! O ! 
27747 \backslash
27748 oldstylenums
27749 \end_layout
27750
27751 \end_inset
27752
27753  erzeugt.
27754  Der Befehl ist sowohl in einer Formel als auch im TeX-Modus verwendbar.
27755  Das Befehlsschema lautet:
27756 \end_layout
27757
27758 \begin_layout Standard
27759
27760 \series bold
27761
27762 \backslash
27763 oldstylenums{Ziffer}
27764 \end_layout
27765
27766 \begin_layout Standard
27767 Der Befehl 
27768 \series bold
27769
27770 \backslash
27771 oldstylenums{0123456789
27772 \series default
27773  ergibt: 
27774 \begin_inset Formula $\oldstylenums{0123456789}$
27775 \end_inset
27776
27777
27778 \end_layout
27779
27780 \begin_layout Section
27781 Formelstile
27782 \begin_inset CommandInset label
27783 LatexCommand label
27784 name "sec:Formelstile"
27785
27786 \end_inset
27787
27788
27789 \begin_inset Index idx
27790 status collapsed
27791
27792 \begin_layout Plain Layout
27793 Formel ! Stile
27794 \end_layout
27795
27796 \end_inset
27797
27798
27799 \end_layout
27800
27801 \begin_layout Itemize
27802 Für abgesetzte Formeln gibt es zwei verschiedene Anordnungsstile:
27803 \end_layout
27804
27805 \begin_deeper
27806 \begin_layout Description
27807 Zentriert ist der voreingestellte Standard
27808 \end_layout
27809
27810 \begin_layout Description
27811 Eingerückt dazu muss im Menü 
27812 \family sans
27813 Dokument\SpecialChar \menuseparator
27814 Einstellungen
27815 \family default
27816  unter 
27817 \family sans
27818 Dokumentklasse
27819 \family default
27820  die Option 
27821 \series bold
27822 fleqn
27823 \series default
27824  eingeben werden
27825 \end_layout
27826
27827 \begin_layout Standard
27828 Wird 
27829 \series bold
27830 Eingerückt
27831 \series default
27832  verwendet, kann mit der Länge 
27833 \series bold
27834
27835 \backslash
27836 mathindent
27837 \series default
27838
27839 \begin_inset Index idx
27840 status collapsed
27841
27842 \begin_layout Plain Layout
27843 Befehle ! M ! 
27844 \backslash
27845 mathindent
27846 \end_layout
27847
27848 \end_inset
27849
27850  die Einrückung eingestellt werden.
27851  Soll der Abstand 15
27852 \begin_inset space \thinspace{}
27853 \end_inset
27854
27855 mm betragen, gibt man im LaTeX-Vorspann die Zeile
27856 \end_layout
27857
27858 \begin_layout Standard
27859
27860 \series bold
27861
27862 \backslash
27863 setlength{
27864 \backslash
27865 mathindent}{15mm}
27866 \end_layout
27867
27868 \begin_layout Standard
27869 ein.
27870  Wenn keine Länge vorgegeben wird, wird der voreingestellte Wert von 30
27871 \begin_inset space \thinspace{}
27872 \end_inset
27873
27874 pt verwendet.
27875 \end_layout
27876
27877 \end_deeper
27878 \begin_layout Itemize
27879 Und zwei verschiedene Nummerierungsstile:
27880 \end_layout
27881
27882 \begin_deeper
27883 \begin_layout Description
27884 Rechts ist der voreingestellte Standard
27885 \end_layout
27886
27887 \begin_layout Description
27888 Links dazu muss im Menü 
27889 \family sans
27890 Dokument\SpecialChar \menuseparator
27891 Einstellungen
27892 \family default
27893  unter 
27894 \family sans
27895 Dokumentklasse
27896 \family default
27897  die Option 
27898 \series bold
27899 leqno
27900 \series default
27901  eingeben werden
27902 \end_layout
27903
27904 \end_deeper
27905 \begin_layout Standard
27906
27907 \series bold
27908 fleqn
27909 \series default
27910  und 
27911 \series bold
27912 leqno
27913 \series default
27914  können auch gemeinsam verwendet werden.
27915  Dazu werden beide Optionen, durch ein Komma getrennt, hintereinander geschriebe
27916 n.
27917 \end_layout
27918
27919 \begin_layout Standard
27920 Die eingestellten Stile gelten für alle abgesetzten Formeln eines Dokuments.
27921  Möchte man jedoch in einem Dokument sowohl zentrierte als auch eingerückte
27922  ausgerichtete Formeln setzen, verwendet man den Stil 
27923 \series bold
27924 Zentriert
27925 \series default
27926 .
27927  Die einzurückenden Formeln setzt man dann in eine flalign-Umgebung, siehe
27928  
27929 \begin_inset CommandInset ref
27930 LatexCommand ref
27931 reference "sub:Flalign-Umgebung"
27932
27933 \end_inset
27934
27935 .
27936 \end_layout
27937
27938 \begin_layout Section
27939 Mehrzeilige Formeln
27940 \begin_inset CommandInset label
27941 LatexCommand label
27942 name "sec:Mehrzeilige-Formeln"
27943
27944 \end_inset
27945
27946
27947 \begin_inset Index idx
27948 status collapsed
27949
27950 \begin_layout Plain Layout
27951 Formel ! mehrzeilige
27952 \end_layout
27953
27954 \end_inset
27955
27956
27957 \end_layout
27958
27959 \begin_layout Subsection
27960 Allgemeines
27961 \end_layout
27962
27963 \begin_layout Standard
27964 In LyX werden mehrzeilige Formeln erstellt, wenn man in einer Formel 
27965 \family sans
27966 \series bold
27967 Strg+Enter
27968 \family default
27969 \series default
27970  drückt.
27971  Dies erzeugt entweder eine 
27972 \series bold
27973 eqnarray-Umgebung
27974 \series default
27975 , die in 
27976 \begin_inset CommandInset ref
27977 LatexCommand ref
27978 reference "sub:Eqnarray-Umgebung"
27979
27980 \end_inset
27981
27982  beschrieben ist oder, wenn die Option 
27983 \family sans
27984 AMS-Mathe-Paket verwenden
27985 \family default
27986  in den Dokumenteinstellungen gewählt ist, eine 
27987 \series bold
27988 align-Umgebung
27989 \series default
27990 , die in 
27991 \begin_inset CommandInset ref
27992 LatexCommand ref
27993 reference "sub:Standard-align-Umgebung"
27994
27995 \end_inset
27996
27997  beschrieben ist.
27998  Es wird empfohlen die align-Umgebung zu verwenden, denn sie erscheint in
27999  jedem Fall typographisch korrekt in der Ausgabe.
28000 \end_layout
28001
28002 \begin_layout Standard
28003 Es gibt noch weitere mehrzeilige Formelumgebungen, die über das Menü 
28004 \family sans
28005 Einfügen\SpecialChar \menuseparator
28006 Mathe
28007 \family default
28008  erstellt werden können.
28009  Diese Umgebungen werden in den folgenden Kapiteln beschrieben.
28010 \end_layout
28011
28012 \begin_layout Standard
28013 In allen mehrzeiligen Formelumgebungen erstellt man eine neue Zeile, indem
28014  man 
28015 \family sans
28016 Strg+Enter
28017 \family default
28018  drückt.
28019  Um Spalten hinzuzufügen oder zu entfernen, können die Mathe-Werkzeugleistenknöp
28020 fe 
28021 \begin_inset Graphics
28022         filename ../../images/tabular-feature_append-row.png
28023         scale 85
28024
28025 \end_inset
28026
28027  bzw.
28028 \begin_inset space \space{}
28029 \end_inset
28030
28031
28032 \begin_inset Graphics
28033         filename ../../images/tabular-feature_delete-row.png
28034         scale 85
28035
28036 \end_inset
28037
28038  oder das Menü 
28039 \family sans
28040 Bearbeiten\SpecialChar \menuseparator
28041 Zeilen & Spalten
28042 \family default
28043  verwendet werden.
28044 \end_layout
28045
28046 \begin_layout Subsubsection
28047 Zeilenabstand
28048 \begin_inset CommandInset label
28049 LatexCommand label
28050 name "sub:Zeilenabstand"
28051
28052 \end_inset
28053
28054
28055 \begin_inset Index idx
28056 status collapsed
28057
28058 \begin_layout Plain Layout
28059 Formel ! mehrzeilige ! Zeilenabstand
28060 \end_layout
28061
28062 \end_inset
28063
28064
28065 \end_layout
28066
28067 \begin_layout Standard
28068 Bei mehrzeiligen Formeln fehlt manchmal etwas Platz zwischen den Zeilen:
28069 \begin_inset Formula 
28070 \begin{eqnarray*}
28071 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}\\
28072 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
28073 \end{eqnarray*}
28074
28075 \end_inset
28076
28077
28078 \end_layout
28079
28080 \begin_layout Standard
28081 In LaTeX wird zusätzlicher Zeilenabstand als optionales Argument des Zeilenumbru
28082 chbefehls angegeben.
28083  Dies ist in LyX aber nicht möglich
28084 \begin_inset Foot
28085 status collapsed
28086
28087 \begin_layout Plain Layout
28088 siehe 
28089 \begin_inset CommandInset href
28090 LatexCommand href
28091 name "LyX-Fehler #1505"
28092 target "http://www.lyx.org/trac/ticket/1505"
28093
28094 \end_inset
28095
28096
28097 \end_layout
28098
28099 \end_inset
28100
28101 , weshalb man die ganze Formel im TeX-Modus eingeben muss.
28102  Um für unser Beispiel Leerraum einzufügen, gibt man am Ende der ersten
28103  Zeile den Befehl 
28104 \series bold
28105
28106 \backslash
28107
28108 \backslash
28109 [3mm]
28110 \series default
28111  ein.
28112  Damit erhält man: 
28113 \begin_inset ERT
28114 status collapsed
28115
28116 \begin_layout Plain Layout
28117
28118
28119 \backslash
28120 begin{eqnarray*}
28121 \end_layout
28122
28123 \begin_layout Plain Layout
28124
28125 B^{2}(B^{2}-2r_{g}^{2}+2x_{0}^{2}-2r_{k}^{2})+4x_{0}^{2}x^{2}+4x_{0}xD &
28126  = & 
28127 \backslash
28128 textrm{-}4x^{2}B^{2}+4x_{0}xB^{2}
28129 \backslash
28130
28131 \backslash
28132 [3mm]
28133 \end_layout
28134
28135 \begin_layout Plain Layout
28136
28137 4x^{2}
28138 \backslash
28139 left(B^{2}+x_{0}^{2}
28140 \backslash
28141 right)+4x_{0}x
28142 \backslash
28143 left(D-B^{2}
28144 \backslash
28145 right)+B^{2}
28146 \backslash
28147 left(B^{2}-2r_{g}^{2}+2x_{0}^{2}-2r_{k}^{2}
28148 \backslash
28149 right) & = & 0
28150 \end_layout
28151
28152 \begin_layout Plain Layout
28153
28154
28155 \backslash
28156 end{eqnarray*}
28157 \end_layout
28158
28159 \end_inset
28160
28161
28162 \end_layout
28163
28164 \begin_layout Standard
28165 \begin_inset VSpace bigskip
28166 \end_inset
28167
28168 Möchte man den Zeilenabstand für alle Zeilen einer Formel festlegen, verändert
28169  man die Länge 
28170 \series bold
28171
28172 \backslash
28173 jot
28174 \series default
28175
28176 \begin_inset Index idx
28177 status collapsed
28178
28179 \begin_layout Plain Layout
28180 Befehle ! J ! 
28181 \backslash
28182 jot
28183 \end_layout
28184
28185 \end_inset
28186
28187 .
28188  Es gilt 
28189 \begin_inset Formula $\mbox{Zeilenabstand}=\mathrm{6\, pt+\backslash jot}$
28190 \end_inset
28191
28192 .
28193  Voreingestellt ist für 
28194 \series bold
28195
28196 \backslash
28197 jot
28198 \series default
28199  der Wert 3
28200 \begin_inset space \thinspace{}
28201 \end_inset
28202
28203 pt.
28204  Um wie im vorigen Beispiel 3
28205 \begin_inset space \thinspace{}
28206 \end_inset
28207
28208 mm zusätzlichen Zeilenabstand zu erzeugen, gibt man den Befehl
28209 \end_layout
28210
28211 \begin_layout Standard
28212
28213 \series bold
28214
28215 \backslash
28216 setlength{
28217 \backslash
28218 jot}{3mm+3pt}
28219 \end_layout
28220
28221 \begin_layout Standard
28222 im TeX-Modus vor der Formel ein.
28223  Das setzt voraus, dass das LaTeX-Paket 
28224 \series bold
28225 calc
28226 \series default
28227
28228 \begin_inset Foot
28229 status collapsed
28230
28231 \begin_layout Plain Layout
28232
28233 \series bold
28234 calc
28235 \series default
28236  ist Teil jeder LaTeX-Standardinstallation.
28237 \end_layout
28238
28239 \end_inset
28240
28241
28242 \begin_inset Index idx
28243 status collapsed
28244
28245 \begin_layout Plain Layout
28246 Pakete ! calc
28247 \end_layout
28248
28249 \end_inset
28250
28251  im LaTeX-Vorspann mit der Zeile
28252 \end_layout
28253
28254 \begin_layout Standard
28255
28256 \series bold
28257
28258 \backslash
28259 usepackage{calc}
28260 \end_layout
28261
28262 \begin_layout Standard
28263 geladen wurde.
28264 \end_layout
28265
28266 \begin_layout Standard
28267 Man erhält: 
28268 \begin_inset ERT
28269 status collapsed
28270
28271 \begin_layout Plain Layout
28272
28273
28274 \backslash
28275 setlength{
28276 \backslash
28277 jot}{3mm+3pt}
28278 \end_layout
28279
28280 \end_inset
28281
28282
28283 \begin_inset Formula 
28284 \begin{eqnarray*}
28285 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}\\
28286 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
28287 \end{eqnarray*}
28288
28289 \end_inset
28290
28291
28292 \end_layout
28293
28294 \begin_layout Standard
28295 \begin_inset ERT
28296 status collapsed
28297
28298 \begin_layout Plain Layout
28299
28300
28301 \backslash
28302 setlength{
28303 \backslash
28304 jot}{3pt}
28305 \end_layout
28306
28307 \end_inset
28308
28309  Um wieder zum voreingestellten Abstand zu wechseln, setzt man 
28310 \series bold
28311
28312 \backslash
28313 jot
28314 \series default
28315  auf den Wert 3
28316 \begin_inset space \thinspace{}
28317 \end_inset
28318
28319 pt.
28320 \end_layout
28321
28322 \begin_layout Subsubsection
28323 Spaltenabstand
28324 \begin_inset CommandInset label
28325 LatexCommand label
28326 name "sub:Spaltenabstand"
28327
28328 \end_inset
28329
28330
28331 \begin_inset Index idx
28332 status collapsed
28333
28334 \begin_layout Plain Layout
28335 Formel ! mehrzeilige ! Spaltenabstand
28336 \end_layout
28337
28338 \end_inset
28339
28340
28341 \end_layout
28342
28343 \begin_layout Standard
28344 Mehrzeilige Formeln bilden eine Matrix.
28345  Eine Formel in der Eqnarray-Umgebung ist z.
28346 \begin_inset space \thinspace{}
28347 \end_inset
28348
28349 B.
28350  eine dreispaltige Matrix.
28351  Durch Änderung des Spaltenabstands in dieser Umgebung, kann man den Leerraum
28352  neben den Relationszeichen ändern.
28353 \end_layout
28354
28355 \begin_layout Standard
28356 Der Spaltenabstand wird mit der Länge 
28357 \series bold
28358
28359 \backslash
28360 arraycolsep
28361 \series default
28362
28363 \begin_inset Index idx
28364 status collapsed
28365
28366 \begin_layout Plain Layout
28367 Befehle ! A ! 
28368 \backslash
28369 arraycolsep
28370 \end_layout
28371
28372 \end_inset
28373
28374  festgelegt, wobei gilt:
28375 \begin_inset Newline newline
28376 \end_inset
28377
28378 Spaltenabstand = 2
28379 \begin_inset space \thinspace{}
28380 \end_inset
28381
28382
28383 \series bold
28384
28385 \backslash
28386 arraycolsep
28387 \series default
28388 .
28389 \begin_inset Newline newline
28390 \end_inset
28391
28392 Der im TeX-Modus eingegebene Befehl
28393 \end_layout
28394
28395 \begin_layout Standard
28396
28397 \series bold
28398
28399 \backslash
28400 setlength{
28401 \backslash
28402 arraycolsep}{1cm}
28403 \end_layout
28404
28405 \begin_layout Standard
28406 bewirkt also für alle folgenden Formeln einen Spaltenabstand von 2
28407 \begin_inset space \thinspace{}
28408 \end_inset
28409
28410 cm.
28411  Um wieder zum voreingestellten Abstand zurückzukehren, setzt man 
28412 \series bold
28413
28414 \backslash
28415 arraycolsep
28416 \series default
28417  auf 5
28418 \begin_inset space \thinspace{}
28419 \end_inset
28420
28421 pt.
28422 \end_layout
28423
28424 \begin_layout Standard
28425 Eine Formel mit 2
28426 \begin_inset space \thinspace{}
28427 \end_inset
28428
28429 cm Spaltenabstand:
28430 \begin_inset ERT
28431 status collapsed
28432
28433 \begin_layout Plain Layout
28434
28435
28436 \backslash
28437 setlength{
28438 \backslash
28439 arraycolsep}{1cm}
28440 \end_layout
28441
28442 \end_inset
28443
28444
28445 \begin_inset Formula 
28446 \begin{eqnarray*}
28447 A & = & B\\
28448 C & \ne & A
28449 \end{eqnarray*}
28450
28451 \end_inset
28452
28453 Eine Formel mit dem für Matrizen voreingestellten Spaltenabstand von 10
28454 \begin_inset space \thinspace{}
28455 \end_inset
28456
28457 pt:
28458 \begin_inset ERT
28459 status collapsed
28460
28461 \begin_layout Plain Layout
28462
28463
28464 \backslash
28465 setlength{
28466 \backslash
28467 arraycolsep}{5pt}
28468 \end_layout
28469
28470 \end_inset
28471
28472
28473 \begin_inset Formula 
28474 \begin{eqnarray*}
28475 A & = & B\\
28476 C & \ne & A
28477 \end{eqnarray*}
28478
28479 \end_inset
28480
28481
28482 \end_layout
28483
28484 \begin_layout Subsubsection
28485 Lange Formeln
28486 \begin_inset Index idx
28487 status collapsed
28488
28489 \begin_layout Plain Layout
28490 Formel ! lange
28491 \end_layout
28492
28493 \end_inset
28494
28495
28496 \end_layout
28497
28498 \begin_layout Standard
28499 Lange Formeln kann man wie folgt setzen:
28500 \end_layout
28501
28502 \begin_layout Itemize
28503 Ist eine Seite der Gleichung deutlich kürzer als die Zeilenbreite, wählt
28504  man man diese als linke Seite und schreibt die rechte über zwei Zeilen:
28505 \begin_inset Formula 
28506 \begin{eqnarray}
28507 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 \\
28508  &  & -\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}
28509 \end{eqnarray}
28510
28511 \end_inset
28512
28513 Das Minuszeichen zu Beginn der zweiten Zeile erscheint eigentlich nicht
28514  als Operator, da es das erste Zeichen der Zeile ist.
28515  Deswegen wäre es nicht von Leerraum umgeben und ließe sich schlecht vom
28516  Bruchstrich unterscheiden.
28517  Um das zu verhindern, wurde mit dem Befehl 
28518 \series bold
28519
28520 \backslash
28521 hspace
28522 \series default
28523  3
28524 \begin_inset space \thinspace{}
28525 \end_inset
28526
28527 pt Leerraum hinter das Minuszeichen eingefügt.
28528 \begin_inset Foot
28529 status collapsed
28530
28531 \begin_layout Plain Layout
28532 mehr zu 
28533 \series bold
28534
28535 \backslash
28536 hspace
28537 \series default
28538  siehe 
28539 \begin_inset CommandInset ref
28540 LatexCommand ref
28541 reference "sub:Variabler-Leerraum"
28542
28543 \end_inset
28544
28545
28546 \end_layout
28547
28548 \end_inset
28549
28550
28551 \begin_inset Index idx
28552 status collapsed
28553
28554 \begin_layout Plain Layout
28555 Befehle ! H ! 
28556 \backslash
28557 hspace
28558 \end_layout
28559
28560 \end_inset
28561
28562
28563 \end_layout
28564
28565 \begin_layout Itemize
28566 Sind beide Seiten der Gleichung zu lang, verwendet man den Befehl 
28567 \series bold
28568
28569 \backslash
28570 lefteqn
28571 \series default
28572
28573 \begin_inset Index idx
28574 status collapsed
28575
28576 \begin_layout Plain Layout
28577 Befehle ! L ! 
28578 \backslash
28579 lefteqn
28580 \end_layout
28581
28582 \end_inset
28583
28584 .
28585  Dieser wird in die erste Spalte der ersten Zeile eingegeben und bewirkt,
28586  dass alle weiteren Eingaben die folgenden Spalten überschreiben:
28587 \begin_inset Formula 
28588 \begin{eqnarray}
28589 \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 \\
28590  &  & -\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 \\
28591  &  & =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}
28592 \end{eqnarray}
28593
28594 \end_inset
28595
28596 Nachdem man 
28597 \series bold
28598
28599 \backslash
28600 lefteqn
28601 \series default
28602  eingegeben hat, befindet sich der Cursor in einem pinkfarbenen Kästchen,
28603  das gegenüber dem blauen leicht verschoben ist.
28604  In dieses wird die Formel eingegeben.
28605 \begin_inset Newline newline
28606 \end_inset
28607
28608 Der Inhalt der weiteren Zeilen wird in die zweite oder eine andere Formelspalte
28609  eingegeben.
28610  Je größer die Spaltennummer in die eingegeben wurde, desto größer ist die
28611  Einrückung.
28612 \begin_inset VSpace medskip
28613 \end_inset
28614
28615
28616 \begin_inset Newline newline
28617 \end_inset
28618
28619
28620 \begin_inset Note Greyedout
28621 status open
28622
28623 \begin_layout Plain Layout
28624 Bei der Verwendung von 
28625 \series bold
28626
28627 \backslash
28628 lefteqn
28629 \series default
28630  ist Folgendes zu beachten:
28631 \end_layout
28632
28633 \begin_layout Itemize
28634 Die Formel nutzt nicht die gesamte Seitenbreite aus.
28635  Würde man in obigem Beispiel der ersten Zeile den Term 
28636 \begin_inset Formula $-B^{2}$
28637 \end_inset
28638
28639  anfügen, befände sich dieser außerhalb des Seitenrands.
28640  Um die Breite besser auszunutzen, kann man zu Beginn der ersten Zeile negativen
28641  Leerraum einfügen.
28642 \end_layout
28643
28644 \begin_layout Itemize
28645 Aufgrund eines Fehlers in LyX kann der Cursor nicht mit der Maus in die
28646  erste Zeile gesetzt werden.
28647 \begin_inset Foot
28648 status collapsed
28649
28650 \begin_layout Plain Layout
28651 \begin_inset CommandInset href
28652 LatexCommand href
28653 name "LyX-Fehler #1429"
28654 target "http://www.lyx.org/trac/ticket/1429"
28655
28656 \end_inset
28657
28658
28659 \end_layout
28660
28661 \end_inset
28662
28663  Man kann den Cursor nur an den Anfang der Zeile setzen und ihn mit den
28664  Pfeiltasten bewegen.
28665 \end_layout
28666
28667 \end_inset
28668
28669
28670 \end_layout
28671
28672 \begin_layout Itemize
28673 Weitere Möglichkeiten lange Formeln zu setzen, bieten die in 
28674 \begin_inset CommandInset ref
28675 LatexCommand ref
28676 reference "sub:Multline-Umgebung"
28677
28678 \end_inset
28679
28680  und 
28681 \begin_inset CommandInset ref
28682 LatexCommand ref
28683 reference "sub:Mehrzeilige-Formelteile"
28684
28685 \end_inset
28686
28687  beschriebenen Umgebungen.
28688 \end_layout
28689
28690 \begin_layout Subsubsection
28691 Mehrzeilige Klammern
28692 \begin_inset CommandInset label
28693 LatexCommand label
28694 name "sub:Mehrzeilige-Klammern"
28695
28696 \end_inset
28697
28698
28699 \begin_inset Index idx
28700 status collapsed
28701
28702 \begin_layout Plain Layout
28703 Klammern ! mehrzeilige
28704 \end_layout
28705
28706 \end_inset
28707
28708
28709 \end_layout
28710
28711 \begin_layout Standard
28712 Bei Klammern, die über mehrere Zeilen gehen, tritt folgendes Problem auf:
28713 \begin_inset Formula 
28714 \begin{eqnarray*}
28715 A & = & \sin(x)\left[\prod_{R=1}^{\infty}\frac{1}{R}+\cdots\right.\\
28716  &  & \left.\cdots+B-D\right]
28717 \end{eqnarray*}
28718
28719 \end_inset
28720
28721
28722 \end_layout
28723
28724 \begin_layout Standard
28725 Die schließende Klammer ist kleiner als die öffnende, denn Klammern variabler
28726  Größe dürfen nicht über mehrere Zeilen gehen.
28727 \end_layout
28728
28729 \begin_layout Standard
28730 Um die Größe für die Klammer der zweiten Zeile anzupassen, beendet man die
28731  erste Zeile mit 
28732 \series bold
28733
28734 \backslash
28735 right.
28736 \series default
28737
28738 \begin_inset Index idx
28739 status collapsed
28740
28741 \begin_layout Plain Layout
28742 Befehle ! R ! 
28743 \backslash
28744 right
28745 \end_layout
28746
28747 \end_inset
28748
28749  und beginnt die zweite Zeile mit 
28750 \series bold
28751
28752 \backslash
28753 left.
28754 \begin_inset Foot
28755 status collapsed
28756
28757 \begin_layout Plain Layout
28758 mehr zu 
28759 \series bold
28760
28761 \backslash
28762 left
28763 \series default
28764  und 
28765 \series bold
28766
28767 \backslash
28768 right
28769 \series default
28770  siehe 
28771 \begin_inset CommandInset ref
28772 LatexCommand ref
28773 reference "sub:Automatische-Klammergrößen"
28774
28775 \end_inset
28776
28777
28778 \end_layout
28779
28780 \end_inset
28781
28782
28783 \series default
28784
28785 \begin_inset Index idx
28786 status collapsed
28787
28788 \begin_layout Plain Layout
28789 Befehle ! L ! 
28790 \backslash
28791 left
28792 \end_layout
28793
28794 \end_inset
28795
28796 .
28797  Nach 
28798 \series bold
28799
28800 \backslash
28801 left.
28802
28803 \series default
28804  gibt man den Befehl 
28805 \series bold
28806
28807 \backslash
28808 vphantom
28809 \series default
28810
28811 \begin_inset ERT
28812 status collapsed
28813
28814 \begin_layout Plain Layout
28815
28816
28817 \backslash
28818 leer 
28819 \end_layout
28820
28821 \end_inset
28822
28823
28824 \series bold
28825
28826 \backslash
28827 prod
28828 \series default
28829 ^
28830 \begin_inset ERT
28831 status collapsed
28832
28833 \begin_layout Plain Layout
28834
28835
28836 \backslash
28837 leer 
28838 \end_layout
28839
28840 \end_inset
28841
28842
28843 \series bold
28844
28845 \backslash
28846 infty
28847 \series default
28848
28849 \begin_inset ERT
28850 status collapsed
28851
28852 \begin_layout Plain Layout
28853
28854
28855 \backslash
28856 leer 
28857 \end_layout
28858
28859 \end_inset
28860
28861
28862 \series bold
28863
28864 \begin_inset Formula $\downarrow$
28865 \end_inset
28866
28867 _R=1}
28868 \series default
28869
28870 \begin_inset Index idx
28871 status collapsed
28872
28873 \begin_layout Plain Layout
28874 Befehle ! V ! 
28875 \backslash
28876 vphantom
28877 \end_layout
28878
28879 \end_inset
28880
28881  ein, denn der Multiplikationsoperator mit seinen Grenzen ist das größte
28882  Symbol der ersten Zeile, und daran soll die zweite Klammer angepasst werden.
28883 \end_layout
28884
28885 \begin_layout Standard
28886 Das Ergebnis sieht so aus:
28887 \begin_inset Formula 
28888 \begin{eqnarray*}
28889 A & = & \sin(x)\left[\prod_{R=1}^{\infty}\frac{1}{R}+\cdots\right.\\
28890  &  & \left.\vphantom{\prod_{R=1}^{\infty}}\cdots+B-D\right]
28891 \end{eqnarray*}
28892
28893 \end_inset
28894
28895
28896 \end_layout
28897
28898 \begin_layout Subsection
28899 Align-Umgebungen
28900 \end_layout
28901
28902 \begin_layout Standard
28903 Align-Umgebungen können für jede Art von mehrzeiligen Formeln verwendet
28904  werden.
28905  Sie sind besonders geeignet um mehrere Formeln nebeneinander zu setzen.
28906 \end_layout
28907
28908 \begin_layout Standard
28909 Align-Umgebungen bestehen aus Spalten.
28910  Die ungeradzahligen Spalten sind rechts-, die geradzahligen linksbündig
28911  ausgerichtet.
28912  Jede Zeile einer Align-Umgebung kann nummeriert werden.
28913 \end_layout
28914
28915 \begin_layout Standard
28916 Align-Umgebung werden über das Menü 
28917 \family sans
28918 Einfügen\SpecialChar \menuseparator
28919 Mathe
28920 \family default
28921  erstellt.
28922  Über das Menü 
28923 \family sans
28924 Bearbeiten\SpecialChar \menuseparator
28925 Mathe\SpecialChar \menuseparator
28926 Formelart
28927 \begin_inset space ~
28928 \end_inset
28929
28930 ändern
28931 \family default
28932  können bereits existierende Formeln in Align-Umgebungen umgewandelt werden.
28933 \end_layout
28934
28935 \begin_layout Standard
28936 Um Spalten hinzuzufügen oder zu entfernen, können die Mathe-Werkzeugleistenknöpf
28937
28938 \begin_inset Graphics
28939         filename ../../images/tabular-feature_append-column.png
28940         scale 85
28941
28942 \end_inset
28943
28944  bzw.
28945 \begin_inset space \space{}
28946 \end_inset
28947
28948
28949 \begin_inset Graphics
28950         filename ../../images/tabular-feature_delete-column.png
28951         scale 85
28952
28953 \end_inset
28954
28955  oder das Menü 
28956 \family sans
28957 Bearbeiten\SpecialChar \menuseparator
28958 Zeilen & Spalten
28959 \family default
28960  verwendet werden.
28961 \end_layout
28962
28963 \begin_layout Subsubsection
28964 Standard align-Umgebung
28965 \begin_inset CommandInset label
28966 LatexCommand label
28967 name "sub:Standard-align-Umgebung"
28968
28969 \end_inset
28970
28971
28972 \begin_inset Index idx
28973 status collapsed
28974
28975 \begin_layout Plain Layout
28976 Formel ! mehrzeilige ! align-Umgebung
28977 \end_layout
28978
28979 \end_inset
28980
28981
28982 \end_layout
28983
28984 \begin_layout Standard
28985 Diese Align-Umgebung wird erstellt, indem man in einer Formel 
28986 \family sans
28987 Strg+Enter
28988 \family default
28989  drückt oder das Menü 
28990 \family sans
28991 Einfügen\SpecialChar \menuseparator
28992 Mathe\SpecialChar \menuseparator
28993 AMS align-Umge\SpecialChar \-
28994 bung
28995 \family default
28996  aufruft.
28997 \end_layout
28998
28999 \begin_layout Standard
29000 Ein Beispiel für zwei nebeneinander stehende Formeln, die mit einer vierspaltige
29001 n align-Umgebung erzeugt wurden:
29002 \begin_inset Formula 
29003 \begin{align*}
29004 A & =\sin(B) & C & =D\\
29005 C & \ne A & B & \ne D
29006 \end{align*}
29007
29008 \end_inset
29009
29010 Wie man sieht, werden die Formeln in dieser Umgebung so angeordnet, als
29011  würde sich vor der ersten und hinter jeder geraden Spalte ein 
29012 \series bold
29013
29014 \backslash
29015 hfill
29016 \begin_inset Foot
29017 status collapsed
29018
29019 \begin_layout Plain Layout
29020 mehr zu 
29021 \series bold
29022
29023 \backslash
29024 hfill
29025 \series default
29026  siehe 
29027 \begin_inset CommandInset ref
29028 LatexCommand ref
29029 reference "sub:Variabler-Leerraum"
29030
29031 \end_inset
29032
29033
29034 \end_layout
29035
29036 \end_inset
29037
29038
29039 \series default
29040  befinden.
29041  Ist der Formelstil 
29042 \series bold
29043 Eingerückt
29044 \begin_inset Foot
29045 status collapsed
29046
29047 \begin_layout Plain Layout
29048 Formelstile siehe 
29049 \begin_inset CommandInset ref
29050 LatexCommand ref
29051 reference "sec:Formelstile"
29052
29053 \end_inset
29054
29055
29056 \end_layout
29057
29058 \end_inset
29059
29060
29061 \series default
29062  gewählt, wird die Formel ohne den 
29063 \series bold
29064
29065 \backslash
29066 hfill
29067 \series default
29068  vor der ersten Spalte gesetzt.
29069 \end_layout
29070
29071 \begin_layout Subsubsection
29072 Alignat-Umgebung
29073 \begin_inset Index idx
29074 status collapsed
29075
29076 \begin_layout Plain Layout
29077 Formel ! mehrzeilige ! alignat-Umgebung
29078 \end_layout
29079
29080 \end_inset
29081
29082
29083 \end_layout
29084
29085 \begin_layout Standard
29086 In der alignat-Umgebung gibt es keinen vordefinierten Spaltenabstand.
29087  Man kann ihn manuell durch die in 
29088 \begin_inset CommandInset ref
29089 LatexCommand ref
29090 reference "sub:Leerraum"
29091
29092 \end_inset
29093
29094  beschriebenen Leerräume einfügen.
29095 \end_layout
29096
29097 \begin_layout Standard
29098 Das vorige Beispiel in der alignat-Umgebung, bei dem zu Beginn der zweiten
29099  Formel 1
29100 \begin_inset space \thinspace{}
29101 \end_inset
29102
29103 cm Leerraum eingefügt wurde:
29104 \begin_inset Formula 
29105 \begin{alignat*}{2}
29106 A & =\sin(B) & \hspace{1cm}C & =D\\
29107 C & \ne A & B & \ne D
29108 \end{alignat*}
29109
29110 \end_inset
29111
29112 Weil man den Spaltenabstand für jede Spalte einzeln einstellen kann, eignet
29113  sich diese Umgebung besonders für drei und mehr nebeneinander gesetzte
29114  Formeln.
29115 \end_layout
29116
29117 \begin_layout Subsubsection
29118 Flalign-Umgebung
29119 \begin_inset CommandInset label
29120 LatexCommand label
29121 name "sub:Flalign-Umgebung"
29122
29123 \end_inset
29124
29125
29126 \begin_inset Index idx
29127 status collapsed
29128
29129 \begin_layout Plain Layout
29130 Formel ! mehrzeilige ! flalign-Umgebung
29131 \end_layout
29132
29133 \end_inset
29134
29135
29136 \end_layout
29137
29138 \begin_layout Standard
29139 Bei dieser Umgebung werden die ersten beiden Spalten immer so weit links
29140  und die letzten beiden Spalten so weit rechts wie möglich gesetzt.
29141  Dazu ein Beispiel:
29142 \begin_inset Formula 
29143 \begin{flalign*}
29144 A & =1 & B & =2 & C & =3\\
29145 X & =\textrm{-}1 & Y & =\textrm{-}2 & Z & =4
29146 \end{flalign*}
29147
29148 \end_inset
29149
29150
29151 \end_layout
29152
29153 \begin_layout Standard
29154 Erzeugt man eine flalign-Umgebung mit ungerader Spaltenanzahl und gibt in
29155  die letzte Spalte eine leere TeX-Klammer ein, kann man einzelne Formeln
29156  im Dokument links setzen obwohl der Formelstil 
29157 \series bold
29158 Zentriert
29159 \series default
29160  eingestellt ist.
29161  Als Beispiel die eingerückte ausgerichtete Formel 
29162 \begin_inset CommandInset ref
29163 LatexCommand eqref
29164 reference "eq:VolInt"
29165
29166 \end_inset
29167
29168 :
29169 \begin_inset Formula 
29170 \begin{flalign}
29171 \hspace{30pt}\iiint\limits _{V}X\,\mathrm{d}V & =U & {}
29172 \end{flalign}
29173
29174 \end_inset
29175
29176 In den ersten beiden Spalten befindet sich die Formel.
29177  Damit sie wie beim Formelstil 
29178 \series bold
29179 Eingerückt
29180 \series default
29181  vom Rand etwas abgesetzt ist, wurde zu Beginn der ersten Spalte 30
29182 \begin_inset space \thinspace{}
29183 \end_inset
29184
29185 pt Leerraum eingefügt.
29186 \end_layout
29187
29188 \begin_layout Subsection
29189 Eqnarray-Umgebung
29190 \begin_inset CommandInset label
29191 LatexCommand label
29192 name "sub:Eqnarray-Umgebung"
29193
29194 \end_inset
29195
29196
29197 \begin_inset Index idx
29198 status collapsed
29199
29200 \begin_layout Plain Layout
29201 Formel ! mehrzeilige ! Eqnarray-Umgebung
29202 \end_layout
29203
29204 \end_inset
29205
29206
29207 \end_layout
29208
29209 \begin_layout Standard
29210 Hat man diese Umgebung erzeugt, erscheinen drei blaue Kästchen.
29211  Der Inhalt des ersten Kästchens wird rechtsbündig, der des letzten linksbündig
29212  ausgerichtet.
29213  Der Inhalt des mittleren Kästchens erscheint zentriert und etwas kleiner,
29214  da dieses Kästchen nur für Relationzeichen gedacht ist.
29215 \begin_inset Formula 
29216 \begin{eqnarray*}
29217 \frac{ABC}{D} & \frac{ABC}{D} & \frac{ABC}{D}\\
29218 AB & AB & AB\\
29219 A & = & A
29220 \end{eqnarray*}
29221
29222 \end_inset
29223
29224
29225 \end_layout
29226
29227 \begin_layout Subsection
29228 Gather-Umgebung
29229 \begin_inset Index idx
29230 status collapsed
29231
29232 \begin_layout Plain Layout
29233 Formel ! mehrzeilige ! Gather-Umgebung
29234 \end_layout
29235
29236 \end_inset
29237
29238
29239 \end_layout
29240
29241 \begin_layout Standard
29242 Diese Umgebung besteht nur aus einer Spalte, deren Inhalt zentriert ist.
29243  Jede Zeile kann nummeriert werden.
29244 \begin_inset Formula 
29245 \begin{gather}
29246 A=1\\
29247 X=\textrm{-}1
29248 \end{gather}
29249
29250 \end_inset
29251
29252
29253 \end_layout
29254
29255 \begin_layout Subsection
29256 Multline-Umgebung
29257 \begin_inset CommandInset label
29258 LatexCommand label
29259 name "sub:Multline-Umgebung"
29260
29261 \end_inset
29262
29263
29264 \begin_inset Index idx
29265 status collapsed
29266
29267 \begin_layout Plain Layout
29268 Formel ! mehrzeilige ! Multline-Umgebung
29269 \end_layout
29270
29271 \end_inset
29272
29273
29274 \end_layout
29275
29276 \begin_layout Standard
29277 Die multline-Umgebung besteht wie die Gather-Umgebung nur aus einer Spalte.
29278  Jedoch ist die erste Zeile links, die letzte rechts ausgerichtet.
29279  Alle anderen Zeilen sind zentriert.
29280  Dadurch eignet sich diese Umgebung besonders für lange Formeln.
29281  Als Beispiel Formel 
29282 \begin_inset CommandInset ref
29283 LatexCommand eqref
29284 reference "eq:lefteqn"
29285
29286 \end_inset
29287
29288  in der multline-Umgebung:
29289 \begin_inset Formula 
29290 \begin{multline}
29291 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}\\
29292 -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}\\
29293 =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}}
29294 \end{multline}
29295
29296 \end_inset
29297
29298
29299 \end_layout
29300
29301 \begin_layout Standard
29302 In der Ausgabe erscheint nur die letzte (erste) Zeile einer multline-Umgebung
29303  nummeriert, wenn rechts (links) nummeriert wird.
29304 \begin_inset Foot
29305 status collapsed
29306
29307 \begin_layout Plain Layout
29308 Nummerierungsstile siehe 
29309 \begin_inset CommandInset ref
29310 LatexCommand ref
29311 reference "sec:Formelstile"
29312
29313 \end_inset
29314
29315
29316 \end_layout
29317
29318 \end_inset
29319
29320
29321 \end_layout
29322
29323 \begin_layout Standard
29324 Mit den Befehlen 
29325 \series bold
29326
29327 \backslash
29328 shoveright
29329 \series default
29330
29331 \begin_inset Index idx
29332 status collapsed
29333
29334 \begin_layout Plain Layout
29335 Befehle ! S ! 
29336 \backslash
29337 shoveright
29338 \end_layout
29339
29340 \end_inset
29341
29342  und 
29343 \series bold
29344
29345 \backslash
29346 shoveleft
29347 \series default
29348
29349 \begin_inset Index idx
29350 status collapsed
29351
29352 \begin_layout Plain Layout
29353 Befehle ! S ! 
29354 \backslash
29355 shoveleft
29356 \end_layout
29357
29358 \end_inset
29359
29360  kann eine zentrierte Zeile rechts bzw.
29361 \begin_inset space \space{}
29362 \end_inset
29363
29364 links ausgerichtet werden.
29365  Die Befehle werden folgendermaßen verwendet:
29366 \end_layout
29367
29368 \begin_layout Standard
29369
29370 \series bold
29371
29372 \backslash
29373 shoveright{Zeileninhalt}
29374 \series default
29375  bzw.
29376 \begin_inset space \space{}
29377 \end_inset
29378
29379
29380 \series bold
29381
29382 \backslash
29383 shoveleft{Zeileninhalt}
29384 \end_layout
29385
29386 \begin_layout Standard
29387 \begin_inset VSpace medskip
29388 \end_inset
29389
29390 Die Länge 
29391 \series bold
29392
29393 \backslash
29394 multlinegap
29395 \series default
29396
29397 \begin_inset Index idx
29398 status collapsed
29399
29400 \begin_layout Plain Layout
29401 Befehle ! M ! 
29402 \backslash
29403 multlinegap
29404 \end_layout
29405
29406 \end_inset
29407
29408  legt den Abstand der ersten Zeile vom linken Seitenrand fest.
29409  Voreingestellt ist die Länge 0
29410 \begin_inset space \thinspace{}
29411 \end_inset
29412
29413 pt.
29414 \end_layout
29415
29416 \begin_layout Standard
29417 Als Beispiel obige Formel, vor der im TeX-Modus der Befehl
29418 \end_layout
29419
29420 \begin_layout Standard
29421
29422 \series bold
29423
29424 \backslash
29425 setlength{
29426 \backslash
29427 multlinegap}{2cm}
29428 \end_layout
29429
29430 \begin_layout Standard
29431 eingegeben wurde:
29432 \begin_inset ERT
29433 status collapsed
29434
29435 \begin_layout Plain Layout
29436
29437
29438 \backslash
29439 setlength{
29440 \backslash
29441 multlinegap}{2cm}
29442 \end_layout
29443
29444 \end_inset
29445
29446
29447 \begin_inset Formula 
29448 \begin{multline}
29449 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}\\
29450 \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}}\\
29451 =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}}
29452 \end{multline}
29453
29454 \end_inset
29455
29456
29457 \begin_inset ERT
29458 status collapsed
29459
29460 \begin_layout Plain Layout
29461
29462
29463 \backslash
29464 setlength{
29465 \backslash
29466 multlinegap}{0pt}
29467 \end_layout
29468
29469 \end_inset
29470
29471
29472 \end_layout
29473
29474 \begin_layout Standard
29475 Die zweite Zeile wurde mit 
29476 \series bold
29477
29478 \backslash
29479 shoveleft
29480 \series default
29481  linksbündig ausgerichtet.
29482 \end_layout
29483
29484 \begin_layout Subsection
29485 Mehrzeilige Formelteile
29486 \begin_inset CommandInset label
29487 LatexCommand label
29488 name "sub:Mehrzeilige-Formelteile"
29489
29490 \end_inset
29491
29492
29493 \begin_inset Index idx
29494 status collapsed
29495
29496 \begin_layout Plain Layout
29497 Formel ! mehrzeilige ! Formelteile
29498 \end_layout
29499
29500 \end_inset
29501
29502
29503 \end_layout
29504
29505 \begin_layout Standard
29506 Möchte man nur Teile einer Formel mehrzeilig darstellen, verwendet man eine
29507  der folgenden Umgebungen: 
29508 \series bold
29509 aligned
29510 \series default
29511
29512 \series bold
29513 alignedat
29514 \series default
29515
29516 \series bold
29517 gathered
29518 \series default
29519  oder 
29520 \series bold
29521 split
29522 \series default
29523 .
29524  Sie können über das Menü 
29525 \family sans
29526 Einfügen\SpecialChar \menuseparator
29527 Mathe
29528 \family default
29529  oder mit Befehlen eingefügt werden, wie in diesem Abschnitt beschrieben.
29530 \end_layout
29531
29532 \begin_layout Standard
29533 Die ersten drei haben dieselben Eigenschaften wie die entsprechenden mehrzeilige
29534 n Formel\SpecialChar \-
29535 umgebungen.
29536  Man kann jedoch zusätzlich weitere Formelteile daneben setzen.
29537  Dazu ein Beispiel:
29538 \begin_inset Formula 
29539 \[
29540 \left.\begin{aligned}\Delta x\Delta p & \ge\frac{\hbar}{2}\\
29541 \Delta E\Delta t & \ge\frac{\hbar}{2}
29542 \end{aligned}
29543 \right\} \textrm{Unbestimmtheitsrelationen}
29544 \]
29545
29546 \end_inset
29547
29548
29549 \end_layout
29550
29551 \begin_layout Standard
29552 Um diese Formel zu erhalten, wird eine abgesetzte Formel erstellt, in die
29553  der Befehl 
29554 \series bold
29555
29556 \backslash
29557 aligned
29558 \series default
29559
29560 \begin_inset Index idx
29561 status collapsed
29562
29563 \begin_layout Plain Layout
29564 Befehle ! A ! 
29565 \backslash
29566 aligned
29567 \end_layout
29568
29569 \end_inset
29570
29571  eingegeben wird.
29572  Es erscheint eine lila Box um das blaue Formelkästchen in der man nun Spalten
29573  und Zeilen hinzufügen kann.
29574  Außerhalb der mehrzeiligen Umgebung können Formelteile, wie die Klammer,
29575  gesetzt werden.
29576 \end_layout
29577
29578 \begin_layout Standard
29579 Die aligned-Umgebung eignet sich auch für lange Formeln, deren Zeilen horizontal
29580  ausgerichtet sind.
29581  Verwendet man aligned in einer abgesetzten Formel, hat das den Vorteil,
29582  dass die Formelnummer vertikal mittig hinter den Zeilen steht.
29583  Als Beispiel Formel 
29584 \begin_inset CommandInset ref
29585 LatexCommand eqref
29586 reference "eq:kurzlang"
29587
29588 \end_inset
29589
29590  in der aligned-Umgebung:
29591 \begin_inset Formula 
29592 \begin{equation}
29593 \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}|}\\
29594  & -\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}|}
29595 \end{aligned}
29596 \end{equation}
29597
29598 \end_inset
29599
29600
29601 \end_layout
29602
29603 \begin_layout Standard
29604 Möchte man die Umgebung 
29605 \series bold
29606 alignedat
29607 \series default
29608
29609 \series bold
29610 gathered
29611 \series default
29612  oder 
29613 \series bold
29614 split
29615 \series default
29616  verwenden, gibt man den Befehl 
29617 \series bold
29618
29619 \backslash
29620 alignedat
29621 \series default
29622 ,
29623 \begin_inset Index idx
29624 status collapsed
29625
29626 \begin_layout Plain Layout
29627 Befehle ! A ! 
29628 \backslash
29629 alignedat
29630 \end_layout
29631
29632 \end_inset
29633
29634  
29635 \series bold
29636
29637 \backslash
29638 gathered
29639 \series default
29640
29641 \begin_inset Index idx
29642 status collapsed
29643
29644 \begin_layout Plain Layout
29645 Befehle ! G ! 
29646 \backslash
29647 gathered
29648 \end_layout
29649
29650 \end_inset
29651
29652  bzw.
29653 \begin_inset space \space{}
29654 \end_inset
29655
29656
29657 \series bold
29658
29659 \backslash
29660 split
29661 \series default
29662
29663 \begin_inset Index idx
29664 status collapsed
29665
29666 \begin_layout Plain Layout
29667 Befehle ! S ! 
29668 \backslash
29669 split
29670 \end_layout
29671
29672 \end_inset
29673
29674  ein.
29675  Die split-Umgebung hat dieselben Eigenschaften wie die aligned-Umgebung,
29676  jedoch darf sie nur zwei Spalten enthalten.
29677 \end_layout
29678
29679 \begin_layout Subsection
29680 Text in mehrzeiligen Formeln
29681 \begin_inset CommandInset label
29682 LatexCommand label
29683 name "sub:Text-in-mehrzeiligen"
29684
29685 \end_inset
29686
29687
29688 \begin_inset Index idx
29689 status collapsed
29690
29691 \begin_layout Plain Layout
29692 Text ! in Formeln
29693 \end_layout
29694
29695 \end_inset
29696
29697
29698 \begin_inset Index idx
29699 status collapsed
29700
29701 \begin_layout Plain Layout
29702 Formel ! mehrzeilige ! Text
29703 \end_layout
29704
29705 \end_inset
29706
29707
29708 \end_layout
29709
29710 \begin_layout Standard
29711 Bei den Align-Umgebungen sowie der multline- und gather-Umgebung besteht
29712  die Möglichkeit Text einzufügen, der in einer eigenen Zeile erscheint und
29713  die Ausrichtung der Spalten nicht beeinflusst.
29714  Dazu wird der Befehl 
29715 \series bold
29716
29717 \backslash
29718 intertext
29719 \begin_inset Index idx
29720 status collapsed
29721
29722 \begin_layout Plain Layout
29723 Befehle ! I ! 
29724 \backslash
29725 intertext
29726 \end_layout
29727
29728 \end_inset
29729
29730
29731 \series default
29732  nach folgendem Schema benutzt:
29733 \end_layout
29734
29735 \begin_layout Standard
29736
29737 \series bold
29738
29739 \backslash
29740 intertext{Text}
29741 \end_layout
29742
29743 \begin_layout Standard
29744 Der Text sollte nicht länger als eine Zeile sein, da er nicht umgebrochen
29745  werden kann.
29746  Weil LyX 
29747 \series bold
29748
29749 \backslash
29750 intertext
29751 \series default
29752  noch nicht direkt unterstützt, schreibt man den Text als mathematischen
29753  Text.
29754  
29755 \series bold
29756
29757 \backslash
29758 intertext
29759 \series default
29760  muss dabei zu Beginn einer Zeile stehen und erscheint in der Ausgabe über
29761  dieser Zeile.
29762  Ein Beispiel bei dem der Text zu Beginn der zweiten Zeile eingegeben wurde:
29763 \begin_inset Formula 
29764 \begin{align}
29765 I & =a\sqrt{2}\int_{0}^{2\pi}\sqrt{1+\cos(\phi)}\;\mathrm{d}\phi\\
29766 \intertext{\text{Integrand ist symmetrisch zu \ensuremath{\phi=\pi}, daher}} & =2a\sqrt{2}\int_{0}^{\pi}\sqrt{1+\cos(\phi)}\;\mathrm{d}\phi
29767 \end{align}
29768
29769 \end_inset
29770
29771
29772 \end_layout
29773
29774 \begin_layout Section
29775 Formelnummerierung
29776 \begin_inset Index idx
29777 status collapsed
29778
29779 \begin_layout Plain Layout
29780 Formelnummerierung
29781 \end_layout
29782
29783 \end_inset
29784
29785
29786 \begin_inset Index idx
29787 status collapsed
29788
29789 \begin_layout Plain Layout
29790 Formel ! Nummerierung|see
29791 \begin_inset ERT
29792 status collapsed
29793
29794 \begin_layout Plain Layout
29795
29796 {
29797 \end_layout
29798
29799 \end_inset
29800
29801 Formelnummerierung
29802 \begin_inset ERT
29803 status collapsed
29804
29805 \begin_layout Plain Layout
29806
29807 }
29808 \end_layout
29809
29810 \end_inset
29811
29812
29813 \end_layout
29814
29815 \end_inset
29816
29817
29818 \end_layout
29819
29820 \begin_layout Subsection
29821 Allgemeines
29822 \end_layout
29823
29824 \begin_layout Standard
29825 Nummerierte Formeln können mit dem Menü 
29826 \family sans
29827 Einfügen\SpecialChar \menuseparator
29828 Mathe\SpecialChar \menuseparator
29829 Nummerierte
29830 \begin_inset space ~
29831 \end_inset
29832
29833 Formel
29834 \family default
29835  (Tastenkürzel 
29836 \family sans
29837 Strg+Alt
29838 \begin_inset space ~
29839 \end_inset
29840
29841 N
29842 \family default
29843 ) erstellt, bestehende Formeln über das Menü 
29844 \family sans
29845 Bearbeiten\SpecialChar \menuseparator
29846 Mathe\SpecialChar \menuseparator
29847 Nummerierung
29848 \begin_inset space ~
29849 \end_inset
29850
29851 an/aus
29852 \family default
29853  (Tastenkürzel 
29854 \family sans
29855 Alt+M
29856 \begin_inset space ~
29857 \end_inset
29858
29859 N
29860 \family default
29861 ) nummeriert werden.
29862  Die Formelnummer erscheint in LyX hinter der Formel als Raute in runden
29863  Klammern.
29864  Im Ausdruck erscheint anstelle der Raute die Formelnummer.
29865 \end_layout
29866
29867 \begin_layout Standard
29868 Wird in mehrzeiligen Formeln die Nummerierung angeschaltet, werden alle
29869  Zeilen nummeriert.
29870  Man kann jedoch über das Menü 
29871 \family sans
29872 Bearbeiten\SpecialChar \menuseparator
29873 Mathe\SpecialChar \menuseparator
29874 Zeilennummerierung an/aus
29875 \family default
29876  (Tastenkürzel 
29877 \family sans
29878 Alt+M
29879 \begin_inset space ~
29880 \end_inset
29881
29882 Shift+N
29883 \family default
29884 ) für jede Zeile die Nummerierung festlegen.
29885 \end_layout
29886
29887 \begin_layout Standard
29888 Außer eingebetteten können alle Formeln in zwei verschiedenen Stilen nummeriert
29889  werden, siehe 
29890 \begin_inset CommandInset ref
29891 LatexCommand ref
29892 reference "sec:Formelstile"
29893
29894 \end_inset
29895
29896 .
29897 \end_layout
29898
29899 \begin_layout Subsection
29900 Querverweise
29901 \begin_inset Index idx
29902 status collapsed
29903
29904 \begin_layout Plain Layout
29905 Querverweise ! auf Formeln
29906 \end_layout
29907
29908 \end_inset
29909
29910
29911 \end_layout
29912
29913 \begin_layout Standard
29914 Es kann auf alle Formeln verwiesen werden, die eine Marke besitzen.
29915  Eine Marke wird mit dem Menü 
29916 \family sans
29917 Einfügen\SpecialChar \menuseparator
29918 Marke
29919 \family default
29920  oder dem Werkzeugleistenknopf 
29921 \begin_inset Graphics
29922         filename ../../images/label-insert.png
29923         scale 85
29924
29925 \end_inset
29926
29927  gesetzt.
29928  Dabei muss sich der Cursor in einer abgesetzten Formel befinden.
29929  Alternativ klickt man mit rechts auf die Formel und wählt 
29930 \family sans
29931 Formelmarke
29932 \family default
29933 .
29934  Es erscheint ein Eingabefeld mit dem voreingestellten Eintrag 
29935 \series bold
29936 eq:
29937 \series default
29938 , nachdem der eigentliche Markenname eingegeben wird.
29939  Der voreingestellte Eintrag steht für 
29940 \begin_inset Quotes gld
29941 \end_inset
29942
29943 equation
29944 \begin_inset Quotes grd
29945 \end_inset
29946
29947  und erleichtert bei größeren Dokumenten die Zuordnung, dass die Marke zu
29948  einer Formel und nicht zu einem Kapitel gehört.
29949  Um eine Marke zu ändern, wählt man wieder das Menü 
29950 \family sans
29951 Einfügen\SpecialChar \menuseparator
29952 Marke
29953 \family default
29954  oder man klickt mit rechts auf eine Formel und dann auf 
29955 \family sans
29956 Formelmarke
29957 \family default
29958 .
29959 \end_layout
29960
29961 \begin_layout Standard
29962 Der Name der Marke erscheint in LyX in zwei runden Klammern hinter der Formel.
29963  Eine Formel mit Marke wird immer nummeriert.
29964 \end_layout
29965
29966 \begin_layout Standard
29967 Querverweise werden mit dem Menü 
29968 \family sans
29969 Einfügen\SpecialChar \menuseparator
29970 Querverweis
29971 \family default
29972  oder dem Werkzeugleistenknopf 
29973 \begin_inset Graphics
29974         filename ../../images/dialog-show-new-inset_ref.png
29975         scale 85
29976
29977 \end_inset
29978
29979  eingefügt.
29980  Ein Querverweis auf Formeln erscheint im Ausdruck als Formelnummer.
29981  Wenn man im Querverweis Dialogfenster das Format 
29982 \series bold
29983 (<Querverweis>)
29984 \series default
29985  wählt, erscheint der Querverweis als Formelnummer in Klammern.
29986 \begin_inset Newline newline
29987 \end_inset
29988
29989 Drückt man in LyX mit der rechten Maustaste auf einen Querverweis, gelangt
29990  man zur Formel auf die verwiesen wird.
29991 \end_layout
29992
29993 \begin_layout Standard
29994 Als Beispiel folgen Querverweise zu Formeln aus diesem Kapitel:
29995 \begin_inset Note Note
29996 status open
29997
29998 \begin_layout Plain Layout
29999 Man beachte die unterschiedlichen Querverweistypen.
30000 \end_layout
30001
30002 \end_inset
30003
30004
30005 \end_layout
30006
30007 \begin_layout Standard
30008 Die Gleichungen 
30009 \begin_inset CommandInset ref
30010 LatexCommand eqref
30011 reference "eq:tag"
30012
30013 \end_inset
30014
30015  und 
30016 \begin_inset CommandInset ref
30017 LatexCommand eqref
30018 reference "eq:c"
30019
30020 \end_inset
30021
30022  sind äquivalent.
30023  In (
30024 \begin_inset CommandInset ref
30025 LatexCommand ref
30026 reference "eq:Lat"
30027
30028 \end_inset
30029
30030 ) werden im Gegensatz zu (
30031 \begin_inset CommandInset ref
30032 LatexCommand ref
30033 reference "eq:Roem"
30034
30035 \end_inset
30036
30037 ) große lateinische Buchstaben zur Nummerierung verwendet.
30038 \end_layout
30039
30040 \begin_layout Standard
30041 \begin_inset VSpace medskip
30042 \end_inset
30043
30044 Ist im Argument von 
30045 \series bold
30046
30047 \backslash
30048 tag
30049 \begin_inset Foot
30050 status collapsed
30051
30052 \begin_layout Plain Layout
30053
30054 \series bold
30055
30056 \backslash
30057 tag
30058 \series default
30059  ist in 
30060 \begin_inset CommandInset ref
30061 LatexCommand ref
30062 reference "sub:Benutzerdefinierte-Nummerierung"
30063
30064 \end_inset
30065
30066  beschrieben.
30067 \end_layout
30068
30069 \end_inset
30070
30071
30072 \series default
30073  wie in 
30074 \begin_inset CommandInset ref
30075 LatexCommand ref
30076 reference "sub:Absatzboxen"
30077
30078 \end_inset
30079
30080  eine Box angegeben, kann nicht auf die Formel verwiesen werden.
30081 \end_layout
30082
30083 \begin_layout Subsection
30084 Unternummerierung
30085 \begin_inset Index idx
30086 status collapsed
30087
30088 \begin_layout Plain Layout
30089 Formelnummerierung ! Unternummerierung
30090 \end_layout
30091
30092 \end_inset
30093
30094
30095 \end_layout
30096
30097 \begin_layout Standard
30098 Möchte man Formeln weiter untergliedern, kann man das mit Hilfe der Befehle
30099  
30100 \begin_inset Newline newline
30101 \end_inset
30102
30103
30104 \series bold
30105
30106 \backslash
30107 begin{subequations}
30108 \series default
30109  und 
30110 \series bold
30111
30112 \backslash
30113 end{subequations}
30114 \series default
30115  erreichen.
30116  Beide Befehle werden im TeX-Modus eingegeben.
30117 \end_layout
30118
30119 \begin_layout Standard
30120 Dazu ein Beispiel:
30121 \begin_inset Formula 
30122 \begin{equation}
30123 A=C-B\label{eq:a}
30124 \end{equation}
30125
30126 \end_inset
30127
30128
30129 \begin_inset ERT
30130 status collapsed
30131
30132 \begin_layout Plain Layout
30133
30134
30135 \backslash
30136 addtocounter{equation}{-1}
30137 \end_layout
30138
30139 \end_inset
30140
30141
30142 \begin_inset ERT
30143 status collapsed
30144
30145 \begin_layout Plain Layout
30146
30147
30148 \backslash
30149 begin{subequations}
30150 \end_layout
30151
30152 \end_inset
30153
30154
30155 \begin_inset VSpace -5mm
30156 \end_inset
30157
30158
30159 \begin_inset Formula 
30160 \begin{equation}
30161 B=C-A\label{eq:b}
30162 \end{equation}
30163
30164 \end_inset
30165
30166
30167 \begin_inset Formula 
30168 \begin{equation}
30169 C=A+B\label{eq:c}
30170 \end{equation}
30171
30172 \end_inset
30173
30174
30175 \end_layout
30176
30177 \begin_layout Standard
30178 \begin_inset ERT
30179 status collapsed
30180
30181 \begin_layout Plain Layout
30182
30183
30184 \backslash
30185 end{subequations}
30186 \end_layout
30187
30188 \end_inset
30189
30190
30191 \end_layout
30192
30193 \begin_layout Standard
30194 Um das Beispiel zu erstellen, geht man folgendermaßen vor:
30195 \end_layout
30196
30197 \begin_layout Enumerate
30198 erste Formel eingeben
30199 \end_layout
30200
30201 \begin_layout Enumerate
30202
30203 \series bold
30204
30205 \backslash
30206 addtocounter{equation}{-1} 
30207 \backslash
30208 begin{subequations}
30209 \begin_inset Index idx
30210 status collapsed
30211
30212 \begin_layout Plain Layout
30213 Befehle ! A ! 
30214 \backslash
30215 addtocounter
30216 \end_layout
30217
30218 \end_inset
30219
30220
30221 \begin_inset Newline newline
30222 \end_inset
30223
30224
30225 \series default
30226 nach der ersten Formel einfügen
30227 \end_layout
30228
30229 \begin_layout Enumerate
30230 zweite Formel eingeben
30231 \end_layout
30232
30233 \begin_layout Enumerate
30234 dritte Formel eingeben
30235 \end_layout
30236
30237 \begin_layout Enumerate
30238
30239 \series bold
30240
30241 \backslash
30242 end{subequations}
30243 \series default
30244  nach der dritten Formel einfügen
30245 \end_layout
30246
30247 \begin_layout Standard
30248 Jede Formel, die zwischen den Befehlen 
30249 \series bold
30250
30251 \backslash
30252 begin
30253 \series default
30254  und 
30255 \series bold
30256
30257 \backslash
30258 end
30259 \series default
30260  steht, wird mit a, b, c, \SpecialChar \ldots{}
30261  untergliedert.
30262  Bei mehrzeiligen Formeln wird jede Zeile untergliedert.
30263  Alle untergliederten Formeln gelten als 
30264 \emph on
30265 eine
30266 \emph default
30267  nummerierte Formel.
30268  Da jede nummerierte Formel den Formelzähler 
30269 \series bold
30270 equation
30271 \series default
30272  um Eins erhöht, ist der Befehl 
30273 \series bold
30274
30275 \backslash
30276 addtocounter
30277 \series default
30278  notwendig um den Zähler wieder zu erniedrigen.
30279  Ansonsten würden die Formeln 
30280 \begin_inset CommandInset ref
30281 LatexCommand eqref
30282 reference "eq:a"
30283
30284 \end_inset
30285
30286
30287 \begin_inset CommandInset ref
30288 LatexCommand eqref
30289 reference "eq:b"
30290
30291 \end_inset
30292
30293
30294 \begin_inset CommandInset ref
30295 LatexCommand eqref
30296 reference "eq:c"
30297
30298 \end_inset
30299
30300  als 
30301 \begin_inset CommandInset ref
30302 LatexCommand eqref
30303 reference "eq:a"
30304
30305 \end_inset
30306
30307
30308 \begin_inset CommandInset ref
30309 LatexCommand eqref
30310 reference "eq:d"
30311
30312 \end_inset
30313
30314
30315 \begin_inset CommandInset ref
30316 LatexCommand eqref
30317 reference "eq:f"
30318
30319 \end_inset
30320
30321  nummeriert werden.
30322 \end_layout
30323
30324 \begin_layout Standard
30325 Durch die Eingabe der Befehle im TeX-Modus wird zwischen den ersten beiden
30326  Formeln automatisch etwas Leerraum erstellt.
30327  Um dies rückgängig zu machen, fügt man nach dem Befehl 
30328 \series bold
30329
30330 \backslash
30331 begin{subequations}
30332 \series default
30333  -5
30334 \begin_inset space \thinspace{}
30335 \end_inset
30336
30337 mm vertikalen Leerraum ein.
30338  Ist der Formelstil 
30339 \series bold
30340 Eingerückt
30341 \begin_inset Foot
30342 status collapsed
30343
30344 \begin_layout Plain Layout
30345 Formelstile siehe 
30346 \begin_inset CommandInset ref
30347 LatexCommand ref
30348 reference "sec:Formelstile"
30349
30350 \end_inset
30351
30352
30353 \end_layout
30354
30355 \end_inset
30356
30357
30358 \series default
30359  gewählt, fügt man -7
30360 \begin_inset space \thinspace{}
30361 \end_inset
30362
30363 mm Leerraum ein.
30364 \end_layout
30365
30366 \begin_layout Standard
30367 Hier ist ein Beispiel für mehrzeilige Formeln, bei dem die Nummerierung
30368  der zweiten Zeile abgeschaltet wurde:
30369 \begin_inset ERT
30370 status collapsed
30371
30372 \begin_layout Plain Layout
30373
30374
30375 \backslash
30376 begin{subequations}
30377 \end_layout
30378
30379 \end_inset
30380
30381
30382 \begin_inset Formula 
30383 \begin{eqnarray}
30384 A & = & (B-Z)^{2}=(B-Z)(B-Z)\label{eq:d}\\
30385  & = & B^{2}-ZB-BZ+Z^{²}\nonumber \\
30386  & = & B^{2}-2BZ+Z^{2}\label{eq:f}
30387 \end{eqnarray}
30388
30389 \end_inset
30390
30391
30392 \begin_inset ERT
30393 status collapsed
30394
30395 \begin_layout Plain Layout
30396
30397
30398 \backslash
30399 end{subequations}
30400 \end_layout
30401
30402 \end_inset
30403
30404
30405 \end_layout
30406
30407 \begin_layout Subsection
30408 Benutzerdefinierte Nummerierung
30409 \begin_inset CommandInset label
30410 LatexCommand label
30411 name "sub:Benutzerdefinierte-Nummerierung"
30412
30413 \end_inset
30414
30415
30416 \begin_inset Index idx
30417 status collapsed
30418
30419 \begin_layout Plain Layout
30420 Formelnummerierung ! benutzerdefinierte
30421 \end_layout
30422
30423 \end_inset
30424
30425
30426 \end_layout
30427
30428 \begin_layout Standard
30429 \begin_inset Index idx
30430 status collapsed
30431
30432 \begin_layout Plain Layout
30433 Formelnummerierung ! eigene Klammern
30434 \end_layout
30435
30436 \end_inset
30437
30438 Bei der Standardnummerierung werden um die Formelnummern runde Klammern
30439  gesetzt.
30440  Will man diese Klammern z.
30441 \begin_inset space \thinspace{}
30442 \end_inset
30443
30444 B.
30445  durch senkrechte Striche ersetzen, gibt man im LaTeX-Vorspann Folgendes
30446  an:
30447 \end_layout
30448
30449 \begin_layout Standard
30450
30451 \series bold
30452
30453 \backslash
30454 def
30455 \backslash
30456 tagform@#1{
30457 \backslash
30458 maketag@@@{|#1|}}
30459 \series default
30460
30461 \begin_inset Note Note
30462 status collapsed
30463
30464 \begin_layout Plain Layout
30465 Dieses Makro ist zum Testen bereits im LaTeX-Vorspann angegeben.
30466  Damit es wirksam wird, muss das Prozentzeichen am Zeilenbeginn entfernt
30467  werden.
30468 \end_layout
30469
30470 \end_inset
30471
30472
30473 \end_layout
30474
30475 \begin_layout Standard
30476 Möchte man andere Zeichen haben, ersetzt man die Striche neben 
30477 \series bold
30478 #1
30479 \series default
30480  durch ein oder mehrere gewünschte Zeichen.
30481  Möchte man nur die Formelnummer haben, lässt man die Striche weg.
30482 \end_layout
30483
30484 \begin_layout Standard
30485 \begin_inset VSpace bigskip
30486 \end_inset
30487
30488 Soll statt einer fortlaufenden Nummer ein beliebiger Ausdruck in den Klammern
30489  hinter der Formel stehen, benutzt man den Befehl 
30490 \series bold
30491
30492 \backslash
30493 tag
30494 \series default
30495
30496 \begin_inset Index idx
30497 status collapsed
30498
30499 \begin_layout Plain Layout
30500 Befehle ! T ! 
30501 \backslash
30502 tag
30503 \end_layout
30504
30505 \end_inset
30506
30507 :
30508 \begin_inset Formula 
30509 \begin{equation}
30510 A+B=C\tag{etwas}\label{eq:tag}
30511 \end{equation}
30512
30513 \end_inset
30514
30515  In diesem Beispiel wurde in der Formel der Befehl 
30516 \series bold
30517
30518 \backslash
30519 tag
30520 \series default
30521
30522 \begin_inset ERT
30523 status collapsed
30524
30525 \begin_layout Plain Layout
30526
30527
30528 \backslash
30529 leer 
30530 \end_layout
30531
30532 \end_inset
30533
30534
30535 \series bold
30536 etwas
30537 \series default
30538  eingegeben.
30539 \end_layout
30540
30541 \begin_layout Standard
30542 Gibt man stattdessen 
30543 \series bold
30544
30545 \backslash
30546 tag*
30547 \series default
30548
30549 \begin_inset ERT
30550 status collapsed
30551
30552 \begin_layout Plain Layout
30553
30554
30555 \backslash
30556 leer 
30557 \end_layout
30558
30559 \end_inset
30560
30561
30562 \series bold
30563 etwas
30564 \series default
30565  ein, verhindert der Stern die Klammern um den Ausdruck:
30566 \begin_inset Formula 
30567 \[
30568 A+B=C\tag*{etwas}
30569 \]
30570
30571 \end_inset
30572
30573
30574 \end_layout
30575
30576 \begin_layout Standard
30577 \begin_inset VSpace bigskip
30578 \end_inset
30579
30580 Möchte man die Formelnummerierung neu starten wenn ein neuer Dokumentteil
30581  oder 
30582 \begin_inset ERT
30583 status collapsed
30584
30585 \begin_layout Plain Layout
30586
30587
30588 \backslash
30589 mbox{
30590 \end_layout
30591
30592 \end_inset
30593
30594 -abschnitt
30595 \begin_inset ERT
30596 status collapsed
30597
30598 \begin_layout Plain Layout
30599
30600 }
30601 \end_layout
30602
30603 \end_inset
30604
30605
30606 \begin_inset Note Note
30607 status collapsed
30608
30609 \begin_layout Plain Layout
30610 Der Befehl 
30611 \series bold
30612
30613 \backslash
30614 mbox
30615 \series default
30616  verhindert, dass am Bindestrich umgebrochen wird.
30617 \end_layout
30618
30619 \end_inset
30620
30621  beginnt, verwendet man folgende LaTeX-Vorspannzeile:
30622 \end_layout
30623
30624 \begin_layout Standard
30625
30626 \series bold
30627
30628 \backslash
30629 @addtoreset{equation}{part}
30630 \series default
30631
30632 \begin_inset Index idx
30633 status collapsed
30634
30635 \begin_layout Plain Layout
30636 Befehle ! 
30637 \begin_inset ERT
30638 status collapsed
30639
30640 \begin_layout Plain Layout
30641
30642 "
30643 \end_layout
30644
30645 \end_inset
30646
30647 @
30648 \begin_inset ERT
30649 status collapsed
30650
30651 \begin_layout Plain Layout
30652
30653 "
30654 \end_layout
30655
30656 \end_inset
30657
30658  ! 
30659 \backslash
30660
30661 \begin_inset ERT
30662 status collapsed
30663
30664 \begin_layout Plain Layout
30665
30666 "
30667 \end_layout
30668
30669 \end_inset
30670
30671 @
30672 \begin_inset ERT
30673 status collapsed
30674
30675 \begin_layout Plain Layout
30676
30677 "
30678 \end_layout
30679
30680 \end_inset
30681
30682 addtoreset
30683 \end_layout
30684
30685 \end_inset
30686
30687
30688 \begin_inset Newline newline
30689 \end_inset
30690
30691 bzw.
30692 \begin_inset Newline newline
30693 \end_inset
30694
30695
30696 \series bold
30697
30698 \backslash
30699 @addtoreset{equation}{section}
30700 \end_layout
30701
30702 \begin_layout Standard
30703 Um diese Befehle im TeX-Modus benutzen zu können, muss das 
30704 \begin_inset Quotes gld
30705 \end_inset
30706
30707 @
30708 \begin_inset Quotes grd
30709 \end_inset
30710
30711  Zeichen für LaTeX mit dem Befehl 
30712 \series bold
30713
30714 \backslash
30715 makeatletter
30716 \series default
30717  
30718 \begin_inset Quotes gld
30719 \end_inset
30720
30721 aktiv
30722 \begin_inset Quotes grd
30723 \end_inset
30724
30725  gemacht werden.
30726  Der Befehl 
30727 \series bold
30728
30729 \backslash
30730 makeatother
30731 \series default
30732  macht dies wieder rückgängig.
30733  Daher ist die Befehlssequenz im TeX-Modus:
30734 \end_layout
30735
30736 \begin_layout Standard
30737
30738 \series bold
30739
30740 \backslash
30741 makeatletter
30742 \begin_inset Newline newline
30743 \end_inset
30744
30745
30746 \backslash
30747 @addtoreset{equation}{section}
30748 \begin_inset Newline newline
30749 \end_inset
30750
30751
30752 \backslash
30753 makeatother
30754 \end_layout
30755
30756 \begin_layout Standard
30757 Im LaTeX-Vorspann können 
30758 \series bold
30759
30760 \backslash
30761 makeatletter
30762 \series default
30763  und 
30764 \series bold
30765
30766 \backslash
30767 makeatother
30768 \series default
30769  weggelassen werden, da LyX sie automatisch intern einfügt.
30770 \end_layout
30771
30772 \begin_layout Standard
30773 Um 
30774 \series bold
30775
30776 \backslash
30777 @addtoreset
30778 \series default
30779  rückgängig zu machen, muss die Datei 
30780 \series bold
30781 remreset.sty
30782 \series default
30783
30784 \begin_inset Foot
30785 status collapsed
30786
30787 \begin_layout Plain Layout
30788
30789 \series bold
30790 remreset
30791 \series default
30792  ist Teil des LaTeX-Paketes 
30793 \series bold
30794 carlisle
30795 \series default
30796
30797 \begin_inset Index idx
30798 status collapsed
30799
30800 \begin_layout Plain Layout
30801 Pakete ! carlisle
30802 \end_layout
30803
30804 \end_inset
30805
30806 , das Teil jeder LaTeX-Standardinstallation ist.
30807 \end_layout
30808
30809 \end_inset
30810
30811
30812 \begin_inset Index idx
30813 status collapsed
30814
30815 \begin_layout Plain Layout
30816 Pakete ! remreset
30817 \end_layout
30818
30819 \end_inset
30820
30821  im LaTeX-Vorspann mit der Zeile
30822 \end_layout
30823
30824 \begin_layout Standard
30825
30826 \series bold
30827
30828 \backslash
30829 usepackage{remreset}
30830 \end_layout
30831
30832 \begin_layout Standard
30833 geladen werden.
30834  Dann kann der Befehl 
30835 \series bold
30836
30837 \backslash
30838 @removefromreset
30839 \series default
30840
30841 \begin_inset Index idx
30842 status collapsed
30843
30844 \begin_layout Plain Layout
30845 Befehle ! 
30846 \begin_inset ERT
30847 status collapsed
30848
30849 \begin_layout Plain Layout
30850
30851 "
30852 \end_layout
30853
30854 \end_inset
30855
30856 @
30857 \begin_inset ERT
30858 status collapsed
30859
30860 \begin_layout Plain Layout
30861
30862 "
30863 \end_layout
30864
30865 \end_inset
30866
30867  ! 
30868 \backslash
30869
30870 \begin_inset ERT
30871 status collapsed
30872
30873 \begin_layout Plain Layout
30874
30875 "
30876 \end_layout
30877
30878 \end_inset
30879
30880 @
30881 \begin_inset ERT
30882 status collapsed
30883
30884 \begin_layout Plain Layout
30885
30886 "
30887 \end_layout
30888
30889 \end_inset
30890
30891 removefromreset
30892 \end_layout
30893
30894 \end_inset
30895
30896  mit dem selben Schema wie 
30897 \series bold
30898
30899 \backslash
30900 @addtoreset
30901 \series default
30902  benutzt werden.
30903 \end_layout
30904
30905 \begin_layout Standard
30906 \begin_inset VSpace bigskip
30907 \end_inset
30908
30909 Oftmals möchte man Formeln in folgender Art nummerieren:
30910 \end_layout
30911
30912 \begin_layout Standard
30913
30914 \family typewriter
30915 (Kapitelnummer.Formelnummer)
30916 \end_layout
30917
30918 \begin_layout Standard
30919 Dabei soll die Formelnummer bei jedem Kapitel wieder mit Eins beginnen.
30920 \end_layout
30921
30922 \begin_layout Standard
30923 Für diesen Fall gibt es den Befehl 
30924 \series bold
30925
30926 \backslash
30927 numberwithin
30928 \series default
30929
30930 \begin_inset Index idx
30931 status collapsed
30932
30933 \begin_layout Plain Layout
30934 Befehle ! N ! 
30935 \backslash
30936 numberwithin
30937 \end_layout
30938
30939 \end_inset
30940
30941 , der nach folgendem Schema benutzt wird:
30942 \end_layout
30943
30944 \begin_layout Standard
30945
30946 \series bold
30947
30948 \backslash
30949 numberwithin{Zähler}{Gliederung}
30950 \end_layout
30951
30952 \begin_layout Standard
30953 Zähler gibt an, welche Nummerierung betroffen ist.
30954  Gliederung gibt an, welche Nummer vor dem Punkt steht.
30955 \end_layout
30956
30957 \begin_layout Standard
30958 In unserem Fall gibt man demnach folgende LaTeX-Vorspann- oder TeX-Code-Zeile
30959  ein:
30960 \end_layout
30961
30962 \begin_layout Standard
30963
30964 \series bold
30965
30966 \backslash
30967 numberwithin{equation}{section}
30968 \end_layout
30969
30970 \begin_layout Standard
30971 Das ist das Ergebnis:
30972 \begin_inset ERT
30973 status collapsed
30974
30975 \begin_layout Plain Layout
30976
30977
30978 \backslash
30979 numberwithin{equation}{section}
30980 \end_layout
30981
30982 \end_inset
30983
30984
30985 \begin_inset Formula 
30986 \begin{equation}
30987 A+B=C
30988 \end{equation}
30989
30990 \end_inset
30991
30992
30993 \end_layout
30994
30995 \begin_layout Standard
30996 Möchte man z.
30997 \begin_inset space \thinspace{}
30998 \end_inset
30999
31000 B.
31001  Tabellen nummerieren, so dass die Nummer des Teils vor dem Punkt steht,
31002  gibt man 
31003 \series bold
31004
31005 \backslash
31006 numberwithin{table}{part}
31007 \series default
31008  ein.
31009 \end_layout
31010
31011 \begin_layout Standard
31012 Um wieder auf Standardnummerierung umzuschalten oder um diese Art der Nummerieru
31013 ng zu vermeiden wenn sie von der Dokumentklasse vorgegeben ist, gibt man
31014  folgenden Befehl als TeX-Code oder als LaTeX-Vorspannzeile ein:
31015 \end_layout
31016
31017 \begin_layout Standard
31018
31019 \series bold
31020
31021 \backslash
31022 renewcommand{
31023 \backslash
31024 theequation}{
31025 \backslash
31026 arabic{equation}}
31027 \begin_inset Index idx
31028 status collapsed
31029
31030 \begin_layout Plain Layout
31031 Befehle ! A ! 
31032 \backslash
31033 arabic
31034 \end_layout
31035
31036 \end_inset
31037
31038
31039 \series default
31040
31041 \begin_inset ERT
31042 status collapsed
31043
31044 \begin_layout Plain Layout
31045
31046
31047 \backslash
31048 renewcommand{
31049 \backslash
31050 theequation}{
31051 \backslash
31052 arabic{equation}}
31053 \end_layout
31054
31055 \end_inset
31056
31057
31058 \series bold
31059
31060 \begin_inset Newline newline
31061 \end_inset
31062
31063
31064 \series default
31065 bzw.
31066 \series bold
31067
31068 \begin_inset Newline newline
31069 \end_inset
31070
31071
31072 \backslash
31073 renewcommand{
31074 \backslash
31075 thetable}{
31076 \backslash
31077 arabic{table}}
31078 \end_layout
31079
31080 \begin_layout Standard
31081
31082 \series bold
31083
31084 \backslash
31085 numberwithin
31086 \series default
31087  benutzt intern den oben beschriebenen Befehl 
31088 \series bold
31089
31090 \backslash
31091 @addtoreset
31092 \series default
31093 , der ebenfalls rückgängig gemacht werden muss.
31094 \begin_inset ERT
31095 status collapsed
31096
31097 \begin_layout Plain Layout
31098
31099
31100 \backslash
31101 makeatletter
31102 \end_layout
31103
31104 \begin_layout Plain Layout
31105
31106
31107 \backslash
31108 @removefromreset{equation}{section}
31109 \end_layout
31110
31111 \begin_layout Plain Layout
31112
31113
31114 \backslash
31115 makeatother
31116 \end_layout
31117
31118 \end_inset
31119
31120
31121 \end_layout
31122
31123 \begin_layout Subsection
31124 Nummerierung mit römischen Zahlen und Buchstaben
31125 \begin_inset Index idx
31126 status collapsed
31127
31128 \begin_layout Plain Layout
31129 Formelnummerierung ! mit Buchstaben
31130 \end_layout
31131
31132 \end_inset
31133
31134
31135 \begin_inset Index idx
31136 status collapsed
31137
31138 \begin_layout Plain Layout
31139 Formelnummerierung ! mit römischen Zahlen
31140 \end_layout
31141
31142 \end_inset
31143
31144
31145 \end_layout
31146
31147 \begin_layout Standard
31148 Formeln können auch mit römischen Zahlen und lateinischen Buchstaben nummeriert
31149  werden.
31150  Um z.
31151 \begin_inset space \thinspace{}
31152 \end_inset
31153
31154 B.
31155  mit kleinen römischen Zahlen zu nummerieren, gibt man vor der Formel im
31156  TeX-Modus den Befehl
31157 \end_layout
31158
31159 \begin_layout Standard
31160
31161 \series bold
31162
31163 \backslash
31164 renewcommand{
31165 \backslash
31166 theequation}{
31167 \backslash
31168 roman{equation}}
31169 \end_layout
31170
31171 \begin_layout Standard
31172 ein.
31173  
31174 \series bold
31175
31176 \backslash
31177 renewcommand
31178 \series default
31179
31180 \begin_inset Index idx
31181 status collapsed
31182
31183 \begin_layout Plain Layout
31184 Befehle ! R ! 
31185 \backslash
31186 renewcommand
31187 \end_layout
31188
31189 \end_inset
31190
31191  weist dem vordefinierten Befehl 
31192 \series bold
31193
31194 \backslash
31195 theequation
31196 \series default
31197  den Befehl
31198 \begin_inset Newline linebreak
31199 \end_inset
31200
31201
31202 \series bold
31203
31204 \backslash
31205 roman{equation}
31206 \series default
31207  zu.
31208 \begin_inset Foot
31209 status collapsed
31210
31211 \begin_layout Plain Layout
31212 Der Befehl 
31213 \series bold
31214
31215 \backslash
31216 renewcommand
31217 \series default
31218  besitzt dasselbe Schema wie der in 
31219 \begin_inset CommandInset ref
31220 LatexCommand ref
31221 reference "sub:Der-Befehl-newcommand"
31222
31223 \end_inset
31224
31225  beschriebene Befehl
31226 \begin_inset Newline newline
31227 \end_inset
31228
31229
31230 \series bold
31231
31232 \backslash
31233 newcommand
31234 \series default
31235 .
31236 \end_layout
31237
31238 \end_inset
31239
31240  
31241 \series bold
31242 equation
31243 \series default
31244  ist der Formelzähler.
31245  Stellt man einem Zähler den Befehl 
31246 \series bold
31247
31248 \backslash
31249 the
31250 \series default
31251  voran, bewirkt dies, dass der Wert des Zählers als arabische Zahl ausgegeben
31252  wird.
31253  Gibt man an, dass eine Formel nummeriert wird, setzt LaTeX intern den Befehl
31254  
31255 \series bold
31256
31257 \backslash
31258 theequation
31259 \series default
31260  hinter die Formel.
31261  
31262 \series bold
31263
31264 \backslash
31265 roman{equation}
31266 \begin_inset Index idx
31267 status collapsed
31268
31269 \begin_layout Plain Layout
31270 Befehle ! R ! 
31271 \backslash
31272 roman
31273 \end_layout
31274
31275 \end_inset
31276
31277
31278 \series default
31279  bewirkt, dass der Formelzähler als kleine römische Zahl erscheint.
31280 \end_layout
31281
31282 \begin_layout Standard
31283 Alle Formeln nach dem 
31284 \series bold
31285
31286 \backslash
31287 renewcommand
31288 \series default
31289 -Befehl werden nun römisch nummeriert.
31290  Um auf Nummerierung mit großen römischen Zahlen umzuschalten, gibt man
31291  den Befehl erneut ein, ersetzt aber 
31292 \series bold
31293
31294 \backslash
31295 roman
31296 \series default
31297  durch 
31298 \series bold
31299
31300 \backslash
31301 Roman
31302 \series default
31303
31304 \begin_inset Index idx
31305 status collapsed
31306
31307 \begin_layout Plain Layout
31308 Befehle ! R ! 
31309 \backslash
31310 roman@
31311 \backslash
31312 Roman
31313 \end_layout
31314
31315 \end_inset
31316
31317 .
31318  Für die 
31319 \begin_inset Quotes gld
31320 \end_inset
31321
31322 Nummerierung
31323 \begin_inset Quotes grd
31324 \end_inset
31325
31326  mit lateinischen Buchstaben gibt es den Befehl 
31327 \series bold
31328
31329 \backslash
31330 alph
31331 \series default
31332
31333 \begin_inset Index idx
31334 status collapsed
31335
31336 \begin_layout Plain Layout
31337 Befehle ! A ! 
31338 \backslash
31339 alph
31340 \end_layout
31341
31342 \end_inset
31343
31344  für kleine und 
31345 \series bold
31346
31347 \backslash
31348 Alph
31349 \series default
31350
31351 \begin_inset Index idx
31352 status collapsed
31353
31354 \begin_layout Plain Layout
31355 Befehle ! A ! 
31356 \backslash
31357 alph@
31358 \backslash
31359 Alph
31360 \end_layout
31361
31362 \end_inset
31363
31364  für große Buchstaben.
31365 \end_layout
31366
31367 \begin_layout Standard
31368 \begin_inset Note Greyedout
31369 status open
31370
31371 \begin_layout Plain Layout
31372
31373 \series bold
31374 \color none
31375 Achtung:
31376 \series default
31377  Es können nur maximal 26
31378 \begin_inset space ~
31379 \end_inset
31380
31381 Formeln in einem Dokument mit lateinischen Buchstaben nummeriert werden.
31382 \end_layout
31383
31384 \end_inset
31385
31386
31387 \end_layout
31388
31389 \begin_layout Standard
31390 \begin_inset ERT
31391 status collapsed
31392
31393 \begin_layout Plain Layout
31394
31395
31396 \backslash
31397 renewcommand{
31398 \backslash
31399 theequation}{
31400 \backslash
31401 roman{equation}}
31402 \end_layout
31403
31404 \end_inset
31405
31406
31407 \end_layout
31408
31409 \begin_layout Standard
31410 \begin_inset Formula 
31411 \begin{equation}
31412 A=\textrm{römisch}
31413 \end{equation}
31414
31415 \end_inset
31416
31417
31418 \begin_inset ERT
31419 status collapsed
31420
31421 \begin_layout Plain Layout
31422
31423
31424 \backslash
31425 renewcommand{
31426 \backslash
31427 theequation}{
31428 \backslash
31429 Roman{equation}}
31430 \end_layout
31431
31432 \end_inset
31433
31434
31435 \begin_inset Formula 
31436 \begin{equation}
31437 B=\textrm{Römisch}\label{eq:Roem}
31438 \end{equation}
31439
31440 \end_inset
31441
31442
31443 \begin_inset ERT
31444 status collapsed
31445
31446 \begin_layout Plain Layout
31447
31448
31449 \backslash
31450 renewcommand{
31451 \backslash
31452 theequation}{
31453 \backslash
31454 alph{equation}}
31455 \end_layout
31456
31457 \end_inset
31458
31459
31460 \begin_inset Formula 
31461 \begin{equation}
31462 C=\textrm{lateinisch}
31463 \end{equation}
31464
31465 \end_inset
31466
31467
31468 \begin_inset ERT
31469 status collapsed
31470
31471 \begin_layout Plain Layout
31472
31473
31474 \backslash
31475 renewcommand{
31476 \backslash
31477 theequation}{
31478 \backslash
31479 Alph{equation}}
31480 \end_layout
31481
31482 \end_inset
31483
31484
31485 \begin_inset Formula 
31486 \begin{equation}
31487 D=\textrm{Lateinisch}\label{eq:Lat}
31488 \end{equation}
31489
31490 \end_inset
31491
31492
31493 \end_layout
31494
31495 \begin_layout Standard
31496 Um wieder auf Standardnummerierung umzuschalten, gibt man folgenden Befehl
31497  ein:
31498 \end_layout
31499
31500 \begin_layout Standard
31501
31502 \series bold
31503
31504 \backslash
31505 renewcommand{
31506 \backslash
31507 theequation}{
31508 \backslash
31509 arabic{equation}}
31510 \begin_inset Index idx
31511 status collapsed
31512
31513 \begin_layout Plain Layout
31514 Befehle ! A ! 
31515 \backslash
31516 arabic
31517 \end_layout
31518
31519 \end_inset
31520
31521
31522 \end_layout
31523
31524 \begin_layout Standard
31525 \begin_inset ERT
31526 status collapsed
31527
31528 \begin_layout Plain Layout
31529
31530
31531 \backslash
31532 renewcommand{
31533 \backslash
31534 theequation}{
31535 \backslash
31536 arabic{equation}}
31537 \end_layout
31538
31539 \end_inset
31540
31541
31542 \begin_inset Formula 
31543 \begin{equation}
31544 E=\textrm{arabisch}
31545 \end{equation}
31546
31547 \end_inset
31548
31549
31550 \end_layout
31551
31552 \begin_layout Standard
31553 \begin_inset VSpace medskip
31554 \end_inset
31555
31556 Wie man sieht, werden die Formeln unabhängig von der Nummerierungsart durchnumme
31557 riert.
31558  Soll beim Wechsel der Nummerierungsart die Nummerierung wieder mit Eins
31559  beginnen, müssen neue Formelzähler angelegt werden.
31560  Eine Beschreibung dazu findet man in der Datei 
31561 \begin_inset CommandInset href
31562 LatexCommand href
31563 name "Formelnummerierung.lyx"
31564 target "run:Formelnummerierung.lyx"
31565
31566 \end_inset
31567
31568 .
31569 \end_layout
31570
31571 \begin_layout Section
31572 Chemische Symbole und Reaktionsgleichungen
31573 \begin_inset CommandInset label
31574 LatexCommand label
31575 name "sub:Chemische-Symbole-und"
31576
31577 \end_inset
31578
31579
31580 \begin_inset Index idx
31581 status collapsed
31582
31583 \begin_layout Plain Layout
31584 chemische Zeichen ! Symbole
31585 \end_layout
31586
31587 \end_inset
31588
31589
31590 \begin_inset Index idx
31591 status collapsed
31592
31593 \begin_layout Plain Layout
31594 Reaktionsgleichungen
31595 \end_layout
31596
31597 \end_inset
31598
31599
31600 \begin_inset Index idx
31601 status collapsed
31602
31603 \begin_layout Plain Layout
31604 Symbole ! chemische
31605 \end_layout
31606
31607 \end_inset
31608
31609
31610 \end_layout
31611
31612 \begin_layout Standard
31613 Ein Beispieltext aus der Chemie:
31614 \end_layout
31615
31616 \begin_layout Quote
31617 Das 
31618 \begin_inset Formula $\mathrm{SO_{4}^{2-}}$
31619 \end_inset
31620
31621 -Ion verbindet sich mit zwei 
31622 \begin_inset Formula $\mathrm{Na^{+}}$
31623 \end_inset
31624
31625 -Ionen zu Natriumsulfat 
31626 \begin_inset Formula $\left(\mathrm{Na_{2}SO_{4}}\right)$
31627 \end_inset
31628
31629 .
31630  Die Reaktionsgleichung dazu lautet:
31631 \begin_inset Formula 
31632 \begin{equation}
31633 \mathrm{2\, Na^{+}+SO_{4}^{2-}\longrightarrow Na_{2}SO_{4}}\label{eq:chemische-Reaktion}
31634 \end{equation}
31635
31636 \end_inset
31637
31638
31639 \end_layout
31640
31641 \begin_layout Standard
31642 Diese Reaktionsgleichung kann direkt als Formel erstellt werden.
31643  Damit die Symbole nicht kursiv erscheinen, markiert man sämtliche Zeichen
31644  in der Formel und wandelt diese mit der Tastenkombination 
31645 \family sans
31646 Alt+Z
31647 \begin_inset space ~
31648 \end_inset
31649
31650 R
31651 \family default
31652  in den aufrechten Schriftstil um.
31653 \begin_inset Foot
31654 status collapsed
31655
31656 \begin_layout Plain Layout
31657 Schriftstile siehe 
31658 \begin_inset CommandInset ref
31659 LatexCommand ref
31660 reference "sub:Schriftstile"
31661
31662 \end_inset
31663
31664
31665 \end_layout
31666
31667 \end_inset
31668
31669
31670 \end_layout
31671
31672 \begin_layout Standard
31673 Eine komfortablerer Weg chemische Formeln zu setzen, ist es den Befehl
31674 \series bold
31675  
31676 \backslash
31677 ce
31678 \series default
31679
31680 \begin_inset Index idx
31681 status collapsed
31682
31683 \begin_layout Plain Layout
31684 Befehle ! C ! 
31685 \backslash
31686 ce
31687 \end_layout
31688
31689 \end_inset
31690
31691  zu benutzen.
31692  Dieser ist verfügbar, wenn das LaTeX-Paket 
31693 \series bold
31694 mhchem
31695 \series default
31696
31697 \begin_inset Index idx
31698 status collapsed
31699
31700 \begin_layout Plain Layout
31701 Pakete ! mhchem
31702 \end_layout
31703
31704 \end_inset
31705
31706  installiert ist.
31707  Nachdem 
31708 \series bold
31709
31710 \backslash
31711 ce
31712 \series default
31713  in eine Formel eingefügt wurde, erscheint eine neue blaue Box in die chemische
31714  Formeln in intuitiver Weise eingegeben werden können.
31715 \end_layout
31716
31717 \begin_layout Standard
31718 \align center
31719 \begin_inset Tabular
31720 <lyxtabular version="3" rows="9" columns="2">
31721 <features rotate="0" tabularvalignment="middle">
31722 <column alignment="center" valignment="top">
31723 <column alignment="center" valignment="top">
31724 <row>
31725 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
31726 \begin_inset Text
31727
31728 \begin_layout Plain Layout
31729 Befehl
31730 \end_layout
31731
31732 \end_inset
31733 </cell>
31734 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
31735 \begin_inset Text
31736
31737 \begin_layout Plain Layout
31738 Ergebnis
31739 \begin_inset Note Note
31740 status collapsed
31741
31742 \begin_layout Plain Layout
31743
31744 \series bold
31745
31746 \backslash
31747 raisebox
31748 \series default
31749  dient nur als Abstandhalter.
31750 \end_layout
31751
31752 \end_inset
31753
31754
31755 \end_layout
31756
31757 \end_inset
31758 </cell>
31759 </row>
31760 <row>
31761 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
31762 \begin_inset Text
31763
31764 \begin_layout Plain Layout
31765
31766 \backslash
31767 ce
31768 \begin_inset ERT
31769 status collapsed
31770
31771 \begin_layout Plain Layout
31772
31773
31774 \backslash
31775 leer 
31776 \end_layout
31777
31778 \end_inset
31779
31780 H2CO3
31781 \end_layout
31782
31783 \end_inset
31784 </cell>
31785 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
31786 \begin_inset Text
31787
31788 \begin_layout Plain Layout
31789 \begin_inset Formula $\raisebox{4.5mm}{}\ce{H2CO3}\raisebox{-2mm}{}$
31790 \end_inset
31791
31792
31793 \end_layout
31794
31795 \end_inset
31796 </cell>
31797 </row>
31798 <row>
31799 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
31800 \begin_inset Text
31801
31802 \begin_layout Plain Layout
31803
31804 \backslash
31805 ce
31806 \begin_inset ERT
31807 status collapsed
31808
31809 \begin_layout Plain Layout
31810
31811
31812 \backslash
31813 leer 
31814 \end_layout
31815
31816 \end_inset
31817
31818 SO4^2-
31819 \end_layout
31820
31821 \end_inset
31822 </cell>
31823 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
31824 \begin_inset Text
31825
31826 \begin_layout Plain Layout
31827 \begin_inset Formula $\raisebox{5mm}{}\ce{SO4^{2-}}\raisebox{-2mm}{}$
31828 \end_inset
31829
31830
31831 \end_layout
31832
31833 \end_inset
31834 </cell>
31835 </row>
31836 <row>
31837 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
31838 \begin_inset Text
31839
31840 \begin_layout Plain Layout
31841
31842 \backslash
31843 ce
31844 \begin_inset ERT
31845 status collapsed
31846
31847 \begin_layout Plain Layout
31848
31849
31850 \backslash
31851 leer 
31852 \end_layout
31853
31854 \end_inset
31855
31856 (NH4)2S
31857 \end_layout
31858
31859 \end_inset
31860 </cell>
31861 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
31862 \begin_inset Text
31863
31864 \begin_layout Plain Layout
31865 \begin_inset Formula $\raisebox{4.5mm}{}\ce{(NH4)2S}\raisebox{-2mm}{}$
31866 \end_inset
31867
31868
31869 \end_layout
31870
31871 \end_inset
31872 </cell>
31873 </row>
31874 <row>
31875 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
31876 \begin_inset Text
31877
31878 \begin_layout Plain Layout
31879
31880 \backslash
31881 ce
31882 \begin_inset ERT
31883 status collapsed
31884
31885 \begin_layout Plain Layout
31886
31887
31888 \backslash
31889 leer 
31890 \end_layout
31891
31892 \end_inset
31893
31894 KCr(SO4)2.12H2O
31895 \end_layout
31896
31897 \end_inset
31898 </cell>
31899 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
31900 \begin_inset Text
31901
31902 \begin_layout Plain Layout
31903 \begin_inset Formula $\raisebox{4.5mm}{}\ce{KCr(SO4)2.12H2O}\raisebox{-2mm}{}$
31904 \end_inset
31905
31906
31907 \end_layout
31908
31909 \end_inset
31910 </cell>
31911 </row>
31912 <row>
31913 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
31914 \begin_inset Text
31915
31916 \begin_layout Plain Layout
31917
31918 \backslash
31919 ce
31920 \begin_inset ERT
31921 status collapsed
31922
31923 \begin_layout Plain Layout
31924
31925
31926 \backslash
31927 leer 
31928 \end_layout
31929
31930 \end_inset
31931
31932 A-B
31933 \backslash
31934 dbond
31935 \begin_inset ERT
31936 status collapsed
31937
31938 \begin_layout Plain Layout
31939
31940
31941 \backslash
31942 leer 
31943 \end_layout
31944
31945 \end_inset
31946
31947 C
31948 \backslash
31949 tbond
31950 \begin_inset ERT
31951 status collapsed
31952
31953 \begin_layout Plain Layout
31954
31955
31956 \backslash
31957 leer 
31958 \end_layout
31959
31960 \end_inset
31961
31962 D
31963 \end_layout
31964
31965 \end_inset
31966 </cell>
31967 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
31968 \begin_inset Text
31969
31970 \begin_layout Plain Layout
31971 \begin_inset Formula $\raisebox{4.5mm}{}\ce{A-B\dbond C\tbond D}\raisebox{-2mm}{}$
31972 \end_inset
31973
31974
31975 \end_layout
31976
31977 \end_inset
31978 </cell>
31979 </row>
31980 <row>
31981 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
31982 \begin_inset Text
31983
31984 \begin_layout Plain Layout
31985
31986 \backslash
31987 ce
31988 \begin_inset ERT
31989 status collapsed
31990
31991 \begin_layout Plain Layout
31992
31993
31994 \backslash
31995 leer 
31996 \end_layout
31997
31998 \end_inset
31999
32000 ^227
32001 \begin_inset Formula $\downarrow$
32002 \end_inset
32003
32004 _90
32005 \begin_inset Formula $\to$
32006 \end_inset
32007
32008 Th+
32009 \end_layout
32010
32011 \end_inset
32012 </cell>
32013 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
32014 \begin_inset Text
32015
32016 \begin_layout Plain Layout
32017 \begin_inset Formula $\raisebox{5mm}{}\ce{_{90}^{227}Th+}\raisebox{-2mm}{}$
32018 \end_inset
32019
32020
32021 \end_layout
32022
32023 \end_inset
32024 </cell>
32025 </row>
32026 <row>
32027 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
32028 \begin_inset Text
32029
32030 \begin_layout Plain Layout
32031
32032 \backslash
32033 ce
32034 \begin_inset ERT
32035 status collapsed
32036
32037 \begin_layout Plain Layout
32038
32039
32040 \backslash
32041 leer 
32042 \end_layout
32043
32044 \end_inset
32045
32046 CO2
32047 \begin_inset ERT
32048 status collapsed
32049
32050 \begin_layout Plain Layout
32051
32052
32053 \backslash
32054 leer 
32055 \end_layout
32056
32057 \end_inset
32058
32059 +
32060 \begin_inset ERT
32061 status collapsed
32062
32063 \begin_layout Plain Layout
32064
32065
32066 \backslash
32067 leer 
32068 \end_layout
32069
32070 \end_inset
32071
32072 C
32073 \begin_inset ERT
32074 status collapsed
32075
32076 \begin_layout Plain Layout
32077
32078
32079 \backslash
32080 leer 
32081 \end_layout
32082
32083 \end_inset
32084
32085 <=>
32086 \begin_inset ERT
32087 status collapsed
32088
32089 \begin_layout Plain Layout
32090
32091
32092 \backslash
32093 leer 
32094 \end_layout
32095
32096 \end_inset
32097
32098 2CO
32099 \end_layout
32100
32101 \end_inset
32102 </cell>
32103 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
32104 \begin_inset Text
32105
32106 \begin_layout Plain Layout
32107 \begin_inset Formula $\raisebox{4.5mm}{}\ce{CO2 + C <=> 2CO}\raisebox{-2mm}{}$
32108 \end_inset
32109
32110
32111 \end_layout
32112
32113 \end_inset
32114 </cell>
32115 </row>
32116 <row>
32117 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
32118 \begin_inset Text
32119
32120 \begin_layout Plain Layout
32121
32122 \backslash
32123 ce
32124 \begin_inset ERT
32125 status collapsed
32126
32127 \begin_layout Plain Layout
32128
32129
32130 \backslash
32131 leer 
32132 \end_layout
32133
32134 \end_inset
32135
32136 CO2
32137 \begin_inset ERT
32138 status collapsed
32139
32140 \begin_layout Plain Layout
32141
32142
32143 \backslash
32144 leer 
32145 \end_layout
32146
32147 \end_inset
32148
32149 +
32150 \begin_inset ERT
32151 status collapsed
32152
32153 \begin_layout Plain Layout
32154
32155
32156 \backslash
32157 leer 
32158 \end_layout
32159
32160 \end_inset
32161
32162 C
32163 \begin_inset ERT
32164 status collapsed
32165
32166 \begin_layout Plain Layout
32167
32168
32169 \backslash
32170 leer 
32171 \end_layout
32172
32173 \end_inset
32174
32175 ->[
32176 \backslash
32177 alpha][
32178 \backslash
32179 beta]
32180 \begin_inset ERT
32181 status collapsed
32182
32183 \begin_layout Plain Layout
32184
32185
32186 \backslash
32187 leer 
32188 \end_layout
32189
32190 \end_inset
32191
32192 2CO}
32193 \end_layout
32194
32195 \end_inset
32196 </cell>
32197 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
32198 \begin_inset Text
32199
32200 \begin_layout Plain Layout
32201 \begin_inset Formula $\raisebox{5mm}{}\ce{CO2 + C ->[\alpha][\beta] 2CO}\raisebox{-4mm}{}$
32202 \end_inset
32203
32204
32205 \end_layout
32206
32207 \end_inset
32208 </cell>
32209 </row>
32210 </lyxtabular>
32211
32212 \end_inset
32213
32214
32215 \end_layout
32216
32217 \begin_layout Standard
32218 \begin_inset Note Greyedout
32219 status open
32220
32221 \begin_layout Plain Layout
32222
32223 \series bold
32224 \color none
32225 Achtung:
32226 \series default
32227  Wenn eine Formel in eine 
32228 \series bold
32229
32230 \backslash
32231 ce
32232 \series default
32233 -Box eingefügt wird, führt dies zu LaTeX-Fehlern.
32234  In diesem Fall muss daher TeX-Code verwendet werden, wie z.
32235 \begin_inset space \thinspace{}
32236 \end_inset
32237
32238 B.
32239  für
32240 \begin_inset Newline newline
32241 \end_inset
32242
32243
32244 \series bold
32245
32246 \backslash
32247 ce{$
32248 \backslash
32249 mu
32250 \backslash
32251 hyphen$Cl}
32252 \series default
32253
32254 \begin_inset ERT
32255 status collapsed
32256
32257 \begin_layout Plain Layout
32258
32259
32260 \backslash
32261 ce{$
32262 \backslash
32263 mu
32264 \backslash
32265 hyphen$Cl}
32266 \end_layout
32267
32268 \end_inset
32269
32270  
32271 \end_layout
32272
32273 \end_inset
32274
32275
32276 \end_layout
32277
32278 \begin_layout Standard
32279 \begin_inset Note Greyedout
32280 status open
32281
32282 \begin_layout Plain Layout
32283
32284 \series bold
32285 \color none
32286 Achtung:
32287 \series default
32288  Es ist nicht möglich in LyX das Zeichen ^ zu verwenden um einen Pfeil nach
32289  oben zu bekommen, wie es im 
32290 \series bold
32291 mhchem
32292 \series default
32293 -Handbuch steht.
32294  Man verwendet stattdessen einen kleinen negativen Leerraum gefolgt vom
32295  Befehl 
32296 \series bold
32297
32298 \backslash
32299 uparrow
32300 \series default
32301 :
32302 \begin_inset Newline newline
32303 \end_inset
32304
32305
32306 \begin_inset Formula $\ce{Fe + 2H+ -> Fe^{2+} + H2\negthinspace\uparrow}$
32307 \end_inset
32308
32309
32310 \end_layout
32311
32312 \end_inset
32313
32314
32315 \end_layout
32316
32317 \begin_layout Standard
32318 Wird 
32319 \series bold
32320
32321 \backslash
32322 ce
32323 \series default
32324  benutzt, lautet der Befehl für Gleichung
32325 \begin_inset space ~
32326 \end_inset
32327
32328
32329 \begin_inset CommandInset ref
32330 LatexCommand eqref
32331 reference "eq:chemische-Reaktion"
32332
32333 \end_inset
32334
32335 :
32336 \begin_inset Newline newline
32337 \end_inset
32338
32339
32340 \series bold
32341  
32342 \backslash
32343 ce
32344 \series default
32345
32346 \begin_inset ERT
32347 status collapsed
32348
32349 \begin_layout Plain Layout
32350
32351
32352 \backslash
32353 leer 
32354 \end_layout
32355
32356 \end_inset
32357
32358
32359 \series bold
32360 2Na+
32361 \series default
32362
32363 \begin_inset ERT
32364 status collapsed
32365
32366 \begin_layout Plain Layout
32367
32368
32369 \backslash
32370 leer 
32371 \end_layout
32372
32373 \end_inset
32374
32375
32376 \series bold
32377 +
32378 \series default
32379
32380 \begin_inset ERT
32381 status collapsed
32382
32383 \begin_layout Plain Layout
32384
32385
32386 \backslash
32387 leer 
32388 \end_layout
32389
32390 \end_inset
32391
32392
32393 \series bold
32394 SO4^2-
32395 \series default
32396
32397 \begin_inset ERT
32398 status collapsed
32399
32400 \begin_layout Plain Layout
32401
32402
32403 \backslash
32404 leer 
32405 \end_layout
32406
32407 \end_inset
32408
32409
32410 \begin_inset ERT
32411 status collapsed
32412
32413 \begin_layout Plain Layout
32414
32415
32416 \backslash
32417 leer 
32418 \end_layout
32419
32420 \end_inset
32421
32422
32423 \series bold
32424 ->
32425 \series default
32426
32427 \begin_inset ERT
32428 status collapsed
32429
32430 \begin_layout Plain Layout
32431
32432
32433 \backslash
32434 leer 
32435 \end_layout
32436
32437 \end_inset
32438
32439
32440 \series bold
32441 Na2SO4
32442 \end_layout
32443
32444 \begin_layout Standard
32445 Um mehrzeilige chemische Gleichungen zu erzeugen, wird zuerst eine mehrzeilige
32446  Formel erstellt, wie in 
32447 \begin_inset CommandInset ref
32448 LatexCommand ref
32449 reference "sec:Mehrzeilige-Formeln"
32450
32451 \end_inset
32452
32453  beschrieben.
32454  Anschließend wird in jeder kleinen blauen Box der Formel der Befehl 
32455 \series bold
32456
32457 \backslash
32458 ce
32459 \series default
32460  verwendet.
32461  
32462 \begin_inset CommandInset ref
32463 LatexCommand eqref
32464 reference "eq:TEOS-Reaktion-1"
32465
32466 \end_inset
32467
32468  und 
32469 \begin_inset CommandInset ref
32470 LatexCommand eqref
32471 reference "eq:TEOS-Reaktion-2"
32472
32473 \end_inset
32474
32475  sind ein Beispiel für eine mehrstufige chemische Reaktion, bei der jede
32476  Gleichung eine eigene Nummer hat.
32477 \begin_inset Formula 
32478 \begin{eqnarray}
32479 \ce{TEOS + 4O} & \ce{->} & \ce{Si(OH)4 + 4C2H4O}\label{eq:TEOS-Reaktion-1}\\
32480 \ce{Si(OH)4} & \ce{->} & \ce{SiO2 + 2H2O}\label{eq:TEOS-Reaktion-2}
32481 \end{eqnarray}
32482
32483 \end_inset
32484
32485
32486 \end_layout
32487
32488 \begin_layout Standard
32489 Außer 
32490 \series bold
32491
32492 \backslash
32493 ce
32494 \series default
32495  bietet das Paket 
32496 \series bold
32497 mhchem
32498 \series default
32499  noch den Befehl 
32500 \series bold
32501
32502 \backslash
32503 cf
32504 \series default
32505
32506 \begin_inset Index idx
32507 status collapsed
32508
32509 \begin_layout Plain Layout
32510 Befehle ! C ! 
32511 \backslash
32512 cf
32513 \end_layout
32514
32515 \end_inset
32516
32517  für spezielle Fälle.
32518  Mehr über 
32519 \series bold
32520
32521 \backslash
32522 cf
32523 \series default
32524  und weitere Beispiele sind in der Dokumentation von 
32525 \series bold
32526 mhchem
32527 \series default
32528  zu finden, 
32529 \begin_inset CommandInset citation
32530 LatexCommand cite
32531 key "mhchem"
32532
32533 \end_inset
32534
32535 .
32536 \end_layout
32537
32538 \begin_layout Section
32539 Diagramme
32540 \end_layout
32541
32542 \begin_layout Standard
32543 LyX unterstützt zwei Typen kommutativer Diagramme: 
32544 \series bold
32545 amscd
32546 \series default
32547  und 
32548 \series bold
32549 xymatrix
32550 \series default
32551 , die im Folgenden erläutert sind.
32552 \end_layout
32553
32554 \begin_layout Subsection
32555 amscd Diagramme
32556 \begin_inset Index idx
32557 status collapsed
32558
32559 \begin_layout Plain Layout
32560 Diagramme ! amscd
32561 \end_layout
32562
32563 \end_inset
32564
32565
32566 \end_layout
32567
32568 \begin_layout Standard
32569 Diagramme dieses Typs stellen Beziehungen mittels horizontaler und vertikaler
32570  Linien oder Pfeilen dar:
32571 \begin_inset Formula 
32572 \[
32573 \begin{CD}A@>>>B@>>>C\\
32574 @AAA@.@VVV\\
32575 F@<<<E@<<<D
32576 \end{CD}
32577 \]
32578
32579 \end_inset
32580
32581
32582 \end_layout
32583
32584 \begin_layout Standard
32585 Um sie zu erstellen, gibt man in einer Formel den Befehl 
32586 \series bold
32587
32588 \backslash
32589 CD
32590 \begin_inset Index idx
32591 status collapsed
32592
32593 \begin_layout Plain Layout
32594 Befehle ! C ! 
32595 \backslash
32596 CD
32597 \end_layout
32598
32599 \end_inset
32600
32601
32602 \series default
32603  ein.
32604  Es erscheint ein blaues Kästchen mit zwei gestrichelten Linien, in das
32605  man die weiteren Befehle eingibt.
32606  Mit 
32607 \series bold
32608
32609 \begin_inset ERT
32610 status collapsed
32611
32612 \begin_layout Plain Layout
32613
32614
32615 \backslash
32616 mbox{
32617 \end_layout
32618
32619 \end_inset
32620
32621
32622 \family sans
32623 \series default
32624 Strg+Enter
32625 \family default
32626 \series bold
32627
32628 \begin_inset ERT
32629 status collapsed
32630
32631 \begin_layout Plain Layout
32632
32633 }
32634 \end_layout
32635
32636 \end_inset
32637
32638
32639 \series default
32640  wird eine neue Zeile erstellt.
32641  Horizontale Beziehungen werden in ungerade Zeilen, vertikale in gerade
32642  Zeilen der Formel eingegeben.
32643 \end_layout
32644
32645 \begin_layout Standard
32646 Zum Erstellen der Beziehungen gibt es folgende Befehle:
32647 \end_layout
32648
32649 \begin_layout Itemize
32650
32651 \series bold
32652 @<<<
32653 \series default
32654  erstellt einen Linkspfeil, 
32655 \series bold
32656 @>>>
32657 \series default
32658  einen Rechtspfeil und 
32659 \series bold
32660 @=
32661 \series default
32662  ein langes Gleichheitszeichen
32663 \end_layout
32664
32665 \begin_layout Itemize
32666
32667 \series bold
32668 @AAA
32669 \series default
32670  erstellt einen Pfeil nach oben, 
32671 \series bold
32672 @VVV
32673 \series default
32674  einen Pfeil nach unten und 
32675 \series bold
32676 @|
32677 \series default
32678  ein senkrechtes Gleichheitszeichen
32679 \end_layout
32680
32681 \begin_layout Itemize
32682
32683 \series bold
32684 @.
32685
32686 \series default
32687  dient als Platzhalter für nicht vorhandene Beziehungen
32688 \end_layout
32689
32690 \begin_layout Standard
32691 Alle Pfeile sind wie folgt beschriftbar:
32692 \end_layout
32693
32694 \begin_layout Itemize
32695 Wird bei horizontalen Pfeilen zwischen dem ersten und zweiten < bzw.
32696 \begin_inset space \space{}
32697 \end_inset
32698
32699 > Text eingegeben, erscheint er über dem Pfeil.
32700  Wird der Text zwischen dem zweiten und dritten < bzw.
32701 \begin_inset space \space{}
32702 \end_inset
32703
32704 > eingegeben, erscheint er unter dem Pfeil.
32705 \end_layout
32706
32707 \begin_layout Itemize
32708 Wird bei vertikalen Pfeilen Text zwischen erstem und zweitem A bzw.
32709 \begin_inset space \space{}
32710 \end_inset
32711
32712 V eingegeben, erscheint er links neben dem Pfeil.
32713  Bei Eingabe zwischen zweitem und drittem A bzw.
32714 \begin_inset space \space{}
32715 \end_inset
32716
32717 V erscheint er rechts daneben.
32718  Enthält der Text ein A oder V, müssen diese Buchstaben in eine TeX-Klammer
32719  gesetzt werden.
32720 \end_layout
32721
32722 \begin_layout Standard
32723 Als Beispiel ein Diagramm mit allen möglichen Beziehungen:
32724 \end_layout
32725
32726 \begin_layout Standard
32727 \begin_inset Formula 
32728 \[
32729 \begin{CD}A@>j>>B@>>k>C@=F\\
32730 @AmAA@.@VV{V}V@|\\
32731 D@<<j<E@>k>>F@=C
32732 \end{CD}
32733 \]
32734
32735 \end_inset
32736
32737
32738 \end_layout
32739
32740 \begin_layout Standard
32741 Der Befehl dazu lautet:
32742 \begin_inset Newline newline
32743 \end_inset
32744
32745
32746 \series bold
32747
32748 \backslash
32749 CD
32750 \begin_inset ERT
32751 status collapsed
32752
32753 \begin_layout Plain Layout
32754
32755
32756 \backslash
32757 leer 
32758 \end_layout
32759
32760 \end_inset
32761
32762 A@>j>>B@>>k>C@=F Strg+Enter
32763 \begin_inset Newline newline
32764 \end_inset
32765
32766
32767 \begin_inset Phantom HPhantom
32768 status open
32769
32770 \begin_layout Plain Layout
32771
32772 \series bold
32773
32774 \backslash
32775 CD
32776 \begin_inset ERT
32777 status collapsed
32778
32779 \begin_layout Plain Layout
32780
32781
32782 \backslash
32783 leer 
32784 \end_layout
32785
32786 \end_inset
32787
32788
32789 \end_layout
32790
32791 \end_inset
32792
32793 @AmAA@.@VV
32794 \backslash
32795 {V
32796 \series default
32797
32798 \begin_inset Formula $\to$
32799 \end_inset
32800
32801
32802 \series bold
32803 V@| Strg+Enter
32804 \begin_inset Newline newline
32805 \end_inset
32806
32807
32808 \begin_inset Phantom HPhantom
32809 status open
32810
32811 \begin_layout Plain Layout
32812
32813 \series bold
32814
32815 \backslash
32816 CD
32817 \begin_inset ERT
32818 status collapsed
32819
32820 \begin_layout Plain Layout
32821
32822
32823 \backslash
32824 leer 
32825 \end_layout
32826
32827 \end_inset
32828
32829
32830 \end_layout
32831
32832 \end_inset
32833
32834 D@<<j<E@>k>>F@=C
32835 \end_layout
32836
32837 \begin_layout Subsection
32838 xymatrix Diagramme
32839 \begin_inset Index idx
32840 status collapsed
32841
32842 \begin_layout Plain Layout
32843 Diagramme ! xymatrix
32844 \end_layout
32845
32846 \end_inset
32847
32848
32849 \end_layout
32850
32851 \begin_layout Standard
32852 Um Xymatrizen nutzen zu können, muss das LaTeX-Paket 
32853 \series bold
32854 xypic
32855 \series default
32856  installiert sein.
32857  Eine Xymatrix wird erstellt, indem der Befehl 
32858 \series bold
32859
32860 \backslash
32861 xymatrix
32862 \series default
32863  in eine Formel eingegeben wird.
32864  Dann können Sie neue Matrixspalten und -zeilen wie bei normalen Matrizen
32865  hinzufügen, siehe 
32866 \begin_inset CommandInset ref
32867 LatexCommand ref
32868 reference "sec:Matrizen"
32869
32870 \end_inset
32871
32872 .
32873 \end_layout
32874
32875 \begin_layout Standard
32876 Im Gegensatz zu amscd Diagrammen, unterstützen Xymatrixen diagonale und
32877  gekrümmte Pfeile und vieles mehr.
32878  Alle Möglichkeiten kommutative Diagramme und Dekorationen zu erzeugen,
32879  sind im Detail im 
32880 \emph on
32881 XY-pic-Handbuch
32882 \emph default
32883  erklärt, dass im Menü 
32884 \family sans
32885 Hilfe\SpecialChar \menuseparator
32886 Spezielle
32887 \begin_inset space ~
32888 \end_inset
32889
32890 Handbücher
32891 \family default
32892  zu finden ist.
32893 \end_layout
32894
32895 \begin_layout Subsection
32896
32897 \noun on
32898 Feynman
32899 \noun default
32900  Diagramme
32901 \begin_inset Index idx
32902 status collapsed
32903
32904 \begin_layout Plain Layout
32905 Diagramme ! Feynman
32906 \end_layout
32907
32908 \end_inset
32909
32910
32911 \end_layout
32912
32913 \begin_layout Standard
32914 Um 
32915 \noun on
32916 Feynman-
32917 \noun default
32918 Diagrammen nutzen zu können, muss das LaTeX-Paket 
32919 \series bold
32920 feyn
32921 \series default
32922  installiert sein.
32923  Ein 
32924 \noun on
32925 Feynman-
32926 \noun default
32927 Diagramm wird erstellt, indem der Befehl 
32928 \series bold
32929
32930 \backslash
32931 Diagram
32932 \series default
32933  in eine Formel eingegeben wird.
32934  Dann können Sie neue Matrixspalten und -zeilen wie bei normalen Matrizen
32935  hinzufügen, siehe 
32936 \begin_inset CommandInset ref
32937 LatexCommand ref
32938 reference "sec:Matrizen"
32939
32940 \end_inset
32941
32942 .
32943 \end_layout
32944
32945 \begin_layout Standard
32946 Beispiele wie man in LyX 
32947 \noun on
32948 Feynman-
32949 \noun default
32950 Diagramme erstellt sind im 
32951 \emph on
32952 Feynman-Diagramm Handbuch
32953 \emph default
32954  gegeben, dass im Menü 
32955 \family sans
32956 Hilfe\SpecialChar \menuseparator
32957 Spezielle
32958 \begin_inset space ~
32959 \end_inset
32960
32961 Handbücher
32962 \family default
32963  zu finden ist.
32964 \end_layout
32965
32966 \begin_layout Standard
32967 \begin_inset Newpage newpage
32968 \end_inset
32969
32970
32971 \end_layout
32972
32973 \begin_layout Section
32974 Benutzerdefinierte Befehle
32975 \begin_inset CommandInset label
32976 LatexCommand label
32977 name "sec:Benutzerdefinierte-Befehle"
32978
32979 \end_inset
32980
32981
32982 \begin_inset Index idx
32983 status collapsed
32984
32985 \begin_layout Plain Layout
32986 benutzerdefinierte Befehle
32987 \end_layout
32988
32989 \end_inset
32990
32991
32992 \end_layout
32993
32994 \begin_layout Standard
32995 \begin_inset Note Greyedout
32996 status open
32997
32998 \begin_layout Plain Layout
32999
33000 \series bold
33001 Achtung: 
33002 \series default
33003 Die Namen von benutzerdefinierten Befehlen und Makros dürfen nur aus lateinische
33004 n Buchstaben bestehen.
33005 \end_layout
33006
33007 \end_inset
33008
33009
33010 \end_layout
33011
33012 \begin_layout Subsection
33013 Der Befehl 
33014 \backslash
33015 newcommand
33016 \begin_inset CommandInset label
33017 LatexCommand label
33018 name "sub:Der-Befehl-newcommand"
33019
33020 \end_inset
33021
33022
33023 \begin_inset Index idx
33024 status collapsed
33025
33026 \begin_layout Plain Layout
33027 benutzerdefinierte Befehle ! 
33028 \backslash
33029 newcommand
33030 \end_layout
33031
33032 \end_inset
33033
33034
33035 \begin_inset Index idx
33036 status collapsed
33037
33038 \begin_layout Plain Layout
33039 Befehle ! N ! 
33040 \backslash
33041 newcommand
33042 \end_layout
33043
33044 \end_inset
33045
33046
33047 \end_layout
33048
33049 \begin_layout Standard
33050 Viele der LaTeX-Befehle sind für den ständigen Gebrauch viel zu lang.
33051  Man kann sich aber mit dem Befehl 
33052 \series bold
33053
33054 \backslash
33055 newcommand
33056 \series default
33057  neue kürzere Befehle definieren.
33058 \end_layout
33059
33060 \begin_layout Standard
33061 Das Befehlsschema von 
33062 \series bold
33063
33064 \backslash
33065 newcommand
33066 \series default
33067  lautet:
33068 \end_layout
33069
33070 \begin_layout Standard
33071
33072 \series bold
33073
33074 \backslash
33075 newcommand{neuer Befehlsname}[Argumentanzahl][optionaler
33076 \series default
33077  
33078 \series bold
33079 Wert]
33080 \begin_inset Newline newline
33081 \end_inset
33082
33083
33084 \begin_inset Phantom HPhantom
33085 status open
33086
33087 \begin_layout Plain Layout
33088
33089 \series bold
33090
33091 \backslash
33092 newcommand
33093 \end_layout
33094
33095 \end_inset
33096
33097 {Befehlsdefinition}
33098 \end_layout
33099
33100 \begin_layout Standard
33101 \begin_inset Note Greyedout
33102 status open
33103
33104 \begin_layout Plain Layout
33105
33106 \series bold
33107 Achtung:
33108 \series default
33109  Es muss darauf geachtet werden, dass der Befehlsname nicht schon im Dokument
33110  oder von benutzten LaTeX-Paketen verwendet wird.
33111  Definiert man beispielsweise für 
33112 \series bold
33113
33114 \backslash
33115 Leftarrow
33116 \series default
33117  den Befehl 
33118 \series bold
33119
33120 \backslash
33121 le
33122 \series default
33123 , erhält man eine Fehlermeldung, denn 
33124 \series bold
33125
33126 \backslash
33127 le
33128 \series default
33129  ist schon für 
33130 \begin_inset Quotes gld
33131 \end_inset
33132
33133
33134 \begin_inset Formula $\le$
33135 \end_inset
33136
33137
33138 \begin_inset Quotes grd
33139 \end_inset
33140
33141  definiert.
33142 \end_layout
33143
33144 \end_inset
33145
33146
33147 \end_layout
33148
33149 \begin_layout Standard
33150 Die Argumentanzahl ist eine ganze Zahl im Bereich 0
33151 \begin_inset space \thinspace{}
33152 \end_inset
33153
33154 -
33155 \begin_inset space \thinspace{}
33156 \end_inset
33157
33158 9 und gibt an, wie viele Argumente der neue Befehl haben soll.
33159  Als optionalen Wert kann man den Wert für ein optionales Argument voreinstellen.
33160  Wenn man dies macht, bedeutet das gleichzeitig, dass das 
33161 \emph on
33162 erste
33163 \emph default
33164  Argument des neuen Befehls ein optionales ist.
33165 \end_layout
33166
33167 \begin_layout Standard
33168 Es folgen einige Beispiele:
33169 \end_layout
33170
33171 \begin_layout Itemize
33172 Will man für 
33173 \series bold
33174
33175 \backslash
33176 Longrightarrow
33177 \series default
33178  den Befehl 
33179 \series bold
33180
33181 \backslash
33182 gr
33183 \series default
33184  definieren, lautet die LaTeX-Vor\SpecialChar \-
33185 spannzeile:
33186 \begin_inset VSpace medskip
33187 \end_inset
33188
33189
33190 \begin_inset Newline newline
33191 \end_inset
33192
33193
33194 \series bold
33195
33196 \backslash
33197 newcommand{
33198 \backslash
33199 gr}{
33200 \backslash
33201 Longrightarrow}
33202 \end_layout
33203
33204 \begin_layout Itemize
33205 Um für den Befehl 
33206 \series bold
33207
33208 \backslash
33209 underline
33210 \series default
33211  den Befehl 
33212 \series bold
33213
33214 \backslash
33215 us
33216 \series default
33217  zu definieren, muss das Argument (was unterstrichen werden soll) berücksichtigt
33218  werden.
33219  Dazu sieht die Vorspannzeile wie folgt aus:
33220 \begin_inset VSpace medskip
33221 \end_inset
33222
33223
33224 \begin_inset Newline newline
33225 \end_inset
33226
33227
33228 \series bold
33229
33230 \backslash
33231 newcommand{
33232 \backslash
33233 us}[1]{
33234 \backslash
33235 underline{#1}}
33236 \series default
33237
33238 \begin_inset VSpace medskip
33239 \end_inset
33240
33241
33242 \begin_inset Newline newline
33243 \end_inset
33244
33245 Das Zeichen 
33246 \series bold
33247 #
33248 \series default
33249  fungiert als Argumentplatzhalter, die 
33250 \series bold
33251 1
33252 \series default
33253  dahinter gibt an, dass es der Platzhalter für das erste Argument ist.
33254 \end_layout
33255
33256 \begin_layout Itemize
33257 Für 
33258 \series bold
33259
33260 \backslash
33261 framebox
33262 \series default
33263  kann man z.
33264 \begin_inset space \thinspace{}
33265 \end_inset
33266
33267 B.
33268  den Befehl 
33269 \series bold
33270
33271 \backslash
33272 fb
33273 \series default
33274  definieren:
33275 \begin_inset VSpace medskip
33276 \end_inset
33277
33278
33279 \begin_inset Newline newline
33280 \end_inset
33281
33282
33283 \series bold
33284
33285 \backslash
33286 newcommand{
33287 \backslash
33288 fb}[3]{
33289 \backslash
33290 framebox#1#2{$#3$}}
33291 \series default
33292
33293 \begin_inset VSpace medskip
33294 \end_inset
33295
33296
33297 \begin_inset Newline newline
33298 \end_inset
33299
33300 Die beiden Dollarzeichen erstellen hierbei die für 
33301 \series bold
33302
33303 \backslash
33304 framebox
33305 \series default
33306  geforderte weitere Formel, siehe 
33307 \begin_inset CommandInset ref
33308 LatexCommand ref
33309 reference "sub:Boxen-mit-Rahmen"
33310
33311 \end_inset
33312
33313 .
33314 \end_layout
33315
33316 \begin_layout Itemize
33317 Um einen neuen Befehl für 
33318 \series bold
33319
33320 \backslash
33321 fcolorbox
33322 \series default
33323  zu erstellen, bei dem die Farbe der Box nicht mehr angegeben werden muss,
33324  definiert man das Argument für die Farbe als optional:
33325 \begin_inset VSpace medskip
33326 \end_inset
33327
33328
33329 \begin_inset Newline newline
33330 \end_inset
33331
33332
33333 \series bold
33334
33335 \backslash
33336 newcommand{
33337 \backslash
33338 cb}[3][white]{
33339 \backslash
33340 fcolorbox{#2}{#1}{$#3$}}
33341 \series default
33342
33343 \begin_inset VSpace medskip
33344 \end_inset
33345
33346
33347 \begin_inset Newline newline
33348 \end_inset
33349
33350 Gibt man bei der Verwendung von 
33351 \series bold
33352
33353 \backslash
33354 cb
33355 \series default
33356  die Farbe nicht an, wird die voreingestellte Farbe 
33357 \series bold
33358 white
33359 \series default
33360  verwendet.
33361 \end_layout
33362
33363 \begin_layout Standard
33364 Ein Test der neu definierten Befehle:
33365 \end_layout
33366
33367 \begin_layout Standard
33368 \align center
33369 \begin_inset Tabular
33370 <lyxtabular version="3" rows="6" columns="2">
33371 <features rotate="0" tabularvalignment="middle">
33372 <column alignment="center" valignment="top">
33373 <column alignment="center" valignment="top">
33374 <row>
33375 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
33376 \begin_inset Text
33377
33378 \begin_layout Plain Layout
33379 Befehl
33380 \end_layout
33381
33382 \end_inset
33383 </cell>
33384 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
33385 \begin_inset Text
33386
33387 \begin_layout Plain Layout
33388 Ergebnis
33389 \begin_inset Note Note
33390 status collapsed
33391
33392 \begin_layout Plain Layout
33393
33394 \series bold
33395
33396 \backslash
33397 raisebox
33398 \series default
33399  dient nur als Abstandhalter.
33400 \end_layout
33401
33402 \end_inset
33403
33404
33405 \end_layout
33406
33407 \end_inset
33408 </cell>
33409 </row>
33410 <row>
33411 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33412 \begin_inset Text
33413
33414 \begin_layout Plain Layout
33415 A
33416 \backslash
33417 gr
33418 \begin_inset ERT
33419 status collapsed
33420
33421 \begin_layout Plain Layout
33422
33423
33424 \backslash
33425 leer 
33426 \end_layout
33427
33428 \end_inset
33429
33430 B
33431 \end_layout
33432
33433 \end_inset
33434 </cell>
33435 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33436 \begin_inset Text
33437
33438 \begin_layout Plain Layout
33439 \begin_inset Formula $A\gr B$
33440 \end_inset
33441
33442
33443 \end_layout
33444
33445 \end_inset
33446 </cell>
33447 </row>
33448 <row>
33449 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33450 \begin_inset Text
33451
33452 \begin_layout Plain Layout
33453
33454 \backslash
33455 us{ABcd
33456 \end_layout
33457
33458 \end_inset
33459 </cell>
33460 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33461 \begin_inset Text
33462
33463 \begin_layout Plain Layout
33464 \begin_inset Formula $\raisebox{4.5mm}{}\us{ABcd}\raisebox{-2mm}{}$
33465 \end_inset
33466
33467
33468 \end_layout
33469
33470 \end_inset
33471 </cell>
33472 </row>
33473 <row>
33474 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33475 \begin_inset Text
33476
33477 \begin_layout Plain Layout
33478
33479 \backslash
33480 fb{[2cm]
33481 \begin_inset Formula $\to$
33482 \end_inset
33483
33484
33485 \backslash
33486 {
33487 \begin_inset Formula $\to$
33488 \end_inset
33489
33490
33491 \backslash
33492 {
33493 \backslash
33494 int
33495 \begin_inset ERT
33496 status collapsed
33497
33498 \begin_layout Plain Layout
33499
33500
33501 \backslash
33502 leer 
33503 \end_layout
33504
33505 \end_inset
33506
33507 A=B
33508 \end_layout
33509
33510 \end_inset
33511 </cell>
33512 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33513 \begin_inset Text
33514
33515 \begin_layout Plain Layout
33516 \begin_inset Formula $\raisebox{6mm}{}\fb{[2cm]}{}{\int A=B}\raisebox{-4mm}{}$
33517 \end_inset
33518
33519
33520 \end_layout
33521
33522 \end_inset
33523 </cell>
33524 </row>
33525 <row>
33526 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33527 \begin_inset Text
33528
33529 \begin_layout Plain Layout
33530
33531 \backslash
33532 cb{red
33533 \begin_inset Formula $\to$
33534 \end_inset
33535
33536
33537 \backslash
33538 {
33539 \backslash
33540 int
33541 \begin_inset ERT
33542 status collapsed
33543
33544 \begin_layout Plain Layout
33545
33546
33547 \backslash
33548 leer 
33549 \end_layout
33550
33551 \end_inset
33552
33553 A=B
33554 \end_layout
33555
33556 \end_inset
33557 </cell>
33558 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33559 \begin_inset Text
33560
33561 \begin_layout Plain Layout
33562 \begin_inset Formula $\raisebox{6mm}{}\cb{red}{\int A=B}\raisebox{-4mm}{}$
33563 \end_inset
33564
33565
33566 \end_layout
33567
33568 \end_inset
33569 </cell>
33570 </row>
33571 <row>
33572 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
33573 \begin_inset Text
33574
33575 \begin_layout Plain Layout
33576
33577 \backslash
33578 cb[green]
33579 \backslash
33580 {red
33581 \begin_inset Formula $\to$
33582 \end_inset
33583
33584
33585 \backslash
33586 {
33587 \backslash
33588 int
33589 \begin_inset ERT
33590 status collapsed
33591
33592 \begin_layout Plain Layout
33593
33594
33595 \backslash
33596 leer 
33597 \end_layout
33598
33599 \end_inset
33600
33601 A=B
33602 \end_layout
33603
33604 \end_inset
33605 </cell>
33606 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
33607 \begin_inset Text
33608
33609 \begin_layout Plain Layout
33610 \begin_inset Formula $\raisebox{6mm}{}\cb[green]{red}{\int A=B}\raisebox{-4mm}{}$
33611 \end_inset
33612
33613
33614 \end_layout
33615
33616 \end_inset
33617 </cell>
33618 </row>
33619 </lyxtabular>
33620
33621 \end_inset
33622
33623
33624 \end_layout
33625
33626 \begin_layout Subsection
33627 Mathe-Makros
33628 \begin_inset Index idx
33629 status collapsed
33630
33631 \begin_layout Plain Layout
33632 benutzerdefinierte Befehle ! Mathe-Makros
33633 \end_layout
33634
33635 \end_inset
33636
33637
33638 \begin_inset Index idx
33639 status collapsed
33640
33641 \begin_layout Plain Layout
33642 Makros
33643 \end_layout
33644
33645 \end_inset
33646
33647
33648 \end_layout
33649
33650 \begin_layout Standard
33651 Besonders praktisch sind eigene Befehle für komplexe Ausdrücke.
33652  Hat man es in einem Dokument z.
33653 \begin_inset space \thinspace{}
33654 \end_inset
33655
33656 B.
33657  häufiger mit quadratischen Gleichungen zu tun, tritt immer derselbe Lösungstyp
33658  auf.
33659  Die allgemeine Form einer quadratischen Gleichung ist
33660 \begin_inset Formula 
33661 \[
33662 0=\lambda^{2}+p\lambda+q
33663 \]
33664
33665 \end_inset
33666
33667 Die allgemeine Form der Lösung lautet
33668 \begin_inset Formula 
33669 \[
33670 \lambda_{1,2}=-\frac{p}{2}\pm\sqrt{\frac{p²}{4}-q}
33671 \]
33672
33673 \end_inset
33674
33675
33676 \end_layout
33677
33678 \begin_layout Standard
33679 Um für die Lösungsformel einen Befehl zu definieren, bei dem nur noch die
33680  drei Parameter 
33681 \begin_inset Formula $\lambda$
33682 \end_inset
33683
33684
33685 \begin_inset Formula $p$
33686 \end_inset
33687
33688  und 
33689 \begin_inset Formula $q$
33690 \end_inset
33691
33692  angegeben werden müssen und der Index von 
33693 \begin_inset Formula $\lambda$
33694 \end_inset
33695
33696  optional angeben werden kann, lautet die LaTeX-Vorspannzeile
33697 \begin_inset Newline newline
33698 \end_inset
33699
33700
33701 \series bold
33702
33703 \backslash
33704 newcommand{
33705 \backslash
33706 qG}[4][1,
33707 \backslash
33708 ,2]{#2_{#1}=-
33709 \backslash
33710 frac{#3}{2}
33711 \backslash
33712 pm
33713 \begin_inset Newline newline
33714 \end_inset
33715
33716
33717 \begin_inset Phantom HPhantom
33718 status open
33719
33720 \begin_layout Plain Layout
33721
33722 \series bold
33723
33724 \backslash
33725 newcommand
33726 \end_layout
33727
33728 \end_inset
33729
33730
33731 \backslash
33732 sqrt{
33733 \backslash
33734 frac{#3^{2}}{4}-#4}}
33735 \end_layout
33736
33737 \begin_layout Standard
33738 Um damit die Lösungsformel zu erstellen, gibt man in einer Formel den Befehl
33739  
33740 \begin_inset Newline newline
33741 \end_inset
33742
33743
33744 \series bold
33745
33746 \backslash
33747 qG{
33748 \backslash
33749 lambda
33750 \begin_inset Formula $\to$
33751 \end_inset
33752
33753
33754 \backslash
33755 {p
33756 \begin_inset Formula $\to$
33757 \end_inset
33758
33759
33760 \backslash
33761 {q 
33762 \series default
33763 ein.
33764 \end_layout
33765
33766 \begin_layout Standard
33767 Die Definition des neuen Befehls ist unintuitiv, denn man muss die Schemata
33768  aller verwendeten LaTeX-Befehle kennen, z.
33769 \begin_inset space \thinspace{}
33770 \end_inset
33771
33772 B.
33773  dass ein Bruch in LaTeX mit 
33774 \series bold
33775
33776 \backslash
33777 frac{Zähler}
33778 \begin_inset Newline linebreak
33779 \end_inset
33780
33781 {Nenner}
33782 \series default
33783  eingegeben wird.
33784  Außerdem kann man leicht eine geschweifte Klammer vergessen und man kann
33785  in LyX nicht sehen, was der neue Befehl macht.
33786  Um diesen Problemen aus dem Weg zu gehen, gibt es in LyX die Möglichkeit
33787  Mathe-Makros statt den Befehl 
33788 \series bold
33789
33790 \backslash
33791 newcommand
33792 \series default
33793  zu verwenden.
33794 \end_layout
33795
33796 \begin_layout Standard
33797 Ein Mathe-Makro wird erstellt, indem man das Menü 
33798 \family sans
33799 Einfügen\SpecialChar \menuseparator
33800 Mathe\SpecialChar \menuseparator
33801 Makro
33802 \family default
33803  oder den Werkzeugleistenknopf 
33804 \begin_inset Graphics
33805         filename ../../images/math-macro_newmacroname_newcommand.png
33806         scale 85
33807
33808 \end_inset
33809
33810  verwendet.
33811  Es erscheint die Mathe-Makro-Werkzeugleiste und folgende Box, in der das
33812  Makro definiert wird:
33813 \begin_inset Newline newline
33814 \end_inset
33815
33816
33817 \begin_inset space \hspace*{\fill}
33818 \end_inset
33819
33820
33821 \begin_inset Graphics
33822         filename ../clipart/macrobox.png
33823
33824 \end_inset
33825
33826
33827 \begin_inset space \hspace*{\fill}
33828 \end_inset
33829
33830
33831 \begin_inset Newline newline
33832 \end_inset
33833
33834
33835 \begin_inset FormulaMacro
33836 \newcommand{\qG}[4][1,\,2]{#2_{#1}=-\frac{#3}{2}\pm\sqrt{\frac{#3^{2}}{4}-#4}}
33837 \end_inset
33838
33839
33840 \backslash
33841 newmacroname ist der voreingestellte Makroname, der auf etwas sinnvolles
33842  geändert werden sollte.
33843  In das erste blaue Kästchen gibt man die gewünschte Formel ein.
33844  Einen Argumentplatzhalter fügt man mit dem Befehl 
33845 \series bold
33846
33847 \backslash
33848 #Argumentnummer
33849 \series default
33850  ein, z.
33851 \begin_inset space \thinspace{}
33852 \end_inset
33853
33854 B.
33855  
33856 \series bold
33857
33858 \backslash
33859 #1
33860 \series default
33861  oder man verwendet den Makro-Werkzeugleistenknopf 
33862 \begin_inset Graphics
33863         filename ../../images/math-macro-add-param.png
33864         scale 85
33865
33866 \end_inset
33867
33868 .
33869  Argumentplatzhalter werden rot dargestellt.
33870  Es sind maximal 9
33871 \begin_inset space ~
33872 \end_inset
33873
33874 Argumente möglich.
33875  Optionale Argumente werden mit dem Werkzeugleistenknopf 
33876 \begin_inset Graphics
33877         filename ../../images/math-macro-add-optional-param.png
33878         scale 85
33879
33880 \end_inset
33881
33882  erstellt.
33883  Mit dem Werkzeugleistenknopf 
33884 \begin_inset Graphics
33885         filename ../../images/math-macro-make-optional.png
33886         scale 85
33887
33888 \end_inset
33889
33890  kann das erste nicht-optionale Argument in ein optionales verwandelt werden.
33891  Im zweiten Kästchen kann man definieren wie das Makro in LyX angezeigt
33892  werden soll.
33893  Normalerweise will man es so sehen, wie es definiert wurde, wozu man das
33894  Kästchen leer lässt.
33895  Hat man hingegen ein Makro erstellt, der auf dem Bildschirm viel Platz
33896  einnimmt, kann man in das Kästchen z.
33897 \begin_inset space \thinspace{}
33898 \end_inset
33899
33900 B.
33901 \begin_inset Newline newline
33902 \end_inset
33903
33904
33905 \series bold
33906 qG: 
33907 \backslash
33908 #1
33909 \series default
33910  
33911 \series bold
33912 ,
33913 \series default
33914  
33915 \series bold
33916
33917 \backslash
33918 #2
33919 \series default
33920  
33921 \series bold
33922 ,
33923 \series default
33924  
33925 \series bold
33926
33927 \backslash
33928 #3, 
33929 \backslash
33930 #4
33931 \begin_inset Newline newline
33932 \end_inset
33933
33934
33935 \series default
33936 eingeben.
33937  Für das Makro werden dann in LyX nur die Argumente mit dem davor stehenden
33938  Makronamen angezeigt, was für mehr Überblick im Dokument sorgt.
33939  Im Ausdruck erscheint die Formel so, wie sie im ersten Kästchen definiert
33940  wurde.
33941 \begin_inset Newline newline
33942 \end_inset
33943
33944 Das Erscheinungsbild von Makros in Formeln lässt sich außerdem für einzelne
33945  Makros ändern, indem man den Cursor in das Makro setzt und das Menü 
33946 \family sans
33947 Ansicht\SpecialChar \menuseparator
33948 Mathe-Makro
33949 \begin_inset space ~
33950 \end_inset
33951
33952 auf/zuklappen
33953 \family default
33954  verwendet.
33955 \end_layout
33956
33957 \begin_layout Standard
33958 Um ein Makro zu verwenden, gibt man in eine Formel den Makronamen als Befehl
33959  ein, in unserem Fall 
33960 \series bold
33961
33962 \backslash
33963 qG
33964 \series default
33965 .
33966  Unser Makro sieht in LyX folgendermaßen aus:
33967 \begin_inset Newline newline
33968 \end_inset
33969
33970
33971 \begin_inset space \hspace*{\fill}
33972 \end_inset
33973
33974
33975 \begin_inset Graphics
33976         filename ../clipart/macrouse.png
33977
33978 \end_inset
33979
33980
33981 \begin_inset space \hspace*{\fill}
33982 \end_inset
33983
33984
33985 \begin_inset Newline newline
33986 \end_inset
33987
33988 Hier ist unser Makro-Beispiel mit den Argumenten 
33989 \begin_inset Formula $x$
33990 \end_inset
33991
33992
33993 \begin_inset Formula $\ln(x)$
33994 \end_inset
33995
33996  und 
33997 \begin_inset Formula $B$
33998 \end_inset
33999
34000 :
34001 \end_layout
34002
34003 \begin_layout Standard
34004 \begin_inset Formula 
34005 \[
34006 \qG x{\ln(x)}B
34007 \]
34008
34009 \end_inset
34010
34011
34012 \end_layout
34013
34014 \begin_layout Standard
34015 LyX bietet im Menü 
34016 \family sans
34017 Werkzeuge\SpecialChar \menuseparator
34018 Einstellungen\SpecialChar \menuseparator
34019 Bearbeiten\SpecialChar \menuseparator
34020 Kontrolle
34021 \family default
34022  verschiedene Bearbeitungsstile für Makros an.
34023  Um den Stil zu finden, der für Sie am angenehmsten ist, wählen Sie einen
34024  Stil aus und setzen den Cursor in eine Makro-Formel um den Unterschied
34025  zu sehen.
34026 \end_layout
34027
34028 \begin_layout Standard
34029 Ein Mathe-Makro wird beim Exportieren des Dokuments intern in einen 
34030 \series bold
34031
34032 \backslash
34033 new\SpecialChar \-
34034 command
34035 \series default
34036 -Befehl umgewandelt.
34037  Der 
34038 \series bold
34039
34040 \backslash
34041 newcommand
34042 \series default
34043 -Befehl wird dabei nicht in den LaTeX-Vorspann gesetzt, so dass man daher
34044  Makros nur in Formeln verwenden kann, die sich im Dokument unterhalb der
34045  Makrodefinitionsbox befinden.
34046 \end_layout
34047
34048 \begin_layout Standard
34049 Mathe-Makros können auch direkt aus einem 
34050 \series bold
34051
34052 \backslash
34053 newcommand
34054 \series default
34055 -Befehl erstellt werden.
34056  Schreibt man z.
34057 \begin_inset space \thinspace{}
34058 \end_inset
34059
34060 B.
34061  den Befehl
34062 \series bold
34063
34064 \begin_inset Newline newline
34065 \end_inset
34066
34067
34068 \backslash
34069 newcommand{
34070 \backslash
34071 larrow}[2]{
34072 \backslash
34073 xleftarrow[#2]{#1}}
34074 \begin_inset Newline newline
34075 \end_inset
34076
34077
34078 \series default
34079 in LyX als normalen Text, markiert ihn komplett und verwendet dann das Tastenkür
34080 zel 
34081 \family sans
34082 Strg+M
34083 \family default
34084 , wird der Befehl in ein Mathe-Makro umgewandelt.
34085  Bei dieser Methode muss man jedoch aufpassen, dass der 
34086 \series bold
34087
34088 \backslash
34089 newcommand
34090 \series default
34091 -Befehl richtig geschrieben wurde, ansonsten wird ein fehlerhaftes Makro
34092  erstellt, dass später LaTeX-Fehler hervorruft.
34093 \end_layout
34094
34095 \begin_layout Standard
34096 Mathe-Makros haben im Moment noch das Problem, dass weitere Formeln in einer
34097  Makrodefinition fehlerhaft behandelt werden.
34098  Dadurch kann das Beispiel 
34099 \series bold
34100
34101 \backslash
34102 fb
34103 \series default
34104  aus 
34105 \begin_inset CommandInset ref
34106 LatexCommand ref
34107 reference "sub:Der-Befehl-newcommand"
34108
34109 \end_inset
34110
34111  nicht als Makro erzeugt werden.
34112 \end_layout
34113
34114 \begin_layout Standard
34115 Wenn der Cursor in einer Makrodefinitionsbox ist, wird die Makro-Werkzeugleiste
34116  in LyX angezeigt:
34117 \end_layout
34118
34119 \begin_layout Standard
34120 \begin_inset VSpace defskip
34121 \end_inset
34122
34123
34124 \end_layout
34125
34126 \begin_layout Standard
34127 \begin_inset Graphics
34128         filename ../clipart/MacroToolbar.png
34129
34130 \end_inset
34131
34132
34133 \begin_inset Index idx
34134 status collapsed
34135
34136 \begin_layout Plain Layout
34137 Makros ! Werkzeugleiste
34138 \end_layout
34139
34140 \end_inset
34141
34142
34143 \end_layout
34144
34145 \begin_layout Standard
34146 \begin_inset VSpace defskip
34147 \end_inset
34148
34149
34150 \end_layout
34151
34152 \begin_layout Standard
34153 Die Makro-Werkzeugleiste enthält von links nach rechts die folgenden Knöpfe:
34154 \end_layout
34155
34156 \begin_layout Standard
34157 \begin_inset VSpace defskip
34158 \end_inset
34159
34160
34161 \end_layout
34162
34163 \begin_layout Standard
34164 \begin_inset Tabular
34165 <lyxtabular version="3" rows="9" columns="2">
34166 <features rotate="0" islongtable="true" longtabularalignment="center">
34167 <column alignment="left" valignment="top">
34168 <column alignment="left" valignment="top" width="85col%">
34169 <row interlinespace="2.5mm">
34170 <cell alignment="center" valignment="top" usebox="none">
34171 \begin_inset Text
34172
34173 \begin_layout Plain Layout
34174 \begin_inset Graphics
34175         filename ../../images/math-macro-remove-param.png
34176         rotateOrigin center
34177
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 Graphics
34206         filename ../../images/math-macro-add-param.png
34207         rotateOrigin center
34208
34209 \end_inset
34210
34211
34212 \end_layout
34213
34214 \end_inset
34215 </cell>
34216 <cell alignment="center" valignment="top" usebox="none">
34217 \begin_inset Text
34218
34219 \begin_layout Plain Layout
34220
34221 \family sans
34222 Bearbeiten\SpecialChar \menuseparator
34223 Mathe\SpecialChar \menuseparator
34224 Makro-Definition\SpecialChar \menuseparator
34225 Argument hinzufügen
34226 \end_layout
34227
34228 \end_inset
34229 </cell>
34230 </row>
34231 <row interlinespace="2.5mm">
34232 <cell alignment="center" valignment="top" usebox="none">
34233 \begin_inset Text
34234
34235 \begin_layout Plain Layout
34236 \begin_inset Graphics
34237         filename ../../images/math-macro-make-optional.png
34238         rotateOrigin center
34239
34240 \end_inset
34241
34242
34243 \end_layout
34244
34245 \end_inset
34246 </cell>
34247 <cell alignment="center" valignment="top" usebox="none">
34248 \begin_inset Text
34249
34250 \begin_layout Plain Layout
34251
34252 \family sans
34253 Bearbeiten\SpecialChar \menuseparator
34254 Mathe\SpecialChar \menuseparator
34255 Makro-Definition\SpecialChar \menuseparator
34256 Das erste nicht-optionale
34257 \begin_inset Newline newline
34258 \end_inset
34259
34260
34261 \begin_inset Phantom HPhantom
34262 status open
34263
34264 \begin_layout Plain Layout
34265
34266 \family sans
34267 Bearbeiten\SpecialChar \menuseparator
34268 Mathe\SpecialChar \menuseparator
34269 Makro-Definition\SpecialChar \menuseparator
34270
34271 \end_layout
34272
34273 \end_inset
34274
34275 Argument in einen optionales
34276 \begin_inset Newline newline
34277 \end_inset
34278
34279
34280 \begin_inset Phantom HPhantom
34281 status open
34282
34283 \begin_layout Plain Layout
34284
34285 \family sans
34286 Bearbeiten\SpecialChar \menuseparator
34287 Mathe\SpecialChar \menuseparator
34288 Makro-Definition\SpecialChar \menuseparator
34289
34290 \end_layout
34291
34292 \end_inset
34293
34294 ändern
34295 \end_layout
34296
34297 \end_inset
34298 </cell>
34299 </row>
34300 <row interlinespace="2.5mm">
34301 <cell alignment="center" valignment="top" usebox="none">
34302 \begin_inset Text
34303
34304 \begin_layout Plain Layout
34305 \begin_inset Graphics
34306         filename ../../images/math-macro-make-nonoptional.png
34307         rotateOrigin center
34308
34309 \end_inset
34310
34311
34312 \end_layout
34313
34314 \end_inset
34315 </cell>
34316 <cell alignment="center" valignment="top" usebox="none">
34317 \begin_inset Text
34318
34319 \begin_layout Plain Layout
34320
34321 \family sans
34322 Bearbeiten\SpecialChar \menuseparator
34323 Mathe\SpecialChar \menuseparator
34324 Makro-Definition\SpecialChar \menuseparator
34325 Das letzte optionale Argument in
34326 \begin_inset Newline newline
34327 \end_inset
34328
34329
34330 \begin_inset Phantom HPhantom
34331 status open
34332
34333 \begin_layout Plain Layout
34334
34335 \family sans
34336 Bearbeiten\SpecialChar \menuseparator
34337 Mathe\SpecialChar \menuseparator
34338 Makro-Definition\SpecialChar \menuseparator
34339
34340 \end_layout
34341
34342 \end_inset
34343
34344 einen nicht-optionales ändern
34345 \end_layout
34346
34347 \end_inset
34348 </cell>
34349 </row>
34350 <row interlinespace="2.5mm">
34351 <cell alignment="center" valignment="top" usebox="none">
34352 \begin_inset Text
34353
34354 \begin_layout Plain Layout
34355 \begin_inset Graphics
34356         filename ../../images/math-macro-remove-optional-param.png
34357         rotateOrigin center
34358
34359 \end_inset
34360
34361
34362 \end_layout
34363
34364 \end_inset
34365 </cell>
34366 <cell alignment="center" valignment="top" usebox="none">
34367 \begin_inset Text
34368
34369 \begin_layout Plain Layout
34370
34371 \family sans
34372 Bearbeiten\SpecialChar \menuseparator
34373 Mathe\SpecialChar \menuseparator
34374 Makro-Definition\SpecialChar \menuseparator
34375 Optionales Argument entfernen
34376 \end_layout
34377
34378 \end_inset
34379 </cell>
34380 </row>
34381 <row interlinespace="2.5mm">
34382 <cell alignment="center" valignment="top" usebox="none">
34383 \begin_inset Text
34384
34385 \begin_layout Plain Layout
34386 \begin_inset Graphics
34387         filename ../../images/math-macro-add-optional-param.png
34388         rotateOrigin center
34389
34390 \end_inset
34391
34392
34393 \end_layout
34394
34395 \end_inset
34396 </cell>
34397 <cell alignment="center" valignment="top" usebox="none">
34398 \begin_inset Text
34399
34400 \begin_layout Plain Layout
34401
34402 \family sans
34403 Bearbeiten\SpecialChar \menuseparator
34404 Mathe\SpecialChar \menuseparator
34405 Makro-Definition\SpecialChar \menuseparator
34406 Optionales Argument einfügen
34407 \end_layout
34408
34409 \end_inset
34410 </cell>
34411 </row>
34412 <row interlinespace="2.5mm">
34413 <cell alignment="center" valignment="top" usebox="none">
34414 \begin_inset Text
34415
34416 \begin_layout Plain Layout
34417 \begin_inset Graphics
34418         filename ../../images/math-macro-remove-greedy-param.png
34419         rotateOrigin center
34420
34421 \end_inset
34422
34423
34424 \end_layout
34425
34426 \end_inset
34427 </cell>
34428 <cell alignment="center" valignment="top" usebox="none">
34429 \begin_inset Text
34430
34431 \begin_layout Plain Layout
34432
34433 \family sans
34434 Bearbeiten\SpecialChar \menuseparator
34435 Mathe\SpecialChar \menuseparator
34436 Makro-Definition\SpecialChar \menuseparator
34437 Letztes Argument rechts entfernen
34438 \end_layout
34439
34440 \end_inset
34441 </cell>
34442 </row>
34443 <row interlinespace="2.5mm">
34444 <cell alignment="center" valignment="top" usebox="none">
34445 \begin_inset Text
34446
34447 \begin_layout Plain Layout
34448 \begin_inset Graphics
34449         filename ../../images/math-macro-append-greedy-param.png
34450         rotateOrigin center
34451
34452 \end_inset
34453
34454
34455 \end_layout
34456
34457 \end_inset
34458 </cell>
34459 <cell alignment="center" valignment="top" usebox="none">
34460 \begin_inset Text
34461
34462 \begin_layout Plain Layout
34463
34464 \family sans
34465 Bearbeiten\SpecialChar \menuseparator
34466 Mathe\SpecialChar \menuseparator
34467 Makro-Definition\SpecialChar \menuseparator
34468 Argument von rechts hinzufügen
34469 \end_layout
34470
34471 \end_inset
34472 </cell>
34473 </row>
34474 <row interlinespace="2.5mm">
34475 <cell alignment="center" valignment="top" usebox="none">
34476 \begin_inset Text
34477
34478 \begin_layout Plain Layout
34479 \begin_inset Graphics
34480         filename ../../images/math-macro-add-greedy-optional-param.png
34481         rotateOrigin center
34482
34483 \end_inset
34484
34485
34486 \end_layout
34487
34488 \end_inset
34489 </cell>
34490 <cell alignment="center" valignment="top" usebox="none">
34491 \begin_inset Text
34492
34493 \begin_layout Plain Layout
34494
34495 \family sans
34496 Bearbeiten\SpecialChar \menuseparator
34497 Mathe\SpecialChar \menuseparator
34498 Makro-Definition\SpecialChar \menuseparator
34499 Optionales Argument von rechts
34500 \begin_inset Newline newline
34501 \end_inset
34502
34503
34504 \begin_inset Phantom HPhantom
34505 status open
34506
34507 \begin_layout Plain Layout
34508
34509 \family sans
34510 Bearbeiten\SpecialChar \menuseparator
34511 Mathe\SpecialChar \menuseparator
34512 Makro-Definition\SpecialChar \menuseparator
34513
34514 \end_layout
34515
34516 \end_inset
34517
34518 hinzufügen
34519 \end_layout
34520
34521 \end_inset
34522 </cell>
34523 </row>
34524 </lyxtabular>
34525
34526 \end_inset
34527
34528
34529 \end_layout
34530
34531 \begin_layout Section
34532 Computeralgebrasysteme
34533 \end_layout
34534
34535 \begin_layout Standard
34536 Mit LyX ist es möglich, mathematische Ausdrücke mit externen Anwendungen
34537  oder benutzerdefinierten Skripten auszutauschen.
34538  Momentan werden folgende Anwendungen unterstützt: 
34539 \family typewriter
34540 Maple
34541 \family default
34542
34543 \family typewriter
34544 Mathematica
34545 \family default
34546
34547 \family typewriter
34548 Maxima
34549 \family default
34550  und 
34551 \family typewriter
34552 Octave
34553 \family default
34554 .
34555  Beachten Sie aber, dass die unterstützten mathematischen Ausdrücke auf
34556  sehr einfache Fälle beschränkt sind.
34557 \end_layout
34558
34559 \begin_layout Subsection
34560 Verwendung
34561 \end_layout
34562
34563 \begin_layout Standard
34564 Schreiben Sie einen Ausdruck in eine Formel, öffnen Sie das Menü 
34565 \family sans
34566 Bearbeiten\SpecialChar \menuseparator
34567 Mathe\SpecialChar \menuseparator
34568 Computer-Algebra-System verwenden
34569 \family default
34570  und wählen Sie die Anwendung, die Sie auf ihrem Computer installiert haben.
34571  Danach sollte das Ergebnis der Berechnung auf der rechten Seite zusammen
34572  mit dem 
34573 \begin_inset Quotes gld
34574 \end_inset
34575
34576 =
34577 \begin_inset Quotes grd
34578 \end_inset
34579
34580  Operator erscheinen.
34581 \end_layout
34582
34583 \begin_layout Standard
34584 Hier sind ein paar einfache Beispiele (mit Resultaten von 
34585 \family typewriter
34586 Maxima
34587 \family default
34588 ) um zu zeigen, welche Berechnungen durchgeführt werden können:
34589 \end_layout
34590
34591 \begin_layout Itemize
34592 \begin_inset Formula $\frac{37}{3}*2-\sum_{i=1}^{3}i^{i}=-\frac{22}{3}$
34593 \end_inset
34594
34595
34596 \end_layout
34597
34598 \begin_layout Itemize
34599 \begin_inset Formula $\frac{37.0}{3}=12.33333333333333$
34600 \end_inset
34601
34602
34603 \end_layout
34604
34605 \begin_layout Itemize
34606 \begin_inset Formula $\int_{1}^{2}\sin(x)dx=\cos1-\cos2$
34607 \end_inset
34608
34609
34610 \end_layout
34611
34612 \begin_layout Itemize
34613 \begin_inset Formula $\det\left[\begin{array}{ccc}
34614 1 & 6 & 7\\
34615 2 & 5 & 8\\
34616 3 & 4 & 17
34617 \end{array}\right]=-56$
34618 \end_inset
34619
34620
34621 \end_layout
34622
34623 \begin_layout Itemize
34624 \begin_inset Formula $\lim_{x\rightarrow0}\left(\frac{\sin(x)}{x}\right)=1$
34625 \end_inset
34626
34627
34628 \end_layout
34629
34630 \begin_layout Subsection
34631 Tastenkürzel
34632 \end_layout
34633
34634 \begin_layout Standard
34635 Momentan gibt es kein Tastenkürzel um Computeralgebrasysteme aufzurufen.
34636  Sie können aber einfach ein Tastenkürzel mit der LyX-Funktion 
34637 \family sans
34638 math-extern
34639 \family default
34640  verknüpfen (siehe das 
34641 \emph on
34642 LyX-Funktionen
34643 \emph default
34644  Handbuch).
34645  Man kann z.
34646 \begin_inset space \thinspace{}
34647 \end_inset
34648
34649 B.
34650  die 
34651 \family sans
34652 Enter
34653 \family default
34654 -Taste in Formeln verknüpfen.
34655  Um sie mit 
34656 \family typewriter
34657 Maxima
34658 \family default
34659  zu verknüpfen, würde man diesen Tastenkürzel-Definitionsbefehl verwenden:
34660 \end_layout
34661
34662 \begin_layout Standard
34663
34664 \series bold
34665 command-alternatives break-paragraph;math-extern maxima
34666 \end_layout
34667
34668 \begin_layout Section
34669 Verschiedenes
34670 \begin_inset Index idx
34671 status collapsed
34672
34673 \begin_layout Plain Layout
34674 Verschiedenes
34675 \end_layout
34676
34677 \end_inset
34678
34679
34680 \end_layout
34681
34682 \begin_layout Subsection
34683 Negative Zahlen
34684 \begin_inset Index idx
34685 status collapsed
34686
34687 \begin_layout Plain Layout
34688 Zahlen ! negative
34689 \end_layout
34690
34691 \end_inset
34692
34693
34694 \end_layout
34695
34696 \begin_layout Standard
34697 Negative Zahlen sehen im Formelmodus oft schlecht aus, denn das Minuszeichen
34698  vor der Ziffer wird mit der gleichen Länge wie das Zeichen der Minus-Operation
34699  dargestellt.
34700  Schreibt man dagegen eine negative Zahl im normalen Text, erscheint das
34701  Minuszeichen korrekt.
34702 \end_layout
34703
34704 \begin_layout Standard
34705 Wandelt man also das Minuszeichen in mathematischen Text um, tritt das Problem
34706  nicht mehr auf.
34707 \end_layout
34708
34709 \begin_layout Standard
34710 Ein Beispiel zur Veranschaulichung der Problematik:
34711 \end_layout
34712
34713 \begin_layout Standard
34714 \align center
34715 \begin_inset Tabular
34716 <lyxtabular version="3" rows="3" columns="2">
34717 <features rotate="0" tabularvalignment="middle">
34718 <column alignment="right" valignment="top">
34719 <column alignment="left" valignment="top">
34720 <row>
34721 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
34722 \begin_inset Text
34723
34724 \begin_layout Plain Layout
34725 normaler Text:
34726 \end_layout
34727
34728 \end_inset
34729 </cell>
34730 <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
34731 \begin_inset Text
34732
34733 \begin_layout Plain Layout
34734 x = -2
34735 \end_layout
34736
34737 \end_inset
34738 </cell>
34739 </row>
34740 <row>
34741 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
34742 \begin_inset Text
34743
34744 \begin_layout Plain Layout
34745 Formelmodus:
34746 \end_layout
34747
34748 \end_inset
34749 </cell>
34750 <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
34751 \begin_inset Text
34752
34753 \begin_layout Plain Layout
34754 \begin_inset Formula $x=-2$
34755 \end_inset
34756
34757
34758 \end_layout
34759
34760 \end_inset
34761 </cell>
34762 </row>
34763 <row>
34764 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
34765 \begin_inset Text
34766
34767 \begin_layout Plain Layout
34768 Lösung:
34769 \end_layout
34770
34771 \end_inset
34772 </cell>
34773 <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
34774 \begin_inset Text
34775
34776 \begin_layout Plain Layout
34777 \begin_inset Formula $x=\textrm{-}2$
34778 \end_inset
34779
34780
34781 \end_layout
34782
34783 \end_inset
34784 </cell>
34785 </row>
34786 </lyxtabular>
34787
34788 \end_inset
34789
34790
34791 \end_layout
34792
34793 \begin_layout Subsection
34794 Komma als Dezimaltrennzeichen
34795 \begin_inset Index idx
34796 status collapsed
34797
34798 \begin_layout Plain Layout
34799 Komma
34800 \end_layout
34801
34802 \end_inset
34803
34804
34805 \end_layout
34806
34807 \begin_layout Standard
34808 In LaTeX fungiert das Komma in einer Formel, gemäß englischer Konvention,
34809  als Gruppentrennzeichen.
34810  Es wird demnach automatisch hinter allen Kommas in Formeln ein Leerraum
34811  eingefügt.
34812 \end_layout
34813
34814 \begin_layout Standard
34815 Um dies zu verhindern, markiert man das Komma und wandelt es in mathematischen
34816  Text um (Tastenkürzel 
34817 \family sans
34818 Alt+M
34819 \begin_inset space ~
34820 \end_inset
34821
34822 M
34823 \family default
34824 ).
34825 \end_layout
34826
34827 \begin_layout Standard
34828 Um hingegen alle Formelkommas des Dokuments als Dezimaltrennzeichen zu setzen,
34829  lädt man die Datei 
34830 \series bold
34831 icomma.sty
34832 \series default
34833
34834 \begin_inset Foot
34835 status collapsed
34836
34837 \begin_layout Plain Layout
34838
34839 \series bold
34840 icomma
34841 \series default
34842  ist Teil des LaTeX-Paketes 
34843 \series bold
34844 was
34845 \series default
34846
34847 \begin_inset Index idx
34848 status collapsed
34849
34850 \begin_layout Plain Layout
34851 Pakete ! was
34852 \begin_inset ERT
34853 status collapsed
34854
34855 \begin_layout Plain Layout
34856
34857
34858 \backslash
34859 vspace{4mm}
34860 \end_layout
34861
34862 \end_inset
34863
34864
34865 \end_layout
34866
34867 \end_inset
34868
34869 .
34870 \end_layout
34871
34872 \end_inset
34873
34874
34875 \begin_inset Index idx
34876 status collapsed
34877
34878 \begin_layout Plain Layout
34879 Pakete ! icomma
34880 \end_layout
34881
34882 \end_inset
34883
34884  mit der LaTeX-Vorspannzeile
34885 \end_layout
34886
34887 \begin_layout Standard
34888
34889 \series bold
34890
34891 \backslash
34892 usepackage{icomma}
34893 \end_layout
34894
34895 \begin_layout Subsection
34896 Physikalische Vektoren
34897 \begin_inset CommandInset label
34898 LatexCommand label
34899 name "sub:Physikalische-Vektoren"
34900
34901 \end_inset
34902
34903
34904 \begin_inset Index idx
34905 status collapsed
34906
34907 \begin_layout Plain Layout
34908 Vektoren ! physikalische
34909 \end_layout
34910
34911 \end_inset
34912
34913
34914 \end_layout
34915
34916 \begin_layout Standard
34917 Vordefinierte Vektoren bietet das LaTeX-Paket 
34918 \series bold
34919 braket
34920 \series default
34921
34922 \begin_inset Index idx
34923 status collapsed
34924
34925 \begin_layout Plain Layout
34926 Pakete ! braket
34927 \end_layout
34928
34929 \end_inset
34930
34931 , das mit der LaTeX-Vorspannzeile
34932 \end_layout
34933
34934 \begin_layout Standard
34935
34936 \series bold
34937
34938 \backslash
34939 usepackage{braket}
34940 \end_layout
34941
34942 \begin_layout Standard
34943 geladen wird.
34944 \begin_inset ERT
34945 status collapsed
34946
34947 \begin_layout Plain Layout
34948
34949
34950 \backslash
34951 ifbraket 
34952 \end_layout
34953
34954 \end_inset
34955
34956
34957 \begin_inset Note Note
34958 status open
34959
34960 \begin_layout Plain Layout
34961 Die folgende Tabelle erscheint nur im Ausdruck wenn das LaTeX-Paket 
34962 \series bold
34963 braket
34964 \series default
34965  installiert ist:
34966 \end_layout
34967
34968 \end_inset
34969
34970
34971 \end_layout
34972
34973 \begin_layout Standard
34974 Folgende Befehle sind definiert:
34975 \end_layout
34976
34977 \begin_layout Standard
34978 \align center
34979 \begin_inset Tabular
34980 <lyxtabular version="3" rows="4" columns="2">
34981 <features rotate="0" tabularvalignment="middle">
34982 <column alignment="center" valignment="top">
34983 <column alignment="center" valignment="top">
34984 <row>
34985 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
34986 \begin_inset Text
34987
34988 \begin_layout Plain Layout
34989 Befehl
34990 \end_layout
34991
34992 \end_inset
34993 </cell>
34994 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
34995 \begin_inset Text
34996
34997 \begin_layout Plain Layout
34998 Ergebnis
34999 \end_layout
35000
35001 \end_inset
35002 </cell>
35003 </row>
35004 <row>
35005 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35006 \begin_inset Text
35007
35008 \begin_layout Plain Layout
35009
35010 \backslash
35011 Bra{
35012 \backslash
35013 psi
35014 \end_layout
35015
35016 \end_inset
35017 </cell>
35018 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35019 \begin_inset Text
35020
35021 \begin_layout Plain Layout
35022 \begin_inset Formula $\Bra{\psi}$
35023 \end_inset
35024
35025
35026 \end_layout
35027
35028 \end_inset
35029 </cell>
35030 </row>
35031 <row>
35032 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35033 \begin_inset Text
35034
35035 \begin_layout Plain Layout
35036
35037 \backslash
35038 Ket{
35039 \backslash
35040 psi
35041 \end_layout
35042
35043 \end_inset
35044 </cell>
35045 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35046 \begin_inset Text
35047
35048 \begin_layout Plain Layout
35049 \begin_inset Formula $\Ket{\psi}$
35050 \end_inset
35051
35052
35053 \end_layout
35054
35055 \end_inset
35056 </cell>
35057 </row>
35058 <row>
35059 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35060 \begin_inset Text
35061
35062 \begin_layout Plain Layout
35063
35064 \backslash
35065 Braket{
35066 \backslash
35067 psi|
35068 \backslash
35069 phi
35070 \end_layout
35071
35072 \end_inset
35073 </cell>
35074 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35075 \begin_inset Text
35076
35077 \begin_layout Plain Layout
35078 \begin_inset Formula $\Braket{\psi|\phi}$
35079 \end_inset
35080
35081
35082 \end_layout
35083
35084 \end_inset
35085 </cell>
35086 </row>
35087 </lyxtabular>
35088
35089 \end_inset
35090
35091
35092 \end_layout
35093
35094 \begin_layout Standard
35095 Der Befehl 
35096 \series bold
35097
35098 \backslash
35099 Braket
35100 \series default
35101  stellt sicher, dass alle senkrechten Striche in der Größe der umgebenden
35102  Klammern gesetzt werden:
35103 \begin_inset Formula 
35104 \[
35105 \Braket{\phi|J=\frac{3}{2}\,,\, M_{J}}
35106 \]
35107
35108 \end_inset
35109
35110
35111 \begin_inset ERT
35112 status collapsed
35113
35114 \begin_layout Plain Layout
35115
35116
35117 \backslash
35118 else 
35119 \end_layout
35120
35121 \end_inset
35122
35123
35124 \begin_inset Note Note
35125 status open
35126
35127 \begin_layout Plain Layout
35128 Folgendes erscheint im Ausdruck wenn das LaTeX-Paket 
35129 \series bold
35130 braket
35131 \series default
35132  nicht installiert ist:
35133 \end_layout
35134
35135 \end_inset
35136
35137
35138 \end_layout
35139
35140 \begin_layout Standard
35141 Das LaTeX-Paket 
35142 \series bold
35143 braket 
35144 \series default
35145 muss installiert sein, um den Rest dieses Abschnitts im Ausdruck zu sehen.
35146 \end_layout
35147
35148 \begin_layout Standard
35149 \begin_inset ERT
35150 status collapsed
35151
35152 \begin_layout Plain Layout
35153
35154
35155 \backslash
35156 fi 
35157 \end_layout
35158
35159 \end_inset
35160
35161
35162 \end_layout
35163
35164 \begin_layout Standard
35165 Der Effekt von 
35166 \series bold
35167
35168 \backslash
35169 Braket
35170 \series default
35171  kann auch mit dem Befehl 
35172 \series bold
35173
35174 \backslash
35175 middle
35176 \series default
35177  erzielt werden, der in 
35178 \begin_inset CommandInset ref
35179 LatexCommand ref
35180 reference "sub:Automatische-Klammergrößen"
35181
35182 \end_inset
35183
35184  beschrieben ist.
35185 \end_layout
35186
35187 \begin_layout Subsection
35188 Selbst definierte Brüche
35189 \begin_inset CommandInset label
35190 LatexCommand label
35191 name "sub:Selbstdefinierte-Brüche"
35192
35193 \end_inset
35194
35195
35196 \begin_inset Index idx
35197 status collapsed
35198
35199 \begin_layout Plain Layout
35200 Brüche ! selbstdefinierte
35201 \end_layout
35202
35203 \end_inset
35204
35205
35206 \end_layout
35207
35208 \begin_layout Standard
35209 Um eigene Befehle für Brüche zu definieren, verwendet man den Befehl 
35210 \series bold
35211
35212 \backslash
35213 genfrac
35214 \series default
35215
35216 \begin_inset Index idx
35217 status collapsed
35218
35219 \begin_layout Plain Layout
35220 Befehle ! G ! 
35221 \backslash
35222 genfrac
35223 \end_layout
35224
35225 \end_inset
35226
35227  in folgendem Schema:
35228 \end_layout
35229
35230 \begin_layout Standard
35231
35232 \series bold
35233
35234 \backslash
35235 genfrac{linke
35236 \series default
35237  
35238 \series bold
35239 Klammer}{rechte
35240 \series default
35241  
35242 \series bold
35243 Klammer}{Bruchstrichdicke}{Ansichtsstil}
35244 \begin_inset Newline newline
35245 \end_inset
35246
35247
35248 \begin_inset Phantom HPhantom
35249 status open
35250
35251 \begin_layout Plain Layout
35252
35253 \series bold
35254
35255 \backslash
35256 genfrac
35257 \end_layout
35258
35259 \end_inset
35260
35261 {Zähler}{Nenner}
35262 \end_layout
35263
35264 \begin_layout Standard
35265 Der Ansichtsstil wird mit einer ganzen Zahl im Bereich 0
35266 \begin_inset space \thinspace{}
35267 \end_inset
35268
35269 -
35270 \begin_inset space \thinspace{}
35271 \end_inset
35272
35273 3 angegeben.
35274 \end_layout
35275
35276 \begin_layout Standard
35277 \align center
35278 \begin_inset Tabular
35279 <lyxtabular version="3" rows="5" columns="2">
35280 <features rotate="0" tabularvalignment="middle">
35281 <column alignment="center" valignment="top">
35282 <column alignment="center" valignment="top">
35283 <row>
35284 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35285 \begin_inset Text
35286
35287 \begin_layout Plain Layout
35288 Nummer
35289 \end_layout
35290
35291 \end_inset
35292 </cell>
35293 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35294 \begin_inset Text
35295
35296 \begin_layout Plain Layout
35297 Ansichtsstil
35298 \end_layout
35299
35300 \end_inset
35301 </cell>
35302 </row>
35303 <row>
35304 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35305 \begin_inset Text
35306
35307 \begin_layout Plain Layout
35308 0
35309 \end_layout
35310
35311 \end_inset
35312 </cell>
35313 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35314 \begin_inset Text
35315
35316 \begin_layout Plain Layout
35317 abgesetzte Formel
35318 \end_layout
35319
35320 \end_inset
35321 </cell>
35322 </row>
35323 <row>
35324 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35325 \begin_inset Text
35326
35327 \begin_layout Plain Layout
35328 1
35329 \end_layout
35330
35331 \end_inset
35332 </cell>
35333 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35334 \begin_inset Text
35335
35336 \begin_layout Plain Layout
35337 eingebettete Formel
35338 \end_layout
35339
35340 \end_inset
35341 </cell>
35342 </row>
35343 <row>
35344 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35345 \begin_inset Text
35346
35347 \begin_layout Plain Layout
35348 2
35349 \end_layout
35350
35351 \end_inset
35352 </cell>
35353 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35354 \begin_inset Text
35355
35356 \begin_layout Plain Layout
35357 klein
35358 \end_layout
35359
35360 \end_inset
35361 </cell>
35362 </row>
35363 <row>
35364 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35365 \begin_inset Text
35366
35367 \begin_layout Plain Layout
35368 3
35369 \end_layout
35370
35371 \end_inset
35372 </cell>
35373 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35374 \begin_inset Text
35375
35376 \begin_layout Plain Layout
35377 winzig
35378 \end_layout
35379
35380 \end_inset
35381 </cell>
35382 </row>
35383 </lyxtabular>
35384
35385 \end_inset
35386
35387
35388 \end_layout
35389
35390 \begin_layout Standard
35391 Wird nichts für den Ansichtsstil angegeben, passt sich die Größe wie bei
35392  
35393 \series bold
35394
35395 \backslash
35396 frac
35397 \series default
35398  der Umgebung an.
35399 \end_layout
35400
35401 \begin_layout Standard
35402 Wird keine Bruchstrichdicke angegeben, wird der voreingestellte Wert von
35403  0.4
35404 \begin_inset space \thinspace{}
35405 \end_inset
35406
35407 pt verwendet.
35408 \end_layout
35409
35410 \begin_layout Standard
35411 \begin_inset VSpace medskip
35412 \end_inset
35413
35414 Zum Beispiel sind die Befehle 
35415 \series bold
35416
35417 \backslash
35418 dfrac
35419 \series default
35420  und 
35421 \series bold
35422
35423 \backslash
35424 tbinom
35425 \series default
35426  aus 
35427 \begin_inset CommandInset ref
35428 LatexCommand ref
35429 reference "sub:Brüche"
35430
35431 \end_inset
35432
35433  folgendermaßen definiert:
35434 \end_layout
35435
35436 \begin_layout Standard
35437
35438 \series bold
35439
35440 \backslash
35441 newcommand{
35442 \backslash
35443 dfrac}[2]{
35444 \backslash
35445 genfrac{}{}{}{0}{#1}{#2}}
35446 \end_layout
35447
35448 \begin_layout Standard
35449 und
35450 \end_layout
35451
35452 \begin_layout Standard
35453
35454 \series bold
35455
35456 \backslash
35457 newcommand{
35458 \backslash
35459 tbinom}[2]{
35460 \backslash
35461 genfrac{(}{)}{0pt}{1}{#1}{#2}}
35462 \end_layout
35463
35464 \begin_layout Standard
35465 \begin_inset VSpace medskip
35466 \end_inset
35467
35468 Um einen Bruch zu definieren, bei dem man die Bruchstrichdicke als optionales
35469  Argument angeben kann, gibt man im LaTeX-Vorspann folgenden Befehl ein:
35470 \end_layout
35471
35472 \begin_layout Standard
35473
35474 \series bold
35475
35476 \backslash
35477 newcommand{
35478 \backslash
35479 fracS}[3][]{
35480 \backslash
35481 genfrac{}{}{#1}{}{#2}{#3}}
35482 \end_layout
35483
35484 \begin_layout Standard
35485 Dazu ein Test:
35486 \begin_inset Formula 
35487 \begin{align*}
35488 \text{Befehl} &  & \mathrm{\backslash fracS[1mm]\backslash\{A\to\backslash\{B} &  & \mathrm{\backslash fracS[5mm]\backslash\{A\to\backslash\{B}\\
35489 \text{Ergebnis} &  & \fracS[1mm]{A}{B} &  & \fracS[5mm]{A}{B}
35490 \end{align*}
35491
35492 \end_inset
35493
35494 Wie man sieht, entspricht der Abstand des Zählers und Nenners vom Strich
35495  in etwa der dreifachen Strichdicke.
35496 \end_layout
35497
35498 \begin_layout Subsection
35499 Durchgestrichene Formeln
35500 \begin_inset Index idx
35501 status collapsed
35502
35503 \begin_layout Plain Layout
35504 Formel ! durchgestrichene
35505 \end_layout
35506
35507 \end_inset
35508
35509
35510 \end_layout
35511
35512 \begin_layout Standard
35513 Um Formeln oder Formelteile durchzustreichen, muss das LaTeX-Paket 
35514 \series bold
35515 cancel
35516 \series default
35517
35518 \begin_inset Index idx
35519 status collapsed
35520
35521 \begin_layout Plain Layout
35522 Pakete ! cancel
35523 \end_layout
35524
35525 \end_inset
35526
35527  mit der LaTeX-Vorspannzeile
35528 \end_layout
35529
35530 \begin_layout Standard
35531
35532 \series bold
35533
35534 \backslash
35535 usepackage{cancel}
35536 \end_layout
35537
35538 \begin_layout Standard
35539 geladen werden.
35540 \end_layout
35541
35542 \begin_layout Standard
35543 \begin_inset ERT
35544 status collapsed
35545
35546 \begin_layout Plain Layout
35547
35548
35549 \backslash
35550 ifcancel 
35551 \end_layout
35552
35553 \end_inset
35554
35555
35556 \begin_inset Note Note
35557 status open
35558
35559 \begin_layout Plain Layout
35560 Die folgende Tabelle erscheint nur im Ausdruck wenn das LaTeX-Paket 
35561 \series bold
35562 cancel
35563 \series default
35564  installiert ist:
35565 \end_layout
35566
35567 \end_inset
35568
35569
35570 \end_layout
35571
35572 \begin_layout Standard
35573 Es gibt vier verschiedene Arten durchzustreichen:
35574 \end_layout
35575
35576 \begin_layout Standard
35577 \align center
35578 \begin_inset Tabular
35579 <lyxtabular version="3" rows="5" columns="2">
35580 <features rotate="0" tabularvalignment="middle">
35581 <column alignment="center" valignment="top">
35582 <column alignment="center" valignment="top">
35583 <row>
35584 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35585 \begin_inset Text
35586
35587 \begin_layout Plain Layout
35588 Befehl
35589 \end_layout
35590
35591 \end_inset
35592 </cell>
35593 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35594 \begin_inset Text
35595
35596 \begin_layout Plain Layout
35597 Ergebnis
35598 \begin_inset Note Note
35599 status collapsed
35600
35601 \begin_layout Plain Layout
35602 Der Leerraum und 
35603 \series bold
35604
35605 \backslash
35606 raisebox
35607 \series default
35608  dienen nur als Abstandhalter.
35609 \end_layout
35610
35611 \end_inset
35612
35613
35614 \end_layout
35615
35616 \end_inset
35617 </cell>
35618 </row>
35619 <row>
35620 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35621 \begin_inset Text
35622
35623 \begin_layout Plain Layout
35624
35625 \backslash
35626 cancel{
35627 \backslash
35628 int
35629 \begin_inset ERT
35630 status collapsed
35631
35632 \begin_layout Plain Layout
35633
35634
35635 \backslash
35636 leer 
35637 \end_layout
35638
35639 \end_inset
35640
35641 A=B
35642 \end_layout
35643
35644 \end_inset
35645 </cell>
35646 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35647 \begin_inset Text
35648
35649 \begin_layout Plain Layout
35650 \begin_inset Formula $\raisebox{4.5mm}{}\cancel{\int A=B}\raisebox{-2.5mm}{}$
35651 \end_inset
35652
35653
35654 \end_layout
35655
35656 \end_inset
35657 </cell>
35658 </row>
35659 <row>
35660 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35661 \begin_inset Text
35662
35663 \begin_layout Plain Layout
35664
35665 \backslash
35666 bcancel{
35667 \backslash
35668 int
35669 \begin_inset ERT
35670 status collapsed
35671
35672 \begin_layout Plain Layout
35673
35674
35675 \backslash
35676 leer 
35677 \end_layout
35678
35679 \end_inset
35680
35681 A=B
35682 \end_layout
35683
35684 \end_inset
35685 </cell>
35686 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35687 \begin_inset Text
35688
35689 \begin_layout Plain Layout
35690 \begin_inset Formula $\raisebox{4.5mm}{}\bcancel{\int A=B}\raisebox{-2.5mm}{}$
35691 \end_inset
35692
35693
35694 \end_layout
35695
35696 \end_inset
35697 </cell>
35698 </row>
35699 <row>
35700 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35701 \begin_inset Text
35702
35703 \begin_layout Plain Layout
35704
35705 \backslash
35706 xcancel{
35707 \backslash
35708 int
35709 \begin_inset ERT
35710 status collapsed
35711
35712 \begin_layout Plain Layout
35713
35714
35715 \backslash
35716 leer 
35717 \end_layout
35718
35719 \end_inset
35720
35721 A=B
35722 \end_layout
35723
35724 \end_inset
35725 </cell>
35726 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35727 \begin_inset Text
35728
35729 \begin_layout Plain Layout
35730 \begin_inset Formula $\raisebox{4.5mm}{}\xcancel{\int A=B}\raisebox{-2.5mm}{}$
35731 \end_inset
35732
35733
35734 \end_layout
35735
35736 \end_inset
35737 </cell>
35738 </row>
35739 <row>
35740 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35741 \begin_inset Text
35742
35743 \begin_layout Plain Layout
35744
35745 \backslash
35746 cancelto{1
35747 \begin_inset Formula $\to$
35748 \end_inset
35749
35750
35751 \backslash
35752 {
35753 \backslash
35754 int
35755 \begin_inset ERT
35756 status collapsed
35757
35758 \begin_layout Plain Layout
35759
35760
35761 \backslash
35762 leer 
35763 \end_layout
35764
35765 \end_inset
35766
35767 A=B
35768 \end_layout
35769
35770 \end_inset
35771 </cell>
35772 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35773 \begin_inset Text
35774
35775 \begin_layout Plain Layout
35776 \begin_inset Formula $\raisebox{7mm}{}\cancelto{1}{\int A=B}\raisebox{-2.5mm}{}\hspace{3mm}$
35777 \end_inset
35778
35779
35780 \end_layout
35781
35782 \end_inset
35783 </cell>
35784 </row>
35785 </lyxtabular>
35786
35787 \end_inset
35788
35789
35790 \end_layout
35791
35792 \begin_layout Standard
35793
35794 \series bold
35795
35796 \backslash
35797 cancelto
35798 \series default
35799  eignet sich besonders, wenn man das Kürzen innerhalb einer Formel darstellen
35800  will:
35801 \begin_inset Formula 
35802 \[
35803 \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}}}
35804 \]
35805
35806 \end_inset
35807
35808
35809 \end_layout
35810
35811 \begin_layout Standard
35812 Um die Größe des 
35813 \begin_inset Quotes gld
35814 \end_inset
35815
35816 hochgestellten
35817 \begin_inset Quotes grd
35818 \end_inset
35819
35820  Werts von 
35821 \series bold
35822
35823 \backslash
35824 cancelto
35825 \series default
35826  zu ändern, kann man das Paket 
35827 \series bold
35828 cancel
35829 \series default
35830  entweder mit der Option 
35831 \series bold
35832 samesize
35833 \series default
35834 , die zur selben Größe wie die der durchgestrichenen Zeichen führt, oder
35835  mit der Option 
35836 \series bold
35837 Smaller
35838 \series default
35839 , die zu einer etwas kleineren Größe führt als es ohne Option der Fall ist.
35840  In diesem Dokument wurde 
35841 \series bold
35842 cancel
35843 \series default
35844  mit der Zeile
35845 \end_layout
35846
35847 \begin_layout Standard
35848
35849 \series bold
35850
35851 \backslash
35852 usepackage[samesize]{cancel}
35853 \end_layout
35854
35855 \begin_layout Standard
35856 geladen.
35857  Um den Durchstrich zu färben, verwendet man den Befehl
35858 \end_layout
35859
35860 \begin_layout Standard
35861
35862 \series bold
35863
35864 \backslash
35865 renewcommand{
35866 \backslash
35867 CancelColor}{
35868 \backslash
35869 color{red}}
35870 \end_layout
35871
35872 \begin_layout Standard
35873 als TeX-Code.
35874  
35875 \series bold
35876 red
35877 \series default
35878  kann durch eine Farbe der Wahl ersetzt werden.
35879 \end_layout
35880
35881 \begin_layout Standard
35882 \begin_inset ERT
35883 status collapsed
35884
35885 \begin_layout Plain Layout
35886
35887
35888 \backslash
35889 renewcommand{
35890 \backslash
35891 CancelColor}{
35892 \backslash
35893 color{red}}
35894 \end_layout
35895
35896 \end_inset
35897
35898
35899 \end_layout
35900
35901 \begin_layout Standard
35902 \begin_inset Formula 
35903 \[
35904 \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}}}
35905 \]
35906
35907 \end_inset
35908
35909
35910 \end_layout
35911
35912 \begin_layout Standard
35913 \begin_inset ERT
35914 status collapsed
35915
35916 \begin_layout Plain Layout
35917
35918
35919 \backslash
35920 renewcommand{
35921 \backslash
35922 CancelColor}{
35923 \backslash
35924 color{black}}
35925 \end_layout
35926
35927 \end_inset
35928
35929
35930 \begin_inset Note Note
35931 status open
35932
35933 \begin_layout Plain Layout
35934 Farbe zurücksetzen
35935 \end_layout
35936
35937 \end_inset
35938
35939
35940 \end_layout
35941
35942 \begin_layout Standard
35943 Für weitere Anpassungen siehe die Dokumentation des Pakets 
35944 \series bold
35945 cancel
35946 \series default
35947
35948 \begin_inset CommandInset citation
35949 LatexCommand cite
35950 key "cancel"
35951
35952 \end_inset
35953
35954 .
35955 \end_layout
35956
35957 \begin_layout Standard
35958 \begin_inset ERT
35959 status collapsed
35960
35961 \begin_layout Plain Layout
35962
35963
35964 \backslash
35965 else 
35966 \end_layout
35967
35968 \end_inset
35969
35970
35971 \begin_inset Note Note
35972 status open
35973
35974 \begin_layout Plain Layout
35975 Folgendes erscheint im Ausdruck wenn das LaTeX-Paket 
35976 \series bold
35977 cancel
35978 \series default
35979  nicht installiert ist:
35980 \end_layout
35981
35982 \end_inset
35983
35984
35985 \end_layout
35986
35987 \begin_layout Standard
35988 Das LaTeX-Paket 
35989 \series bold
35990 cancel 
35991 \series default
35992 muss installiert sein, um den Rest dieses Abschnitts im Ausdruck zu sehen.
35993 \end_layout
35994
35995 \begin_layout Standard
35996 \begin_inset ERT
35997 status collapsed
35998
35999 \begin_layout Plain Layout
36000
36001
36002 \backslash
36003 fi 
36004 \end_layout
36005
36006 \end_inset
36007
36008
36009 \end_layout
36010
36011 \begin_layout Subsection
36012 Formeln in Überschriften
36013 \begin_inset CommandInset label
36014 LatexCommand label
36015 name "sub:Formeln-in-Überschriften"
36016
36017 \end_inset
36018
36019
36020 \begin_inset Index idx
36021 status collapsed
36022
36023 \begin_layout Plain Layout
36024 Formel ! in Überschriften
36025 \end_layout
36026
36027 \end_inset
36028
36029
36030 \end_layout
36031
36032 \begin_layout Standard
36033 Benutzt man Formeln in Überschriften, ist auf Folgendes zu achten:
36034 \end_layout
36035
36036 \begin_layout Standard
36037 \begin_inset Note Greyedout
36038 status open
36039
36040 \begin_layout Plain Layout
36041 Verwendet man 
36042 \series bold
36043 hyperref
36044 \series default
36045
36046 \begin_inset Index idx
36047 status collapsed
36048
36049 \begin_layout Plain Layout
36050 Pakete ! hyperref
36051 \end_layout
36052
36053 \end_inset
36054
36055  Unterstützung im den Dokumenteinstellungen unter 
36056 \family sans
36057 PDF-Eigenschaften
36058 \family default
36059 , werden PDF-Lesezeichen für jede Überschrift aus dem Inhaltsverzeichnis
36060  erzeugt.
36061  Enthält eine Überschrift Formeln, werden diese im Lesezeichentext falsch
36062  dargestellt.
36063  Denn Formeln in Lesezeichen verstoßen gegen die PDF-Konventionen.
36064 \end_layout
36065
36066 \end_inset
36067
36068
36069 \end_layout
36070
36071 \begin_layout Standard
36072 Beide Probleme lassen sich lösen, indem man am Ende der Überschrift einen
36073  Kurztitel über das Menü 
36074 \family sans
36075 Einfügen\SpecialChar \menuseparator
36076 Kurztitel
36077 \family default
36078  einfügt.
36079  Kurztitel werden als Alternative für mehrzeilige Überschriften verwendet,
36080  um das Inhaltsverzeichnis übersichtlich zu halten.
36081  Nur der Kurztitel erscheint im Inhaltsverzeichnis und damit auch im PDF-Lesezei
36082 chen.
36083 \end_layout
36084
36085 \begin_layout Standard
36086 Möchte man im Inhaltsverzeichnis eine Formel verwenden, benutzt aber 
36087 \series bold
36088 hyperref
36089 \series default
36090 , verwendet man im TeX-Modus den Befehl
36091 \end_layout
36092
36093 \begin_layout Standard
36094
36095 \series bold
36096
36097 \backslash
36098 texorpdfstring{Teil}{Alternative}
36099 \begin_inset Index idx
36100 status collapsed
36101
36102 \begin_layout Plain Layout
36103 Befehle ! T ! 
36104 \backslash
36105 texorpdfstring
36106 \end_layout
36107
36108 \end_inset
36109
36110
36111 \end_layout
36112
36113 \begin_layout Standard
36114 Teil ist der Überschriftsteil, der nicht im PDF-Lesezeichen erscheinen solle.
36115  Das können Zeichen, Formeln, Fußnoten aber auch Querverweise sein.
36116  Als Alternative kann man angeben, was stattdessen im Lesezeichen erscheinen
36117  soll.
36118 \end_layout
36119
36120 \begin_layout Standard
36121 Es folgen zwei Beispielüberschriften:
36122 \begin_inset VSpace -3mm
36123 \end_inset
36124
36125
36126 \begin_inset ERT
36127 status collapsed
36128
36129 \begin_layout Plain Layout
36130
36131
36132 \backslash
36133 boldmath 
36134 \end_layout
36135
36136 \end_inset
36137
36138
36139 \end_layout
36140
36141 \begin_layout Subsubsection
36142 Überschrift ohne Formel im Inhaltsverzeichnis 
36143 \begin_inset Formula $\sqrt{-1}=\mathrm{i}$
36144 \end_inset
36145
36146
36147 \begin_inset Argument 1
36148 status collapsed
36149
36150 \begin_layout Plain Layout
36151 Überschrift ohne Formel im Inhaltsverzeichnis
36152 \end_layout
36153
36154 \end_inset
36155
36156
36157 \end_layout
36158
36159 \begin_layout Subsubsection
36160 Überschrift mit Formel im Inhaltsverzeichnis
36161 \begin_inset ERT
36162 status collapsed
36163
36164 \begin_layout Plain Layout
36165
36166
36167 \backslash
36168 texorpdfstring{
36169 \end_layout
36170
36171 \end_inset
36172
36173  
36174 \begin_inset Formula $\sqrt{-1}=\mathrm{i}$
36175 \end_inset
36176
36177
36178 \begin_inset ERT
36179 status collapsed
36180
36181 \begin_layout Plain Layout
36182
36183 }{}
36184 \end_layout
36185
36186 \end_inset
36187
36188
36189 \end_layout
36190
36191 \begin_layout Standard
36192 \begin_inset ERT
36193 status collapsed
36194
36195 \begin_layout Plain Layout
36196
36197
36198 \backslash
36199 unboldmath 
36200 \end_layout
36201
36202 \end_inset
36203
36204 In der ersten Überschrift wurde ein Kurztitel verwendet.
36205  In der zweiten 
36206 \series bold
36207
36208 \backslash
36209 texorpdfstring
36210 \series default
36211 .
36212 \end_layout
36213
36214 \begin_layout Standard
36215 Damit die Formeln so wie der Rest der Überschrift formatiert werden, wurde
36216  die komplette Überschrift in eine 
36217 \series bold
36218 boldmath
36219 \series default
36220 -Umgebung
36221 \begin_inset Foot
36222 status collapsed
36223
36224 \begin_layout Plain Layout
36225 siehe 
36226 \begin_inset CommandInset ref
36227 LatexCommand ref
36228 reference "sub:Fett-gedruckte-Formeln"
36229
36230 \end_inset
36231
36232
36233 \end_layout
36234
36235 \end_inset
36236
36237  gesetzt.
36238 \end_layout
36239
36240 \begin_layout Subsection
36241 Formeln im mehrspaltigen Text
36242 \begin_inset Index idx
36243 status collapsed
36244
36245 \begin_layout Plain Layout
36246 Formel ! im mehrspaltigen Text
36247 \end_layout
36248
36249 \end_inset
36250
36251
36252 \end_layout
36253
36254 \begin_layout Standard
36255 Formeln im mehrspaltigen Text sind oftmals zu breit für eine Spalte und
36256  müssen daher über die gesamte Seitenbreite gesetzt werden.
36257  Dazu verwendet man das LaTeX-Paket 
36258 \series bold
36259 multicol
36260 \series default
36261
36262 \begin_inset Foot
36263 status collapsed
36264
36265 \begin_layout Plain Layout
36266
36267 \series bold
36268 multicol
36269 \series default
36270  ist Teil jeder LaTeX-Standardinstallation.
36271 \end_layout
36272
36273 \end_inset
36274
36275
36276 \begin_inset Index idx
36277 status collapsed
36278
36279 \begin_layout Plain Layout
36280 Pakete ! multicol
36281 \end_layout
36282
36283 \end_inset
36284
36285 , das mit der LaTeX-Vorspannzeile
36286 \end_layout
36287
36288 \begin_layout Standard
36289
36290 \series bold
36291
36292 \backslash
36293 usepackage{multicol}
36294 \end_layout
36295
36296 \begin_layout Standard
36297 geladen wird.
36298 \end_layout
36299
36300 \begin_layout Standard
36301 \begin_inset Note Greyedout
36302 status open
36303
36304 \begin_layout Plain Layout
36305 Dabei ist zu beachten, dass im Menü 
36306 \family sans
36307 Dokument\SpecialChar \menuseparator
36308 Einstellungen
36309 \family default
36310  unter 
36311 \family sans
36312 Textformat
36313 \family default
36314  
36315 \emph on
36316 nicht
36317 \emph default
36318  
36319 \family sans
36320 Zweispaltiges
36321 \begin_inset space ~
36322 \end_inset
36323
36324 Dokument
36325 \family default
36326  ausgewählt sein darf.
36327 \end_layout
36328
36329 \end_inset
36330
36331
36332 \end_layout
36333
36334 \begin_layout Standard
36335 Vor den mehrspaltigen Text schreibt man im TeX-Modus den Befehl
36336 \end_layout
36337
36338 \begin_layout Standard
36339
36340 \series bold
36341
36342 \backslash
36343 begin{multicols}{Spaltenanzahl}
36344 \end_layout
36345
36346 \begin_layout Standard
36347 wobei die Spaltenanzahl eine Zahl im Bereich 2
36348 \begin_inset space \thinspace{}
36349 \end_inset
36350
36351 -
36352 \begin_inset space \thinspace{}
36353 \end_inset
36354
36355 10 ist.
36356  Vor der Formel beendet man den mehrspaltigen Text mit dem Befehl
36357 \end_layout
36358
36359 \begin_layout Standard
36360
36361 \series bold
36362
36363 \backslash
36364 end{multicols}
36365 \end_layout
36366
36367 \begin_layout Standard
36368 der im TeX-Modus eingegeben wird.
36369 \end_layout
36370
36371 \begin_layout Standard
36372 Durch den Befehl wird vor der Formel automatisch etwas Leerraum erstellt.
36373  Um dies rückgängig zu machen, fügt man vor der Formel -6
36374 \begin_inset space \thinspace{}
36375 \end_inset
36376
36377 mm vertikalen Leerraum ein.
36378  Ist der Formelstil 
36379 \series bold
36380 Eingerückt
36381 \begin_inset Foot
36382 status collapsed
36383
36384 \begin_layout Plain Layout
36385 Formelstile siehe 
36386 \begin_inset CommandInset ref
36387 LatexCommand ref
36388 reference "sec:Formelstile"
36389
36390 \end_inset
36391
36392
36393 \end_layout
36394
36395 \end_inset
36396
36397
36398 \series default
36399  gewählt, fügt man stattdessen -9
36400 \begin_inset space \thinspace{}
36401 \end_inset
36402
36403 mm Leerraum ein.
36404 \end_layout
36405
36406 \begin_layout Standard
36407 Als Beispiel ein mehrspaltiger Text mit einer abgesetzten Formel:
36408 \end_layout
36409
36410 \begin_layout Standard
36411 \begin_inset ERT
36412 status collapsed
36413
36414 \begin_layout Plain Layout
36415
36416
36417 \backslash
36418 begin{multicols}{2}
36419 \end_layout
36420
36421 \end_inset
36422
36423 Das Spektrum wird fouriertransformiert.
36424  Die Fouriertransformation wird verwendet, um die überlagerten Signale (Netzwerk
36425 , Lösungsmittel) zu trennen.
36426  Nachdem wir die Phasenverschiebung bestimmen konnten, interessiert uns
36427  nun das Aussehen des Ausgangssignals.
36428  Im Experiment haben wir es mit sehr vielen Teilchen zu tun, so dass man
36429  über alle Phasen integrieren muss.
36430  Sei nun 
36431 \begin_inset Formula $S$
36432 \end_inset
36433
36434  unser normiertes Ausgangssignal und 
36435 \begin_inset Formula $P$
36436 \end_inset
36437
36438  die Phasenverteilungsfunktion, so ergibt sich die Beziehung
36439 \begin_inset ERT
36440 status collapsed
36441
36442 \begin_layout Plain Layout
36443
36444
36445 \backslash
36446 end{multicols}
36447 \end_layout
36448
36449 \end_inset
36450
36451
36452 \begin_inset VSpace -6mm
36453 \end_inset
36454
36455
36456 \begin_inset Formula 
36457 \begin{equation}
36458 S(t)=S_{0}(t)\int_{-\infty}^{\infty}P(\phi,t)\mathrm{e}^{\mathrm{i}\phi}\,\mathrm{d}\phi
36459 \end{equation}
36460
36461 \end_inset
36462
36463
36464 \begin_inset ERT
36465 status collapsed
36466
36467 \begin_layout Plain Layout
36468
36469
36470 \backslash
36471 begin{multicols}{2}
36472 \end_layout
36473
36474 \end_inset
36475
36476 wobei 
36477 \begin_inset Formula $S_{0}$
36478 \end_inset
36479
36480  das Signal ohne Gradient ist und die Normierungsbedingung 
36481 \begin_inset Formula $\int_{-\infty}^{\infty}P(\phi,t)\,\mathrm{d}\phi=1$
36482 \end_inset
36483
36484  gilt.
36485  Nun dürfen wir aber nicht den Relaxationsprozess außer Acht lassen.
36486  Direkt nach dem 
36487 \begin_inset Formula $\nicefrac{\pi}{2}$
36488 \end_inset
36489
36490
36491 \begin_inset space \thinspace{}
36492 \end_inset
36493
36494 -rf-Puls beginnt sich die Magnetisierung zu entfokussieren, wodurch sich
36495  das Signal zusätzlich abschwächt.
36496  Diese Abschwächung verläuft exponentiell in Abhängigkeit der so genannten
36497  
36498 \begin_inset Formula $T_{2}$
36499 \end_inset
36500
36501 -Zeit.
36502 \end_layout
36503
36504 \begin_layout Standard
36505 \begin_inset ERT
36506 status collapsed
36507
36508 \begin_layout Plain Layout
36509
36510
36511 \backslash
36512 end{multicols}
36513 \end_layout
36514
36515 \end_inset
36516
36517  
36518 \end_layout
36519
36520 \begin_layout Subsection
36521 Formeln mit Beschreibung der Variablen
36522 \begin_inset Index idx
36523 status collapsed
36524
36525 \begin_layout Plain Layout
36526 Formel ! mit Variablenbeschreibung
36527 \end_layout
36528
36529 \end_inset
36530
36531
36532 \end_layout
36533
36534 \begin_layout Standard
36535 Möchte man wie in Formel 
36536 \begin_inset CommandInset ref
36537 LatexCommand eqref
36538 reference "eq:innerhalb"
36539
36540 \end_inset
36541
36542 , Variablen innerhalb einer Formel beschreiben, verwendet man eine 2
36543 \series bold
36544 ×
36545 \series default
36546
36547 \begin_inset Formula $n$
36548 \end_inset
36549
36550
36551 \begin_inset space ~
36552 \end_inset
36553
36554 Matrix mit links ausgerichteten Spalten für die verwendeten 
36555 \begin_inset Formula $n$
36556 \end_inset
36557
36558  Variablen.
36559 \begin_inset Foot
36560 status collapsed
36561
36562 \begin_layout Plain Layout
36563 Matrizen siehe 
36564 \begin_inset CommandInset ref
36565 LatexCommand ref
36566 reference "sec:Matrizen"
36567
36568 \end_inset
36569
36570
36571 \end_layout
36572
36573 \end_inset
36574
36575  Um die Beschreibung kleiner zu setzen, gibt man vor der Matrix z.
36576 \begin_inset space \thinspace{}
36577 \end_inset
36578
36579 B.
36580  den Befehl 
36581 \series bold
36582
36583 \backslash
36584 footnotesize
36585 \series default
36586  ein.
36587 \begin_inset Foot
36588 status collapsed
36589
36590 \begin_layout Plain Layout
36591 Schriftgrößen siehe 
36592 \begin_inset CommandInset ref
36593 LatexCommand ref
36594 reference "sub:Schriftgrößen"
36595
36596 \end_inset
36597
36598
36599 \end_layout
36600
36601 \end_inset
36602
36603
36604 \end_layout
36605
36606 \begin_layout Standard
36607 Wird der Formelstil 
36608 \series bold
36609 Eingerückt
36610 \begin_inset Foot
36611 status collapsed
36612
36613 \begin_layout Plain Layout
36614 Formelstile siehe 
36615 \begin_inset CommandInset ref
36616 LatexCommand ref
36617 reference "sec:Formelstile"
36618
36619 \end_inset
36620
36621
36622 \end_layout
36623
36624 \end_inset
36625
36626
36627 \series default
36628  verwendet, fügt man vor und nach der Matrix ein 
36629 \series bold
36630
36631 \backslash
36632 hfill
36633 \series default
36634
36635 \begin_inset Foot
36636 status collapsed
36637
36638 \begin_layout Plain Layout
36639
36640 \series bold
36641
36642 \backslash
36643 hfill
36644 \series default
36645  wirkt nur in Formeln mit dem Stil 
36646 \series bold
36647 Eingerückt
36648 \series default
36649 , siehe 
36650 \begin_inset CommandInset ref
36651 LatexCommand ref
36652 reference "sub:Variabler-Leerraum"
36653
36654 \end_inset
36655
36656 .
36657 \end_layout
36658
36659 \end_inset
36660
36661  ein, damit der Abstand der Matrix von der Gleichung und vom Seitenrand
36662  gleich ist.
36663 \end_layout
36664
36665 \begin_layout Standard
36666 Ist der Formelstil 
36667 \series bold
36668 Zentriert
36669 \series default
36670  gewählt, nutzt man die in 
36671 \begin_inset CommandInset ref
36672 LatexCommand ref
36673 reference "sub:Flalign-Umgebung"
36674
36675 \end_inset
36676
36677  beschriebene Möglichkeit, Formeln einzurücken.
36678  Formel 
36679 \begin_inset CommandInset ref
36680 LatexCommand eqref
36681 reference "eq:innerhalb"
36682
36683 \end_inset
36684
36685  besteht aus fünf Spalten, wobei in den ersten beiden die Gleichung, in
36686  der dritten die Matrix und in der letzten die leere TeX-Klammer steht.
36687 \begin_inset Formula 
36688 \begin{flalign}
36689 \hspace{30pt}F_{A} & =\rho·V·g & \footnotesize\begin{array}{ll}
36690 \rho & \textrm{Dichte}\\
36691 V & \textrm{Volumen}\\
36692 g & \textrm{Fallbeschleunigung}
36693 \end{array} &  & {}\label{eq:innerhalb}
36694 \end{flalign}
36695
36696 \end_inset
36697
36698
36699 \end_layout
36700
36701 \begin_layout Subsection
36702 Aufrechte kleine griechische Buchstaben
36703 \begin_inset CommandInset label
36704 LatexCommand label
36705 name "sub:Aufrechte-kleine-griechische"
36706
36707 \end_inset
36708
36709
36710 \begin_inset Index idx
36711 status collapsed
36712
36713 \begin_layout Plain Layout
36714 griechische Buchstaben ! aufrechte
36715 \end_layout
36716
36717 \end_inset
36718
36719
36720 \end_layout
36721
36722 \begin_layout Standard
36723 Die meisten Mathe-Schriften stellen nur kursive kleine griechische Buchstaben
36724  zur Verfügung.
36725  Für Symbole der Elementarteilchen, wie Pionen und Neutrinos werden jedoch
36726  aufrechte griechische Buchstaben benötigt.
36727  Die Datei 
36728 \series bold
36729 upgreek.sty
36730 \series default
36731
36732 \begin_inset Foot
36733 status collapsed
36734
36735 \begin_layout Plain Layout
36736
36737 \series bold
36738 upgreek
36739 \series default
36740  ist Teil des LaTeX-Paketes 
36741 \series bold
36742 was
36743 \series default
36744
36745 \begin_inset Index idx
36746 status collapsed
36747
36748 \begin_layout Plain Layout
36749 Pakete ! was
36750 \begin_inset ERT
36751 status collapsed
36752
36753 \begin_layout Plain Layout
36754
36755
36756 \backslash
36757 vspace{4mm}
36758 \end_layout
36759
36760 \end_inset
36761
36762
36763 \end_layout
36764
36765 \end_inset
36766
36767 .
36768 \end_layout
36769
36770 \end_inset
36771
36772
36773 \begin_inset Index idx
36774 status collapsed
36775
36776 \begin_layout Plain Layout
36777 Pakete ! upgreek
36778 \end_layout
36779
36780 \end_inset
36781
36782 , die mit der LaTeX-Vorspannzeile
36783 \end_layout
36784
36785 \begin_layout Standard
36786
36787 \series bold
36788
36789 \backslash
36790 usepackage{upgreek}
36791 \end_layout
36792
36793 \begin_layout Standard
36794 geladen wird, stellt diese Buchstaben zur Verfügung.
36795  
36796 \begin_inset ERT
36797 status collapsed
36798
36799 \begin_layout Plain Layout
36800
36801
36802 \backslash
36803 ifupgreek 
36804 \end_layout
36805
36806 \end_inset
36807
36808
36809 \begin_inset Note Note
36810 status open
36811
36812 \begin_layout Plain Layout
36813 Das Folgende erscheint nur im Ausdruck wenn das LaTeX-Paket 
36814 \series bold
36815 upgreek
36816 \series default
36817  installiert ist:
36818 \end_layout
36819
36820 \end_inset
36821
36822  Sie werden erzeugt, wenn der Befehl für einen griechischen Buchstaben mit
36823  
36824 \series bold
36825 up
36826 \series default
36827  begonnen wird.
36828  So erzeugt z.
36829 \begin_inset space \thinspace{}
36830 \end_inset
36831
36832 B.
36833  der Befehl 
36834 \series bold
36835
36836 \backslash
36837 uptau
36838 \series default
36839  dies: 
36840 \begin_inset Formula $\uptau$
36841 \end_inset
36842
36843
36844 \end_layout
36845
36846 \begin_layout Standard
36847 Damit kann man Elementarteilchenreaktionen erstellen:
36848 \begin_inset Formula 
36849 \[
36850 \uppi^{+}\to\upmu^{+}+\upnu_{\upmu}
36851 \]
36852
36853 \end_inset
36854
36855
36856 \end_layout
36857
36858 \begin_layout Standard
36859 Die aufrechten Buchstaben sind fetter und breiter als die kursiven.
36860  Sie sollten daher nicht für Einheiten wie 
36861 \begin_inset Quotes gld
36862 \end_inset
36863
36864 µm
36865 \begin_inset Quotes grd
36866 \end_inset
36867
36868  verwendet werden.
36869 \end_layout
36870
36871 \begin_layout Standard
36872 \begin_inset ERT
36873 status collapsed
36874
36875 \begin_layout Plain Layout
36876
36877
36878 \backslash
36879 else 
36880 \end_layout
36881
36882 \end_inset
36883
36884
36885 \begin_inset Note Note
36886 status open
36887
36888 \begin_layout Plain Layout
36889 Folgendes erscheint im Ausdruck wenn das LaTeX-Paket 
36890 \series bold
36891 upgreek
36892 \series default
36893  nicht installiert ist:
36894 \end_layout
36895
36896 \end_inset
36897
36898
36899 \end_layout
36900
36901 \begin_layout Standard
36902 Das LaTeX-Paket 
36903 \series bold
36904 upgreek 
36905 \series default
36906 muss installiert sein, um den Rest dieses Abschnitts im Ausdruck zu sehen.
36907 \end_layout
36908
36909 \begin_layout Standard
36910 \begin_inset ERT
36911 status collapsed
36912
36913 \begin_layout Plain Layout
36914
36915
36916 \backslash
36917 fi 
36918 \end_layout
36919
36920 \end_inset
36921
36922
36923 \end_layout
36924
36925 \begin_layout Subsection
36926 Textzeichen in Formeln
36927 \begin_inset CommandInset label
36928 LatexCommand label
36929 name "sub:Textzeichen-in-Formeln"
36930
36931 \end_inset
36932
36933
36934 \begin_inset Index idx
36935 status collapsed
36936
36937 \begin_layout Plain Layout
36938 Text ! in Formeln
36939 \end_layout
36940
36941 \end_inset
36942
36943
36944 \end_layout
36945
36946 \begin_layout Standard
36947 In einigen Fällen möchte man Textzeichen direkt in Formeln eingeben.
36948  Benötigt man z.
36949 \begin_inset space \thinspace{}
36950 \end_inset
36951
36952 B.
36953  den mittigen Punkt · in Formeln wie 
36954 \begin_inset Formula $\nu=5·10^{5}\,\mathrm{Hz}$
36955 \end_inset
36956
36957 , müsste man dafür jedes Mal den Befehl 
36958 \series bold
36959
36960 \backslash
36961 cdot
36962 \series default
36963  eingeben
36964 \begin_inset Foot
36965 status collapsed
36966
36967 \begin_layout Plain Layout
36968 siehe 
36969 \begin_inset CommandInset ref
36970 LatexCommand ref
36971 reference "sub:Binäre-Operatoren"
36972
36973 \end_inset
36974
36975
36976 \end_layout
36977
36978 \end_inset
36979
36980 , da dieses Zeichen in allen Kodierungen als Textzeichen definiert ist.
36981  Man kann jedoch die Kodierung mit folgender LaTeX-Vorspannzeile ändern:
36982 \end_layout
36983
36984 \begin_layout Standard
36985
36986 \series bold
36987
36988 \backslash
36989 DeclareInputText{183}{
36990 \backslash
36991 ifmmode
36992 \backslash
36993 cdot
36994 \backslash
36995 else
36996 \backslash
36997 textperiodcentered
36998 \backslash
36999 f\SpecialChar \textcompwordmark{}
37000 i}
37001 \end_layout
37002
37003 \begin_layout Standard
37004 Die Zeichenkodierung (Menü 
37005 \family sans
37006 Dokument\SpecialChar \menuseparator
37007 Einstellungen\SpecialChar \menuseparator
37008 Sprache
37009 \family default
37010 ) legt fest, welches Zeichen beim Druck einer bestimmten Taste erscheint.
37011  Wenn man die Taste für das Zeichen '·' drückt, wird intern der Befehl 
37012 \series bold
37013
37014 \backslash
37015 textperiodcentered
37016 \series default
37017  verwendet.
37018  Dieser Befehl ist in einer Formel jedoch nicht verfügbar, so dass es zu
37019  LaTeX-Fehlern kommen würde.
37020  Durch die geänderte Kodierung wird hingegen automatisch der richtige Befehl
37021  gewählt, je nachdem ob das Zeichen in eine Formel eingegeben wurde oder
37022  nicht.
37023 \end_layout
37024
37025 \begin_layout Standard
37026 Die Kodierung der einzelnen Zeichen ist in Definitionsdateien abgespeichert.
37027  Z.
37028 \begin_inset space \thinspace{}
37029 \end_inset
37030
37031 B.
37032  ist die Kodierung 
37033 \series bold
37034 latin9
37035 \series default
37036  in der Datei 
37037 \series bold
37038 latin9.def
37039 \series default
37040  definiert, die sich im Installationsverzeichnis von LaTeX befindet.
37041  Kodierungen sollten nur über den LaTeX-Vorspann und nicht in den Definitionsdat
37042 eien geändert werden.
37043  Ansonsten können eigene Dokumente von anderen LyX-Nutzern auf anderen Computern
37044  nicht ohne Weiteres bearbeitet werden.
37045 \end_layout
37046
37047 \begin_layout Standard
37048 \begin_inset VSpace medskip
37049 \end_inset
37050
37051 In diesem Dokument wurde außerdem mittigen Punkt noch das Gradzeichen °
37052  mit folgenden LaTeX-Vorspannzeilen so definiert, dass sie direkt in eine
37053  Formel eingegeben werden können:
37054 \end_layout
37055
37056 \begin_layout Standard
37057
37058 \series bold
37059
37060 \backslash
37061 DeclareInputText{176}{
37062 \backslash
37063 ifmmode^
37064 \backslash
37065 circ
37066 \backslash
37067 else
37068 \backslash
37069 textdegree
37070 \backslash
37071 f\SpecialChar \textcompwordmark{}
37072 i}
37073 \end_layout
37074
37075 \begin_layout Standard
37076 \begin_inset Newpage newpage
37077 \end_inset
37078
37079
37080 \end_layout
37081
37082 \begin_layout Section
37083 \start_of_appendix
37084 Typographische Hinweise
37085 \begin_inset Index idx
37086 status collapsed
37087
37088 \begin_layout Plain Layout
37089 Typographische Hinweise
37090 \end_layout
37091
37092 \end_inset
37093
37094
37095 \end_layout
37096
37097 \begin_layout Standard
37098 Dieses Kapitel ist eine Zusammenfassung der wichtigsten typographischen
37099  Regeln, die teilweise auch im Duden 
37100 \begin_inset CommandInset citation
37101 LatexCommand cite
37102 key "Duden"
37103
37104 \end_inset
37105
37106  unter 
37107 \family typewriter
37108 Textverarbeitung
37109 \family default
37110  aufgelistet sind.
37111  Weitere Regeln sind in 
37112 \begin_inset CommandInset citation
37113 LatexCommand cite
37114 key "Checklist"
37115
37116 \end_inset
37117
37118  zu finden.
37119 \end_layout
37120
37121 \begin_layout Itemize
37122 Physikalische Einheiten werden 
37123 \emph on
37124 immer
37125 \emph default
37126  aufrecht gesetzt
37127 \begin_inset Foot
37128 status collapsed
37129
37130 \begin_layout Plain Layout
37131 wird durch Schriftstile erreicht, siehe 
37132 \begin_inset CommandInset ref
37133 LatexCommand ref
37134 reference "sub:Schriftstile"
37135
37136 \end_inset
37137
37138
37139 \end_layout
37140
37141 \end_inset
37142
37143 , egal ob sie sich in einem kursiven Text befinden: 30
37144 \begin_inset space \thinspace{}
37145 \end_inset
37146
37147 km/h
37148 \begin_inset Newline newline
37149 \end_inset
37150
37151 Zwischen Wert und Einheit befindet sich der kleinste Leerraum, siehe 
37152 \begin_inset CommandInset ref
37153 LatexCommand ref
37154 reference "sub:Vordefinierter-Leerraum"
37155
37156 \end_inset
37157
37158 .
37159 \begin_inset Newline newline
37160 \end_inset
37161
37162 Diese Richtlinie wird automatisch eingehalten, wenn man den Befehl 
37163 \series bold
37164
37165 \backslash
37166 unittwo
37167 \series default
37168  verwendet.
37169  Gibt man ihn in eine Formel ein, erscheinen zwei Kästchen.
37170  In das Erste wird der Wert, in das Zweite die Einheit eingegeben und man
37171  erhält wie oben: 
37172 \begin_inset Formula $\unit[30]{km/h}$
37173 \end_inset
37174
37175
37176 \begin_inset space \thinspace{}
37177 \end_inset
37178
37179 .
37180  Zu beachten ist, dass 
37181 \series bold
37182
37183 \backslash
37184 unittwo
37185 \series default
37186  kein echter LaTeX-Befehl, sondern der Befehl 
37187 \series bold
37188
37189 \backslash
37190 unit[Wert]{Einheit}
37191 \series default
37192  ist, daher kann man ihn nicht im TeX-Code benutzen.
37193 \end_layout
37194
37195 \begin_layout Itemize
37196 Prozent- und Promillezeichen werden wie physikalische Einheiten gesetzt:
37197 \begin_inset Newline newline
37198 \end_inset
37199
37200 1,2
37201 \begin_inset space \thinspace{}
37202 \end_inset
37203
37204 ‰ Alkohol im Blut
37205 \begin_inset Newline newline
37206 \end_inset
37207
37208 Sie folgen jedoch direkt auf die Zahl, wenn sie in einer Zusammensetzung
37209  oder Ableitung stehen: 3%-ige Rendite, 20%-Grenze
37210 \end_layout
37211
37212 \begin_layout Itemize
37213 Das Grad-Symbol folgt immer unmittelbar auf die Zahl: 15°, es sei denn es
37214  wird in einer Einheit verwendet: 15
37215 \begin_inset space \thinspace{}
37216 \end_inset
37217
37218 °C
37219 \end_layout
37220
37221 \begin_layout Itemize
37222 In Zahlen mit mehr als vier Ziffern wird zur Gruppierung vor jeder dritten
37223  Ziffer der kleinste Leerraum eingefügt: 18
37224 \begin_inset space \thinspace{}
37225 \end_inset
37226
37227 473
37228 \begin_inset space \thinspace{}
37229 \end_inset
37230
37231 588
37232 \end_layout
37233
37234 \begin_layout Itemize
37235 Für Bemaßungen wie z.
37236 \begin_inset space \thinspace{}
37237 \end_inset
37238
37239 B.
37240  120×90×40
37241 \begin_inset space \thinspace{}
37242 \end_inset
37243
37244 cm, verwendet man das gelegte Kreuz 
37245 \begin_inset Quotes gld
37246 \end_inset
37247
37248 ×
37249 \begin_inset Quotes grd
37250 \end_inset
37251
37252 , dass entweder über den Befehl 
37253 \series bold
37254
37255 \backslash
37256 times
37257 \series default
37258  oder über das Menü 
37259 \family sans
37260 Einfügen\SpecialChar \menuseparator
37261 Sonderzeichen\SpecialChar \menuseparator
37262 Symbole
37263 \family default
37264  verfügbar ist.
37265 \end_layout
37266
37267 \begin_layout Itemize
37268 Bei Datumsangaben befindet sich zwischen Tag und Monat der kleinste Leerraum,
37269  zwischen Monat und Jahr ein geschütztes Leerzeichen: 23.
37270 \begin_inset space \thinspace{}
37271 \end_inset
37272
37273 6.
37274 \begin_inset space ~
37275 \end_inset
37276
37277 1979
37278 \end_layout
37279
37280 \begin_layout Itemize
37281 Funktionen, deren Name aus mehreren Buchstaben besteht, werden aufrecht
37282  gesetzt um Verwechslungen mit Variablen zu vermeiden, siehe 
37283 \begin_inset CommandInset ref
37284 LatexCommand ref
37285 reference "sub:Vordefinierte-Funktionen"
37286
37287 \end_inset
37288
37289 .
37290 \end_layout
37291
37292 \begin_layout Itemize
37293 Indizes, die aus mehreren Buchstaben bestehen, werden aufrecht gesetzt:
37294  
37295 \begin_inset Formula $E_{\mathrm{kin}}$
37296 \end_inset
37297
37298
37299 \begin_inset Newline newline
37300 \end_inset
37301
37302 Komponenten von Matrizen werden kursiv gesetzt: 
37303 \begin_inset Formula $\hat{H}_{kl}$
37304 \end_inset
37305
37306
37307 \end_layout
37308
37309 \begin_layout Itemize
37310 Der Ableitungs-/Integrationsoperator 'd', die Eulersche Zahl 'e' und die
37311  Imaginäre Zahl 'i' sollten aufrecht gesetzt werden, um sie nicht mit anderen
37312  Variablen zu verwechseln.
37313 \end_layout
37314
37315 \begin_layout Itemize
37316 Das Symbol für eine 
37317 \noun on
37318 Fourier
37319 \noun default
37320 -Transformation kann entweder mit dem Befehl 
37321 \series bold
37322
37323 \backslash
37324 mathscr
37325 \begin_inset ERT
37326 status collapsed
37327
37328 \begin_layout Plain Layout
37329
37330
37331 \backslash
37332 leer 
37333 \end_layout
37334
37335 \end_inset
37336
37337 F
37338 \series default
37339  oder über das Menü 
37340 \family sans
37341 Einfügen\SpecialChar \menuseparator
37342 Sonderzeichen\SpecialChar \menuseparator
37343 Symbole\SpecialChar \menuseparator
37344 Buchsta\SpecialChar \-
37345 benähnliche Symbole
37346 \family default
37347  eingefügt werden: 
37348 \begin_inset Formula $\mathscr{F}$
37349 \end_inset
37350
37351
37352 \end_layout
37353
37354 \begin_layout Standard
37355 \begin_inset Newpage newpage
37356 \end_inset
37357
37358
37359 \end_layout
37360
37361 \begin_layout Section
37362 Synonyme
37363 \begin_inset Index idx
37364 status collapsed
37365
37366 \begin_layout Plain Layout
37367 Synonyme
37368 \end_layout
37369
37370 \end_inset
37371
37372
37373 \end_layout
37374
37375 \begin_layout Standard
37376 Einige Zeichen und Symbole können mit mehreren Befehlen erstellt werden.
37377  Hier ist eine Übersicht der Synonymbefehle:
37378 \end_layout
37379
37380 \begin_layout Standard
37381 \begin_inset VSpace bigskip
37382 \end_inset
37383
37384
37385 \begin_inset space \hfill{}
37386 \end_inset
37387
37388
37389 \begin_inset Tabular
37390 <lyxtabular version="3" rows="12" columns="2">
37391 <features rotate="0" tabularvalignment="middle">
37392 <column alignment="center" valignment="top" width="0pt">
37393 <column alignment="center" valignment="top" width="0pt">
37394 <row>
37395 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
37396 \begin_inset Text
37397
37398 \begin_layout Plain Layout
37399 Befehl
37400 \end_layout
37401
37402 \end_inset
37403 </cell>
37404 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
37405 \begin_inset Text
37406
37407 \begin_layout Plain Layout
37408 äquivalent zu
37409 \begin_inset Note Note
37410 status collapsed
37411
37412 \begin_layout Plain Layout
37413
37414 \series bold
37415
37416 \backslash
37417 raisebox
37418 \series default
37419  dient nur als Abstandhalter.
37420 \end_layout
37421
37422 \end_inset
37423
37424
37425 \end_layout
37426
37427 \end_inset
37428 </cell>
37429 </row>
37430 <row>
37431 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37432 \begin_inset Text
37433
37434 \begin_layout Plain Layout
37435
37436 \backslash
37437 ast
37438 \end_layout
37439
37440 \end_inset
37441 </cell>
37442 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37443 \begin_inset Text
37444
37445 \begin_layout Plain Layout
37446 \begin_inset ERT
37447 status collapsed
37448
37449 \begin_layout Plain Layout
37450
37451
37452 \backslash
37453 raisebox{-1.2mm}{
37454 \end_layout
37455
37456 \end_inset
37457
37458 *
37459 \begin_inset ERT
37460 status collapsed
37461
37462 \begin_layout Plain Layout
37463
37464 }
37465 \end_layout
37466
37467 \end_inset
37468
37469
37470 \end_layout
37471
37472 \end_inset
37473 </cell>
37474 </row>
37475 <row>
37476 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37477 \begin_inset Text
37478
37479 \begin_layout Plain Layout
37480
37481 \backslash
37482 choose
37483 \end_layout
37484
37485 \end_inset
37486 </cell>
37487 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37488 \begin_inset Text
37489
37490 \begin_layout Plain Layout
37491
37492 \backslash
37493 binom
37494 \end_layout
37495
37496 \end_inset
37497 </cell>
37498 </row>
37499 <row>
37500 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37501 \begin_inset Text
37502
37503 \begin_layout Plain Layout
37504
37505 \backslash
37506 geq
37507 \end_layout
37508
37509 \end_inset
37510 </cell>
37511 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37512 \begin_inset Text
37513
37514 \begin_layout Plain Layout
37515
37516 \backslash
37517 ge
37518 \end_layout
37519
37520 \end_inset
37521 </cell>
37522 </row>
37523 <row>
37524 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37525 \begin_inset Text
37526
37527 \begin_layout Plain Layout
37528
37529 \backslash
37530 lbrace
37531 \end_layout
37532
37533 \end_inset
37534 </cell>
37535 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37536 \begin_inset Text
37537
37538 \begin_layout Plain Layout
37539 {
37540 \end_layout
37541
37542 \end_inset
37543 </cell>
37544 </row>
37545 <row>
37546 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37547 \begin_inset Text
37548
37549 \begin_layout Plain Layout
37550
37551 \backslash
37552 lbracket
37553 \end_layout
37554
37555 \end_inset
37556 </cell>
37557 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37558 \begin_inset Text
37559
37560 \begin_layout Plain Layout
37561 [
37562 \end_layout
37563
37564 \end_inset
37565 </cell>
37566 </row>
37567 <row>
37568 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37569 \begin_inset Text
37570
37571 \begin_layout Plain Layout
37572
37573 \backslash
37574 leftarrow
37575 \end_layout
37576
37577 \end_inset
37578 </cell>
37579 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37580 \begin_inset Text
37581
37582 \begin_layout Plain Layout
37583
37584 \backslash
37585 gets
37586 \end_layout
37587
37588 \end_inset
37589 </cell>
37590 </row>
37591 <row>
37592 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37593 \begin_inset Text
37594
37595 \begin_layout Plain Layout
37596
37597 \backslash
37598 leq
37599 \end_layout
37600
37601 \end_inset
37602 </cell>
37603 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37604 \begin_inset Text
37605
37606 \begin_layout Plain Layout
37607
37608 \backslash
37609 le
37610 \end_layout
37611
37612 \end_inset
37613 </cell>
37614 </row>
37615 <row>
37616 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37617 \begin_inset Text
37618
37619 \begin_layout Plain Layout
37620
37621 \backslash
37622 lor
37623 \end_layout
37624
37625 \end_inset
37626 </cell>
37627 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37628 \begin_inset Text
37629
37630 \begin_layout Plain Layout
37631
37632 \backslash
37633 vee
37634 \end_layout
37635
37636 \end_inset
37637 </cell>
37638 </row>
37639 <row>
37640 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37641 \begin_inset Text
37642
37643 \begin_layout Plain Layout
37644
37645 \backslash
37646 neq
37647 \end_layout
37648
37649 \end_inset
37650 </cell>
37651 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37652 \begin_inset Text
37653
37654 \begin_layout Plain Layout
37655
37656 \backslash
37657 not=
37658 \end_layout
37659
37660 \end_inset
37661 </cell>
37662 </row>
37663 <row>
37664 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37665 \begin_inset Text
37666
37667 \begin_layout Plain Layout
37668
37669 \backslash
37670 slash
37671 \end_layout
37672
37673 \end_inset
37674 </cell>
37675 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37676 \begin_inset Text
37677
37678 \begin_layout Plain Layout
37679 /
37680 \end_layout
37681
37682 \end_inset
37683 </cell>
37684 </row>
37685 <row>
37686 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
37687 \begin_inset Text
37688
37689 \begin_layout Plain Layout
37690
37691 \backslash
37692 vert
37693 \end_layout
37694
37695 \end_inset
37696 </cell>
37697 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
37698 \begin_inset Text
37699
37700 \begin_layout Plain Layout
37701 |
37702 \end_layout
37703
37704 \end_inset
37705 </cell>
37706 </row>
37707 </lyxtabular>
37708
37709 \end_inset
37710
37711
37712 \begin_inset space \hfill{}
37713 \end_inset
37714
37715
37716 \begin_inset Tabular
37717 <lyxtabular version="3" rows="12" columns="2">
37718 <features rotate="0" tabularvalignment="middle">
37719 <column alignment="center" valignment="top" width="0pt">
37720 <column alignment="center" valignment="top" width="0pt">
37721 <row>
37722 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
37723 \begin_inset Text
37724
37725 \begin_layout Plain Layout
37726 Befehl
37727 \end_layout
37728
37729 \end_inset
37730 </cell>
37731 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
37732 \begin_inset Text
37733
37734 \begin_layout Plain Layout
37735 äquivalent zu
37736 \end_layout
37737
37738 \end_inset
37739 </cell>
37740 </row>
37741 <row>
37742 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37743 \begin_inset Text
37744
37745 \begin_layout Plain Layout
37746
37747 \backslash
37748 backslash
37749 \end_layout
37750
37751 \end_inset
37752 </cell>
37753 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37754 \begin_inset Text
37755
37756 \begin_layout Plain Layout
37757
37758 \backslash
37759
37760 \backslash
37761
37762 \end_layout
37763
37764 \end_inset
37765 </cell>
37766 </row>
37767 <row>
37768 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37769 \begin_inset Text
37770
37771 \begin_layout Plain Layout
37772
37773 \backslash
37774 dasharrow
37775 \end_layout
37776
37777 \end_inset
37778 </cell>
37779 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37780 \begin_inset Text
37781
37782 \begin_layout Plain Layout
37783
37784 \backslash
37785 dashrightarrow
37786 \end_layout
37787
37788 \end_inset
37789 </cell>
37790 </row>
37791 <row>
37792 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37793 \begin_inset Text
37794
37795 \begin_layout Plain Layout
37796
37797 \backslash
37798 land
37799 \end_layout
37800
37801 \end_inset
37802 </cell>
37803 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37804 \begin_inset Text
37805
37806 \begin_layout Plain Layout
37807
37808 \backslash
37809 wedge
37810 \end_layout
37811
37812 \end_inset
37813 </cell>
37814 </row>
37815 <row>
37816 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37817 \begin_inset Text
37818
37819 \begin_layout Plain Layout
37820
37821 \backslash
37822 rbrace
37823 \end_layout
37824
37825 \end_inset
37826 </cell>
37827 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37828 \begin_inset Text
37829
37830 \begin_layout Plain Layout
37831 }
37832 \end_layout
37833
37834 \end_inset
37835 </cell>
37836 </row>
37837 <row>
37838 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37839 \begin_inset Text
37840
37841 \begin_layout Plain Layout
37842
37843 \backslash
37844 rbracket
37845 \end_layout
37846
37847 \end_inset
37848 </cell>
37849 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37850 \begin_inset Text
37851
37852 \begin_layout Plain Layout
37853 ]
37854 \end_layout
37855
37856 \end_inset
37857 </cell>
37858 </row>
37859 <row>
37860 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37861 \begin_inset Text
37862
37863 \begin_layout Plain Layout
37864
37865 \backslash
37866 rightarrow
37867 \end_layout
37868
37869 \end_inset
37870 </cell>
37871 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37872 \begin_inset Text
37873
37874 \begin_layout Plain Layout
37875
37876 \backslash
37877 to
37878 \end_layout
37879
37880 \end_inset
37881 </cell>
37882 </row>
37883 <row>
37884 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37885 \begin_inset Text
37886
37887 \begin_layout Plain Layout
37888
37889 \backslash
37890 lnot
37891 \end_layout
37892
37893 \end_inset
37894 </cell>
37895 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37896 \begin_inset Text
37897
37898 \begin_layout Plain Layout
37899
37900 \backslash
37901 neg
37902 \end_layout
37903
37904 \end_inset
37905 </cell>
37906 </row>
37907 <row>
37908 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37909 \begin_inset Text
37910
37911 \begin_layout Plain Layout
37912
37913 \backslash
37914 ne
37915 \end_layout
37916
37917 \end_inset
37918 </cell>
37919 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37920 \begin_inset Text
37921
37922 \begin_layout Plain Layout
37923
37924 \backslash
37925 not=
37926 \end_layout
37927
37928 \end_inset
37929 </cell>
37930 </row>
37931 <row>
37932 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37933 \begin_inset Text
37934
37935 \begin_layout Plain Layout
37936
37937 \backslash
37938 owns
37939 \end_layout
37940
37941 \end_inset
37942 </cell>
37943 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37944 \begin_inset Text
37945
37946 \begin_layout Plain Layout
37947
37948 \backslash
37949 ni
37950 \end_layout
37951
37952 \end_inset
37953 </cell>
37954 </row>
37955 <row>
37956 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37957 \begin_inset Text
37958
37959 \begin_layout Plain Layout
37960
37961 \backslash
37962 square
37963 \end_layout
37964
37965 \end_inset
37966 </cell>
37967 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37968 \begin_inset Text
37969
37970 \begin_layout Plain Layout
37971
37972 \backslash
37973 Box
37974 \end_layout
37975
37976 \end_inset
37977 </cell>
37978 </row>
37979 <row>
37980 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
37981 \begin_inset Text
37982
37983 \begin_layout Plain Layout
37984
37985 \backslash
37986 Vert
37987 \end_layout
37988
37989 \end_inset
37990 </cell>
37991 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
37992 \begin_inset Text
37993
37994 \begin_layout Plain Layout
37995
37996 \backslash
37997 |
37998 \end_layout
37999
38000 \end_inset
38001 </cell>
38002 </row>
38003 </lyxtabular>
38004
38005 \end_inset
38006
38007
38008 \begin_inset space \hfill{}
38009 \end_inset
38010
38011
38012 \end_layout
38013
38014 \begin_layout Standard
38015 \begin_inset Newpage newpage
38016 \end_inset
38017
38018
38019 \end_layout
38020
38021 \begin_layout Bibliography
38022 \begin_inset CommandInset bibitem
38023 LatexCommand bibitem
38024 key "TLC2"
38025
38026 \end_inset
38027
38028
38029 \shape smallcaps
38030 Mittelbach, F.
38031  ; Goossens, M.
38032 \shape default
38033
38034 \shape italic
38035 The LaTeX Companion
38036 \shape default
38037 .
38038  Addison Wesley, 2004
38039 \end_layout
38040
38041 \begin_layout Bibliography
38042 \begin_inset CommandInset bibitem
38043 LatexCommand bibitem
38044 key "Mathmode"
38045
38046 \end_inset
38047
38048
38049 \begin_inset CommandInset href
38050 LatexCommand href
38051 name "Beschreibung"
38052 target "ftp://ftp.dante.de/tex-archive/info/math/voss/mathmode/Mathmode.pdf"
38053
38054 \end_inset
38055
38056  der mathematischen Fähigkeiten von LaTeX
38057 \end_layout
38058
38059 \begin_layout Bibliography
38060 \begin_inset CommandInset bibitem
38061 LatexCommand bibitem
38062 key "AMS"
38063
38064 \end_inset
38065
38066
38067 \begin_inset CommandInset href
38068 LatexCommand href
38069 name "Beschreibung"
38070 target "http://mirrors.ctan.org/macros/latex/required/amslatex/math/amsldoc.pdf"
38071
38072 \end_inset
38073
38074  von 
38075 \begin_inset ERT
38076 status collapsed
38077
38078 \begin_layout Plain Layout
38079
38080
38081 \backslash
38082 AmS
38083 \end_layout
38084
38085 \end_inset
38086
38087 -LaTeX
38088 \end_layout
38089
38090 \begin_layout Bibliography
38091 \begin_inset CommandInset bibitem
38092 LatexCommand bibitem
38093 key "Symbole"
38094
38095 \end_inset
38096
38097
38098 \begin_inset CommandInset href
38099 LatexCommand href
38100 name "Auflistung"
38101 target "ftp://ftp.dante.de/tex-archive/info/symbols/comprehensive/symbols-a4.pdf"
38102
38103 \end_inset
38104
38105  aller über LaTeX-Pakete verfügbare Symbole
38106 \end_layout
38107
38108 \begin_layout Bibliography
38109 \begin_inset CommandInset bibitem
38110 LatexCommand bibitem
38111 key "cancel"
38112
38113 \end_inset
38114
38115
38116 \begin_inset CommandInset href
38117 LatexCommand href
38118 name "Dokumentation"
38119 target "http://mirrors.ctan.org/macros/latex/contrib/cancel/cancel.pdf"
38120
38121 \end_inset
38122
38123  des LaTeX-Pakets 
38124 \series bold
38125 cancel
38126 \series default
38127
38128 \begin_inset Index idx
38129 status collapsed
38130
38131 \begin_layout Plain Layout
38132 Pakete ! cancel
38133 \end_layout
38134
38135 \end_inset
38136
38137
38138 \end_layout
38139
38140 \begin_layout Bibliography
38141 \begin_inset CommandInset bibitem
38142 LatexCommand bibitem
38143 key "hyperref"
38144
38145 \end_inset
38146
38147
38148 \begin_inset CommandInset href
38149 LatexCommand href
38150 name "Dokumentation"
38151 target "http://www.tug.org/applications/hyperref/ftp/doc/manual.pdf"
38152
38153 \end_inset
38154
38155  des LaTeX-Pakets 
38156 \series bold
38157 hyperref
38158 \series default
38159
38160 \begin_inset Index idx
38161 status collapsed
38162
38163 \begin_layout Plain Layout
38164 Pakete ! hyperref
38165 \end_layout
38166
38167 \end_inset
38168
38169
38170 \end_layout
38171
38172 \begin_layout Bibliography
38173 \begin_inset CommandInset bibitem
38174 LatexCommand bibitem
38175 key "mhchem"
38176
38177 \end_inset
38178
38179
38180 \begin_inset CommandInset href
38181 LatexCommand href
38182 name "Dokumentation"
38183 target "http://www.ctan.org/tex-archive/macros/latex/contrib/mhchem/mhchem.pdf"
38184
38185 \end_inset
38186
38187  des LaTeX-Pakets 
38188 \series bold
38189 mhchem
38190 \series default
38191
38192 \begin_inset Index idx
38193 status collapsed
38194
38195 \begin_layout Plain Layout
38196 Pakete ! mhchem
38197 \end_layout
38198
38199 \end_inset
38200
38201
38202 \end_layout
38203
38204 \begin_layout Bibliography
38205 \begin_inset CommandInset bibitem
38206 LatexCommand bibitem
38207 key "Mathclap"
38208
38209 \end_inset
38210
38211
38212 \begin_inset CommandInset href
38213 LatexCommand href
38214 name "Beschreibung"
38215 target "http://www.tug.org/TUGboat/Articles/tb22-4/tb72perlS.pdf"
38216
38217 \end_inset
38218
38219  des in 
38220 \begin_inset CommandInset ref
38221 LatexCommand ref
38222 reference "sub:Operatorgrenzen"
38223
38224 \end_inset
38225
38226  vorgestellten Befehls 
38227 \series bold
38228
38229 \backslash
38230 mathclap
38231 \series default
38232
38233 \begin_inset Index idx
38234 status collapsed
38235
38236 \begin_layout Plain Layout
38237 Befehle ! M ! 
38238 \backslash
38239 mathclap
38240 \end_layout
38241
38242 \end_inset
38243
38244
38245 \end_layout
38246
38247 \begin_layout Bibliography
38248 \begin_inset CommandInset bibitem
38249 LatexCommand bibitem
38250 key "Duden"
38251
38252 \end_inset
38253
38254
38255 \emph on
38256 Duden Band 1
38257 \emph default
38258 .
38259  22.
38260  Auflage, Duden Verlag 2001
38261 \end_layout
38262
38263 \begin_layout Bibliography
38264 \begin_inset CommandInset bibitem
38265 LatexCommand bibitem
38266 key "Checklist"
38267
38268 \end_inset
38269
38270
38271 \begin_inset CommandInset href
38272 LatexCommand href
38273 name "Prüfliste"
38274 target "http://physics.nist.gov/Document/checklist.pdf"
38275
38276 \end_inset
38277
38278  für das Rezensieren von Manuskripten
38279 \end_layout
38280
38281 \begin_layout Standard
38282 \begin_inset Note Note
38283 status collapsed
38284
38285 \begin_layout Plain Layout
38286 Damit der Index den Namen 
38287 \begin_inset Quotes gld
38288 \end_inset
38289
38290 Stichwortverzeichnis
38291 \begin_inset Quotes grd
38292 \end_inset
38293
38294  erhält, wurde im LaTeX-Vorspann
38295 \end_layout
38296
38297 \begin_layout Plain Layout
38298
38299 \series bold
38300
38301 \backslash
38302 addto
38303 \backslash
38304 captionsngerman{
38305 \backslash
38306 renewcommand{
38307 \backslash
38308 indexname}{Stichwortverzeichnis}}
38309 \end_layout
38310
38311 \begin_layout Plain Layout
38312 eingefügt.
38313 \end_layout
38314
38315 \begin_layout Plain Layout
38316 Das Paket 
38317 \series bold
38318 babel
38319 \series default
38320  sorgt dafür, dass die Beschriftungen in der ausgewählten Sprache erscheinen.
38321  Ehe man Beschriftungen ändern kann, muss es geladen werden.
38322  Außerdem wird 
38323 \series bold
38324 babel
38325 \series default
38326  von LyX automatisch nach dem LaTeX-Vorspann geladen.
38327  Das ruft aber keine Probleme hervor, solange im LaTeX-Vorspann die Dokumentspra
38328 che verwendet wurde.
38329 \end_layout
38330
38331 \begin_layout Plain Layout
38332 Möchte man andere Beschriftungen ändern, ersetzt man 
38333 \series bold
38334
38335 \backslash
38336 indexname
38337 \series default
38338  durch 
38339 \series bold
38340
38341 \backslash
38342 <Beschriftungs>name
38343 \series default
38344 .
38345  Eine Auflistung der möglichen Namen findet man unter
38346 \end_layout
38347
38348 \begin_layout Plain Layout
38349
38350 \family typewriter
38351 http://www.tex.ac.uk/cgi-bin/texfaq2html?label=fixnam
38352 \end_layout
38353
38354 \begin_layout Plain Layout
38355 Möchte man Beschriftungen für andere Sprachen ändern, ersetzt man 
38356 \series bold
38357 ngerman
38358 \series default
38359  durch die Dokumentsprache und
38360 \end_layout
38361
38362 \begin_layout Plain Layout
38363
38364 \series bold
38365
38366 \backslash
38367 captionsgerman
38368 \series default
38369  durch 
38370 \series bold
38371
38372 \backslash
38373 captions<Dokumentsprache>
38374 \series default
38375 .
38376 \end_layout
38377
38378 \end_inset
38379
38380
38381 \begin_inset CommandInset index_print
38382 LatexCommand printindex
38383 type "idx"
38384
38385 \end_inset
38386
38387
38388 \end_layout
38389
38390 \end_body
38391 \end_document